@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.
Files changed (54) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +3 -0
  3. package/dist/catalog.d.ts +1106 -0
  4. package/dist/catalog.js +349 -0
  5. package/dist/index.d.ts +3 -0
  6. package/dist/index.js +3 -0
  7. package/dist/triggers/airtable.d.ts +62 -0
  8. package/dist/triggers/airtable.js +36 -0
  9. package/dist/triggers/asana.d.ts +65 -0
  10. package/dist/triggers/asana.js +39 -0
  11. package/dist/triggers/brevo.d.ts +111 -0
  12. package/dist/triggers/brevo.js +65 -0
  13. package/dist/triggers/core.d.ts +50 -0
  14. package/dist/triggers/core.js +74 -0
  15. package/dist/triggers/github.d.ts +228 -0
  16. package/dist/triggers/github.js +136 -0
  17. package/dist/triggers/google.d.ts +126 -0
  18. package/dist/triggers/google.js +143 -0
  19. package/dist/triggers/index.d.ts +2598 -0
  20. package/dist/triggers/index.js +97 -0
  21. package/dist/triggers/linear.d.ts +110 -0
  22. package/dist/triggers/linear.js +59 -0
  23. package/dist/triggers/microsoft.d.ts +40 -0
  24. package/dist/triggers/microsoft.js +60 -0
  25. package/dist/triggers/resend.d.ts +110 -0
  26. package/dist/triggers/resend.js +59 -0
  27. package/dist/triggers/slack.d.ts +41 -0
  28. package/dist/triggers/slack.js +53 -0
  29. package/dist/triggers/trello.d.ts +56 -0
  30. package/dist/triggers/trello.js +35 -0
  31. package/dist/triggers/vercel.d.ts +279 -0
  32. package/dist/triggers/vercel.js +163 -0
  33. package/dist/triggers/whatsapp.d.ts +65 -0
  34. package/dist/triggers/whatsapp.js +39 -0
  35. package/dist/types.d.ts +134 -0
  36. package/dist/types.js +59 -0
  37. package/package.json +70 -0
  38. package/src/catalog.ts +403 -0
  39. package/src/index.ts +68 -0
  40. package/src/triggers/airtable.ts +39 -0
  41. package/src/triggers/asana.ts +42 -0
  42. package/src/triggers/brevo.ts +68 -0
  43. package/src/triggers/core.ts +93 -0
  44. package/src/triggers/github.ts +142 -0
  45. package/src/triggers/google.ts +149 -0
  46. package/src/triggers/index.ts +128 -0
  47. package/src/triggers/linear.ts +62 -0
  48. package/src/triggers/microsoft.ts +65 -0
  49. package/src/triggers/resend.ts +62 -0
  50. package/src/triggers/slack.ts +58 -0
  51. package/src/triggers/trello.ts +38 -0
  52. package/src/triggers/vercel.ts +170 -0
  53. package/src/triggers/whatsapp.ts +42 -0
  54. package/src/types.ts +219 -0
