@automate.ax/catalog 0.55.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/LICENSE +21 -0
- package/README.md +3 -0
- package/dist/catalog.d.ts +1106 -0
- package/dist/catalog.js +349 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/triggers/airtable.d.ts +62 -0
- package/dist/triggers/airtable.js +36 -0
- package/dist/triggers/asana.d.ts +65 -0
- package/dist/triggers/asana.js +39 -0
- package/dist/triggers/brevo.d.ts +111 -0
- package/dist/triggers/brevo.js +65 -0
- package/dist/triggers/core.d.ts +50 -0
- package/dist/triggers/core.js +74 -0
- package/dist/triggers/github.d.ts +228 -0
- package/dist/triggers/github.js +136 -0
- package/dist/triggers/google.d.ts +126 -0
- package/dist/triggers/google.js +143 -0
- package/dist/triggers/index.d.ts +2598 -0
- package/dist/triggers/index.js +97 -0
- package/dist/triggers/linear.d.ts +110 -0
- package/dist/triggers/linear.js +59 -0
- package/dist/triggers/microsoft.d.ts +40 -0
- package/dist/triggers/microsoft.js +60 -0
- package/dist/triggers/resend.d.ts +110 -0
- package/dist/triggers/resend.js +59 -0
- package/dist/triggers/slack.d.ts +41 -0
- package/dist/triggers/slack.js +53 -0
- package/dist/triggers/trello.d.ts +56 -0
- package/dist/triggers/trello.js +35 -0
- package/dist/triggers/vercel.d.ts +279 -0
- package/dist/triggers/vercel.js +163 -0
- package/dist/triggers/whatsapp.d.ts +65 -0
- package/dist/triggers/whatsapp.js +39 -0
- package/dist/types.d.ts +134 -0
- package/dist/types.js +59 -0
- package/package.json +70 -0
- package/src/catalog.ts +403 -0
- package/src/index.ts +68 -0
- package/src/triggers/airtable.ts +39 -0
- package/src/triggers/asana.ts +42 -0
- package/src/triggers/brevo.ts +68 -0
- package/src/triggers/core.ts +93 -0
- package/src/triggers/github.ts +142 -0
- package/src/triggers/google.ts +149 -0
- package/src/triggers/index.ts +128 -0
- package/src/triggers/linear.ts +62 -0
- package/src/triggers/microsoft.ts +65 -0
- package/src/triggers/resend.ts +62 -0
- package/src/triggers/slack.ts +58 -0
- package/src/triggers/trello.ts +38 -0
- package/src/triggers/vercel.ts +170 -0
- package/src/triggers/whatsapp.ts +42 -0
- package/src/types.ts +219 -0
|
@@ -0,0 +1,2598 @@
|
|
|
1
|
+
import type { TriggerDefinition, TriggerPresentation, TriggerPresentationContext } from "../types.js";
|
|
2
|
+
export { getHttpTriggerEndpoint, getHttpTriggerEndpointKey, type HttpTriggerEndpointOptions, type HttpTriggerScope, } from "./core.js";
|
|
3
|
+
/** Plain shared definitions for every public trigger type. */
|
|
4
|
+
export declare const triggerDefinitions: {
|
|
5
|
+
readonly whatsappMessageDelivered: {
|
|
6
|
+
readonly account: {
|
|
7
|
+
readonly connectionOptions: readonly [{
|
|
8
|
+
readonly requiredScopes: readonly ["whatsapp_business_messaging"];
|
|
9
|
+
}];
|
|
10
|
+
readonly serviceId: "whatsapp";
|
|
11
|
+
};
|
|
12
|
+
readonly type: "whatsapp.message.delivered";
|
|
13
|
+
};
|
|
14
|
+
readonly whatsappMessageFailed: {
|
|
15
|
+
readonly account: {
|
|
16
|
+
readonly connectionOptions: readonly [{
|
|
17
|
+
readonly requiredScopes: readonly ["whatsapp_business_messaging"];
|
|
18
|
+
}];
|
|
19
|
+
readonly serviceId: "whatsapp";
|
|
20
|
+
};
|
|
21
|
+
readonly type: "whatsapp.message.failed";
|
|
22
|
+
};
|
|
23
|
+
readonly whatsappMessagePlayed: {
|
|
24
|
+
readonly account: {
|
|
25
|
+
readonly connectionOptions: readonly [{
|
|
26
|
+
readonly requiredScopes: readonly ["whatsapp_business_messaging"];
|
|
27
|
+
}];
|
|
28
|
+
readonly serviceId: "whatsapp";
|
|
29
|
+
};
|
|
30
|
+
readonly type: "whatsapp.message.played";
|
|
31
|
+
};
|
|
32
|
+
readonly whatsappMessageRead: {
|
|
33
|
+
readonly account: {
|
|
34
|
+
readonly connectionOptions: readonly [{
|
|
35
|
+
readonly requiredScopes: readonly ["whatsapp_business_messaging"];
|
|
36
|
+
}];
|
|
37
|
+
readonly serviceId: "whatsapp";
|
|
38
|
+
};
|
|
39
|
+
readonly type: "whatsapp.message.read";
|
|
40
|
+
};
|
|
41
|
+
readonly whatsappMessageReceived: {
|
|
42
|
+
readonly account: {
|
|
43
|
+
readonly connectionOptions: readonly [{
|
|
44
|
+
readonly requiredScopes: readonly ["whatsapp_business_messaging"];
|
|
45
|
+
}];
|
|
46
|
+
readonly serviceId: "whatsapp";
|
|
47
|
+
};
|
|
48
|
+
readonly type: "whatsapp.message.received";
|
|
49
|
+
};
|
|
50
|
+
readonly whatsappMessageSent: {
|
|
51
|
+
readonly account: {
|
|
52
|
+
readonly connectionOptions: readonly [{
|
|
53
|
+
readonly requiredScopes: readonly ["whatsapp_business_messaging"];
|
|
54
|
+
}];
|
|
55
|
+
readonly serviceId: "whatsapp";
|
|
56
|
+
};
|
|
57
|
+
readonly type: "whatsapp.message.sent";
|
|
58
|
+
};
|
|
59
|
+
readonly whatsappMessageStatusEvent: {
|
|
60
|
+
readonly account: {
|
|
61
|
+
readonly connectionOptions: readonly [{
|
|
62
|
+
readonly requiredScopes: readonly ["whatsapp_business_messaging"];
|
|
63
|
+
}];
|
|
64
|
+
readonly serviceId: "whatsapp";
|
|
65
|
+
};
|
|
66
|
+
readonly type: "whatsapp.message.statusEvent";
|
|
67
|
+
};
|
|
68
|
+
readonly vercelDeployment: {
|
|
69
|
+
readonly account: {
|
|
70
|
+
readonly connectionOptions: readonly [{
|
|
71
|
+
readonly connectionId: "oauth";
|
|
72
|
+
readonly requiredScopes: readonly ["deployment:read"];
|
|
73
|
+
}];
|
|
74
|
+
readonly serviceId: "vercel";
|
|
75
|
+
};
|
|
76
|
+
readonly name: "Vercel deployment event";
|
|
77
|
+
readonly type: "vercel.deployment";
|
|
78
|
+
};
|
|
79
|
+
readonly vercelDeploymentCanceled: {
|
|
80
|
+
readonly account: {
|
|
81
|
+
readonly connectionOptions: readonly [{
|
|
82
|
+
readonly connectionId: "oauth";
|
|
83
|
+
readonly requiredScopes: readonly ["deployment:read"];
|
|
84
|
+
}];
|
|
85
|
+
readonly serviceId: "vercel";
|
|
86
|
+
};
|
|
87
|
+
readonly type: "vercel.deployment.canceled";
|
|
88
|
+
};
|
|
89
|
+
readonly vercelDeploymentCreated: {
|
|
90
|
+
readonly account: {
|
|
91
|
+
readonly connectionOptions: readonly [{
|
|
92
|
+
readonly connectionId: "oauth";
|
|
93
|
+
readonly requiredScopes: readonly ["deployment:read"];
|
|
94
|
+
}];
|
|
95
|
+
readonly serviceId: "vercel";
|
|
96
|
+
};
|
|
97
|
+
readonly type: "vercel.deployment.created";
|
|
98
|
+
};
|
|
99
|
+
readonly vercelDeploymentFailed: {
|
|
100
|
+
readonly account: {
|
|
101
|
+
readonly connectionOptions: readonly [{
|
|
102
|
+
readonly connectionId: "oauth";
|
|
103
|
+
readonly requiredScopes: readonly ["deployment:read"];
|
|
104
|
+
}];
|
|
105
|
+
readonly serviceId: "vercel";
|
|
106
|
+
};
|
|
107
|
+
readonly type: "vercel.deployment.failed";
|
|
108
|
+
};
|
|
109
|
+
readonly vercelDeploymentPromoted: {
|
|
110
|
+
readonly account: {
|
|
111
|
+
readonly connectionOptions: readonly [{
|
|
112
|
+
readonly connectionId: "oauth";
|
|
113
|
+
readonly requiredScopes: readonly ["deployment:read"];
|
|
114
|
+
}];
|
|
115
|
+
readonly serviceId: "vercel";
|
|
116
|
+
};
|
|
117
|
+
readonly type: "vercel.deployment.promoted";
|
|
118
|
+
};
|
|
119
|
+
readonly vercelDeploymentReady: {
|
|
120
|
+
readonly account: {
|
|
121
|
+
readonly connectionOptions: readonly [{
|
|
122
|
+
readonly connectionId: "oauth";
|
|
123
|
+
readonly requiredScopes: readonly ["deployment:read"];
|
|
124
|
+
}];
|
|
125
|
+
readonly serviceId: "vercel";
|
|
126
|
+
};
|
|
127
|
+
readonly type: "vercel.deployment.ready";
|
|
128
|
+
};
|
|
129
|
+
readonly vercelDeploymentSucceeded: {
|
|
130
|
+
readonly account: {
|
|
131
|
+
readonly connectionOptions: readonly [{
|
|
132
|
+
readonly connectionId: "oauth";
|
|
133
|
+
readonly requiredScopes: readonly ["deployment:read"];
|
|
134
|
+
}];
|
|
135
|
+
readonly serviceId: "vercel";
|
|
136
|
+
};
|
|
137
|
+
readonly type: "vercel.deployment.succeeded";
|
|
138
|
+
};
|
|
139
|
+
readonly vercelIntegrationConfiguration: {
|
|
140
|
+
readonly account: {
|
|
141
|
+
readonly connectionOptions: readonly [{
|
|
142
|
+
readonly connectionId: "oauth";
|
|
143
|
+
readonly requiredScopes: readonly [];
|
|
144
|
+
}];
|
|
145
|
+
readonly serviceId: "vercel";
|
|
146
|
+
};
|
|
147
|
+
readonly name: "Vercel integration configuration event";
|
|
148
|
+
readonly type: "vercel.integration-configuration";
|
|
149
|
+
};
|
|
150
|
+
readonly vercelIntegrationConfigurationPermissionUpgraded: {
|
|
151
|
+
readonly account: {
|
|
152
|
+
readonly connectionOptions: readonly [{
|
|
153
|
+
readonly connectionId: "oauth";
|
|
154
|
+
readonly requiredScopes: readonly [];
|
|
155
|
+
}];
|
|
156
|
+
readonly serviceId: "vercel";
|
|
157
|
+
};
|
|
158
|
+
readonly name: "Vercel integration permission upgraded";
|
|
159
|
+
readonly type: "vercel.integration-configuration.permissionUpgraded";
|
|
160
|
+
};
|
|
161
|
+
readonly vercelIntegrationConfigurationRemoved: {
|
|
162
|
+
readonly account: {
|
|
163
|
+
readonly connectionOptions: readonly [{
|
|
164
|
+
readonly connectionId: "oauth";
|
|
165
|
+
readonly requiredScopes: readonly [];
|
|
166
|
+
}];
|
|
167
|
+
readonly serviceId: "vercel";
|
|
168
|
+
};
|
|
169
|
+
readonly type: "vercel.integration-configuration.removed";
|
|
170
|
+
};
|
|
171
|
+
readonly vercelIntegrationConfigurationScopeChangeConfirmed: {
|
|
172
|
+
readonly account: {
|
|
173
|
+
readonly connectionOptions: readonly [{
|
|
174
|
+
readonly connectionId: "oauth";
|
|
175
|
+
readonly requiredScopes: readonly [];
|
|
176
|
+
}];
|
|
177
|
+
readonly serviceId: "vercel";
|
|
178
|
+
};
|
|
179
|
+
readonly name: "Vercel integration scope change confirmed";
|
|
180
|
+
readonly type: "vercel.integration-configuration.scopeChangeConfirmed";
|
|
181
|
+
};
|
|
182
|
+
readonly vercelIntegrationConfigurationTransferred: {
|
|
183
|
+
readonly account: {
|
|
184
|
+
readonly connectionOptions: readonly [{
|
|
185
|
+
readonly connectionId: "oauth";
|
|
186
|
+
readonly requiredScopes: readonly [];
|
|
187
|
+
}];
|
|
188
|
+
readonly serviceId: "vercel";
|
|
189
|
+
};
|
|
190
|
+
readonly type: "vercel.integration-configuration.transferred";
|
|
191
|
+
};
|
|
192
|
+
readonly vercelProject: {
|
|
193
|
+
readonly account: {
|
|
194
|
+
readonly connectionOptions: readonly [{
|
|
195
|
+
readonly connectionId: "oauth";
|
|
196
|
+
readonly requiredScopes: readonly ["project:read"];
|
|
197
|
+
}];
|
|
198
|
+
readonly serviceId: "vercel";
|
|
199
|
+
};
|
|
200
|
+
readonly name: "Vercel project event";
|
|
201
|
+
readonly type: "vercel.project";
|
|
202
|
+
};
|
|
203
|
+
readonly vercelProjectCreated: {
|
|
204
|
+
readonly account: {
|
|
205
|
+
readonly connectionOptions: readonly [{
|
|
206
|
+
readonly connectionId: "oauth";
|
|
207
|
+
readonly requiredScopes: readonly ["project:read"];
|
|
208
|
+
}];
|
|
209
|
+
readonly serviceId: "vercel";
|
|
210
|
+
};
|
|
211
|
+
readonly type: "vercel.project.created";
|
|
212
|
+
};
|
|
213
|
+
readonly vercelProjectDomain: {
|
|
214
|
+
readonly account: {
|
|
215
|
+
readonly connectionOptions: readonly [{
|
|
216
|
+
readonly connectionId: "oauth";
|
|
217
|
+
readonly requiredScopes: readonly ["domain:read"];
|
|
218
|
+
}];
|
|
219
|
+
readonly serviceId: "vercel";
|
|
220
|
+
};
|
|
221
|
+
readonly name: "Vercel project domain event";
|
|
222
|
+
readonly type: "vercel.project-domain";
|
|
223
|
+
};
|
|
224
|
+
readonly vercelProjectDomainCreated: {
|
|
225
|
+
readonly account: {
|
|
226
|
+
readonly connectionOptions: readonly [{
|
|
227
|
+
readonly connectionId: "oauth";
|
|
228
|
+
readonly requiredScopes: readonly ["domain:read"];
|
|
229
|
+
}];
|
|
230
|
+
readonly serviceId: "vercel";
|
|
231
|
+
};
|
|
232
|
+
readonly type: "vercel.project-domain.created";
|
|
233
|
+
};
|
|
234
|
+
readonly vercelProjectDomainDeleted: {
|
|
235
|
+
readonly account: {
|
|
236
|
+
readonly connectionOptions: readonly [{
|
|
237
|
+
readonly connectionId: "oauth";
|
|
238
|
+
readonly requiredScopes: readonly ["domain:read"];
|
|
239
|
+
}];
|
|
240
|
+
readonly serviceId: "vercel";
|
|
241
|
+
};
|
|
242
|
+
readonly type: "vercel.project-domain.deleted";
|
|
243
|
+
};
|
|
244
|
+
readonly vercelProjectDomainMoved: {
|
|
245
|
+
readonly account: {
|
|
246
|
+
readonly connectionOptions: readonly [{
|
|
247
|
+
readonly connectionId: "oauth";
|
|
248
|
+
readonly requiredScopes: readonly ["domain:read"];
|
|
249
|
+
}];
|
|
250
|
+
readonly serviceId: "vercel";
|
|
251
|
+
};
|
|
252
|
+
readonly type: "vercel.project-domain.moved";
|
|
253
|
+
};
|
|
254
|
+
readonly vercelProjectDomainUnverified: {
|
|
255
|
+
readonly account: {
|
|
256
|
+
readonly connectionOptions: readonly [{
|
|
257
|
+
readonly connectionId: "oauth";
|
|
258
|
+
readonly requiredScopes: readonly ["domain:read"];
|
|
259
|
+
}];
|
|
260
|
+
readonly serviceId: "vercel";
|
|
261
|
+
};
|
|
262
|
+
readonly type: "vercel.project-domain.unverified";
|
|
263
|
+
};
|
|
264
|
+
readonly vercelProjectDomainUpdated: {
|
|
265
|
+
readonly account: {
|
|
266
|
+
readonly connectionOptions: readonly [{
|
|
267
|
+
readonly connectionId: "oauth";
|
|
268
|
+
readonly requiredScopes: readonly ["domain:read"];
|
|
269
|
+
}];
|
|
270
|
+
readonly serviceId: "vercel";
|
|
271
|
+
};
|
|
272
|
+
readonly type: "vercel.project-domain.updated";
|
|
273
|
+
};
|
|
274
|
+
readonly vercelProjectDomainVerified: {
|
|
275
|
+
readonly account: {
|
|
276
|
+
readonly connectionOptions: readonly [{
|
|
277
|
+
readonly connectionId: "oauth";
|
|
278
|
+
readonly requiredScopes: readonly ["domain:read"];
|
|
279
|
+
}];
|
|
280
|
+
readonly serviceId: "vercel";
|
|
281
|
+
};
|
|
282
|
+
readonly type: "vercel.project-domain.verified";
|
|
283
|
+
};
|
|
284
|
+
readonly vercelProjectEnvironmentVariable: {
|
|
285
|
+
readonly account: {
|
|
286
|
+
readonly connectionOptions: readonly [{
|
|
287
|
+
readonly connectionId: "oauth";
|
|
288
|
+
readonly requiredScopes: readonly ["global-project-env-vars:read"];
|
|
289
|
+
}];
|
|
290
|
+
readonly serviceId: "vercel";
|
|
291
|
+
};
|
|
292
|
+
readonly name: "Vercel project environment variable event";
|
|
293
|
+
readonly type: "vercel.project-environment-variable";
|
|
294
|
+
};
|
|
295
|
+
readonly vercelProjectEnvironmentVariableCreated: {
|
|
296
|
+
readonly account: {
|
|
297
|
+
readonly connectionOptions: readonly [{
|
|
298
|
+
readonly connectionId: "oauth";
|
|
299
|
+
readonly requiredScopes: readonly ["global-project-env-vars:read"];
|
|
300
|
+
}];
|
|
301
|
+
readonly serviceId: "vercel";
|
|
302
|
+
};
|
|
303
|
+
readonly type: "vercel.project-environment-variable.created";
|
|
304
|
+
};
|
|
305
|
+
readonly vercelProjectEnvironmentVariableDeleted: {
|
|
306
|
+
readonly account: {
|
|
307
|
+
readonly connectionOptions: readonly [{
|
|
308
|
+
readonly connectionId: "oauth";
|
|
309
|
+
readonly requiredScopes: readonly ["global-project-env-vars:read"];
|
|
310
|
+
}];
|
|
311
|
+
readonly serviceId: "vercel";
|
|
312
|
+
};
|
|
313
|
+
readonly type: "vercel.project-environment-variable.deleted";
|
|
314
|
+
};
|
|
315
|
+
readonly vercelProjectEnvironmentVariableUpdated: {
|
|
316
|
+
readonly account: {
|
|
317
|
+
readonly connectionOptions: readonly [{
|
|
318
|
+
readonly connectionId: "oauth";
|
|
319
|
+
readonly requiredScopes: readonly ["global-project-env-vars:read"];
|
|
320
|
+
}];
|
|
321
|
+
readonly serviceId: "vercel";
|
|
322
|
+
};
|
|
323
|
+
readonly type: "vercel.project-environment-variable.updated";
|
|
324
|
+
};
|
|
325
|
+
readonly vercelProjectRemoved: {
|
|
326
|
+
readonly account: {
|
|
327
|
+
readonly connectionOptions: readonly [{
|
|
328
|
+
readonly connectionId: "oauth";
|
|
329
|
+
readonly requiredScopes: readonly ["project:read"];
|
|
330
|
+
}];
|
|
331
|
+
readonly serviceId: "vercel";
|
|
332
|
+
};
|
|
333
|
+
readonly type: "vercel.project.removed";
|
|
334
|
+
};
|
|
335
|
+
readonly vercelProjectRenamed: {
|
|
336
|
+
readonly account: {
|
|
337
|
+
readonly connectionOptions: readonly [{
|
|
338
|
+
readonly connectionId: "oauth";
|
|
339
|
+
readonly requiredScopes: readonly ["project:read"];
|
|
340
|
+
}];
|
|
341
|
+
readonly serviceId: "vercel";
|
|
342
|
+
};
|
|
343
|
+
readonly type: "vercel.project.renamed";
|
|
344
|
+
};
|
|
345
|
+
readonly trelloBoardEvent: {
|
|
346
|
+
readonly account: {
|
|
347
|
+
readonly connectionOptions: readonly [{
|
|
348
|
+
readonly requiredScopes: readonly [];
|
|
349
|
+
}];
|
|
350
|
+
readonly serviceId: "trello";
|
|
351
|
+
};
|
|
352
|
+
readonly type: "trello.board.event";
|
|
353
|
+
};
|
|
354
|
+
readonly trelloCardArchived: {
|
|
355
|
+
readonly account: {
|
|
356
|
+
readonly connectionOptions: readonly [{
|
|
357
|
+
readonly requiredScopes: readonly [];
|
|
358
|
+
}];
|
|
359
|
+
readonly serviceId: "trello";
|
|
360
|
+
};
|
|
361
|
+
readonly type: "trello.card.archived";
|
|
362
|
+
};
|
|
363
|
+
readonly trelloCardCommented: {
|
|
364
|
+
readonly account: {
|
|
365
|
+
readonly connectionOptions: readonly [{
|
|
366
|
+
readonly requiredScopes: readonly [];
|
|
367
|
+
}];
|
|
368
|
+
readonly serviceId: "trello";
|
|
369
|
+
};
|
|
370
|
+
readonly type: "trello.card.commented";
|
|
371
|
+
};
|
|
372
|
+
readonly trelloCardCreated: {
|
|
373
|
+
readonly account: {
|
|
374
|
+
readonly connectionOptions: readonly [{
|
|
375
|
+
readonly requiredScopes: readonly [];
|
|
376
|
+
}];
|
|
377
|
+
readonly serviceId: "trello";
|
|
378
|
+
};
|
|
379
|
+
readonly type: "trello.card.created";
|
|
380
|
+
};
|
|
381
|
+
readonly trelloCardMoved: {
|
|
382
|
+
readonly account: {
|
|
383
|
+
readonly connectionOptions: readonly [{
|
|
384
|
+
readonly requiredScopes: readonly [];
|
|
385
|
+
}];
|
|
386
|
+
readonly serviceId: "trello";
|
|
387
|
+
};
|
|
388
|
+
readonly type: "trello.card.moved";
|
|
389
|
+
};
|
|
390
|
+
readonly trelloCardUpdated: {
|
|
391
|
+
readonly account: {
|
|
392
|
+
readonly connectionOptions: readonly [{
|
|
393
|
+
readonly requiredScopes: readonly [];
|
|
394
|
+
}];
|
|
395
|
+
readonly serviceId: "trello";
|
|
396
|
+
};
|
|
397
|
+
readonly type: "trello.card.updated";
|
|
398
|
+
};
|
|
399
|
+
readonly slackAppMentioned: {
|
|
400
|
+
readonly account: {
|
|
401
|
+
readonly connectionOptions: readonly [{
|
|
402
|
+
readonly requiredScopes: readonly ["app_mentions:read"];
|
|
403
|
+
}];
|
|
404
|
+
readonly serviceId: "slack";
|
|
405
|
+
};
|
|
406
|
+
readonly type: "slack.app.mentioned";
|
|
407
|
+
};
|
|
408
|
+
readonly slackMessagePosted: {
|
|
409
|
+
readonly account: {
|
|
410
|
+
readonly connectionOptions: readonly [{
|
|
411
|
+
readonly requiredScopes: readonly [{
|
|
412
|
+
readonly requirements: readonly ["channels:history", "groups:history", "im:history", "mpim:history"];
|
|
413
|
+
readonly type: "and";
|
|
414
|
+
}];
|
|
415
|
+
}];
|
|
416
|
+
readonly serviceId: "slack";
|
|
417
|
+
};
|
|
418
|
+
readonly type: "slack.message.posted";
|
|
419
|
+
};
|
|
420
|
+
readonly slackReactionAdded: {
|
|
421
|
+
readonly account: {
|
|
422
|
+
readonly connectionOptions: readonly [{
|
|
423
|
+
readonly requiredScopes: readonly ["reactions:read"];
|
|
424
|
+
}];
|
|
425
|
+
readonly serviceId: "slack";
|
|
426
|
+
};
|
|
427
|
+
readonly type: "slack.reaction.added";
|
|
428
|
+
};
|
|
429
|
+
readonly slackReactionRemoved: {
|
|
430
|
+
readonly account: {
|
|
431
|
+
readonly connectionOptions: readonly [{
|
|
432
|
+
readonly requiredScopes: readonly ["reactions:read"];
|
|
433
|
+
}];
|
|
434
|
+
readonly serviceId: "slack";
|
|
435
|
+
};
|
|
436
|
+
readonly type: "slack.reaction.removed";
|
|
437
|
+
};
|
|
438
|
+
readonly resendEmailBounced: {
|
|
439
|
+
readonly account: {
|
|
440
|
+
readonly connectionOptions: readonly [{
|
|
441
|
+
readonly requiredScopes: readonly [];
|
|
442
|
+
}];
|
|
443
|
+
readonly serviceId: "resend";
|
|
444
|
+
};
|
|
445
|
+
readonly type: "resend.email.bounced";
|
|
446
|
+
};
|
|
447
|
+
readonly resendEmailClicked: {
|
|
448
|
+
readonly account: {
|
|
449
|
+
readonly connectionOptions: readonly [{
|
|
450
|
+
readonly requiredScopes: readonly [];
|
|
451
|
+
}];
|
|
452
|
+
readonly serviceId: "resend";
|
|
453
|
+
};
|
|
454
|
+
readonly type: "resend.email.clicked";
|
|
455
|
+
};
|
|
456
|
+
readonly resendEmailComplained: {
|
|
457
|
+
readonly account: {
|
|
458
|
+
readonly connectionOptions: readonly [{
|
|
459
|
+
readonly requiredScopes: readonly [];
|
|
460
|
+
}];
|
|
461
|
+
readonly serviceId: "resend";
|
|
462
|
+
};
|
|
463
|
+
readonly type: "resend.email.complained";
|
|
464
|
+
};
|
|
465
|
+
readonly resendEmailDelivered: {
|
|
466
|
+
readonly account: {
|
|
467
|
+
readonly connectionOptions: readonly [{
|
|
468
|
+
readonly requiredScopes: readonly [];
|
|
469
|
+
}];
|
|
470
|
+
readonly serviceId: "resend";
|
|
471
|
+
};
|
|
472
|
+
readonly type: "resend.email.delivered";
|
|
473
|
+
};
|
|
474
|
+
readonly resendEmailDeliveryDelayed: {
|
|
475
|
+
readonly account: {
|
|
476
|
+
readonly connectionOptions: readonly [{
|
|
477
|
+
readonly requiredScopes: readonly [];
|
|
478
|
+
}];
|
|
479
|
+
readonly serviceId: "resend";
|
|
480
|
+
};
|
|
481
|
+
readonly type: "resend.email.deliveryDelayed";
|
|
482
|
+
};
|
|
483
|
+
readonly resendEmailEvent: {
|
|
484
|
+
readonly account: {
|
|
485
|
+
readonly connectionOptions: readonly [{
|
|
486
|
+
readonly requiredScopes: readonly [];
|
|
487
|
+
}];
|
|
488
|
+
readonly serviceId: "resend";
|
|
489
|
+
};
|
|
490
|
+
readonly type: "resend.email.event";
|
|
491
|
+
};
|
|
492
|
+
readonly resendEmailFailed: {
|
|
493
|
+
readonly account: {
|
|
494
|
+
readonly connectionOptions: readonly [{
|
|
495
|
+
readonly requiredScopes: readonly [];
|
|
496
|
+
}];
|
|
497
|
+
readonly serviceId: "resend";
|
|
498
|
+
};
|
|
499
|
+
readonly type: "resend.email.failed";
|
|
500
|
+
};
|
|
501
|
+
readonly resendEmailOpened: {
|
|
502
|
+
readonly account: {
|
|
503
|
+
readonly connectionOptions: readonly [{
|
|
504
|
+
readonly requiredScopes: readonly [];
|
|
505
|
+
}];
|
|
506
|
+
readonly serviceId: "resend";
|
|
507
|
+
};
|
|
508
|
+
readonly type: "resend.email.opened";
|
|
509
|
+
};
|
|
510
|
+
readonly resendEmailReceived: {
|
|
511
|
+
readonly account: {
|
|
512
|
+
readonly connectionOptions: readonly [{
|
|
513
|
+
readonly requiredScopes: readonly [];
|
|
514
|
+
}];
|
|
515
|
+
readonly serviceId: "resend";
|
|
516
|
+
};
|
|
517
|
+
readonly type: "resend.email.received";
|
|
518
|
+
};
|
|
519
|
+
readonly resendEmailScheduled: {
|
|
520
|
+
readonly account: {
|
|
521
|
+
readonly connectionOptions: readonly [{
|
|
522
|
+
readonly requiredScopes: readonly [];
|
|
523
|
+
}];
|
|
524
|
+
readonly serviceId: "resend";
|
|
525
|
+
};
|
|
526
|
+
readonly type: "resend.email.scheduled";
|
|
527
|
+
};
|
|
528
|
+
readonly resendEmailSent: {
|
|
529
|
+
readonly account: {
|
|
530
|
+
readonly connectionOptions: readonly [{
|
|
531
|
+
readonly requiredScopes: readonly [];
|
|
532
|
+
}];
|
|
533
|
+
readonly serviceId: "resend";
|
|
534
|
+
};
|
|
535
|
+
readonly type: "resend.email.sent";
|
|
536
|
+
};
|
|
537
|
+
readonly resendEmailSuppressed: {
|
|
538
|
+
readonly account: {
|
|
539
|
+
readonly connectionOptions: readonly [{
|
|
540
|
+
readonly requiredScopes: readonly [];
|
|
541
|
+
}];
|
|
542
|
+
readonly serviceId: "resend";
|
|
543
|
+
};
|
|
544
|
+
readonly type: "resend.email.suppressed";
|
|
545
|
+
};
|
|
546
|
+
readonly outlookEmailReceived: {
|
|
547
|
+
readonly account: {
|
|
548
|
+
readonly connectionOptions: readonly [{
|
|
549
|
+
readonly requiredScopes: readonly [{
|
|
550
|
+
readonly requirements: readonly ["Mail.ReadWrite", "Mail.Read"];
|
|
551
|
+
readonly type: "or";
|
|
552
|
+
}];
|
|
553
|
+
}];
|
|
554
|
+
readonly serviceId: "microsoft";
|
|
555
|
+
};
|
|
556
|
+
readonly type: "outlook.email.received";
|
|
557
|
+
};
|
|
558
|
+
readonly teamsChannelMessagePosted: {
|
|
559
|
+
readonly account: {
|
|
560
|
+
readonly connectionOptions: readonly [{
|
|
561
|
+
readonly requiredScopes: readonly [{
|
|
562
|
+
readonly requirements: readonly ["ChannelMessage.Read.All", "Team.ReadBasic.All", "Channel.ReadBasic.All"];
|
|
563
|
+
readonly type: "and";
|
|
564
|
+
}];
|
|
565
|
+
}];
|
|
566
|
+
readonly serviceId: "microsoft";
|
|
567
|
+
};
|
|
568
|
+
readonly name: "Microsoft Teams channel message posted";
|
|
569
|
+
readonly type: "teams.channel.message.posted";
|
|
570
|
+
};
|
|
571
|
+
readonly teamsChatMessagePosted: {
|
|
572
|
+
readonly account: {
|
|
573
|
+
readonly connectionOptions: readonly [{
|
|
574
|
+
readonly requiredScopes: readonly [{
|
|
575
|
+
readonly requirements: readonly ["Chat.ReadWrite", "Chat.Read"];
|
|
576
|
+
readonly type: "or";
|
|
577
|
+
}];
|
|
578
|
+
}];
|
|
579
|
+
readonly serviceId: "microsoft";
|
|
580
|
+
};
|
|
581
|
+
readonly name: "Microsoft Teams chat message posted";
|
|
582
|
+
readonly type: "teams.chat.message.posted";
|
|
583
|
+
};
|
|
584
|
+
readonly linearCommentCreated: {
|
|
585
|
+
readonly account: {
|
|
586
|
+
readonly connectionOptions: readonly [{
|
|
587
|
+
readonly requiredScopes: readonly ["read"];
|
|
588
|
+
}];
|
|
589
|
+
readonly serviceId: "linear";
|
|
590
|
+
};
|
|
591
|
+
readonly type: "linear.comment.created";
|
|
592
|
+
};
|
|
593
|
+
readonly linearCommentEvent: {
|
|
594
|
+
readonly account: {
|
|
595
|
+
readonly connectionOptions: readonly [{
|
|
596
|
+
readonly requiredScopes: readonly ["read"];
|
|
597
|
+
}];
|
|
598
|
+
readonly serviceId: "linear";
|
|
599
|
+
};
|
|
600
|
+
readonly type: "linear.comment.event";
|
|
601
|
+
};
|
|
602
|
+
readonly linearCommentRemoved: {
|
|
603
|
+
readonly account: {
|
|
604
|
+
readonly connectionOptions: readonly [{
|
|
605
|
+
readonly requiredScopes: readonly ["read"];
|
|
606
|
+
}];
|
|
607
|
+
readonly serviceId: "linear";
|
|
608
|
+
};
|
|
609
|
+
readonly type: "linear.comment.removed";
|
|
610
|
+
};
|
|
611
|
+
readonly linearCommentUpdated: {
|
|
612
|
+
readonly account: {
|
|
613
|
+
readonly connectionOptions: readonly [{
|
|
614
|
+
readonly requiredScopes: readonly ["read"];
|
|
615
|
+
}];
|
|
616
|
+
readonly serviceId: "linear";
|
|
617
|
+
};
|
|
618
|
+
readonly type: "linear.comment.updated";
|
|
619
|
+
};
|
|
620
|
+
readonly linearIssueCreated: {
|
|
621
|
+
readonly account: {
|
|
622
|
+
readonly connectionOptions: readonly [{
|
|
623
|
+
readonly requiredScopes: readonly ["read"];
|
|
624
|
+
}];
|
|
625
|
+
readonly serviceId: "linear";
|
|
626
|
+
};
|
|
627
|
+
readonly type: "linear.issue.created";
|
|
628
|
+
};
|
|
629
|
+
readonly linearIssueEvent: {
|
|
630
|
+
readonly account: {
|
|
631
|
+
readonly connectionOptions: readonly [{
|
|
632
|
+
readonly requiredScopes: readonly ["read"];
|
|
633
|
+
}];
|
|
634
|
+
readonly serviceId: "linear";
|
|
635
|
+
};
|
|
636
|
+
readonly type: "linear.issue.event";
|
|
637
|
+
};
|
|
638
|
+
readonly linearIssueRemoved: {
|
|
639
|
+
readonly account: {
|
|
640
|
+
readonly connectionOptions: readonly [{
|
|
641
|
+
readonly requiredScopes: readonly ["read"];
|
|
642
|
+
}];
|
|
643
|
+
readonly serviceId: "linear";
|
|
644
|
+
};
|
|
645
|
+
readonly type: "linear.issue.removed";
|
|
646
|
+
};
|
|
647
|
+
readonly linearIssueUpdated: {
|
|
648
|
+
readonly account: {
|
|
649
|
+
readonly connectionOptions: readonly [{
|
|
650
|
+
readonly requiredScopes: readonly ["read"];
|
|
651
|
+
}];
|
|
652
|
+
readonly serviceId: "linear";
|
|
653
|
+
};
|
|
654
|
+
readonly type: "linear.issue.updated";
|
|
655
|
+
};
|
|
656
|
+
readonly linearProjectCreated: {
|
|
657
|
+
readonly account: {
|
|
658
|
+
readonly connectionOptions: readonly [{
|
|
659
|
+
readonly requiredScopes: readonly ["read"];
|
|
660
|
+
}];
|
|
661
|
+
readonly serviceId: "linear";
|
|
662
|
+
};
|
|
663
|
+
readonly type: "linear.project.created";
|
|
664
|
+
};
|
|
665
|
+
readonly linearProjectEvent: {
|
|
666
|
+
readonly account: {
|
|
667
|
+
readonly connectionOptions: readonly [{
|
|
668
|
+
readonly requiredScopes: readonly ["read"];
|
|
669
|
+
}];
|
|
670
|
+
readonly serviceId: "linear";
|
|
671
|
+
};
|
|
672
|
+
readonly type: "linear.project.event";
|
|
673
|
+
};
|
|
674
|
+
readonly linearProjectRemoved: {
|
|
675
|
+
readonly account: {
|
|
676
|
+
readonly connectionOptions: readonly [{
|
|
677
|
+
readonly requiredScopes: readonly ["read"];
|
|
678
|
+
}];
|
|
679
|
+
readonly serviceId: "linear";
|
|
680
|
+
};
|
|
681
|
+
readonly type: "linear.project.removed";
|
|
682
|
+
};
|
|
683
|
+
readonly linearProjectUpdated: {
|
|
684
|
+
readonly account: {
|
|
685
|
+
readonly connectionOptions: readonly [{
|
|
686
|
+
readonly requiredScopes: readonly ["read"];
|
|
687
|
+
}];
|
|
688
|
+
readonly serviceId: "linear";
|
|
689
|
+
};
|
|
690
|
+
readonly type: "linear.project.updated";
|
|
691
|
+
};
|
|
692
|
+
readonly gmailLabelAdded: {
|
|
693
|
+
readonly account: {
|
|
694
|
+
readonly connectionOptions: readonly [{
|
|
695
|
+
readonly requiredScopes: readonly [{
|
|
696
|
+
readonly requirements: readonly ["https://mail.google.com/", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly"];
|
|
697
|
+
readonly type: "or";
|
|
698
|
+
}];
|
|
699
|
+
}];
|
|
700
|
+
readonly serviceId: "google";
|
|
701
|
+
};
|
|
702
|
+
readonly type: "gmail.label.added";
|
|
703
|
+
};
|
|
704
|
+
readonly gmailLabelRemoved: {
|
|
705
|
+
readonly account: {
|
|
706
|
+
readonly connectionOptions: readonly [{
|
|
707
|
+
readonly requiredScopes: readonly [{
|
|
708
|
+
readonly requirements: readonly ["https://mail.google.com/", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly"];
|
|
709
|
+
readonly type: "or";
|
|
710
|
+
}];
|
|
711
|
+
}];
|
|
712
|
+
readonly serviceId: "google";
|
|
713
|
+
};
|
|
714
|
+
readonly type: "gmail.label.removed";
|
|
715
|
+
};
|
|
716
|
+
readonly gmailMessageReceived: {
|
|
717
|
+
readonly account: {
|
|
718
|
+
readonly connectionOptions: readonly [{
|
|
719
|
+
readonly requiredScopes: readonly [{
|
|
720
|
+
readonly requirements: readonly ["https://mail.google.com/", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly"];
|
|
721
|
+
readonly type: "or";
|
|
722
|
+
}];
|
|
723
|
+
}];
|
|
724
|
+
readonly serviceId: "google";
|
|
725
|
+
};
|
|
726
|
+
readonly name: "Gmail email received";
|
|
727
|
+
readonly type: "gmail.message.received";
|
|
728
|
+
};
|
|
729
|
+
readonly gmailMessageSent: {
|
|
730
|
+
readonly account: {
|
|
731
|
+
readonly connectionOptions: readonly [{
|
|
732
|
+
readonly requiredScopes: readonly [{
|
|
733
|
+
readonly requirements: readonly ["https://mail.google.com/", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly"];
|
|
734
|
+
readonly type: "or";
|
|
735
|
+
}];
|
|
736
|
+
}];
|
|
737
|
+
readonly serviceId: "google";
|
|
738
|
+
};
|
|
739
|
+
readonly name: "Gmail email sent";
|
|
740
|
+
readonly type: "gmail.message.sent";
|
|
741
|
+
};
|
|
742
|
+
readonly googleCalendarEventCreated: {
|
|
743
|
+
readonly account: {
|
|
744
|
+
readonly connectionOptions: readonly [{
|
|
745
|
+
readonly requiredScopes: readonly [{
|
|
746
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.readonly", "https://www.googleapis.com/auth/calendar.events.owned"];
|
|
747
|
+
readonly type: "or";
|
|
748
|
+
}];
|
|
749
|
+
}];
|
|
750
|
+
readonly serviceId: "google";
|
|
751
|
+
};
|
|
752
|
+
readonly name: "Google Calendar event created";
|
|
753
|
+
readonly type: "googleCalendar.event.created";
|
|
754
|
+
};
|
|
755
|
+
readonly googleCalendarEventDeleted: {
|
|
756
|
+
readonly account: {
|
|
757
|
+
readonly connectionOptions: readonly [{
|
|
758
|
+
readonly requiredScopes: readonly [{
|
|
759
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.readonly", "https://www.googleapis.com/auth/calendar.events.owned"];
|
|
760
|
+
readonly type: "or";
|
|
761
|
+
}];
|
|
762
|
+
}];
|
|
763
|
+
readonly serviceId: "google";
|
|
764
|
+
};
|
|
765
|
+
readonly name: "Google Calendar event deleted";
|
|
766
|
+
readonly type: "googleCalendar.event.deleted";
|
|
767
|
+
};
|
|
768
|
+
readonly googleCalendarEventUpdated: {
|
|
769
|
+
readonly account: {
|
|
770
|
+
readonly connectionOptions: readonly [{
|
|
771
|
+
readonly requiredScopes: readonly [{
|
|
772
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.readonly", "https://www.googleapis.com/auth/calendar.events.owned"];
|
|
773
|
+
readonly type: "or";
|
|
774
|
+
}];
|
|
775
|
+
}];
|
|
776
|
+
readonly serviceId: "google";
|
|
777
|
+
};
|
|
778
|
+
readonly name: "Google Calendar event updated";
|
|
779
|
+
readonly type: "googleCalendar.event.updated";
|
|
780
|
+
};
|
|
781
|
+
readonly googleFormsFormChanged: {
|
|
782
|
+
readonly account: {
|
|
783
|
+
readonly connectionOptions: readonly [{
|
|
784
|
+
readonly requiredScopes: readonly [{
|
|
785
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/forms.body", "https://www.googleapis.com/auth/forms.body.readonly"];
|
|
786
|
+
readonly type: "or";
|
|
787
|
+
}];
|
|
788
|
+
}];
|
|
789
|
+
readonly serviceId: "google";
|
|
790
|
+
};
|
|
791
|
+
readonly name: "Google Form changed";
|
|
792
|
+
readonly type: "googleForms.form.changed";
|
|
793
|
+
};
|
|
794
|
+
readonly googleFormsResponseSubmitted: {
|
|
795
|
+
readonly account: {
|
|
796
|
+
readonly connectionOptions: readonly [{
|
|
797
|
+
readonly requiredScopes: readonly [{
|
|
798
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/forms.body", "https://www.googleapis.com/auth/forms.body.readonly"];
|
|
799
|
+
readonly type: "or";
|
|
800
|
+
}, {
|
|
801
|
+
readonly requirements: readonly [{
|
|
802
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/forms.responses.readonly"];
|
|
803
|
+
readonly type: "or";
|
|
804
|
+
}, {
|
|
805
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/forms.body", "https://www.googleapis.com/auth/forms.body.readonly"];
|
|
806
|
+
readonly type: "or";
|
|
807
|
+
}];
|
|
808
|
+
readonly type: "and";
|
|
809
|
+
}];
|
|
810
|
+
}];
|
|
811
|
+
readonly serviceId: "google";
|
|
812
|
+
};
|
|
813
|
+
readonly name: "Google Form response submitted";
|
|
814
|
+
readonly type: "googleForms.response.submitted";
|
|
815
|
+
};
|
|
816
|
+
readonly githubIssueClosed: {
|
|
817
|
+
readonly account: {
|
|
818
|
+
readonly connectionOptions: readonly [{
|
|
819
|
+
readonly requiredScopes: readonly ["issues:read"];
|
|
820
|
+
}];
|
|
821
|
+
readonly serviceId: "github";
|
|
822
|
+
};
|
|
823
|
+
readonly type: "github.issue.closed";
|
|
824
|
+
};
|
|
825
|
+
readonly githubIssueEvent: {
|
|
826
|
+
readonly account: {
|
|
827
|
+
readonly connectionOptions: readonly [{
|
|
828
|
+
readonly requiredScopes: readonly ["issues:read"];
|
|
829
|
+
}];
|
|
830
|
+
readonly serviceId: "github";
|
|
831
|
+
};
|
|
832
|
+
readonly type: "github.issue.event";
|
|
833
|
+
};
|
|
834
|
+
readonly githubIssueOpened: {
|
|
835
|
+
readonly account: {
|
|
836
|
+
readonly connectionOptions: readonly [{
|
|
837
|
+
readonly requiredScopes: readonly ["issues:read"];
|
|
838
|
+
}];
|
|
839
|
+
readonly serviceId: "github";
|
|
840
|
+
};
|
|
841
|
+
readonly type: "github.issue.opened";
|
|
842
|
+
};
|
|
843
|
+
readonly githubIssueReopened: {
|
|
844
|
+
readonly account: {
|
|
845
|
+
readonly connectionOptions: readonly [{
|
|
846
|
+
readonly requiredScopes: readonly ["issues:read"];
|
|
847
|
+
}];
|
|
848
|
+
readonly serviceId: "github";
|
|
849
|
+
};
|
|
850
|
+
readonly type: "github.issue.reopened";
|
|
851
|
+
};
|
|
852
|
+
readonly githubPullRequestClosed: {
|
|
853
|
+
readonly account: {
|
|
854
|
+
readonly connectionOptions: readonly [{
|
|
855
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
856
|
+
}];
|
|
857
|
+
readonly serviceId: "github";
|
|
858
|
+
};
|
|
859
|
+
readonly type: "github.pull-request.closed";
|
|
860
|
+
};
|
|
861
|
+
readonly githubPullRequestEvent: {
|
|
862
|
+
readonly account: {
|
|
863
|
+
readonly connectionOptions: readonly [{
|
|
864
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
865
|
+
}];
|
|
866
|
+
readonly serviceId: "github";
|
|
867
|
+
};
|
|
868
|
+
readonly type: "github.pull-request.event";
|
|
869
|
+
};
|
|
870
|
+
readonly githubPullRequestMerged: {
|
|
871
|
+
readonly account: {
|
|
872
|
+
readonly connectionOptions: readonly [{
|
|
873
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
874
|
+
}];
|
|
875
|
+
readonly serviceId: "github";
|
|
876
|
+
};
|
|
877
|
+
readonly type: "github.pull-request.merged";
|
|
878
|
+
};
|
|
879
|
+
readonly githubPullRequestOpened: {
|
|
880
|
+
readonly account: {
|
|
881
|
+
readonly connectionOptions: readonly [{
|
|
882
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
883
|
+
}];
|
|
884
|
+
readonly serviceId: "github";
|
|
885
|
+
};
|
|
886
|
+
readonly type: "github.pull-request.opened";
|
|
887
|
+
};
|
|
888
|
+
readonly githubPullRequestReadyForReview: {
|
|
889
|
+
readonly account: {
|
|
890
|
+
readonly connectionOptions: readonly [{
|
|
891
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
892
|
+
}];
|
|
893
|
+
readonly serviceId: "github";
|
|
894
|
+
};
|
|
895
|
+
readonly type: "github.pull-request.ready-for-review";
|
|
896
|
+
};
|
|
897
|
+
readonly githubPullRequestReviewApproved: {
|
|
898
|
+
readonly account: {
|
|
899
|
+
readonly connectionOptions: readonly [{
|
|
900
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
901
|
+
}];
|
|
902
|
+
readonly serviceId: "github";
|
|
903
|
+
};
|
|
904
|
+
readonly type: "github.pull-request-review.approved";
|
|
905
|
+
};
|
|
906
|
+
readonly githubPullRequestReviewChangesRequested: {
|
|
907
|
+
readonly account: {
|
|
908
|
+
readonly connectionOptions: readonly [{
|
|
909
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
910
|
+
}];
|
|
911
|
+
readonly serviceId: "github";
|
|
912
|
+
};
|
|
913
|
+
readonly name: "GitHub pull request changes requested";
|
|
914
|
+
readonly type: "github.pull-request-review.changes-requested";
|
|
915
|
+
};
|
|
916
|
+
readonly githubPullRequestReviewDismissed: {
|
|
917
|
+
readonly account: {
|
|
918
|
+
readonly connectionOptions: readonly [{
|
|
919
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
920
|
+
}];
|
|
921
|
+
readonly serviceId: "github";
|
|
922
|
+
};
|
|
923
|
+
readonly type: "github.pull-request-review.dismissed";
|
|
924
|
+
};
|
|
925
|
+
readonly githubPullRequestReviewEvent: {
|
|
926
|
+
readonly account: {
|
|
927
|
+
readonly connectionOptions: readonly [{
|
|
928
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
929
|
+
}];
|
|
930
|
+
readonly serviceId: "github";
|
|
931
|
+
};
|
|
932
|
+
readonly type: "github.pull-request-review.event";
|
|
933
|
+
};
|
|
934
|
+
readonly githubPullRequestReviewSubmitted: {
|
|
935
|
+
readonly account: {
|
|
936
|
+
readonly connectionOptions: readonly [{
|
|
937
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
938
|
+
}];
|
|
939
|
+
readonly serviceId: "github";
|
|
940
|
+
};
|
|
941
|
+
readonly type: "github.pull-request-review.submitted";
|
|
942
|
+
};
|
|
943
|
+
readonly githubPullRequestSynchronized: {
|
|
944
|
+
readonly account: {
|
|
945
|
+
readonly connectionOptions: readonly [{
|
|
946
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
947
|
+
}];
|
|
948
|
+
readonly serviceId: "github";
|
|
949
|
+
};
|
|
950
|
+
readonly type: "github.pull-request.synchronized";
|
|
951
|
+
};
|
|
952
|
+
readonly githubPush: {
|
|
953
|
+
readonly account: {
|
|
954
|
+
readonly connectionOptions: readonly [{
|
|
955
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
956
|
+
}];
|
|
957
|
+
readonly serviceId: "github";
|
|
958
|
+
};
|
|
959
|
+
readonly type: "github.push";
|
|
960
|
+
};
|
|
961
|
+
readonly githubReleaseEvent: {
|
|
962
|
+
readonly account: {
|
|
963
|
+
readonly connectionOptions: readonly [{
|
|
964
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
965
|
+
}];
|
|
966
|
+
readonly serviceId: "github";
|
|
967
|
+
};
|
|
968
|
+
readonly type: "github.release.event";
|
|
969
|
+
};
|
|
970
|
+
readonly githubReleasePublished: {
|
|
971
|
+
readonly account: {
|
|
972
|
+
readonly connectionOptions: readonly [{
|
|
973
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
974
|
+
}];
|
|
975
|
+
readonly serviceId: "github";
|
|
976
|
+
};
|
|
977
|
+
readonly type: "github.release.published";
|
|
978
|
+
};
|
|
979
|
+
readonly githubWorkflowRunCancelled: {
|
|
980
|
+
readonly account: {
|
|
981
|
+
readonly connectionOptions: readonly [{
|
|
982
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
983
|
+
}];
|
|
984
|
+
readonly serviceId: "github";
|
|
985
|
+
};
|
|
986
|
+
readonly type: "github.workflow-run.cancelled";
|
|
987
|
+
};
|
|
988
|
+
readonly githubWorkflowRunCompleted: {
|
|
989
|
+
readonly account: {
|
|
990
|
+
readonly connectionOptions: readonly [{
|
|
991
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
992
|
+
}];
|
|
993
|
+
readonly serviceId: "github";
|
|
994
|
+
};
|
|
995
|
+
readonly type: "github.workflow-run.completed";
|
|
996
|
+
};
|
|
997
|
+
readonly githubWorkflowRunEvent: {
|
|
998
|
+
readonly account: {
|
|
999
|
+
readonly connectionOptions: readonly [{
|
|
1000
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
1001
|
+
}];
|
|
1002
|
+
readonly serviceId: "github";
|
|
1003
|
+
};
|
|
1004
|
+
readonly type: "github.workflow-run.event";
|
|
1005
|
+
};
|
|
1006
|
+
readonly githubWorkflowRunFailed: {
|
|
1007
|
+
readonly account: {
|
|
1008
|
+
readonly connectionOptions: readonly [{
|
|
1009
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
1010
|
+
}];
|
|
1011
|
+
readonly serviceId: "github";
|
|
1012
|
+
};
|
|
1013
|
+
readonly type: "github.workflow-run.failed";
|
|
1014
|
+
};
|
|
1015
|
+
readonly githubWorkflowRunRequested: {
|
|
1016
|
+
readonly account: {
|
|
1017
|
+
readonly connectionOptions: readonly [{
|
|
1018
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
1019
|
+
}];
|
|
1020
|
+
readonly serviceId: "github";
|
|
1021
|
+
};
|
|
1022
|
+
readonly type: "github.workflow-run.requested";
|
|
1023
|
+
};
|
|
1024
|
+
readonly githubWorkflowRunStarted: {
|
|
1025
|
+
readonly account: {
|
|
1026
|
+
readonly connectionOptions: readonly [{
|
|
1027
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
1028
|
+
}];
|
|
1029
|
+
readonly serviceId: "github";
|
|
1030
|
+
};
|
|
1031
|
+
readonly type: "github.workflow-run.started";
|
|
1032
|
+
};
|
|
1033
|
+
readonly githubWorkflowRunSucceeded: {
|
|
1034
|
+
readonly account: {
|
|
1035
|
+
readonly connectionOptions: readonly [{
|
|
1036
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
1037
|
+
}];
|
|
1038
|
+
readonly serviceId: "github";
|
|
1039
|
+
};
|
|
1040
|
+
readonly type: "github.workflow-run.succeeded";
|
|
1041
|
+
};
|
|
1042
|
+
readonly automationInvoked: {
|
|
1043
|
+
readonly getDetails: ({ config }: TriggerPresentationContext) => {
|
|
1044
|
+
label: string;
|
|
1045
|
+
value: string;
|
|
1046
|
+
}[];
|
|
1047
|
+
readonly icon: "automation";
|
|
1048
|
+
readonly name: "Invocation";
|
|
1049
|
+
readonly type: "automation.invoked";
|
|
1050
|
+
};
|
|
1051
|
+
readonly cronTick: {
|
|
1052
|
+
readonly getDetails: ({ config }: TriggerPresentationContext) => {
|
|
1053
|
+
label: string;
|
|
1054
|
+
value: string;
|
|
1055
|
+
}[];
|
|
1056
|
+
readonly icon: "schedule";
|
|
1057
|
+
readonly name: "Cron schedule";
|
|
1058
|
+
readonly type: "cron.tick";
|
|
1059
|
+
};
|
|
1060
|
+
readonly httpRequest: {
|
|
1061
|
+
readonly getDetails: ({ appOrigin, automationId, config, hookSlot, projectId }: TriggerPresentationContext) => {
|
|
1062
|
+
copyable: true;
|
|
1063
|
+
label: string;
|
|
1064
|
+
value: string;
|
|
1065
|
+
}[];
|
|
1066
|
+
readonly icon: "webhook";
|
|
1067
|
+
readonly name: "HTTP request";
|
|
1068
|
+
readonly type: "http.request";
|
|
1069
|
+
};
|
|
1070
|
+
readonly brevoTransactionalBlocked: {
|
|
1071
|
+
readonly account: {
|
|
1072
|
+
readonly connectionOptions: readonly [{
|
|
1073
|
+
readonly requiredScopes: readonly [];
|
|
1074
|
+
}];
|
|
1075
|
+
readonly serviceId: "brevo";
|
|
1076
|
+
};
|
|
1077
|
+
readonly name: "Brevo email blocked";
|
|
1078
|
+
readonly type: "brevo.transactional.blocked";
|
|
1079
|
+
};
|
|
1080
|
+
readonly brevoTransactionalClicked: {
|
|
1081
|
+
readonly account: {
|
|
1082
|
+
readonly connectionOptions: readonly [{
|
|
1083
|
+
readonly requiredScopes: readonly [];
|
|
1084
|
+
}];
|
|
1085
|
+
readonly serviceId: "brevo";
|
|
1086
|
+
};
|
|
1087
|
+
readonly name: "Brevo email clicked";
|
|
1088
|
+
readonly type: "brevo.transactional.clicked";
|
|
1089
|
+
};
|
|
1090
|
+
readonly brevoTransactionalDeferred: {
|
|
1091
|
+
readonly account: {
|
|
1092
|
+
readonly connectionOptions: readonly [{
|
|
1093
|
+
readonly requiredScopes: readonly [];
|
|
1094
|
+
}];
|
|
1095
|
+
readonly serviceId: "brevo";
|
|
1096
|
+
};
|
|
1097
|
+
readonly name: "Brevo email deferred";
|
|
1098
|
+
readonly type: "brevo.transactional.deferred";
|
|
1099
|
+
};
|
|
1100
|
+
readonly brevoTransactionalDelivered: {
|
|
1101
|
+
readonly account: {
|
|
1102
|
+
readonly connectionOptions: readonly [{
|
|
1103
|
+
readonly requiredScopes: readonly [];
|
|
1104
|
+
}];
|
|
1105
|
+
readonly serviceId: "brevo";
|
|
1106
|
+
};
|
|
1107
|
+
readonly name: "Brevo email delivered";
|
|
1108
|
+
readonly type: "brevo.transactional.delivered";
|
|
1109
|
+
};
|
|
1110
|
+
readonly brevoTransactionalEvent: {
|
|
1111
|
+
readonly account: {
|
|
1112
|
+
readonly connectionOptions: readonly [{
|
|
1113
|
+
readonly requiredScopes: readonly [];
|
|
1114
|
+
}];
|
|
1115
|
+
readonly serviceId: "brevo";
|
|
1116
|
+
};
|
|
1117
|
+
readonly type: "brevo.transactional.event";
|
|
1118
|
+
};
|
|
1119
|
+
readonly brevoTransactionalHardBounced: {
|
|
1120
|
+
readonly account: {
|
|
1121
|
+
readonly connectionOptions: readonly [{
|
|
1122
|
+
readonly requiredScopes: readonly [];
|
|
1123
|
+
}];
|
|
1124
|
+
readonly serviceId: "brevo";
|
|
1125
|
+
};
|
|
1126
|
+
readonly name: "Brevo email hard bounced";
|
|
1127
|
+
readonly type: "brevo.transactional.hardBounced";
|
|
1128
|
+
};
|
|
1129
|
+
readonly brevoTransactionalMarkedAsSpam: {
|
|
1130
|
+
readonly account: {
|
|
1131
|
+
readonly connectionOptions: readonly [{
|
|
1132
|
+
readonly requiredScopes: readonly [];
|
|
1133
|
+
}];
|
|
1134
|
+
readonly serviceId: "brevo";
|
|
1135
|
+
};
|
|
1136
|
+
readonly name: "Brevo email marked as spam";
|
|
1137
|
+
readonly type: "brevo.transactional.markedAsSpam";
|
|
1138
|
+
};
|
|
1139
|
+
readonly brevoTransactionalOpened: {
|
|
1140
|
+
readonly account: {
|
|
1141
|
+
readonly connectionOptions: readonly [{
|
|
1142
|
+
readonly requiredScopes: readonly [];
|
|
1143
|
+
}];
|
|
1144
|
+
readonly serviceId: "brevo";
|
|
1145
|
+
};
|
|
1146
|
+
readonly name: "Brevo email opened";
|
|
1147
|
+
readonly type: "brevo.transactional.opened";
|
|
1148
|
+
};
|
|
1149
|
+
readonly brevoTransactionalSent: {
|
|
1150
|
+
readonly account: {
|
|
1151
|
+
readonly connectionOptions: readonly [{
|
|
1152
|
+
readonly requiredScopes: readonly [];
|
|
1153
|
+
}];
|
|
1154
|
+
readonly serviceId: "brevo";
|
|
1155
|
+
};
|
|
1156
|
+
readonly name: "Brevo email sent";
|
|
1157
|
+
readonly type: "brevo.transactional.sent";
|
|
1158
|
+
};
|
|
1159
|
+
readonly brevoTransactionalSoftBounced: {
|
|
1160
|
+
readonly account: {
|
|
1161
|
+
readonly connectionOptions: readonly [{
|
|
1162
|
+
readonly requiredScopes: readonly [];
|
|
1163
|
+
}];
|
|
1164
|
+
readonly serviceId: "brevo";
|
|
1165
|
+
};
|
|
1166
|
+
readonly name: "Brevo email soft bounced";
|
|
1167
|
+
readonly type: "brevo.transactional.softBounced";
|
|
1168
|
+
};
|
|
1169
|
+
readonly brevoTransactionalUnsubscribed: {
|
|
1170
|
+
readonly account: {
|
|
1171
|
+
readonly connectionOptions: readonly [{
|
|
1172
|
+
readonly requiredScopes: readonly [];
|
|
1173
|
+
}];
|
|
1174
|
+
readonly serviceId: "brevo";
|
|
1175
|
+
};
|
|
1176
|
+
readonly name: "Brevo email unsubscribed";
|
|
1177
|
+
readonly type: "brevo.transactional.unsubscribed";
|
|
1178
|
+
};
|
|
1179
|
+
readonly asanaCommentAdded: {
|
|
1180
|
+
readonly account: {
|
|
1181
|
+
readonly connectionOptions: readonly [{
|
|
1182
|
+
readonly requiredScopes: readonly [];
|
|
1183
|
+
}];
|
|
1184
|
+
readonly serviceId: "asana";
|
|
1185
|
+
};
|
|
1186
|
+
readonly type: "asana.comment.added";
|
|
1187
|
+
};
|
|
1188
|
+
readonly asanaEvent: {
|
|
1189
|
+
readonly account: {
|
|
1190
|
+
readonly connectionOptions: readonly [{
|
|
1191
|
+
readonly requiredScopes: readonly [];
|
|
1192
|
+
}];
|
|
1193
|
+
readonly serviceId: "asana";
|
|
1194
|
+
};
|
|
1195
|
+
readonly type: "asana.event";
|
|
1196
|
+
};
|
|
1197
|
+
readonly asanaTaskAdded: {
|
|
1198
|
+
readonly account: {
|
|
1199
|
+
readonly connectionOptions: readonly [{
|
|
1200
|
+
readonly requiredScopes: readonly [];
|
|
1201
|
+
}];
|
|
1202
|
+
readonly serviceId: "asana";
|
|
1203
|
+
};
|
|
1204
|
+
readonly type: "asana.task.added";
|
|
1205
|
+
};
|
|
1206
|
+
readonly asanaTaskChanged: {
|
|
1207
|
+
readonly account: {
|
|
1208
|
+
readonly connectionOptions: readonly [{
|
|
1209
|
+
readonly requiredScopes: readonly [];
|
|
1210
|
+
}];
|
|
1211
|
+
readonly serviceId: "asana";
|
|
1212
|
+
};
|
|
1213
|
+
readonly type: "asana.task.changed";
|
|
1214
|
+
};
|
|
1215
|
+
readonly asanaTaskCompleted: {
|
|
1216
|
+
readonly account: {
|
|
1217
|
+
readonly connectionOptions: readonly [{
|
|
1218
|
+
readonly requiredScopes: readonly [];
|
|
1219
|
+
}];
|
|
1220
|
+
readonly serviceId: "asana";
|
|
1221
|
+
};
|
|
1222
|
+
readonly type: "asana.task.completed";
|
|
1223
|
+
};
|
|
1224
|
+
readonly asanaTaskDeleted: {
|
|
1225
|
+
readonly account: {
|
|
1226
|
+
readonly connectionOptions: readonly [{
|
|
1227
|
+
readonly requiredScopes: readonly [];
|
|
1228
|
+
}];
|
|
1229
|
+
readonly serviceId: "asana";
|
|
1230
|
+
};
|
|
1231
|
+
readonly type: "asana.task.deleted";
|
|
1232
|
+
};
|
|
1233
|
+
readonly asanaTaskRemoved: {
|
|
1234
|
+
readonly account: {
|
|
1235
|
+
readonly connectionOptions: readonly [{
|
|
1236
|
+
readonly requiredScopes: readonly [];
|
|
1237
|
+
}];
|
|
1238
|
+
readonly serviceId: "asana";
|
|
1239
|
+
};
|
|
1240
|
+
readonly type: "asana.task.removed";
|
|
1241
|
+
};
|
|
1242
|
+
readonly airtableRecordCreated: {
|
|
1243
|
+
readonly account: {
|
|
1244
|
+
readonly connectionOptions: readonly [{
|
|
1245
|
+
readonly requiredScopes: readonly [{
|
|
1246
|
+
readonly requirements: readonly ["data.records:read", "webhook:manage"];
|
|
1247
|
+
readonly type: "and";
|
|
1248
|
+
}];
|
|
1249
|
+
}];
|
|
1250
|
+
readonly serviceId: "airtable";
|
|
1251
|
+
};
|
|
1252
|
+
readonly type: "airtable.record.created";
|
|
1253
|
+
};
|
|
1254
|
+
readonly airtableRecordDeleted: {
|
|
1255
|
+
readonly account: {
|
|
1256
|
+
readonly connectionOptions: readonly [{
|
|
1257
|
+
readonly requiredScopes: readonly [{
|
|
1258
|
+
readonly requirements: readonly ["data.records:read", "webhook:manage"];
|
|
1259
|
+
readonly type: "and";
|
|
1260
|
+
}];
|
|
1261
|
+
}];
|
|
1262
|
+
readonly serviceId: "airtable";
|
|
1263
|
+
};
|
|
1264
|
+
readonly type: "airtable.record.deleted";
|
|
1265
|
+
};
|
|
1266
|
+
readonly airtableRecordMovedIntoView: {
|
|
1267
|
+
readonly account: {
|
|
1268
|
+
readonly connectionOptions: readonly [{
|
|
1269
|
+
readonly requiredScopes: readonly [{
|
|
1270
|
+
readonly requirements: readonly ["data.records:read", "webhook:manage"];
|
|
1271
|
+
readonly type: "and";
|
|
1272
|
+
}];
|
|
1273
|
+
}];
|
|
1274
|
+
readonly serviceId: "airtable";
|
|
1275
|
+
};
|
|
1276
|
+
readonly type: "airtable.record.movedIntoView";
|
|
1277
|
+
};
|
|
1278
|
+
readonly airtableRecordMovedOutOfView: {
|
|
1279
|
+
readonly account: {
|
|
1280
|
+
readonly connectionOptions: readonly [{
|
|
1281
|
+
readonly requiredScopes: readonly [{
|
|
1282
|
+
readonly requirements: readonly ["data.records:read", "webhook:manage"];
|
|
1283
|
+
readonly type: "and";
|
|
1284
|
+
}];
|
|
1285
|
+
}];
|
|
1286
|
+
readonly serviceId: "airtable";
|
|
1287
|
+
};
|
|
1288
|
+
readonly type: "airtable.record.movedOutOfView";
|
|
1289
|
+
};
|
|
1290
|
+
readonly airtableRecordUpdated: {
|
|
1291
|
+
readonly account: {
|
|
1292
|
+
readonly connectionOptions: readonly [{
|
|
1293
|
+
readonly requiredScopes: readonly [{
|
|
1294
|
+
readonly requirements: readonly ["data.records:read", "webhook:manage"];
|
|
1295
|
+
readonly type: "and";
|
|
1296
|
+
}];
|
|
1297
|
+
}];
|
|
1298
|
+
readonly serviceId: "airtable";
|
|
1299
|
+
};
|
|
1300
|
+
readonly type: "airtable.record.updated";
|
|
1301
|
+
};
|
|
1302
|
+
};
|
|
1303
|
+
/** Trigger definitions with inferred display names materialized. */
|
|
1304
|
+
export declare const triggerCatalog: ({
|
|
1305
|
+
name: string;
|
|
1306
|
+
account: {
|
|
1307
|
+
readonly connectionOptions: readonly [{
|
|
1308
|
+
readonly requiredScopes: readonly [{
|
|
1309
|
+
readonly requirements: readonly ["data.records:read", "webhook:manage"];
|
|
1310
|
+
readonly type: "and";
|
|
1311
|
+
}];
|
|
1312
|
+
}];
|
|
1313
|
+
readonly serviceId: "airtable";
|
|
1314
|
+
};
|
|
1315
|
+
type: "airtable.record.created";
|
|
1316
|
+
} | {
|
|
1317
|
+
name: string;
|
|
1318
|
+
account: {
|
|
1319
|
+
readonly connectionOptions: readonly [{
|
|
1320
|
+
readonly requiredScopes: readonly [{
|
|
1321
|
+
readonly requirements: readonly ["data.records:read", "webhook:manage"];
|
|
1322
|
+
readonly type: "and";
|
|
1323
|
+
}];
|
|
1324
|
+
}];
|
|
1325
|
+
readonly serviceId: "airtable";
|
|
1326
|
+
};
|
|
1327
|
+
type: "airtable.record.deleted";
|
|
1328
|
+
} | {
|
|
1329
|
+
name: string;
|
|
1330
|
+
account: {
|
|
1331
|
+
readonly connectionOptions: readonly [{
|
|
1332
|
+
readonly requiredScopes: readonly [{
|
|
1333
|
+
readonly requirements: readonly ["data.records:read", "webhook:manage"];
|
|
1334
|
+
readonly type: "and";
|
|
1335
|
+
}];
|
|
1336
|
+
}];
|
|
1337
|
+
readonly serviceId: "airtable";
|
|
1338
|
+
};
|
|
1339
|
+
type: "airtable.record.movedIntoView";
|
|
1340
|
+
} | {
|
|
1341
|
+
name: string;
|
|
1342
|
+
account: {
|
|
1343
|
+
readonly connectionOptions: readonly [{
|
|
1344
|
+
readonly requiredScopes: readonly [{
|
|
1345
|
+
readonly requirements: readonly ["data.records:read", "webhook:manage"];
|
|
1346
|
+
readonly type: "and";
|
|
1347
|
+
}];
|
|
1348
|
+
}];
|
|
1349
|
+
readonly serviceId: "airtable";
|
|
1350
|
+
};
|
|
1351
|
+
type: "airtable.record.movedOutOfView";
|
|
1352
|
+
} | {
|
|
1353
|
+
name: string;
|
|
1354
|
+
account: {
|
|
1355
|
+
readonly connectionOptions: readonly [{
|
|
1356
|
+
readonly requiredScopes: readonly [{
|
|
1357
|
+
readonly requirements: readonly ["data.records:read", "webhook:manage"];
|
|
1358
|
+
readonly type: "and";
|
|
1359
|
+
}];
|
|
1360
|
+
}];
|
|
1361
|
+
readonly serviceId: "airtable";
|
|
1362
|
+
};
|
|
1363
|
+
type: "airtable.record.updated";
|
|
1364
|
+
} | {
|
|
1365
|
+
name: string;
|
|
1366
|
+
account: {
|
|
1367
|
+
readonly connectionOptions: readonly [{
|
|
1368
|
+
readonly requiredScopes: readonly [];
|
|
1369
|
+
}];
|
|
1370
|
+
readonly serviceId: "asana";
|
|
1371
|
+
};
|
|
1372
|
+
type: "asana.comment.added";
|
|
1373
|
+
} | {
|
|
1374
|
+
name: string;
|
|
1375
|
+
account: {
|
|
1376
|
+
readonly connectionOptions: readonly [{
|
|
1377
|
+
readonly requiredScopes: readonly [];
|
|
1378
|
+
}];
|
|
1379
|
+
readonly serviceId: "asana";
|
|
1380
|
+
};
|
|
1381
|
+
type: "asana.event";
|
|
1382
|
+
} | {
|
|
1383
|
+
name: string;
|
|
1384
|
+
account: {
|
|
1385
|
+
readonly connectionOptions: readonly [{
|
|
1386
|
+
readonly requiredScopes: readonly [];
|
|
1387
|
+
}];
|
|
1388
|
+
readonly serviceId: "asana";
|
|
1389
|
+
};
|
|
1390
|
+
type: "asana.task.added";
|
|
1391
|
+
} | {
|
|
1392
|
+
name: string;
|
|
1393
|
+
account: {
|
|
1394
|
+
readonly connectionOptions: readonly [{
|
|
1395
|
+
readonly requiredScopes: readonly [];
|
|
1396
|
+
}];
|
|
1397
|
+
readonly serviceId: "asana";
|
|
1398
|
+
};
|
|
1399
|
+
type: "asana.task.changed";
|
|
1400
|
+
} | {
|
|
1401
|
+
name: string;
|
|
1402
|
+
account: {
|
|
1403
|
+
readonly connectionOptions: readonly [{
|
|
1404
|
+
readonly requiredScopes: readonly [];
|
|
1405
|
+
}];
|
|
1406
|
+
readonly serviceId: "asana";
|
|
1407
|
+
};
|
|
1408
|
+
type: "asana.task.completed";
|
|
1409
|
+
} | {
|
|
1410
|
+
name: string;
|
|
1411
|
+
account: {
|
|
1412
|
+
readonly connectionOptions: readonly [{
|
|
1413
|
+
readonly requiredScopes: readonly [];
|
|
1414
|
+
}];
|
|
1415
|
+
readonly serviceId: "asana";
|
|
1416
|
+
};
|
|
1417
|
+
type: "asana.task.deleted";
|
|
1418
|
+
} | {
|
|
1419
|
+
name: string;
|
|
1420
|
+
account: {
|
|
1421
|
+
readonly connectionOptions: readonly [{
|
|
1422
|
+
readonly requiredScopes: readonly [];
|
|
1423
|
+
}];
|
|
1424
|
+
readonly serviceId: "asana";
|
|
1425
|
+
};
|
|
1426
|
+
type: "asana.task.removed";
|
|
1427
|
+
} | {
|
|
1428
|
+
name: string;
|
|
1429
|
+
account: {
|
|
1430
|
+
readonly connectionOptions: readonly [{
|
|
1431
|
+
readonly requiredScopes: readonly [];
|
|
1432
|
+
}];
|
|
1433
|
+
readonly serviceId: "brevo";
|
|
1434
|
+
};
|
|
1435
|
+
type: "brevo.transactional.blocked";
|
|
1436
|
+
} | {
|
|
1437
|
+
name: string;
|
|
1438
|
+
account: {
|
|
1439
|
+
readonly connectionOptions: readonly [{
|
|
1440
|
+
readonly requiredScopes: readonly [];
|
|
1441
|
+
}];
|
|
1442
|
+
readonly serviceId: "brevo";
|
|
1443
|
+
};
|
|
1444
|
+
type: "brevo.transactional.clicked";
|
|
1445
|
+
} | {
|
|
1446
|
+
name: string;
|
|
1447
|
+
account: {
|
|
1448
|
+
readonly connectionOptions: readonly [{
|
|
1449
|
+
readonly requiredScopes: readonly [];
|
|
1450
|
+
}];
|
|
1451
|
+
readonly serviceId: "brevo";
|
|
1452
|
+
};
|
|
1453
|
+
type: "brevo.transactional.deferred";
|
|
1454
|
+
} | {
|
|
1455
|
+
name: string;
|
|
1456
|
+
account: {
|
|
1457
|
+
readonly connectionOptions: readonly [{
|
|
1458
|
+
readonly requiredScopes: readonly [];
|
|
1459
|
+
}];
|
|
1460
|
+
readonly serviceId: "brevo";
|
|
1461
|
+
};
|
|
1462
|
+
type: "brevo.transactional.delivered";
|
|
1463
|
+
} | {
|
|
1464
|
+
name: string;
|
|
1465
|
+
account: {
|
|
1466
|
+
readonly connectionOptions: readonly [{
|
|
1467
|
+
readonly requiredScopes: readonly [];
|
|
1468
|
+
}];
|
|
1469
|
+
readonly serviceId: "brevo";
|
|
1470
|
+
};
|
|
1471
|
+
type: "brevo.transactional.event";
|
|
1472
|
+
} | {
|
|
1473
|
+
name: string;
|
|
1474
|
+
account: {
|
|
1475
|
+
readonly connectionOptions: readonly [{
|
|
1476
|
+
readonly requiredScopes: readonly [];
|
|
1477
|
+
}];
|
|
1478
|
+
readonly serviceId: "brevo";
|
|
1479
|
+
};
|
|
1480
|
+
type: "brevo.transactional.hardBounced";
|
|
1481
|
+
} | {
|
|
1482
|
+
name: string;
|
|
1483
|
+
account: {
|
|
1484
|
+
readonly connectionOptions: readonly [{
|
|
1485
|
+
readonly requiredScopes: readonly [];
|
|
1486
|
+
}];
|
|
1487
|
+
readonly serviceId: "brevo";
|
|
1488
|
+
};
|
|
1489
|
+
type: "brevo.transactional.markedAsSpam";
|
|
1490
|
+
} | {
|
|
1491
|
+
name: string;
|
|
1492
|
+
account: {
|
|
1493
|
+
readonly connectionOptions: readonly [{
|
|
1494
|
+
readonly requiredScopes: readonly [];
|
|
1495
|
+
}];
|
|
1496
|
+
readonly serviceId: "brevo";
|
|
1497
|
+
};
|
|
1498
|
+
type: "brevo.transactional.opened";
|
|
1499
|
+
} | {
|
|
1500
|
+
name: string;
|
|
1501
|
+
account: {
|
|
1502
|
+
readonly connectionOptions: readonly [{
|
|
1503
|
+
readonly requiredScopes: readonly [];
|
|
1504
|
+
}];
|
|
1505
|
+
readonly serviceId: "brevo";
|
|
1506
|
+
};
|
|
1507
|
+
type: "brevo.transactional.sent";
|
|
1508
|
+
} | {
|
|
1509
|
+
name: string;
|
|
1510
|
+
account: {
|
|
1511
|
+
readonly connectionOptions: readonly [{
|
|
1512
|
+
readonly requiredScopes: readonly [];
|
|
1513
|
+
}];
|
|
1514
|
+
readonly serviceId: "brevo";
|
|
1515
|
+
};
|
|
1516
|
+
type: "brevo.transactional.softBounced";
|
|
1517
|
+
} | {
|
|
1518
|
+
name: string;
|
|
1519
|
+
account: {
|
|
1520
|
+
readonly connectionOptions: readonly [{
|
|
1521
|
+
readonly requiredScopes: readonly [];
|
|
1522
|
+
}];
|
|
1523
|
+
readonly serviceId: "brevo";
|
|
1524
|
+
};
|
|
1525
|
+
type: "brevo.transactional.unsubscribed";
|
|
1526
|
+
} | {
|
|
1527
|
+
name: string;
|
|
1528
|
+
getDetails: ({ config }: TriggerPresentationContext) => {
|
|
1529
|
+
label: string;
|
|
1530
|
+
value: string;
|
|
1531
|
+
}[];
|
|
1532
|
+
icon: "automation";
|
|
1533
|
+
type: "automation.invoked";
|
|
1534
|
+
} | {
|
|
1535
|
+
name: string;
|
|
1536
|
+
getDetails: ({ config }: TriggerPresentationContext) => {
|
|
1537
|
+
label: string;
|
|
1538
|
+
value: string;
|
|
1539
|
+
}[];
|
|
1540
|
+
icon: "schedule";
|
|
1541
|
+
type: "cron.tick";
|
|
1542
|
+
} | {
|
|
1543
|
+
name: string;
|
|
1544
|
+
getDetails: ({ appOrigin, automationId, config, hookSlot, projectId }: TriggerPresentationContext) => {
|
|
1545
|
+
copyable: true;
|
|
1546
|
+
label: string;
|
|
1547
|
+
value: string;
|
|
1548
|
+
}[];
|
|
1549
|
+
icon: "webhook";
|
|
1550
|
+
type: "http.request";
|
|
1551
|
+
} | {
|
|
1552
|
+
name: string;
|
|
1553
|
+
account: {
|
|
1554
|
+
readonly connectionOptions: readonly [{
|
|
1555
|
+
readonly requiredScopes: readonly ["issues:read"];
|
|
1556
|
+
}];
|
|
1557
|
+
readonly serviceId: "github";
|
|
1558
|
+
};
|
|
1559
|
+
type: "github.issue.closed";
|
|
1560
|
+
} | {
|
|
1561
|
+
name: string;
|
|
1562
|
+
account: {
|
|
1563
|
+
readonly connectionOptions: readonly [{
|
|
1564
|
+
readonly requiredScopes: readonly ["issues:read"];
|
|
1565
|
+
}];
|
|
1566
|
+
readonly serviceId: "github";
|
|
1567
|
+
};
|
|
1568
|
+
type: "github.issue.event";
|
|
1569
|
+
} | {
|
|
1570
|
+
name: string;
|
|
1571
|
+
account: {
|
|
1572
|
+
readonly connectionOptions: readonly [{
|
|
1573
|
+
readonly requiredScopes: readonly ["issues:read"];
|
|
1574
|
+
}];
|
|
1575
|
+
readonly serviceId: "github";
|
|
1576
|
+
};
|
|
1577
|
+
type: "github.issue.opened";
|
|
1578
|
+
} | {
|
|
1579
|
+
name: string;
|
|
1580
|
+
account: {
|
|
1581
|
+
readonly connectionOptions: readonly [{
|
|
1582
|
+
readonly requiredScopes: readonly ["issues:read"];
|
|
1583
|
+
}];
|
|
1584
|
+
readonly serviceId: "github";
|
|
1585
|
+
};
|
|
1586
|
+
type: "github.issue.reopened";
|
|
1587
|
+
} | {
|
|
1588
|
+
name: string;
|
|
1589
|
+
account: {
|
|
1590
|
+
readonly connectionOptions: readonly [{
|
|
1591
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
1592
|
+
}];
|
|
1593
|
+
readonly serviceId: "github";
|
|
1594
|
+
};
|
|
1595
|
+
type: "github.pull-request.closed";
|
|
1596
|
+
} | {
|
|
1597
|
+
name: string;
|
|
1598
|
+
account: {
|
|
1599
|
+
readonly connectionOptions: readonly [{
|
|
1600
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
1601
|
+
}];
|
|
1602
|
+
readonly serviceId: "github";
|
|
1603
|
+
};
|
|
1604
|
+
type: "github.pull-request.event";
|
|
1605
|
+
} | {
|
|
1606
|
+
name: string;
|
|
1607
|
+
account: {
|
|
1608
|
+
readonly connectionOptions: readonly [{
|
|
1609
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
1610
|
+
}];
|
|
1611
|
+
readonly serviceId: "github";
|
|
1612
|
+
};
|
|
1613
|
+
type: "github.pull-request.merged";
|
|
1614
|
+
} | {
|
|
1615
|
+
name: string;
|
|
1616
|
+
account: {
|
|
1617
|
+
readonly connectionOptions: readonly [{
|
|
1618
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
1619
|
+
}];
|
|
1620
|
+
readonly serviceId: "github";
|
|
1621
|
+
};
|
|
1622
|
+
type: "github.pull-request.opened";
|
|
1623
|
+
} | {
|
|
1624
|
+
name: string;
|
|
1625
|
+
account: {
|
|
1626
|
+
readonly connectionOptions: readonly [{
|
|
1627
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
1628
|
+
}];
|
|
1629
|
+
readonly serviceId: "github";
|
|
1630
|
+
};
|
|
1631
|
+
type: "github.pull-request.ready-for-review";
|
|
1632
|
+
} | {
|
|
1633
|
+
name: string;
|
|
1634
|
+
account: {
|
|
1635
|
+
readonly connectionOptions: readonly [{
|
|
1636
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
1637
|
+
}];
|
|
1638
|
+
readonly serviceId: "github";
|
|
1639
|
+
};
|
|
1640
|
+
type: "github.pull-request-review.approved";
|
|
1641
|
+
} | {
|
|
1642
|
+
name: string;
|
|
1643
|
+
account: {
|
|
1644
|
+
readonly connectionOptions: readonly [{
|
|
1645
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
1646
|
+
}];
|
|
1647
|
+
readonly serviceId: "github";
|
|
1648
|
+
};
|
|
1649
|
+
type: "github.pull-request-review.changes-requested";
|
|
1650
|
+
} | {
|
|
1651
|
+
name: string;
|
|
1652
|
+
account: {
|
|
1653
|
+
readonly connectionOptions: readonly [{
|
|
1654
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
1655
|
+
}];
|
|
1656
|
+
readonly serviceId: "github";
|
|
1657
|
+
};
|
|
1658
|
+
type: "github.pull-request-review.dismissed";
|
|
1659
|
+
} | {
|
|
1660
|
+
name: string;
|
|
1661
|
+
account: {
|
|
1662
|
+
readonly connectionOptions: readonly [{
|
|
1663
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
1664
|
+
}];
|
|
1665
|
+
readonly serviceId: "github";
|
|
1666
|
+
};
|
|
1667
|
+
type: "github.pull-request-review.event";
|
|
1668
|
+
} | {
|
|
1669
|
+
name: string;
|
|
1670
|
+
account: {
|
|
1671
|
+
readonly connectionOptions: readonly [{
|
|
1672
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
1673
|
+
}];
|
|
1674
|
+
readonly serviceId: "github";
|
|
1675
|
+
};
|
|
1676
|
+
type: "github.pull-request-review.submitted";
|
|
1677
|
+
} | {
|
|
1678
|
+
name: string;
|
|
1679
|
+
account: {
|
|
1680
|
+
readonly connectionOptions: readonly [{
|
|
1681
|
+
readonly requiredScopes: readonly ["pull_requests:read"];
|
|
1682
|
+
}];
|
|
1683
|
+
readonly serviceId: "github";
|
|
1684
|
+
};
|
|
1685
|
+
type: "github.pull-request.synchronized";
|
|
1686
|
+
} | {
|
|
1687
|
+
name: string;
|
|
1688
|
+
account: {
|
|
1689
|
+
readonly connectionOptions: readonly [{
|
|
1690
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
1691
|
+
}];
|
|
1692
|
+
readonly serviceId: "github";
|
|
1693
|
+
};
|
|
1694
|
+
type: "github.push";
|
|
1695
|
+
} | {
|
|
1696
|
+
name: string;
|
|
1697
|
+
account: {
|
|
1698
|
+
readonly connectionOptions: readonly [{
|
|
1699
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
1700
|
+
}];
|
|
1701
|
+
readonly serviceId: "github";
|
|
1702
|
+
};
|
|
1703
|
+
type: "github.release.event";
|
|
1704
|
+
} | {
|
|
1705
|
+
name: string;
|
|
1706
|
+
account: {
|
|
1707
|
+
readonly connectionOptions: readonly [{
|
|
1708
|
+
readonly requiredScopes: readonly ["contents:read"];
|
|
1709
|
+
}];
|
|
1710
|
+
readonly serviceId: "github";
|
|
1711
|
+
};
|
|
1712
|
+
type: "github.release.published";
|
|
1713
|
+
} | {
|
|
1714
|
+
name: string;
|
|
1715
|
+
account: {
|
|
1716
|
+
readonly connectionOptions: readonly [{
|
|
1717
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
1718
|
+
}];
|
|
1719
|
+
readonly serviceId: "github";
|
|
1720
|
+
};
|
|
1721
|
+
type: "github.workflow-run.cancelled";
|
|
1722
|
+
} | {
|
|
1723
|
+
name: string;
|
|
1724
|
+
account: {
|
|
1725
|
+
readonly connectionOptions: readonly [{
|
|
1726
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
1727
|
+
}];
|
|
1728
|
+
readonly serviceId: "github";
|
|
1729
|
+
};
|
|
1730
|
+
type: "github.workflow-run.completed";
|
|
1731
|
+
} | {
|
|
1732
|
+
name: string;
|
|
1733
|
+
account: {
|
|
1734
|
+
readonly connectionOptions: readonly [{
|
|
1735
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
1736
|
+
}];
|
|
1737
|
+
readonly serviceId: "github";
|
|
1738
|
+
};
|
|
1739
|
+
type: "github.workflow-run.event";
|
|
1740
|
+
} | {
|
|
1741
|
+
name: string;
|
|
1742
|
+
account: {
|
|
1743
|
+
readonly connectionOptions: readonly [{
|
|
1744
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
1745
|
+
}];
|
|
1746
|
+
readonly serviceId: "github";
|
|
1747
|
+
};
|
|
1748
|
+
type: "github.workflow-run.failed";
|
|
1749
|
+
} | {
|
|
1750
|
+
name: string;
|
|
1751
|
+
account: {
|
|
1752
|
+
readonly connectionOptions: readonly [{
|
|
1753
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
1754
|
+
}];
|
|
1755
|
+
readonly serviceId: "github";
|
|
1756
|
+
};
|
|
1757
|
+
type: "github.workflow-run.requested";
|
|
1758
|
+
} | {
|
|
1759
|
+
name: string;
|
|
1760
|
+
account: {
|
|
1761
|
+
readonly connectionOptions: readonly [{
|
|
1762
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
1763
|
+
}];
|
|
1764
|
+
readonly serviceId: "github";
|
|
1765
|
+
};
|
|
1766
|
+
type: "github.workflow-run.started";
|
|
1767
|
+
} | {
|
|
1768
|
+
name: string;
|
|
1769
|
+
account: {
|
|
1770
|
+
readonly connectionOptions: readonly [{
|
|
1771
|
+
readonly requiredScopes: readonly ["actions:read"];
|
|
1772
|
+
}];
|
|
1773
|
+
readonly serviceId: "github";
|
|
1774
|
+
};
|
|
1775
|
+
type: "github.workflow-run.succeeded";
|
|
1776
|
+
} | {
|
|
1777
|
+
name: string;
|
|
1778
|
+
account: {
|
|
1779
|
+
readonly connectionOptions: readonly [{
|
|
1780
|
+
readonly requiredScopes: readonly [{
|
|
1781
|
+
readonly requirements: readonly ["https://mail.google.com/", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly"];
|
|
1782
|
+
readonly type: "or";
|
|
1783
|
+
}];
|
|
1784
|
+
}];
|
|
1785
|
+
readonly serviceId: "google";
|
|
1786
|
+
};
|
|
1787
|
+
type: "gmail.label.added";
|
|
1788
|
+
} | {
|
|
1789
|
+
name: string;
|
|
1790
|
+
account: {
|
|
1791
|
+
readonly connectionOptions: readonly [{
|
|
1792
|
+
readonly requiredScopes: readonly [{
|
|
1793
|
+
readonly requirements: readonly ["https://mail.google.com/", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly"];
|
|
1794
|
+
readonly type: "or";
|
|
1795
|
+
}];
|
|
1796
|
+
}];
|
|
1797
|
+
readonly serviceId: "google";
|
|
1798
|
+
};
|
|
1799
|
+
type: "gmail.label.removed";
|
|
1800
|
+
} | {
|
|
1801
|
+
name: string;
|
|
1802
|
+
account: {
|
|
1803
|
+
readonly connectionOptions: readonly [{
|
|
1804
|
+
readonly requiredScopes: readonly [{
|
|
1805
|
+
readonly requirements: readonly ["https://mail.google.com/", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly"];
|
|
1806
|
+
readonly type: "or";
|
|
1807
|
+
}];
|
|
1808
|
+
}];
|
|
1809
|
+
readonly serviceId: "google";
|
|
1810
|
+
};
|
|
1811
|
+
type: "gmail.message.received";
|
|
1812
|
+
} | {
|
|
1813
|
+
name: string;
|
|
1814
|
+
account: {
|
|
1815
|
+
readonly connectionOptions: readonly [{
|
|
1816
|
+
readonly requiredScopes: readonly [{
|
|
1817
|
+
readonly requirements: readonly ["https://mail.google.com/", "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/gmail.readonly"];
|
|
1818
|
+
readonly type: "or";
|
|
1819
|
+
}];
|
|
1820
|
+
}];
|
|
1821
|
+
readonly serviceId: "google";
|
|
1822
|
+
};
|
|
1823
|
+
type: "gmail.message.sent";
|
|
1824
|
+
} | {
|
|
1825
|
+
name: string;
|
|
1826
|
+
account: {
|
|
1827
|
+
readonly connectionOptions: readonly [{
|
|
1828
|
+
readonly requiredScopes: readonly [{
|
|
1829
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.readonly", "https://www.googleapis.com/auth/calendar.events.owned"];
|
|
1830
|
+
readonly type: "or";
|
|
1831
|
+
}];
|
|
1832
|
+
}];
|
|
1833
|
+
readonly serviceId: "google";
|
|
1834
|
+
};
|
|
1835
|
+
type: "googleCalendar.event.created";
|
|
1836
|
+
} | {
|
|
1837
|
+
name: string;
|
|
1838
|
+
account: {
|
|
1839
|
+
readonly connectionOptions: readonly [{
|
|
1840
|
+
readonly requiredScopes: readonly [{
|
|
1841
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.readonly", "https://www.googleapis.com/auth/calendar.events.owned"];
|
|
1842
|
+
readonly type: "or";
|
|
1843
|
+
}];
|
|
1844
|
+
}];
|
|
1845
|
+
readonly serviceId: "google";
|
|
1846
|
+
};
|
|
1847
|
+
type: "googleCalendar.event.deleted";
|
|
1848
|
+
} | {
|
|
1849
|
+
name: string;
|
|
1850
|
+
account: {
|
|
1851
|
+
readonly connectionOptions: readonly [{
|
|
1852
|
+
readonly requiredScopes: readonly [{
|
|
1853
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly", "https://www.googleapis.com/auth/calendar.events", "https://www.googleapis.com/auth/calendar.events.readonly", "https://www.googleapis.com/auth/calendar.events.owned"];
|
|
1854
|
+
readonly type: "or";
|
|
1855
|
+
}];
|
|
1856
|
+
}];
|
|
1857
|
+
readonly serviceId: "google";
|
|
1858
|
+
};
|
|
1859
|
+
type: "googleCalendar.event.updated";
|
|
1860
|
+
} | {
|
|
1861
|
+
name: string;
|
|
1862
|
+
account: {
|
|
1863
|
+
readonly connectionOptions: readonly [{
|
|
1864
|
+
readonly requiredScopes: readonly [{
|
|
1865
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/forms.body", "https://www.googleapis.com/auth/forms.body.readonly"];
|
|
1866
|
+
readonly type: "or";
|
|
1867
|
+
}];
|
|
1868
|
+
}];
|
|
1869
|
+
readonly serviceId: "google";
|
|
1870
|
+
};
|
|
1871
|
+
type: "googleForms.form.changed";
|
|
1872
|
+
} | {
|
|
1873
|
+
name: string;
|
|
1874
|
+
account: {
|
|
1875
|
+
readonly connectionOptions: readonly [{
|
|
1876
|
+
readonly requiredScopes: readonly [{
|
|
1877
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/forms.body", "https://www.googleapis.com/auth/forms.body.readonly"];
|
|
1878
|
+
readonly type: "or";
|
|
1879
|
+
}, {
|
|
1880
|
+
readonly requirements: readonly [{
|
|
1881
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/forms.responses.readonly"];
|
|
1882
|
+
readonly type: "or";
|
|
1883
|
+
}, {
|
|
1884
|
+
readonly requirements: readonly ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/forms.body", "https://www.googleapis.com/auth/forms.body.readonly"];
|
|
1885
|
+
readonly type: "or";
|
|
1886
|
+
}];
|
|
1887
|
+
readonly type: "and";
|
|
1888
|
+
}];
|
|
1889
|
+
}];
|
|
1890
|
+
readonly serviceId: "google";
|
|
1891
|
+
};
|
|
1892
|
+
type: "googleForms.response.submitted";
|
|
1893
|
+
} | {
|
|
1894
|
+
name: string;
|
|
1895
|
+
account: {
|
|
1896
|
+
readonly connectionOptions: readonly [{
|
|
1897
|
+
readonly requiredScopes: readonly ["read"];
|
|
1898
|
+
}];
|
|
1899
|
+
readonly serviceId: "linear";
|
|
1900
|
+
};
|
|
1901
|
+
type: "linear.comment.created";
|
|
1902
|
+
} | {
|
|
1903
|
+
name: string;
|
|
1904
|
+
account: {
|
|
1905
|
+
readonly connectionOptions: readonly [{
|
|
1906
|
+
readonly requiredScopes: readonly ["read"];
|
|
1907
|
+
}];
|
|
1908
|
+
readonly serviceId: "linear";
|
|
1909
|
+
};
|
|
1910
|
+
type: "linear.comment.event";
|
|
1911
|
+
} | {
|
|
1912
|
+
name: string;
|
|
1913
|
+
account: {
|
|
1914
|
+
readonly connectionOptions: readonly [{
|
|
1915
|
+
readonly requiredScopes: readonly ["read"];
|
|
1916
|
+
}];
|
|
1917
|
+
readonly serviceId: "linear";
|
|
1918
|
+
};
|
|
1919
|
+
type: "linear.comment.removed";
|
|
1920
|
+
} | {
|
|
1921
|
+
name: string;
|
|
1922
|
+
account: {
|
|
1923
|
+
readonly connectionOptions: readonly [{
|
|
1924
|
+
readonly requiredScopes: readonly ["read"];
|
|
1925
|
+
}];
|
|
1926
|
+
readonly serviceId: "linear";
|
|
1927
|
+
};
|
|
1928
|
+
type: "linear.comment.updated";
|
|
1929
|
+
} | {
|
|
1930
|
+
name: string;
|
|
1931
|
+
account: {
|
|
1932
|
+
readonly connectionOptions: readonly [{
|
|
1933
|
+
readonly requiredScopes: readonly ["read"];
|
|
1934
|
+
}];
|
|
1935
|
+
readonly serviceId: "linear";
|
|
1936
|
+
};
|
|
1937
|
+
type: "linear.issue.created";
|
|
1938
|
+
} | {
|
|
1939
|
+
name: string;
|
|
1940
|
+
account: {
|
|
1941
|
+
readonly connectionOptions: readonly [{
|
|
1942
|
+
readonly requiredScopes: readonly ["read"];
|
|
1943
|
+
}];
|
|
1944
|
+
readonly serviceId: "linear";
|
|
1945
|
+
};
|
|
1946
|
+
type: "linear.issue.event";
|
|
1947
|
+
} | {
|
|
1948
|
+
name: string;
|
|
1949
|
+
account: {
|
|
1950
|
+
readonly connectionOptions: readonly [{
|
|
1951
|
+
readonly requiredScopes: readonly ["read"];
|
|
1952
|
+
}];
|
|
1953
|
+
readonly serviceId: "linear";
|
|
1954
|
+
};
|
|
1955
|
+
type: "linear.issue.removed";
|
|
1956
|
+
} | {
|
|
1957
|
+
name: string;
|
|
1958
|
+
account: {
|
|
1959
|
+
readonly connectionOptions: readonly [{
|
|
1960
|
+
readonly requiredScopes: readonly ["read"];
|
|
1961
|
+
}];
|
|
1962
|
+
readonly serviceId: "linear";
|
|
1963
|
+
};
|
|
1964
|
+
type: "linear.issue.updated";
|
|
1965
|
+
} | {
|
|
1966
|
+
name: string;
|
|
1967
|
+
account: {
|
|
1968
|
+
readonly connectionOptions: readonly [{
|
|
1969
|
+
readonly requiredScopes: readonly ["read"];
|
|
1970
|
+
}];
|
|
1971
|
+
readonly serviceId: "linear";
|
|
1972
|
+
};
|
|
1973
|
+
type: "linear.project.created";
|
|
1974
|
+
} | {
|
|
1975
|
+
name: string;
|
|
1976
|
+
account: {
|
|
1977
|
+
readonly connectionOptions: readonly [{
|
|
1978
|
+
readonly requiredScopes: readonly ["read"];
|
|
1979
|
+
}];
|
|
1980
|
+
readonly serviceId: "linear";
|
|
1981
|
+
};
|
|
1982
|
+
type: "linear.project.event";
|
|
1983
|
+
} | {
|
|
1984
|
+
name: string;
|
|
1985
|
+
account: {
|
|
1986
|
+
readonly connectionOptions: readonly [{
|
|
1987
|
+
readonly requiredScopes: readonly ["read"];
|
|
1988
|
+
}];
|
|
1989
|
+
readonly serviceId: "linear";
|
|
1990
|
+
};
|
|
1991
|
+
type: "linear.project.removed";
|
|
1992
|
+
} | {
|
|
1993
|
+
name: string;
|
|
1994
|
+
account: {
|
|
1995
|
+
readonly connectionOptions: readonly [{
|
|
1996
|
+
readonly requiredScopes: readonly ["read"];
|
|
1997
|
+
}];
|
|
1998
|
+
readonly serviceId: "linear";
|
|
1999
|
+
};
|
|
2000
|
+
type: "linear.project.updated";
|
|
2001
|
+
} | {
|
|
2002
|
+
name: string;
|
|
2003
|
+
account: {
|
|
2004
|
+
readonly connectionOptions: readonly [{
|
|
2005
|
+
readonly requiredScopes: readonly [{
|
|
2006
|
+
readonly requirements: readonly ["Mail.ReadWrite", "Mail.Read"];
|
|
2007
|
+
readonly type: "or";
|
|
2008
|
+
}];
|
|
2009
|
+
}];
|
|
2010
|
+
readonly serviceId: "microsoft";
|
|
2011
|
+
};
|
|
2012
|
+
type: "outlook.email.received";
|
|
2013
|
+
} | {
|
|
2014
|
+
name: string;
|
|
2015
|
+
account: {
|
|
2016
|
+
readonly connectionOptions: readonly [{
|
|
2017
|
+
readonly requiredScopes: readonly [{
|
|
2018
|
+
readonly requirements: readonly ["ChannelMessage.Read.All", "Team.ReadBasic.All", "Channel.ReadBasic.All"];
|
|
2019
|
+
readonly type: "and";
|
|
2020
|
+
}];
|
|
2021
|
+
}];
|
|
2022
|
+
readonly serviceId: "microsoft";
|
|
2023
|
+
};
|
|
2024
|
+
type: "teams.channel.message.posted";
|
|
2025
|
+
} | {
|
|
2026
|
+
name: string;
|
|
2027
|
+
account: {
|
|
2028
|
+
readonly connectionOptions: readonly [{
|
|
2029
|
+
readonly requiredScopes: readonly [{
|
|
2030
|
+
readonly requirements: readonly ["Chat.ReadWrite", "Chat.Read"];
|
|
2031
|
+
readonly type: "or";
|
|
2032
|
+
}];
|
|
2033
|
+
}];
|
|
2034
|
+
readonly serviceId: "microsoft";
|
|
2035
|
+
};
|
|
2036
|
+
type: "teams.chat.message.posted";
|
|
2037
|
+
} | {
|
|
2038
|
+
name: string;
|
|
2039
|
+
account: {
|
|
2040
|
+
readonly connectionOptions: readonly [{
|
|
2041
|
+
readonly requiredScopes: readonly [];
|
|
2042
|
+
}];
|
|
2043
|
+
readonly serviceId: "resend";
|
|
2044
|
+
};
|
|
2045
|
+
type: "resend.email.bounced";
|
|
2046
|
+
} | {
|
|
2047
|
+
name: string;
|
|
2048
|
+
account: {
|
|
2049
|
+
readonly connectionOptions: readonly [{
|
|
2050
|
+
readonly requiredScopes: readonly [];
|
|
2051
|
+
}];
|
|
2052
|
+
readonly serviceId: "resend";
|
|
2053
|
+
};
|
|
2054
|
+
type: "resend.email.clicked";
|
|
2055
|
+
} | {
|
|
2056
|
+
name: string;
|
|
2057
|
+
account: {
|
|
2058
|
+
readonly connectionOptions: readonly [{
|
|
2059
|
+
readonly requiredScopes: readonly [];
|
|
2060
|
+
}];
|
|
2061
|
+
readonly serviceId: "resend";
|
|
2062
|
+
};
|
|
2063
|
+
type: "resend.email.complained";
|
|
2064
|
+
} | {
|
|
2065
|
+
name: string;
|
|
2066
|
+
account: {
|
|
2067
|
+
readonly connectionOptions: readonly [{
|
|
2068
|
+
readonly requiredScopes: readonly [];
|
|
2069
|
+
}];
|
|
2070
|
+
readonly serviceId: "resend";
|
|
2071
|
+
};
|
|
2072
|
+
type: "resend.email.delivered";
|
|
2073
|
+
} | {
|
|
2074
|
+
name: string;
|
|
2075
|
+
account: {
|
|
2076
|
+
readonly connectionOptions: readonly [{
|
|
2077
|
+
readonly requiredScopes: readonly [];
|
|
2078
|
+
}];
|
|
2079
|
+
readonly serviceId: "resend";
|
|
2080
|
+
};
|
|
2081
|
+
type: "resend.email.deliveryDelayed";
|
|
2082
|
+
} | {
|
|
2083
|
+
name: string;
|
|
2084
|
+
account: {
|
|
2085
|
+
readonly connectionOptions: readonly [{
|
|
2086
|
+
readonly requiredScopes: readonly [];
|
|
2087
|
+
}];
|
|
2088
|
+
readonly serviceId: "resend";
|
|
2089
|
+
};
|
|
2090
|
+
type: "resend.email.event";
|
|
2091
|
+
} | {
|
|
2092
|
+
name: string;
|
|
2093
|
+
account: {
|
|
2094
|
+
readonly connectionOptions: readonly [{
|
|
2095
|
+
readonly requiredScopes: readonly [];
|
|
2096
|
+
}];
|
|
2097
|
+
readonly serviceId: "resend";
|
|
2098
|
+
};
|
|
2099
|
+
type: "resend.email.failed";
|
|
2100
|
+
} | {
|
|
2101
|
+
name: string;
|
|
2102
|
+
account: {
|
|
2103
|
+
readonly connectionOptions: readonly [{
|
|
2104
|
+
readonly requiredScopes: readonly [];
|
|
2105
|
+
}];
|
|
2106
|
+
readonly serviceId: "resend";
|
|
2107
|
+
};
|
|
2108
|
+
type: "resend.email.opened";
|
|
2109
|
+
} | {
|
|
2110
|
+
name: string;
|
|
2111
|
+
account: {
|
|
2112
|
+
readonly connectionOptions: readonly [{
|
|
2113
|
+
readonly requiredScopes: readonly [];
|
|
2114
|
+
}];
|
|
2115
|
+
readonly serviceId: "resend";
|
|
2116
|
+
};
|
|
2117
|
+
type: "resend.email.received";
|
|
2118
|
+
} | {
|
|
2119
|
+
name: string;
|
|
2120
|
+
account: {
|
|
2121
|
+
readonly connectionOptions: readonly [{
|
|
2122
|
+
readonly requiredScopes: readonly [];
|
|
2123
|
+
}];
|
|
2124
|
+
readonly serviceId: "resend";
|
|
2125
|
+
};
|
|
2126
|
+
type: "resend.email.scheduled";
|
|
2127
|
+
} | {
|
|
2128
|
+
name: string;
|
|
2129
|
+
account: {
|
|
2130
|
+
readonly connectionOptions: readonly [{
|
|
2131
|
+
readonly requiredScopes: readonly [];
|
|
2132
|
+
}];
|
|
2133
|
+
readonly serviceId: "resend";
|
|
2134
|
+
};
|
|
2135
|
+
type: "resend.email.sent";
|
|
2136
|
+
} | {
|
|
2137
|
+
name: string;
|
|
2138
|
+
account: {
|
|
2139
|
+
readonly connectionOptions: readonly [{
|
|
2140
|
+
readonly requiredScopes: readonly [];
|
|
2141
|
+
}];
|
|
2142
|
+
readonly serviceId: "resend";
|
|
2143
|
+
};
|
|
2144
|
+
type: "resend.email.suppressed";
|
|
2145
|
+
} | {
|
|
2146
|
+
name: string;
|
|
2147
|
+
account: {
|
|
2148
|
+
readonly connectionOptions: readonly [{
|
|
2149
|
+
readonly requiredScopes: readonly ["app_mentions:read"];
|
|
2150
|
+
}];
|
|
2151
|
+
readonly serviceId: "slack";
|
|
2152
|
+
};
|
|
2153
|
+
type: "slack.app.mentioned";
|
|
2154
|
+
} | {
|
|
2155
|
+
name: string;
|
|
2156
|
+
account: {
|
|
2157
|
+
readonly connectionOptions: readonly [{
|
|
2158
|
+
readonly requiredScopes: readonly [{
|
|
2159
|
+
readonly requirements: readonly ["channels:history", "groups:history", "im:history", "mpim:history"];
|
|
2160
|
+
readonly type: "and";
|
|
2161
|
+
}];
|
|
2162
|
+
}];
|
|
2163
|
+
readonly serviceId: "slack";
|
|
2164
|
+
};
|
|
2165
|
+
type: "slack.message.posted";
|
|
2166
|
+
} | {
|
|
2167
|
+
name: string;
|
|
2168
|
+
account: {
|
|
2169
|
+
readonly connectionOptions: readonly [{
|
|
2170
|
+
readonly requiredScopes: readonly ["reactions:read"];
|
|
2171
|
+
}];
|
|
2172
|
+
readonly serviceId: "slack";
|
|
2173
|
+
};
|
|
2174
|
+
type: "slack.reaction.added";
|
|
2175
|
+
} | {
|
|
2176
|
+
name: string;
|
|
2177
|
+
account: {
|
|
2178
|
+
readonly connectionOptions: readonly [{
|
|
2179
|
+
readonly requiredScopes: readonly ["reactions:read"];
|
|
2180
|
+
}];
|
|
2181
|
+
readonly serviceId: "slack";
|
|
2182
|
+
};
|
|
2183
|
+
type: "slack.reaction.removed";
|
|
2184
|
+
} | {
|
|
2185
|
+
name: string;
|
|
2186
|
+
account: {
|
|
2187
|
+
readonly connectionOptions: readonly [{
|
|
2188
|
+
readonly requiredScopes: readonly [];
|
|
2189
|
+
}];
|
|
2190
|
+
readonly serviceId: "trello";
|
|
2191
|
+
};
|
|
2192
|
+
type: "trello.board.event";
|
|
2193
|
+
} | {
|
|
2194
|
+
name: string;
|
|
2195
|
+
account: {
|
|
2196
|
+
readonly connectionOptions: readonly [{
|
|
2197
|
+
readonly requiredScopes: readonly [];
|
|
2198
|
+
}];
|
|
2199
|
+
readonly serviceId: "trello";
|
|
2200
|
+
};
|
|
2201
|
+
type: "trello.card.archived";
|
|
2202
|
+
} | {
|
|
2203
|
+
name: string;
|
|
2204
|
+
account: {
|
|
2205
|
+
readonly connectionOptions: readonly [{
|
|
2206
|
+
readonly requiredScopes: readonly [];
|
|
2207
|
+
}];
|
|
2208
|
+
readonly serviceId: "trello";
|
|
2209
|
+
};
|
|
2210
|
+
type: "trello.card.commented";
|
|
2211
|
+
} | {
|
|
2212
|
+
name: string;
|
|
2213
|
+
account: {
|
|
2214
|
+
readonly connectionOptions: readonly [{
|
|
2215
|
+
readonly requiredScopes: readonly [];
|
|
2216
|
+
}];
|
|
2217
|
+
readonly serviceId: "trello";
|
|
2218
|
+
};
|
|
2219
|
+
type: "trello.card.created";
|
|
2220
|
+
} | {
|
|
2221
|
+
name: string;
|
|
2222
|
+
account: {
|
|
2223
|
+
readonly connectionOptions: readonly [{
|
|
2224
|
+
readonly requiredScopes: readonly [];
|
|
2225
|
+
}];
|
|
2226
|
+
readonly serviceId: "trello";
|
|
2227
|
+
};
|
|
2228
|
+
type: "trello.card.moved";
|
|
2229
|
+
} | {
|
|
2230
|
+
name: string;
|
|
2231
|
+
account: {
|
|
2232
|
+
readonly connectionOptions: readonly [{
|
|
2233
|
+
readonly requiredScopes: readonly [];
|
|
2234
|
+
}];
|
|
2235
|
+
readonly serviceId: "trello";
|
|
2236
|
+
};
|
|
2237
|
+
type: "trello.card.updated";
|
|
2238
|
+
} | {
|
|
2239
|
+
name: string;
|
|
2240
|
+
account: {
|
|
2241
|
+
readonly connectionOptions: readonly [{
|
|
2242
|
+
readonly connectionId: "oauth";
|
|
2243
|
+
readonly requiredScopes: readonly ["deployment:read"];
|
|
2244
|
+
}];
|
|
2245
|
+
readonly serviceId: "vercel";
|
|
2246
|
+
};
|
|
2247
|
+
type: "vercel.deployment";
|
|
2248
|
+
} | {
|
|
2249
|
+
name: string;
|
|
2250
|
+
account: {
|
|
2251
|
+
readonly connectionOptions: readonly [{
|
|
2252
|
+
readonly connectionId: "oauth";
|
|
2253
|
+
readonly requiredScopes: readonly ["deployment:read"];
|
|
2254
|
+
}];
|
|
2255
|
+
readonly serviceId: "vercel";
|
|
2256
|
+
};
|
|
2257
|
+
type: "vercel.deployment.canceled";
|
|
2258
|
+
} | {
|
|
2259
|
+
name: string;
|
|
2260
|
+
account: {
|
|
2261
|
+
readonly connectionOptions: readonly [{
|
|
2262
|
+
readonly connectionId: "oauth";
|
|
2263
|
+
readonly requiredScopes: readonly ["deployment:read"];
|
|
2264
|
+
}];
|
|
2265
|
+
readonly serviceId: "vercel";
|
|
2266
|
+
};
|
|
2267
|
+
type: "vercel.deployment.created";
|
|
2268
|
+
} | {
|
|
2269
|
+
name: string;
|
|
2270
|
+
account: {
|
|
2271
|
+
readonly connectionOptions: readonly [{
|
|
2272
|
+
readonly connectionId: "oauth";
|
|
2273
|
+
readonly requiredScopes: readonly ["deployment:read"];
|
|
2274
|
+
}];
|
|
2275
|
+
readonly serviceId: "vercel";
|
|
2276
|
+
};
|
|
2277
|
+
type: "vercel.deployment.failed";
|
|
2278
|
+
} | {
|
|
2279
|
+
name: string;
|
|
2280
|
+
account: {
|
|
2281
|
+
readonly connectionOptions: readonly [{
|
|
2282
|
+
readonly connectionId: "oauth";
|
|
2283
|
+
readonly requiredScopes: readonly ["deployment:read"];
|
|
2284
|
+
}];
|
|
2285
|
+
readonly serviceId: "vercel";
|
|
2286
|
+
};
|
|
2287
|
+
type: "vercel.deployment.promoted";
|
|
2288
|
+
} | {
|
|
2289
|
+
name: string;
|
|
2290
|
+
account: {
|
|
2291
|
+
readonly connectionOptions: readonly [{
|
|
2292
|
+
readonly connectionId: "oauth";
|
|
2293
|
+
readonly requiredScopes: readonly ["deployment:read"];
|
|
2294
|
+
}];
|
|
2295
|
+
readonly serviceId: "vercel";
|
|
2296
|
+
};
|
|
2297
|
+
type: "vercel.deployment.ready";
|
|
2298
|
+
} | {
|
|
2299
|
+
name: string;
|
|
2300
|
+
account: {
|
|
2301
|
+
readonly connectionOptions: readonly [{
|
|
2302
|
+
readonly connectionId: "oauth";
|
|
2303
|
+
readonly requiredScopes: readonly ["deployment:read"];
|
|
2304
|
+
}];
|
|
2305
|
+
readonly serviceId: "vercel";
|
|
2306
|
+
};
|
|
2307
|
+
type: "vercel.deployment.succeeded";
|
|
2308
|
+
} | {
|
|
2309
|
+
name: string;
|
|
2310
|
+
account: {
|
|
2311
|
+
readonly connectionOptions: readonly [{
|
|
2312
|
+
readonly connectionId: "oauth";
|
|
2313
|
+
readonly requiredScopes: readonly [];
|
|
2314
|
+
}];
|
|
2315
|
+
readonly serviceId: "vercel";
|
|
2316
|
+
};
|
|
2317
|
+
type: "vercel.integration-configuration";
|
|
2318
|
+
} | {
|
|
2319
|
+
name: string;
|
|
2320
|
+
account: {
|
|
2321
|
+
readonly connectionOptions: readonly [{
|
|
2322
|
+
readonly connectionId: "oauth";
|
|
2323
|
+
readonly requiredScopes: readonly [];
|
|
2324
|
+
}];
|
|
2325
|
+
readonly serviceId: "vercel";
|
|
2326
|
+
};
|
|
2327
|
+
type: "vercel.integration-configuration.permissionUpgraded";
|
|
2328
|
+
} | {
|
|
2329
|
+
name: string;
|
|
2330
|
+
account: {
|
|
2331
|
+
readonly connectionOptions: readonly [{
|
|
2332
|
+
readonly connectionId: "oauth";
|
|
2333
|
+
readonly requiredScopes: readonly [];
|
|
2334
|
+
}];
|
|
2335
|
+
readonly serviceId: "vercel";
|
|
2336
|
+
};
|
|
2337
|
+
type: "vercel.integration-configuration.removed";
|
|
2338
|
+
} | {
|
|
2339
|
+
name: string;
|
|
2340
|
+
account: {
|
|
2341
|
+
readonly connectionOptions: readonly [{
|
|
2342
|
+
readonly connectionId: "oauth";
|
|
2343
|
+
readonly requiredScopes: readonly [];
|
|
2344
|
+
}];
|
|
2345
|
+
readonly serviceId: "vercel";
|
|
2346
|
+
};
|
|
2347
|
+
type: "vercel.integration-configuration.scopeChangeConfirmed";
|
|
2348
|
+
} | {
|
|
2349
|
+
name: string;
|
|
2350
|
+
account: {
|
|
2351
|
+
readonly connectionOptions: readonly [{
|
|
2352
|
+
readonly connectionId: "oauth";
|
|
2353
|
+
readonly requiredScopes: readonly [];
|
|
2354
|
+
}];
|
|
2355
|
+
readonly serviceId: "vercel";
|
|
2356
|
+
};
|
|
2357
|
+
type: "vercel.integration-configuration.transferred";
|
|
2358
|
+
} | {
|
|
2359
|
+
name: string;
|
|
2360
|
+
account: {
|
|
2361
|
+
readonly connectionOptions: readonly [{
|
|
2362
|
+
readonly connectionId: "oauth";
|
|
2363
|
+
readonly requiredScopes: readonly ["project:read"];
|
|
2364
|
+
}];
|
|
2365
|
+
readonly serviceId: "vercel";
|
|
2366
|
+
};
|
|
2367
|
+
type: "vercel.project";
|
|
2368
|
+
} | {
|
|
2369
|
+
name: string;
|
|
2370
|
+
account: {
|
|
2371
|
+
readonly connectionOptions: readonly [{
|
|
2372
|
+
readonly connectionId: "oauth";
|
|
2373
|
+
readonly requiredScopes: readonly ["project:read"];
|
|
2374
|
+
}];
|
|
2375
|
+
readonly serviceId: "vercel";
|
|
2376
|
+
};
|
|
2377
|
+
type: "vercel.project.created";
|
|
2378
|
+
} | {
|
|
2379
|
+
name: string;
|
|
2380
|
+
account: {
|
|
2381
|
+
readonly connectionOptions: readonly [{
|
|
2382
|
+
readonly connectionId: "oauth";
|
|
2383
|
+
readonly requiredScopes: readonly ["domain:read"];
|
|
2384
|
+
}];
|
|
2385
|
+
readonly serviceId: "vercel";
|
|
2386
|
+
};
|
|
2387
|
+
type: "vercel.project-domain";
|
|
2388
|
+
} | {
|
|
2389
|
+
name: string;
|
|
2390
|
+
account: {
|
|
2391
|
+
readonly connectionOptions: readonly [{
|
|
2392
|
+
readonly connectionId: "oauth";
|
|
2393
|
+
readonly requiredScopes: readonly ["domain:read"];
|
|
2394
|
+
}];
|
|
2395
|
+
readonly serviceId: "vercel";
|
|
2396
|
+
};
|
|
2397
|
+
type: "vercel.project-domain.created";
|
|
2398
|
+
} | {
|
|
2399
|
+
name: string;
|
|
2400
|
+
account: {
|
|
2401
|
+
readonly connectionOptions: readonly [{
|
|
2402
|
+
readonly connectionId: "oauth";
|
|
2403
|
+
readonly requiredScopes: readonly ["domain:read"];
|
|
2404
|
+
}];
|
|
2405
|
+
readonly serviceId: "vercel";
|
|
2406
|
+
};
|
|
2407
|
+
type: "vercel.project-domain.deleted";
|
|
2408
|
+
} | {
|
|
2409
|
+
name: string;
|
|
2410
|
+
account: {
|
|
2411
|
+
readonly connectionOptions: readonly [{
|
|
2412
|
+
readonly connectionId: "oauth";
|
|
2413
|
+
readonly requiredScopes: readonly ["domain:read"];
|
|
2414
|
+
}];
|
|
2415
|
+
readonly serviceId: "vercel";
|
|
2416
|
+
};
|
|
2417
|
+
type: "vercel.project-domain.moved";
|
|
2418
|
+
} | {
|
|
2419
|
+
name: string;
|
|
2420
|
+
account: {
|
|
2421
|
+
readonly connectionOptions: readonly [{
|
|
2422
|
+
readonly connectionId: "oauth";
|
|
2423
|
+
readonly requiredScopes: readonly ["domain:read"];
|
|
2424
|
+
}];
|
|
2425
|
+
readonly serviceId: "vercel";
|
|
2426
|
+
};
|
|
2427
|
+
type: "vercel.project-domain.unverified";
|
|
2428
|
+
} | {
|
|
2429
|
+
name: string;
|
|
2430
|
+
account: {
|
|
2431
|
+
readonly connectionOptions: readonly [{
|
|
2432
|
+
readonly connectionId: "oauth";
|
|
2433
|
+
readonly requiredScopes: readonly ["domain:read"];
|
|
2434
|
+
}];
|
|
2435
|
+
readonly serviceId: "vercel";
|
|
2436
|
+
};
|
|
2437
|
+
type: "vercel.project-domain.updated";
|
|
2438
|
+
} | {
|
|
2439
|
+
name: string;
|
|
2440
|
+
account: {
|
|
2441
|
+
readonly connectionOptions: readonly [{
|
|
2442
|
+
readonly connectionId: "oauth";
|
|
2443
|
+
readonly requiredScopes: readonly ["domain:read"];
|
|
2444
|
+
}];
|
|
2445
|
+
readonly serviceId: "vercel";
|
|
2446
|
+
};
|
|
2447
|
+
type: "vercel.project-domain.verified";
|
|
2448
|
+
} | {
|
|
2449
|
+
name: string;
|
|
2450
|
+
account: {
|
|
2451
|
+
readonly connectionOptions: readonly [{
|
|
2452
|
+
readonly connectionId: "oauth";
|
|
2453
|
+
readonly requiredScopes: readonly ["global-project-env-vars:read"];
|
|
2454
|
+
}];
|
|
2455
|
+
readonly serviceId: "vercel";
|
|
2456
|
+
};
|
|
2457
|
+
type: "vercel.project-environment-variable";
|
|
2458
|
+
} | {
|
|
2459
|
+
name: string;
|
|
2460
|
+
account: {
|
|
2461
|
+
readonly connectionOptions: readonly [{
|
|
2462
|
+
readonly connectionId: "oauth";
|
|
2463
|
+
readonly requiredScopes: readonly ["global-project-env-vars:read"];
|
|
2464
|
+
}];
|
|
2465
|
+
readonly serviceId: "vercel";
|
|
2466
|
+
};
|
|
2467
|
+
type: "vercel.project-environment-variable.created";
|
|
2468
|
+
} | {
|
|
2469
|
+
name: string;
|
|
2470
|
+
account: {
|
|
2471
|
+
readonly connectionOptions: readonly [{
|
|
2472
|
+
readonly connectionId: "oauth";
|
|
2473
|
+
readonly requiredScopes: readonly ["global-project-env-vars:read"];
|
|
2474
|
+
}];
|
|
2475
|
+
readonly serviceId: "vercel";
|
|
2476
|
+
};
|
|
2477
|
+
type: "vercel.project-environment-variable.deleted";
|
|
2478
|
+
} | {
|
|
2479
|
+
name: string;
|
|
2480
|
+
account: {
|
|
2481
|
+
readonly connectionOptions: readonly [{
|
|
2482
|
+
readonly connectionId: "oauth";
|
|
2483
|
+
readonly requiredScopes: readonly ["global-project-env-vars:read"];
|
|
2484
|
+
}];
|
|
2485
|
+
readonly serviceId: "vercel";
|
|
2486
|
+
};
|
|
2487
|
+
type: "vercel.project-environment-variable.updated";
|
|
2488
|
+
} | {
|
|
2489
|
+
name: string;
|
|
2490
|
+
account: {
|
|
2491
|
+
readonly connectionOptions: readonly [{
|
|
2492
|
+
readonly connectionId: "oauth";
|
|
2493
|
+
readonly requiredScopes: readonly ["project:read"];
|
|
2494
|
+
}];
|
|
2495
|
+
readonly serviceId: "vercel";
|
|
2496
|
+
};
|
|
2497
|
+
type: "vercel.project.removed";
|
|
2498
|
+
} | {
|
|
2499
|
+
name: string;
|
|
2500
|
+
account: {
|
|
2501
|
+
readonly connectionOptions: readonly [{
|
|
2502
|
+
readonly connectionId: "oauth";
|
|
2503
|
+
readonly requiredScopes: readonly ["project:read"];
|
|
2504
|
+
}];
|
|
2505
|
+
readonly serviceId: "vercel";
|
|
2506
|
+
};
|
|
2507
|
+
type: "vercel.project.renamed";
|
|
2508
|
+
} | {
|
|
2509
|
+
name: string;
|
|
2510
|
+
account: {
|
|
2511
|
+
readonly connectionOptions: readonly [{
|
|
2512
|
+
readonly requiredScopes: readonly ["whatsapp_business_messaging"];
|
|
2513
|
+
}];
|
|
2514
|
+
readonly serviceId: "whatsapp";
|
|
2515
|
+
};
|
|
2516
|
+
type: "whatsapp.message.delivered";
|
|
2517
|
+
} | {
|
|
2518
|
+
name: string;
|
|
2519
|
+
account: {
|
|
2520
|
+
readonly connectionOptions: readonly [{
|
|
2521
|
+
readonly requiredScopes: readonly ["whatsapp_business_messaging"];
|
|
2522
|
+
}];
|
|
2523
|
+
readonly serviceId: "whatsapp";
|
|
2524
|
+
};
|
|
2525
|
+
type: "whatsapp.message.failed";
|
|
2526
|
+
} | {
|
|
2527
|
+
name: string;
|
|
2528
|
+
account: {
|
|
2529
|
+
readonly connectionOptions: readonly [{
|
|
2530
|
+
readonly requiredScopes: readonly ["whatsapp_business_messaging"];
|
|
2531
|
+
}];
|
|
2532
|
+
readonly serviceId: "whatsapp";
|
|
2533
|
+
};
|
|
2534
|
+
type: "whatsapp.message.played";
|
|
2535
|
+
} | {
|
|
2536
|
+
name: string;
|
|
2537
|
+
account: {
|
|
2538
|
+
readonly connectionOptions: readonly [{
|
|
2539
|
+
readonly requiredScopes: readonly ["whatsapp_business_messaging"];
|
|
2540
|
+
}];
|
|
2541
|
+
readonly serviceId: "whatsapp";
|
|
2542
|
+
};
|
|
2543
|
+
type: "whatsapp.message.read";
|
|
2544
|
+
} | {
|
|
2545
|
+
name: string;
|
|
2546
|
+
account: {
|
|
2547
|
+
readonly connectionOptions: readonly [{
|
|
2548
|
+
readonly requiredScopes: readonly ["whatsapp_business_messaging"];
|
|
2549
|
+
}];
|
|
2550
|
+
readonly serviceId: "whatsapp";
|
|
2551
|
+
};
|
|
2552
|
+
type: "whatsapp.message.received";
|
|
2553
|
+
} | {
|
|
2554
|
+
name: string;
|
|
2555
|
+
account: {
|
|
2556
|
+
readonly connectionOptions: readonly [{
|
|
2557
|
+
readonly requiredScopes: readonly ["whatsapp_business_messaging"];
|
|
2558
|
+
}];
|
|
2559
|
+
readonly serviceId: "whatsapp";
|
|
2560
|
+
};
|
|
2561
|
+
type: "whatsapp.message.sent";
|
|
2562
|
+
} | {
|
|
2563
|
+
name: string;
|
|
2564
|
+
account: {
|
|
2565
|
+
readonly connectionOptions: readonly [{
|
|
2566
|
+
readonly requiredScopes: readonly ["whatsapp_business_messaging"];
|
|
2567
|
+
}];
|
|
2568
|
+
readonly serviceId: "whatsapp";
|
|
2569
|
+
};
|
|
2570
|
+
type: "whatsapp.message.statusEvent";
|
|
2571
|
+
})[];
|
|
2572
|
+
export type TriggerType = (typeof triggerCatalog)[number]["type"];
|
|
2573
|
+
/**
|
|
2574
|
+
* Looks up one known trigger by its stable event type.
|
|
2575
|
+
*
|
|
2576
|
+
* @param type - Stable public event type.
|
|
2577
|
+
*/
|
|
2578
|
+
export declare function getTriggerDefinition(type: string): (TriggerDefinition & {
|
|
2579
|
+
name: string;
|
|
2580
|
+
}) | undefined;
|
|
2581
|
+
/**
|
|
2582
|
+
* Resolves the display name for a stable event type.
|
|
2583
|
+
*
|
|
2584
|
+
* Known trigger types use their catalog name. Unknown types fall back to the
|
|
2585
|
+
* same sentence-case convention used by catalog definitions.
|
|
2586
|
+
*
|
|
2587
|
+
* @param type - Stable event type to name.
|
|
2588
|
+
*/
|
|
2589
|
+
export declare function getTriggerName(type: string): string;
|
|
2590
|
+
/**
|
|
2591
|
+
* Describes one configured trigger using its shared client-safe definition.
|
|
2592
|
+
*
|
|
2593
|
+
* @param context - Trigger identity, configuration, and public application
|
|
2594
|
+
* origin.
|
|
2595
|
+
*/
|
|
2596
|
+
export declare function getTriggerPresentation(context: TriggerPresentationContext & {
|
|
2597
|
+
eventType: string;
|
|
2598
|
+
}): TriggerPresentation;
|