@automate.ax/integration-contracts 0.76.0 → 0.77.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/gmail/gmail.js +3 -2
- package/dist/gmail/schemas.d.ts +416 -4
- package/dist/gmail/schemas.js +106 -2
- package/dist/google-meet/google-meet.d.ts +173 -0
- package/dist/google-meet/google-meet.js +371 -0
- package/dist/google-meet/index.d.ts +295 -0
- package/dist/google-meet/index.js +87 -0
- package/dist/google-meet/schemas.d.ts +269 -0
- package/dist/google-meet/schemas.js +197 -0
- package/dist/linear/schemas.d.ts +90 -0
- package/dist/linear/schemas.js +63 -0
- package/dist/outlook/index.d.ts +1 -1
- package/dist/outlook/schemas.d.ts +6 -6
- package/dist/triggers.d.ts +2 -1
- package/dist/triggers.js +2 -0
- package/package.json +9 -2
- package/src/gmail/gmail.ts +3 -2
- package/src/gmail/schemas.ts +106 -2
- package/src/google-meet/google-meet.ts +445 -0
- package/src/google-meet/index.ts +117 -0
- package/src/google-meet/schemas.ts +274 -0
- package/src/linear/schemas.ts +83 -0
- package/src/triggers.ts +3 -0
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
import { z } from "zod"
|
|
2
|
+
|
|
3
|
+
const RESOURCE_NAME_SCHEMA = z.string().trim().min(1)
|
|
4
|
+
const TIMESTAMP_SCHEMA = z.iso.datetime({ offset: true })
|
|
5
|
+
|
|
6
|
+
export const GOOGLE_MEET_SPACE_REFERENCE_SCHEMA = z.string().trim().min(1)
|
|
7
|
+
export const GOOGLE_MEET_CONFERENCE_RECORD_REFERENCE_SCHEMA = z
|
|
8
|
+
.string()
|
|
9
|
+
.trim()
|
|
10
|
+
.min(1)
|
|
11
|
+
export const GOOGLE_MEET_PARTICIPANT_NAME_SCHEMA = RESOURCE_NAME_SCHEMA.regex(
|
|
12
|
+
/^conferenceRecords\/[^/]+\/participants\/[^/]+$/,
|
|
13
|
+
"Expected a Google Meet participant resource name.",
|
|
14
|
+
)
|
|
15
|
+
export const GOOGLE_MEET_PARTICIPANT_SESSION_NAME_SCHEMA =
|
|
16
|
+
RESOURCE_NAME_SCHEMA.regex(
|
|
17
|
+
/^conferenceRecords\/[^/]+\/participants\/[^/]+\/participantSessions\/[^/]+$/,
|
|
18
|
+
"Expected a Google Meet participant session resource name.",
|
|
19
|
+
)
|
|
20
|
+
export const GOOGLE_MEET_RECORDING_NAME_SCHEMA = RESOURCE_NAME_SCHEMA.regex(
|
|
21
|
+
/^conferenceRecords\/[^/]+\/recordings\/[^/]+$/,
|
|
22
|
+
"Expected a Google Meet recording resource name.",
|
|
23
|
+
)
|
|
24
|
+
export const GOOGLE_MEET_TRANSCRIPT_NAME_SCHEMA = RESOURCE_NAME_SCHEMA.regex(
|
|
25
|
+
/^conferenceRecords\/[^/]+\/transcripts\/[^/]+$/,
|
|
26
|
+
"Expected a Google Meet transcript resource name.",
|
|
27
|
+
)
|
|
28
|
+
export const GOOGLE_MEET_TRANSCRIPT_ENTRY_NAME_SCHEMA =
|
|
29
|
+
RESOURCE_NAME_SCHEMA.regex(
|
|
30
|
+
/^conferenceRecords\/[^/]+\/transcripts\/[^/]+\/entries\/[^/]+$/,
|
|
31
|
+
"Expected a Google Meet transcript entry resource name.",
|
|
32
|
+
)
|
|
33
|
+
export const GOOGLE_MEET_SMART_NOTE_NAME_SCHEMA = RESOURCE_NAME_SCHEMA.regex(
|
|
34
|
+
/^conferenceRecords\/[^/]+\/smartNotes\/[^/]+$/,
|
|
35
|
+
"Expected a Google Meet smart note resource name.",
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
const RESTRICTION_SCHEMA = z.enum(["hostsOnly", "noRestriction"])
|
|
39
|
+
|
|
40
|
+
export const GOOGLE_MEET_SPACE_CONFIG_SCHEMA = z.object({
|
|
41
|
+
/** Who can join without knocking. */
|
|
42
|
+
accessType: z.enum(["open", "trusted", "restricted"]).optional(),
|
|
43
|
+
|
|
44
|
+
/** Automatic artifact generation settings. */
|
|
45
|
+
artifacts: z
|
|
46
|
+
.object({
|
|
47
|
+
recording: z.boolean().optional(),
|
|
48
|
+
smartNotes: z.boolean().optional(),
|
|
49
|
+
transcription: z.boolean().optional(),
|
|
50
|
+
})
|
|
51
|
+
.optional(),
|
|
52
|
+
|
|
53
|
+
/** Whether Google generates an attendance report. */
|
|
54
|
+
attendanceReport: z.boolean().optional(),
|
|
55
|
+
|
|
56
|
+
/** Entry points allowed to join the space. */
|
|
57
|
+
entryPointAccess: z.enum(["all", "creatorAppOnly"]).optional(),
|
|
58
|
+
|
|
59
|
+
/** Whether host management is enabled. */
|
|
60
|
+
moderation: z.boolean().optional(),
|
|
61
|
+
|
|
62
|
+
/** Feature permissions applied while moderation is enabled. */
|
|
63
|
+
moderationRestrictions: z
|
|
64
|
+
.object({
|
|
65
|
+
chat: RESTRICTION_SCHEMA.optional(),
|
|
66
|
+
defaultJoinAsViewer: z.boolean().optional(),
|
|
67
|
+
present: RESTRICTION_SCHEMA.optional(),
|
|
68
|
+
reactions: RESTRICTION_SCHEMA.optional(),
|
|
69
|
+
})
|
|
70
|
+
.optional(),
|
|
71
|
+
})
|
|
72
|
+
|
|
73
|
+
export const GOOGLE_MEET_SPACE_SCHEMA = z.object({
|
|
74
|
+
/** Active conference record resource name, when a call is running. */
|
|
75
|
+
activeConference: RESOURCE_NAME_SCHEMA.optional(),
|
|
76
|
+
|
|
77
|
+
/** Resolved meeting-space configuration. */
|
|
78
|
+
config: GOOGLE_MEET_SPACE_CONFIG_SCHEMA.optional(),
|
|
79
|
+
|
|
80
|
+
/** SIP gateway entry points. */
|
|
81
|
+
gatewaySipAccess: z
|
|
82
|
+
.object({
|
|
83
|
+
sipAccessCode: z.string().optional(),
|
|
84
|
+
uri: z.string(),
|
|
85
|
+
})
|
|
86
|
+
.array(),
|
|
87
|
+
|
|
88
|
+
/** Typeable meeting code. */
|
|
89
|
+
meetingCode: z.string(),
|
|
90
|
+
|
|
91
|
+
/** Browser join URL. */
|
|
92
|
+
meetingUri: z.url(),
|
|
93
|
+
|
|
94
|
+
/** Stable space resource name. */
|
|
95
|
+
name: RESOURCE_NAME_SCHEMA,
|
|
96
|
+
|
|
97
|
+
/** Regional dial-in entry points. */
|
|
98
|
+
phoneAccess: z
|
|
99
|
+
.object({
|
|
100
|
+
languageCode: z.string().optional(),
|
|
101
|
+
phoneNumber: z.string(),
|
|
102
|
+
pin: z.string(),
|
|
103
|
+
regionCode: z.string().optional(),
|
|
104
|
+
})
|
|
105
|
+
.array(),
|
|
106
|
+
})
|
|
107
|
+
|
|
108
|
+
export const GOOGLE_MEET_CONFERENCE_RECORD_SCHEMA = z.object({
|
|
109
|
+
/** When the conference ended. Omitted while it is active. */
|
|
110
|
+
endTime: TIMESTAMP_SCHEMA.optional(),
|
|
111
|
+
|
|
112
|
+
/** When Google will delete this record. */
|
|
113
|
+
expireTime: TIMESTAMP_SCHEMA.optional(),
|
|
114
|
+
|
|
115
|
+
/** Stable conference-record resource name. */
|
|
116
|
+
name: RESOURCE_NAME_SCHEMA,
|
|
117
|
+
|
|
118
|
+
/** Space resource name where the conference occurred. */
|
|
119
|
+
space: RESOURCE_NAME_SCHEMA,
|
|
120
|
+
|
|
121
|
+
/** When the conference started. */
|
|
122
|
+
startTime: TIMESTAMP_SCHEMA,
|
|
123
|
+
})
|
|
124
|
+
|
|
125
|
+
export const GOOGLE_MEET_CONFERENCE_RECORD_PAGE_SCHEMA = z.object({
|
|
126
|
+
conferenceRecords: GOOGLE_MEET_CONFERENCE_RECORD_SCHEMA.array(),
|
|
127
|
+
nextPageToken: z.string().optional(),
|
|
128
|
+
})
|
|
129
|
+
|
|
130
|
+
export const GOOGLE_MEET_PARTICIPANT_SCHEMA = z.object({
|
|
131
|
+
/** First observed join time. */
|
|
132
|
+
earliestStartTime: TIMESTAMP_SCHEMA.optional(),
|
|
133
|
+
|
|
134
|
+
/** Last observed leave time. Omitted while the participant is active. */
|
|
135
|
+
latestEndTime: TIMESTAMP_SCHEMA.optional(),
|
|
136
|
+
|
|
137
|
+
/** Stable participant resource name. */
|
|
138
|
+
name: GOOGLE_MEET_PARTICIPANT_NAME_SCHEMA,
|
|
139
|
+
|
|
140
|
+
/** Participant identity reported by Meet. */
|
|
141
|
+
user: z.discriminatedUnion("type", [
|
|
142
|
+
z.object({ displayName: z.string(), type: z.literal("anonymous") }),
|
|
143
|
+
z.object({ displayName: z.string(), type: z.literal("phone") }),
|
|
144
|
+
z.object({
|
|
145
|
+
displayName: z.string(),
|
|
146
|
+
type: z.literal("signedIn"),
|
|
147
|
+
user: z.string().optional(),
|
|
148
|
+
}),
|
|
149
|
+
]),
|
|
150
|
+
})
|
|
151
|
+
|
|
152
|
+
export const GOOGLE_MEET_PARTICIPANT_PAGE_SCHEMA = z.object({
|
|
153
|
+
nextPageToken: z.string().optional(),
|
|
154
|
+
participants: GOOGLE_MEET_PARTICIPANT_SCHEMA.array(),
|
|
155
|
+
totalSize: z.number().int().nonnegative().optional(),
|
|
156
|
+
})
|
|
157
|
+
|
|
158
|
+
export const GOOGLE_MEET_PARTICIPANT_SESSION_SCHEMA = z.object({
|
|
159
|
+
/** When the session ended. Omitted while it is active. */
|
|
160
|
+
endTime: TIMESTAMP_SCHEMA.optional(),
|
|
161
|
+
|
|
162
|
+
/** Stable participant-session resource name. */
|
|
163
|
+
name: GOOGLE_MEET_PARTICIPANT_SESSION_NAME_SCHEMA,
|
|
164
|
+
|
|
165
|
+
/** When the session started. */
|
|
166
|
+
startTime: TIMESTAMP_SCHEMA,
|
|
167
|
+
})
|
|
168
|
+
|
|
169
|
+
export const GOOGLE_MEET_PARTICIPANT_SESSION_PAGE_SCHEMA = z.object({
|
|
170
|
+
nextPageToken: z.string().optional(),
|
|
171
|
+
participantSessions: GOOGLE_MEET_PARTICIPANT_SESSION_SCHEMA.array(),
|
|
172
|
+
})
|
|
173
|
+
|
|
174
|
+
const ARTIFACT_STATE_SCHEMA = z.enum(["started", "ended", "fileGenerated"])
|
|
175
|
+
const DOCS_DESTINATION_SCHEMA = z.object({
|
|
176
|
+
documentId: z.string().optional(),
|
|
177
|
+
exportUri: z.url().optional(),
|
|
178
|
+
})
|
|
179
|
+
|
|
180
|
+
export const GOOGLE_MEET_RECORDING_SCHEMA = z.object({
|
|
181
|
+
/** Google Drive destination after file generation completes. */
|
|
182
|
+
driveDestination: z
|
|
183
|
+
.object({
|
|
184
|
+
exportUri: z.url().optional(),
|
|
185
|
+
fileId: z.string().optional(),
|
|
186
|
+
})
|
|
187
|
+
.optional(),
|
|
188
|
+
|
|
189
|
+
/** When recording stopped. */
|
|
190
|
+
endTime: TIMESTAMP_SCHEMA.optional(),
|
|
191
|
+
|
|
192
|
+
/** Stable recording resource name. */
|
|
193
|
+
name: GOOGLE_MEET_RECORDING_NAME_SCHEMA,
|
|
194
|
+
|
|
195
|
+
/** When recording started. */
|
|
196
|
+
startTime: TIMESTAMP_SCHEMA.optional(),
|
|
197
|
+
|
|
198
|
+
/** Recording generation state. */
|
|
199
|
+
state: ARTIFACT_STATE_SCHEMA,
|
|
200
|
+
})
|
|
201
|
+
|
|
202
|
+
export const GOOGLE_MEET_RECORDING_PAGE_SCHEMA = z.object({
|
|
203
|
+
nextPageToken: z.string().optional(),
|
|
204
|
+
recordings: GOOGLE_MEET_RECORDING_SCHEMA.array(),
|
|
205
|
+
})
|
|
206
|
+
|
|
207
|
+
export const GOOGLE_MEET_TRANSCRIPT_SCHEMA = z.object({
|
|
208
|
+
/** Google Docs destination after file generation completes. */
|
|
209
|
+
docsDestination: DOCS_DESTINATION_SCHEMA.optional(),
|
|
210
|
+
|
|
211
|
+
/** When transcription stopped. */
|
|
212
|
+
endTime: TIMESTAMP_SCHEMA.optional(),
|
|
213
|
+
|
|
214
|
+
/** Stable transcript resource name. */
|
|
215
|
+
name: GOOGLE_MEET_TRANSCRIPT_NAME_SCHEMA,
|
|
216
|
+
|
|
217
|
+
/** When transcription started. */
|
|
218
|
+
startTime: TIMESTAMP_SCHEMA.optional(),
|
|
219
|
+
|
|
220
|
+
/** Transcript generation state. */
|
|
221
|
+
state: ARTIFACT_STATE_SCHEMA,
|
|
222
|
+
})
|
|
223
|
+
|
|
224
|
+
export const GOOGLE_MEET_TRANSCRIPT_PAGE_SCHEMA = z.object({
|
|
225
|
+
nextPageToken: z.string().optional(),
|
|
226
|
+
transcripts: GOOGLE_MEET_TRANSCRIPT_SCHEMA.array(),
|
|
227
|
+
})
|
|
228
|
+
|
|
229
|
+
export const GOOGLE_MEET_TRANSCRIPT_ENTRY_SCHEMA = z.object({
|
|
230
|
+
/** When this spoken segment ended. */
|
|
231
|
+
endTime: TIMESTAMP_SCHEMA,
|
|
232
|
+
|
|
233
|
+
/** BCP 47 language code detected for the segment. */
|
|
234
|
+
languageCode: z.string(),
|
|
235
|
+
|
|
236
|
+
/** Stable transcript-entry resource name. */
|
|
237
|
+
name: GOOGLE_MEET_TRANSCRIPT_ENTRY_NAME_SCHEMA,
|
|
238
|
+
|
|
239
|
+
/** Participant resource name for the speaker. */
|
|
240
|
+
participant: GOOGLE_MEET_PARTICIPANT_NAME_SCHEMA,
|
|
241
|
+
|
|
242
|
+
/** When this spoken segment started. */
|
|
243
|
+
startTime: TIMESTAMP_SCHEMA,
|
|
244
|
+
|
|
245
|
+
/** Transcribed speech. */
|
|
246
|
+
text: z.string(),
|
|
247
|
+
})
|
|
248
|
+
|
|
249
|
+
export const GOOGLE_MEET_TRANSCRIPT_ENTRY_PAGE_SCHEMA = z.object({
|
|
250
|
+
nextPageToken: z.string().optional(),
|
|
251
|
+
transcriptEntries: GOOGLE_MEET_TRANSCRIPT_ENTRY_SCHEMA.array(),
|
|
252
|
+
})
|
|
253
|
+
|
|
254
|
+
export const GOOGLE_MEET_SMART_NOTE_SCHEMA = z.object({
|
|
255
|
+
/** Google Docs destination after file generation completes. */
|
|
256
|
+
docsDestination: DOCS_DESTINATION_SCHEMA.optional(),
|
|
257
|
+
|
|
258
|
+
/** When smart-note capture stopped. */
|
|
259
|
+
endTime: TIMESTAMP_SCHEMA.optional(),
|
|
260
|
+
|
|
261
|
+
/** Stable smart-note resource name. */
|
|
262
|
+
name: GOOGLE_MEET_SMART_NOTE_NAME_SCHEMA,
|
|
263
|
+
|
|
264
|
+
/** When smart-note capture started. */
|
|
265
|
+
startTime: TIMESTAMP_SCHEMA.optional(),
|
|
266
|
+
|
|
267
|
+
/** Smart-note generation state. */
|
|
268
|
+
state: ARTIFACT_STATE_SCHEMA,
|
|
269
|
+
})
|
|
270
|
+
|
|
271
|
+
export const GOOGLE_MEET_SMART_NOTE_PAGE_SCHEMA = z.object({
|
|
272
|
+
nextPageToken: z.string().optional(),
|
|
273
|
+
smartNotes: GOOGLE_MEET_SMART_NOTE_SCHEMA.array(),
|
|
274
|
+
})
|
package/src/linear/schemas.ts
CHANGED
|
@@ -550,6 +550,9 @@ export const LINEAR_USER_SCHEMA = LINEAR_USER_REFERENCE_SCHEMA.extend({
|
|
|
550
550
|
/** Whether this user owns the workspace. */
|
|
551
551
|
owner: z.boolean(),
|
|
552
552
|
|
|
553
|
+
/** Whether this app user can run Linear agent sessions. */
|
|
554
|
+
supportsAgentSessions: z.boolean(),
|
|
555
|
+
|
|
553
556
|
/** IANA time zone configured for the user. */
|
|
554
557
|
timezone: z.string().nullable(),
|
|
555
558
|
|
|
@@ -704,6 +707,83 @@ export const LINEAR_ISSUE_REFERENCE_SCHEMA = z.object({
|
|
|
704
707
|
url: z.string(),
|
|
705
708
|
})
|
|
706
709
|
|
|
710
|
+
/** Lifecycle states returned for Linear agent sessions. */
|
|
711
|
+
export const LINEAR_AGENT_SESSION_STATUS_SCHEMA = z.enum([
|
|
712
|
+
"pending",
|
|
713
|
+
"active",
|
|
714
|
+
"awaitingInput",
|
|
715
|
+
"complete",
|
|
716
|
+
"error",
|
|
717
|
+
"stale",
|
|
718
|
+
])
|
|
719
|
+
|
|
720
|
+
/** Lifecycle states returned for one Linear agent-session plan step. */
|
|
721
|
+
export const LINEAR_AGENT_SESSION_PLAN_ITEM_STATUS_SCHEMA = z.enum([
|
|
722
|
+
"pending",
|
|
723
|
+
"inProgress",
|
|
724
|
+
"completed",
|
|
725
|
+
"canceled",
|
|
726
|
+
])
|
|
727
|
+
|
|
728
|
+
/** One step in a Linear agent session's execution plan. */
|
|
729
|
+
export const LINEAR_AGENT_SESSION_PLAN_ITEM_SCHEMA = z.object({
|
|
730
|
+
/** Human-readable work planned for this step. */
|
|
731
|
+
content: z.string(),
|
|
732
|
+
|
|
733
|
+
/** Current lifecycle state of the plan step. */
|
|
734
|
+
status: LINEAR_AGENT_SESSION_PLAN_ITEM_STATUS_SCHEMA,
|
|
735
|
+
})
|
|
736
|
+
|
|
737
|
+
/** One coding or other agent session attached to a Linear issue. */
|
|
738
|
+
export const LINEAR_AGENT_SESSION_SCHEMA = z.object({
|
|
739
|
+
/** Agent app user running the session. */
|
|
740
|
+
appUser: LINEAR_USER_REFERENCE_SCHEMA,
|
|
741
|
+
|
|
742
|
+
/** When the session was created. */
|
|
743
|
+
createdAt: LINEAR_DATE_TIME_SCHEMA,
|
|
744
|
+
|
|
745
|
+
/** When the session was dismissed, or `null` while retained. */
|
|
746
|
+
dismissedAt: LINEAR_DATE_TIME_SCHEMA.nullable(),
|
|
747
|
+
|
|
748
|
+
/** When the session finished, or `null` while unfinished. */
|
|
749
|
+
endedAt: LINEAR_DATE_TIME_SCHEMA.nullable(),
|
|
750
|
+
|
|
751
|
+
/** External resources attached to the session. */
|
|
752
|
+
externalLinks: z
|
|
753
|
+
.object({
|
|
754
|
+
label: z.string(),
|
|
755
|
+
url: z.string(),
|
|
756
|
+
})
|
|
757
|
+
.array(),
|
|
758
|
+
|
|
759
|
+
/** Stable Linear agent-session ID. */
|
|
760
|
+
id: z.string(),
|
|
761
|
+
|
|
762
|
+
/** Issue whose context started the session. */
|
|
763
|
+
issue: LINEAR_ISSUE_REFERENCE_SCHEMA.nullable(),
|
|
764
|
+
|
|
765
|
+
/** Ordered execution plan reported by the agent, or `null` before one is set. */
|
|
766
|
+
plan: LINEAR_AGENT_SESSION_PLAN_ITEM_SCHEMA.array().nullable(),
|
|
767
|
+
|
|
768
|
+
/** URL-safe Linear session identifier. */
|
|
769
|
+
slugId: z.string(),
|
|
770
|
+
|
|
771
|
+
/** When the agent began work, or `null` while pending. */
|
|
772
|
+
startedAt: LINEAR_DATE_TIME_SCHEMA.nullable(),
|
|
773
|
+
|
|
774
|
+
/** Current session lifecycle state. */
|
|
775
|
+
status: LINEAR_AGENT_SESSION_STATUS_SCHEMA,
|
|
776
|
+
|
|
777
|
+
/** Human-readable result summary, when available. */
|
|
778
|
+
summary: z.string().nullable(),
|
|
779
|
+
|
|
780
|
+
/** When the session was last updated. */
|
|
781
|
+
updatedAt: LINEAR_DATE_TIME_SCHEMA,
|
|
782
|
+
|
|
783
|
+
/** Linear page for the session, when available. */
|
|
784
|
+
url: z.string().nullable(),
|
|
785
|
+
})
|
|
786
|
+
|
|
707
787
|
export const LINEAR_PROJECT_STATUS_SCHEMA = z.object({
|
|
708
788
|
/** Project status display color. */
|
|
709
789
|
color: z.string(),
|
|
@@ -832,6 +912,9 @@ export const LINEAR_ISSUE_SCHEMA = z.object({
|
|
|
832
912
|
/** Markdown issue description. */
|
|
833
913
|
description: z.string().nullable(),
|
|
834
914
|
|
|
915
|
+
/** Agent currently delegated to work on the issue. */
|
|
916
|
+
delegate: LINEAR_USER_REFERENCE_SCHEMA.nullable(),
|
|
917
|
+
|
|
835
918
|
/** Issue due date. */
|
|
836
919
|
dueDate: z.iso.date().nullable(),
|
|
837
920
|
|
package/src/triggers.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { githubTriggerContracts } from "./github"
|
|
|
5
5
|
import { gmailTriggerContracts } from "./gmail"
|
|
6
6
|
import { googleCalendarTriggerContracts } from "./google-calendar"
|
|
7
7
|
import { googleFormsTriggerContracts } from "./google-forms"
|
|
8
|
+
import { googleMeetTriggerContracts } from "./google-meet"
|
|
8
9
|
import { linearTriggerContracts } from "./linear"
|
|
9
10
|
import { outlookTriggerContracts } from "./outlook"
|
|
10
11
|
import { resendTriggerContracts } from "./resend"
|
|
@@ -22,6 +23,7 @@ type IntegrationTriggerContracts = typeof airtableTriggerContracts &
|
|
|
22
23
|
typeof gmailTriggerContracts &
|
|
23
24
|
typeof googleCalendarTriggerContracts &
|
|
24
25
|
typeof googleFormsTriggerContracts &
|
|
26
|
+
typeof googleMeetTriggerContracts &
|
|
25
27
|
typeof linearTriggerContracts &
|
|
26
28
|
typeof outlookTriggerContracts &
|
|
27
29
|
typeof resendTriggerContracts &
|
|
@@ -40,6 +42,7 @@ export const triggerContracts: IntegrationTriggerContracts = {
|
|
|
40
42
|
...gmailTriggerContracts,
|
|
41
43
|
...googleCalendarTriggerContracts,
|
|
42
44
|
...googleFormsTriggerContracts,
|
|
45
|
+
...googleMeetTriggerContracts,
|
|
43
46
|
...linearTriggerContracts,
|
|
44
47
|
...outlookTriggerContracts,
|
|
45
48
|
...resendTriggerContracts,
|