@@ -0,0 +1,349 @@
1
+ import { defineIntegrationCatalog, defineIntegrationService } from "./types.js";
2
+ const API_KEY_FIELD = {
3
+ input: "password",
4
+ label: "API key",
5
+ name: "apiKey",
6
+ required: true,
7
+ };
8
+ export const airtableService = defineIntegrationService({
9
+ connectionMethods: [{ id: "default", name: "OAuth", type: "redirect" }],
10
+ description: "Connect an Airtable account.",
11
+ id: "airtable",
12
+ name: "Airtable",
13
+ });
14
+ export const anthropicService = defineApiKeyService({
15
+ description: "Connect an Anthropic API key.",
16
+ id: "anthropic",
17
+ name: "Anthropic",
18
+ placeholder: "sk-ant-...",
19
+ });
20
+ export const apolloService = defineIntegrationService({
21
+ connectionMethods: [
22
+ { id: "oauth", name: "OAuth", type: "redirect" },
23
+ {
24
+ fields: [{ ...API_KEY_FIELD, placeholder: "Apollo API key" }],
25
+ id: "api-key",
26
+ name: "API key",
27
+ type: "form",
28
+ },
29
+ ],
30
+ description: "Connect an Apollo account with OAuth or an API key.",
31
+ id: "apollo",
32
+ name: "Apollo",
33
+ preferredConnectionMethodId: "oauth",
34
+ });
35
+ export const asanaService = defineIntegrationService({
36
+ connectionMethods: [{ id: "default", name: "OAuth", type: "redirect" }],
37
+ description: "Connect an Asana account.",
38
+ id: "asana",
39
+ name: "Asana",
40
+ });
41
+ export const brevoService = defineApiKeyService({
42
+ description: "Connect a Brevo API key.",
43
+ id: "brevo",
44
+ name: "Brevo",
45
+ placeholder: "xkeysib-...",
46
+ });
47
+ export const cerebrasService = defineApiKeyService({
48
+ description: "Connect a Cerebras API key.",
49
+ id: "cerebras",
50
+ name: "Cerebras",
51
+ });
52
+ export const cloudflareService = defineIntegrationService({
53
+ connectionMethods: [
54
+ { id: "oauth", name: "OAuth", type: "redirect" },
55
+ {
56
+ fields: [
57
+ {
58
+ input: "password",
59
+ label: "API token",
60
+ name: "apiKey",
61
+ placeholder: "Cloudflare API token",
62
+ required: true,
63
+ },
64
+ ],
65
+ id: "api-token",
66
+ name: "API token",
67
+ type: "form",
68
+ },
69
+ ],
70
+ description: "Connect a Cloudflare account with OAuth or an API token.",
71
+ id: "cloudflare",
72
+ name: "Cloudflare",
73
+ preferredConnectionMethodId: "oauth",
74
+ });
75
+ export const cohereService = defineApiKeyService({
76
+ description: "Connect a Cohere API key.",
77
+ id: "cohere",
78
+ name: "Cohere",
79
+ });
80
+ export const deepinfraService = defineApiKeyService({
81
+ description: "Connect a DeepInfra API key.",
82
+ id: "deepinfra",
83
+ name: "DeepInfra",
84
+ });
85
+ export const deepseekService = defineApiKeyService({
86
+ description: "Connect a DeepSeek API key.",
87
+ id: "deepseek",
88
+ name: "DeepSeek",
89
+ });
90
+ export const firecrawlService = defineApiKeyService({
91
+ description: "Connect a Firecrawl API key.",
92
+ id: "firecrawl",
93
+ name: "Firecrawl",
94
+ placeholder: "fc-...",
95
+ });
96
+ export const fireworksService = defineApiKeyService({
97
+ description: "Connect a Fireworks AI API key.",
98
+ id: "fireworks",
99
+ name: "Fireworks AI",
100
+ });
101
+ export const githubService = defineIntegrationService({
102
+ connectionMethods: [{ id: "default", name: "GitHub App", type: "redirect" }],
103
+ description: "Install Automate.ax on a GitHub account or organization.",
104
+ id: "github",
105
+ name: "GitHub",
106
+ });
107
+ export const googleService = defineIntegrationService({
108
+ connectionMethods: [{ id: "default", name: "OAuth", type: "redirect" }],
109
+ description: "Connect a Google account.",
110
+ id: "google",
111
+ name: "Google",
112
+ });
113
+ export const googleGenaiService = defineApiKeyService({
114
+ description: "Connect a Google AI Studio API key.",
115
+ id: "google-genai",
116
+ name: "Google Generative AI",
117
+ placeholder: "AIza...",
118
+ });
119
+ export const groqService = defineApiKeyService({
120
+ description: "Connect a Groq API key.",
121
+ id: "groq",
122
+ name: "Groq",
123
+ });
124
+ export const huggingfaceService = defineApiKeyService({
125
+ description: "Connect a Hugging Face access token.",
126
+ id: "huggingface",
127
+ name: "Hugging Face",
128
+ placeholder: "hf_...",
129
+ });
130
+ export const linearService = defineIntegrationService({
131
+ connectionMethods: [{ id: "default", name: "OAuth", type: "redirect" }],
132
+ description: "Connect a Linear workspace.",
133
+ id: "linear",
134
+ name: "Linear",
135
+ });
136
+ export const microsoftService = defineIntegrationService({
137
+ connectionMethods: [{ id: "default", name: "OAuth", type: "redirect" }],
138
+ description: "Connect a Microsoft account.",
139
+ id: "microsoft",
140
+ name: "Microsoft",
141
+ });
142
+ export const millionverifierService = defineApiKeyService({
143
+ description: "Connect a Million Verifier API key.",
144
+ id: "millionverifier",
145
+ name: "Million Verifier",
146
+ placeholder: "Million Verifier API key",
147
+ });
148
+ export const mistralService = defineApiKeyService({
149
+ description: "Connect a Mistral AI API key.",
150
+ id: "mistral",
151
+ name: "Mistral AI",
152
+ });
153
+ export const openaiService = defineApiKeyService({
154
+ description: "Connect an OpenAI API key.",
155
+ id: "openai",
156
+ name: "OpenAI",
157
+ placeholder: "sk-...",
158
+ });
159
+ export const openrouterService = defineApiKeyService({
160
+ description: "Connect an OpenRouter API key.",
161
+ id: "openrouter",
162
+ name: "OpenRouter",
163
+ placeholder: "sk-or-...",
164
+ });
165
+ export const perplexityService = defineApiKeyService({
166
+ description: "Connect a Perplexity API key.",
167
+ id: "perplexity",
168
+ name: "Perplexity",
169
+ });
170
+ export const postgresService = defineIntegrationService({
171
+ connectionMethods: [
172
+ {
173
+ fields: [
174
+ {
175
+ description: "A postgresql:// connection string.",
176
+ input: "password",
177
+ label: "Connection string",
178
+ name: "connectionString",
179
+ placeholder: "postgresql://user:password@host:5432/database?sslmode=require",
180
+ required: true,
181
+ },
182
+ ],
183
+ id: "default",
184
+ name: "Credentials",
185
+ type: "form",
186
+ },
187
+ ],
188
+ description: "Connect a PostgreSQL database.",
189
+ id: "postgres",
190
+ name: "PostgreSQL",
191
+ });
192
+ export const resendService = defineIntegrationService({
193
+ connectionMethods: [
194
+ { id: "oauth", name: "OAuth", type: "redirect" },
195
+ {
196
+ fields: [{ ...API_KEY_FIELD, placeholder: "re_..." }],
197
+ id: "api-key",
198
+ name: "API key",
199
+ type: "form",
200
+ },
201
+ ],
202
+ description: "Connect a Resend account with OAuth or an API key.",
203
+ id: "resend",
204
+ name: "Resend",
205
+ preferredConnectionMethodId: "oauth",
206
+ });
207
+ export const scrapflyService = defineApiKeyService({
208
+ description: "Connect a Scrapfly API key.",
209
+ id: "scrapfly",
210
+ name: "Scrapfly",
211
+ placeholder: "scp-live-...",
212
+ });
213
+ export const slackService = defineIntegrationService({
214
+ connectionMethods: [{ id: "default", name: "OAuth", type: "redirect" }],
215
+ description: "Install the Automate.ax bot in a Slack workspace.",
216
+ id: "slack",
217
+ name: "Slack",
218
+ });
219
+ export const tidycalService = defineIntegrationService({
220
+ connectionMethods: [{ id: "default", name: "OAuth", type: "redirect" }],
221
+ description: "Connect a TidyCal account.",
222
+ id: "tidycal",
223
+ name: "TidyCal",
224
+ });
225
+ export const togetheraiService = defineApiKeyService({
226
+ description: "Connect a Together AI API key.",
227
+ id: "togetherai",
228
+ name: "Together AI",
229
+ });
230
+ export const trelloService = defineIntegrationService({
231
+ connectionMethods: [{ id: "default", name: "OAuth", type: "redirect" }],
232
+ description: "Connect a Trello account.",
233
+ id: "trello",
234
+ name: "Trello",
235
+ });
236
+ export const vercelAiGatewayService = defineApiKeyService({
237
+ description: "Connect a Vercel AI Gateway API key.",
238
+ icon: "vercel",
239
+ id: "vercel-ai-gateway",
240
+ name: "Vercel AI Gateway",
241
+ });
242
+ export const vercelService = defineIntegrationService({
243
+ connectionMethods: [
244
+ { id: "oauth", name: "OAuth", type: "redirect" },
245
+ {
246
+ fields: [
247
+ {
248
+ input: "password",
249
+ label: "Access token",
250
+ name: "apiKey",
251
+ placeholder: "Vercel access token",
252
+ required: true,
253
+ },
254
+ ],
255
+ id: "access-token",
256
+ name: "Access token",
257
+ type: "form",
258
+ },
259
+ ],
260
+ description: "Connect a Vercel account with OAuth or an access token.",
261
+ id: "vercel",
262
+ name: "Vercel",
263
+ preferredConnectionMethodId: "oauth",
264
+ });
265
+ export const whatsappService = defineIntegrationService({
266
+ connectionMethods: [
267
+ { id: "embedded-signup", name: "Embedded Signup", type: "redirect" },
268
+ ],
269
+ description: "Connect a WhatsApp Business Platform phone number.",
270
+ id: "whatsapp",
271
+ name: "WhatsApp",
272
+ });
273
+ export const xaiService = defineApiKeyService({
274
+ description: "Connect an xAI API key.",
275
+ id: "xai",
276
+ name: "xAI",
277
+ placeholder: "xai-...",
278
+ });
279
+ export const integrationCatalog = defineIntegrationCatalog([
280
+ airtableService,
281
+ anthropicService,
282
+ apolloService,
283
+ asanaService,
284
+ brevoService,
285
+ cerebrasService,
286
+ cloudflareService,
287
+ cohereService,
288
+ deepinfraService,
289
+ deepseekService,
290
+ firecrawlService,
291
+ fireworksService,
292
+ githubService,
293
+ googleService,
294
+ googleGenaiService,
295
+ groqService,
296
+ huggingfaceService,
297
+ linearService,
298
+ microsoftService,
299
+ millionverifierService,
300
+ mistralService,
301
+ openaiService,
302
+ openrouterService,
303
+ perplexityService,
304
+ postgresService,
305
+ resendService,
306
+ scrapflyService,
307
+ slackService,
308
+ tidycalService,
309
+ togetheraiService,
310
+ trelloService,
311
+ vercelAiGatewayService,
312
+ vercelService,
313
+ whatsappService,
314
+ xaiService,
315
+ ]);
316
+ /**
317
+ * Looks up one known integration service by its stable ID.
318
+ *
319
+ * @param id - Stable integration service ID.
320
+ */
321
+ export function getIntegrationService(id) {
322
+ return integrationCatalog.find((service) => service.id === id);
323
+ }
324
+ /**
325
+ * Defines one service backed by a conventional API-key credential form.
326
+ *
327
+ * @param service - API-key service identity and credential placeholder.
328
+ */
329
+ function defineApiKeyService(service) {
330
+ return defineIntegrationService({
331
+ connectionMethods: [
332
+ {
333
+ fields: [
334
+ {
335
+ ...API_KEY_FIELD,
336
+ placeholder: service.placeholder ?? "API key",
337
+ },
338
+ ],
339
+ id: "default",
340
+ name: "API key",
341
+ type: "form",
342
+ },
343
+ ],
344
+ description: service.description,
345
+ ...(service.icon ? { icon: service.icon } : {}),
346
+ id: service.id,
347
+ name: service.name,
348
+ });
349
+ }
@@ -0,0 +1,3 @@
1
+ export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, cloudflareService, cohereService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, whatsappService, xaiService, type IntegrationServiceId, } from "./catalog.js";
2
+ export { defineIntegrationCatalog, defineIntegrationService, scope, type IntegrationAccountConnectionOption, type IntegrationAccountRequirement, type IntegrationConnectionDefinition, type IntegrationFormField, type IntegrationScopeRequirement, type IntegrationServiceDefinition, type ScopeRequirementGroup, type TriggerDefinition, type TriggerPresentation, type TriggerPresentationContext, type TriggerPresentationDetail, } from "./types.js";
3
+ export { getHttpTriggerEndpoint, getHttpTriggerEndpointKey, getTriggerDefinition, getTriggerName, getTriggerPresentation, triggerCatalog, triggerDefinitions, type HttpTriggerEndpointOptions, type HttpTriggerScope, type TriggerType, } from "./triggers/index.js";
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, cloudflareService, cohereService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, whatsappService, xaiService, } from "./catalog.js";
2
+ export { defineIntegrationCatalog, defineIntegrationService, scope, } from "./types.js";
3
+ export { getHttpTriggerEndpoint, getHttpTriggerEndpointKey, getTriggerDefinition, getTriggerName, getTriggerPresentation, triggerCatalog, triggerDefinitions, } from "./triggers/index.js";
@@ -0,0 +1,62 @@
1
+ export declare const airtableTriggerDefinitions: {
2
+ readonly airtableRecordCreated: {
3
+ readonly account: {
4
+ readonly connectionOptions: readonly [{
5
+ readonly requiredScopes: readonly [{
6
+ readonly requirements: readonly ["data.records:read", "webhook:manage"];
7
+ readonly type: "and";
8
+ }];
9
+ }];
10
+ readonly serviceId: "airtable";
11
+ };
12
+ readonly type: "airtable.record.created";
13
+ };
14
+ readonly airtableRecordDeleted: {
15
+ readonly account: {
16
+ readonly connectionOptions: readonly [{
17
+ readonly requiredScopes: readonly [{
18
+ readonly requirements: readonly ["data.records:read", "webhook:manage"];
19
+ readonly type: "and";
20
+ }];
21
+ }];
22
+ readonly serviceId: "airtable";
23
+ };
24
+ readonly type: "airtable.record.deleted";
25
+ };
26
+ readonly airtableRecordMovedIntoView: {
27
+ readonly account: {
28
+ readonly connectionOptions: readonly [{
29
+ readonly requiredScopes: readonly [{
30
+ readonly requirements: readonly ["data.records:read", "webhook:manage"];
31
+ readonly type: "and";
32
+ }];
33
+ }];
34
+ readonly serviceId: "airtable";
35
+ };
36
+ readonly type: "airtable.record.movedIntoView";
37
+ };
38
+ readonly airtableRecordMovedOutOfView: {
39
+ readonly account: {
40
+ readonly connectionOptions: readonly [{
41
+ readonly requiredScopes: readonly [{
42
+ readonly requirements: readonly ["data.records:read", "webhook:manage"];
43
+ readonly type: "and";
44
+ }];
45
+ }];
46
+ readonly serviceId: "airtable";
47
+ };
48
+ readonly type: "airtable.record.movedOutOfView";
49
+ };
50
+ readonly airtableRecordUpdated: {
51
+ readonly account: {
52
+ readonly connectionOptions: readonly [{
53
+ readonly requiredScopes: readonly [{
54
+ readonly requirements: readonly ["data.records:read", "webhook:manage"];
55
+ readonly type: "and";
56
+ }];
57
+ }];
58
+ readonly serviceId: "airtable";
59
+ };
60
+ readonly type: "airtable.record.updated";
61
+ };
62
+ };
@@ -0,0 +1,36 @@
1
+ import { airtableService } from "../catalog.js";
2
+ const AIRTABLE_ACCOUNT = {
3
+ connectionOptions: [
4
+ {
5
+ requiredScopes: [
6
+ {
7
+ requirements: ["data.records:read", "webhook:manage"],
8
+ type: "and",
9
+ },
10
+ ],
11
+ },
12
+ ],
13
+ serviceId: airtableService.id,
14
+ };
15
+ export const airtableTriggerDefinitions = {
16
+ airtableRecordCreated: {
17
+ account: AIRTABLE_ACCOUNT,
18
+ type: "airtable.record.created",
19
+ },
20
+ airtableRecordDeleted: {
21
+ account: AIRTABLE_ACCOUNT,
22
+ type: "airtable.record.deleted",
23
+ },
24
+ airtableRecordMovedIntoView: {
25
+ account: AIRTABLE_ACCOUNT,
26
+ type: "airtable.record.movedIntoView",
27
+ },
28
+ airtableRecordMovedOutOfView: {
29
+ account: AIRTABLE_ACCOUNT,
30
+ type: "airtable.record.movedOutOfView",
31
+ },
32
+ airtableRecordUpdated: {
33
+ account: AIRTABLE_ACCOUNT,
34
+ type: "airtable.record.updated",
35
+ },
36
+ };
@@ -0,0 +1,65 @@
1
+ export declare const asanaTriggerDefinitions: {
2
+ readonly asanaCommentAdded: {
3
+ readonly account: {
4
+ readonly connectionOptions: readonly [{
5
+ readonly requiredScopes: readonly [];
6
+ }];
7
+ readonly serviceId: "asana";
8
+ };
9
+ readonly type: "asana.comment.added";
10
+ };
11
+ readonly asanaEvent: {
12
+ readonly account: {
13
+ readonly connectionOptions: readonly [{
14
+ readonly requiredScopes: readonly [];
15
+ }];
16
+ readonly serviceId: "asana";
17
+ };
18
+ readonly type: "asana.event";
19
+ };
20
+ readonly asanaTaskAdded: {
21
+ readonly account: {
22
+ readonly connectionOptions: readonly [{
23
+ readonly requiredScopes: readonly [];
24
+ }];
25
+ readonly serviceId: "asana";
26
+ };
27
+ readonly type: "asana.task.added";
28
+ };
29
+ readonly asanaTaskChanged: {
30
+ readonly account: {
31
+ readonly connectionOptions: readonly [{
32
+ readonly requiredScopes: readonly [];
33
+ }];
34
+ readonly serviceId: "asana";
35
+ };
36
+ readonly type: "asana.task.changed";
37
+ };
38
+ readonly asanaTaskCompleted: {
39
+ readonly account: {
40
+ readonly connectionOptions: readonly [{
41
+ readonly requiredScopes: readonly [];
42
+ }];
43
+ readonly serviceId: "asana";
44
+ };
45
+ readonly type: "asana.task.completed";
46
+ };
47
+ readonly asanaTaskDeleted: {
48
+ readonly account: {
49
+ readonly connectionOptions: readonly [{
50
+ readonly requiredScopes: readonly [];
51
+ }];
52
+ readonly serviceId: "asana";
53
+ };
54
+ readonly type: "asana.task.deleted";
55
+ };
56
+ readonly asanaTaskRemoved: {
57
+ readonly account: {
58
+ readonly connectionOptions: readonly [{
59
+ readonly requiredScopes: readonly [];
60
+ }];
61
+ readonly serviceId: "asana";
62
+ };
63
+ readonly type: "asana.task.removed";
64
+ };
65
+ };
@@ -0,0 +1,39 @@
1
+ import { asanaService } from "../catalog.js";
2
+ const ASANA_ACCOUNT = {
3
+ connectionOptions: [
4
+ {
5
+ requiredScopes: [],
6
+ },
7
+ ],
8
+ serviceId: asanaService.id,
9
+ };
10
+ export const asanaTriggerDefinitions = {
11
+ asanaCommentAdded: {
12
+ account: ASANA_ACCOUNT,
13
+ type: "asana.comment.added",
14
+ },
15
+ asanaEvent: {
16
+ account: ASANA_ACCOUNT,
17
+ type: "asana.event",
18
+ },
19
+ asanaTaskAdded: {
20
+ account: ASANA_ACCOUNT,
21
+ type: "asana.task.added",
22
+ },
23
+ asanaTaskChanged: {
24
+ account: ASANA_ACCOUNT,
25
+ type: "asana.task.changed",
26
+ },
27
+ asanaTaskCompleted: {
28
+ account: ASANA_ACCOUNT,
29
+ type: "asana.task.completed",
30
+ },
31
+ asanaTaskDeleted: {
32
+ account: ASANA_ACCOUNT,
33
+ type: "asana.task.deleted",
34
+ },
35
+ asanaTaskRemoved: {
36
+ account: ASANA_ACCOUNT,
37
+ type: "asana.task.removed",
38
+ },
39
+ };
@@ -0,0 +1,111 @@
1
+ export declare const brevoTriggerDefinitions: {
2
+ readonly brevoTransactionalBlocked: {
3
+ readonly account: {
4
+ readonly connectionOptions: readonly [{
5
+ readonly requiredScopes: readonly [];
6
+ }];
7
+ readonly serviceId: "brevo";
8
+ };
9
+ readonly name: "Brevo email blocked";
10
+ readonly type: "brevo.transactional.blocked";
11
+ };
12
+ readonly brevoTransactionalClicked: {
13
+ readonly account: {
14
+ readonly connectionOptions: readonly [{
15
+ readonly requiredScopes: readonly [];
16
+ }];
17
+ readonly serviceId: "brevo";
18
+ };
19
+ readonly name: "Brevo email clicked";
20
+ readonly type: "brevo.transactional.clicked";
21
+ };
22
+ readonly brevoTransactionalDeferred: {
23
+ readonly account: {
24
+ readonly connectionOptions: readonly [{
25
+ readonly requiredScopes: readonly [];
26
+ }];
27
+ readonly serviceId: "brevo";
28
+ };
29
+ readonly name: "Brevo email deferred";
30
+ readonly type: "brevo.transactional.deferred";
31
+ };
32
+ readonly brevoTransactionalDelivered: {
33
+ readonly account: {
34
+ readonly connectionOptions: readonly [{
35
+ readonly requiredScopes: readonly [];
36
+ }];
37
+ readonly serviceId: "brevo";
38
+ };
39
+ readonly name: "Brevo email delivered";
40
+ readonly type: "brevo.transactional.delivered";
41
+ };
42
+ readonly brevoTransactionalEvent: {
43
+ readonly account: {
44
+ readonly connectionOptions: readonly [{
45
+ readonly requiredScopes: readonly [];
46
+ }];
47
+ readonly serviceId: "brevo";
48
+ };
49
+ readonly type: "brevo.transactional.event";
50
+ };
51
+ readonly brevoTransactionalHardBounced: {
52
+ readonly account: {
53
+ readonly connectionOptions: readonly [{
54
+ readonly requiredScopes: readonly [];
55
+ }];
56
+ readonly serviceId: "brevo";
57
+ };
58
+ readonly name: "Brevo email hard bounced";
59
+ readonly type: "brevo.transactional.hardBounced";
60
+ };
61
+ readonly brevoTransactionalMarkedAsSpam: {
62
+ readonly account: {
63
+ readonly connectionOptions: readonly [{
64
+ readonly requiredScopes: readonly [];
65
+ }];
66
+ readonly serviceId: "brevo";
67
+ };
68
+ readonly name: "Brevo email marked as spam";
69
+ readonly type: "brevo.transactional.markedAsSpam";
70
+ };
71
+ readonly brevoTransactionalOpened: {
72
+ readonly account: {
73
+ readonly connectionOptions: readonly [{
74
+ readonly requiredScopes: readonly [];
75
+ }];
76
+ readonly serviceId: "brevo";
77
+ };
78
+ readonly name: "Brevo email opened";
79
+ readonly type: "brevo.transactional.opened";
80
+ };
81
+ readonly brevoTransactionalSent: {
82
+ readonly account: {
83
+ readonly connectionOptions: readonly [{
84
+ readonly requiredScopes: readonly [];
85
+ }];
86
+ readonly serviceId: "brevo";
87
+ };
88
+ readonly name: "Brevo email sent";
89
+ readonly type: "brevo.transactional.sent";
90
+ };
91
+ readonly brevoTransactionalSoftBounced: {
92
+ readonly account: {
93
+ readonly connectionOptions: readonly [{
94
+ readonly requiredScopes: readonly [];
95
+ }];
96
+ readonly serviceId: "brevo";
97
+ };
98
+ readonly name: "Brevo email soft bounced";
99
+ readonly type: "brevo.transactional.softBounced";
100
+ };
101
+ readonly brevoTransactionalUnsubscribed: {
102
+ readonly account: {
103
+ readonly connectionOptions: readonly [{
104
+ readonly requiredScopes: readonly [];
105
+ }];
106
+ readonly serviceId: "brevo";
107
+ };
108
+ readonly name: "Brevo email unsubscribed";
109
+ readonly type: "brevo.transactional.unsubscribed";
110
+ };
111
+ };