Skip to content

Commit

Permalink
remove unnecessary fields from GongParticipantCodec
Browse files Browse the repository at this point in the history
  • Loading branch information
aubin-tchoi committed Mar 5, 2025
1 parent 38c5709 commit 288000b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions connectors/src/connectors/gong/lib/gong_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,9 @@ export type GongCallTranscript = t.TypeOf<typeof GongCallTranscriptCodec>;

export const GongParticipantCodec = t.intersection([
t.type({
id: t.string,
emailAddress: t.string,
phoneNumber: t.union([t.string, t.null]),
userId: t.union([t.string, t.null]),
speakerId: t.union([t.string, t.null]),
userId: t.union([t.string, t.null, t.undefined]),
affiliation: t.union([
t.literal("Internal"),
t.literal("External"),
Expand Down

0 comments on commit 288000b

Please sign in to comment.