@automate.ax/catalog 0.87.7 → 0.88.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/catalog.d.ts +124 -0
- package/dist/catalog.js +66 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/triggers/close.d.ts +344 -0
- package/dist/triggers/close.js +113 -0
- package/dist/triggers/index.d.ts +684 -0
- package/dist/triggers/index.js +2 -0
- package/package.json +7 -1
- package/src/catalog.ts +71 -0
- package/src/index.ts +2 -0
- package/src/triggers/close.ts +116 -0
- package/src/triggers/index.ts +2 -0
package/dist/catalog.d.ts
CHANGED
|
@@ -123,6 +123,29 @@ export declare const cloudflareService: {
|
|
|
123
123
|
readonly name: "Cloudflare";
|
|
124
124
|
readonly preferredConnectionMethodId: "oauth";
|
|
125
125
|
};
|
|
126
|
+
export declare const closeService: {
|
|
127
|
+
readonly connectionMethods: readonly [{
|
|
128
|
+
readonly id: "oauth";
|
|
129
|
+
readonly name: "OAuth";
|
|
130
|
+
readonly type: "redirect";
|
|
131
|
+
}, {
|
|
132
|
+
readonly credentialUrl: "https://app.close.com/settings/developer/api-keys";
|
|
133
|
+
readonly fields: readonly [{
|
|
134
|
+
readonly placeholder: "Close API key";
|
|
135
|
+
readonly input: "password";
|
|
136
|
+
readonly label: "API key";
|
|
137
|
+
readonly name: "apiKey";
|
|
138
|
+
readonly required: true;
|
|
139
|
+
}];
|
|
140
|
+
readonly id: "api-key";
|
|
141
|
+
readonly name: "API key";
|
|
142
|
+
readonly type: "form";
|
|
143
|
+
}];
|
|
144
|
+
readonly description: "Connect a Close CRM account with OAuth or an API key.";
|
|
145
|
+
readonly id: "close";
|
|
146
|
+
readonly name: "Close";
|
|
147
|
+
readonly preferredConnectionMethodId: "oauth";
|
|
148
|
+
};
|
|
126
149
|
export declare const chatgptService: {
|
|
127
150
|
readonly connectionMethods: readonly [{
|
|
128
151
|
readonly fields: readonly [{
|
|
@@ -459,6 +482,46 @@ export declare const openaiService: {
|
|
|
459
482
|
readonly credentialUrl?: string | undefined;
|
|
460
483
|
}];
|
|
461
484
|
};
|
|
485
|
+
export declare const onePasswordService: {
|
|
486
|
+
readonly connectionMethods: readonly [{
|
|
487
|
+
readonly credentialUrl: "https://www.1password.dev/service-accounts/get-started";
|
|
488
|
+
readonly fields: readonly [{
|
|
489
|
+
readonly description: "Create an immutable service account with access to only the vaults and Environments this automation needs.";
|
|
490
|
+
readonly input: "password";
|
|
491
|
+
readonly label: "Service account token";
|
|
492
|
+
readonly name: "serviceAccountToken";
|
|
493
|
+
readonly placeholder: "ops_...";
|
|
494
|
+
readonly required: true;
|
|
495
|
+
}];
|
|
496
|
+
readonly id: "service-account";
|
|
497
|
+
readonly name: "Service account";
|
|
498
|
+
readonly type: "form";
|
|
499
|
+
}, {
|
|
500
|
+
readonly credentialUrl: "https://www.1password.dev/events-api/get-started";
|
|
501
|
+
readonly fields: readonly [{
|
|
502
|
+
readonly default: "https://events.1password.com";
|
|
503
|
+
readonly description: "Use the Events API URL shown by 1Password for your account region.";
|
|
504
|
+
readonly input: "url";
|
|
505
|
+
readonly label: "Events API URL";
|
|
506
|
+
readonly name: "baseUrl";
|
|
507
|
+
readonly placeholder: "https://events.1password.com";
|
|
508
|
+
readonly required: true;
|
|
509
|
+
}, {
|
|
510
|
+
readonly input: "password";
|
|
511
|
+
readonly label: "Events API bearer token";
|
|
512
|
+
readonly name: "bearerToken";
|
|
513
|
+
readonly placeholder: "Paste the Events Reporting token";
|
|
514
|
+
readonly required: true;
|
|
515
|
+
}];
|
|
516
|
+
readonly id: "events-api-token";
|
|
517
|
+
readonly name: "Events API token";
|
|
518
|
+
readonly type: "form";
|
|
519
|
+
}];
|
|
520
|
+
readonly description: "Connect a 1Password service account for secrets automation or an Events API token for account activity.";
|
|
521
|
+
readonly id: "1password";
|
|
522
|
+
readonly name: "1Password";
|
|
523
|
+
readonly preferredConnectionMethodId: "service-account";
|
|
524
|
+
};
|
|
462
525
|
export declare const openrouterService: {
|
|
463
526
|
readonly id: "openrouter";
|
|
464
527
|
readonly name: string;
|
|
@@ -845,6 +908,28 @@ export declare const integrationCatalog: readonly [{
|
|
|
845
908
|
readonly id: "cloudflare";
|
|
846
909
|
readonly name: "Cloudflare";
|
|
847
910
|
readonly preferredConnectionMethodId: "oauth";
|
|
911
|
+
}, {
|
|
912
|
+
readonly connectionMethods: readonly [{
|
|
913
|
+
readonly id: "oauth";
|
|
914
|
+
readonly name: "OAuth";
|
|
915
|
+
readonly type: "redirect";
|
|
916
|
+
}, {
|
|
917
|
+
readonly credentialUrl: "https://app.close.com/settings/developer/api-keys";
|
|
918
|
+
readonly fields: readonly [{
|
|
919
|
+
readonly placeholder: "Close API key";
|
|
920
|
+
readonly input: "password";
|
|
921
|
+
readonly label: "API key";
|
|
922
|
+
readonly name: "apiKey";
|
|
923
|
+
readonly required: true;
|
|
924
|
+
}];
|
|
925
|
+
readonly id: "api-key";
|
|
926
|
+
readonly name: "API key";
|
|
927
|
+
readonly type: "form";
|
|
928
|
+
}];
|
|
929
|
+
readonly description: "Connect a Close CRM account with OAuth or an API key.";
|
|
930
|
+
readonly id: "close";
|
|
931
|
+
readonly name: "Close";
|
|
932
|
+
readonly preferredConnectionMethodId: "oauth";
|
|
848
933
|
}, {
|
|
849
934
|
readonly connectionMethods: readonly [{
|
|
850
935
|
readonly fields: readonly [{
|
|
@@ -1146,6 +1231,45 @@ export declare const integrationCatalog: readonly [{
|
|
|
1146
1231
|
readonly type: "form";
|
|
1147
1232
|
readonly credentialUrl?: string | undefined;
|
|
1148
1233
|
}];
|
|
1234
|
+
}, {
|
|
1235
|
+
readonly connectionMethods: readonly [{
|
|
1236
|
+
readonly credentialUrl: "https://www.1password.dev/service-accounts/get-started";
|
|
1237
|
+
readonly fields: readonly [{
|
|
1238
|
+
readonly description: "Create an immutable service account with access to only the vaults and Environments this automation needs.";
|
|
1239
|
+
readonly input: "password";
|
|
1240
|
+
readonly label: "Service account token";
|
|
1241
|
+
readonly name: "serviceAccountToken";
|
|
1242
|
+
readonly placeholder: "ops_...";
|
|
1243
|
+
readonly required: true;
|
|
1244
|
+
}];
|
|
1245
|
+
readonly id: "service-account";
|
|
1246
|
+
readonly name: "Service account";
|
|
1247
|
+
readonly type: "form";
|
|
1248
|
+
}, {
|
|
1249
|
+
readonly credentialUrl: "https://www.1password.dev/events-api/get-started";
|
|
1250
|
+
readonly fields: readonly [{
|
|
1251
|
+
readonly default: "https://events.1password.com";
|
|
1252
|
+
readonly description: "Use the Events API URL shown by 1Password for your account region.";
|
|
1253
|
+
readonly input: "url";
|
|
1254
|
+
readonly label: "Events API URL";
|
|
1255
|
+
readonly name: "baseUrl";
|
|
1256
|
+
readonly placeholder: "https://events.1password.com";
|
|
1257
|
+
readonly required: true;
|
|
1258
|
+
}, {
|
|
1259
|
+
readonly input: "password";
|
|
1260
|
+
readonly label: "Events API bearer token";
|
|
1261
|
+
readonly name: "bearerToken";
|
|
1262
|
+
readonly placeholder: "Paste the Events Reporting token";
|
|
1263
|
+
readonly required: true;
|
|
1264
|
+
}];
|
|
1265
|
+
readonly id: "events-api-token";
|
|
1266
|
+
readonly name: "Events API token";
|
|
1267
|
+
readonly type: "form";
|
|
1268
|
+
}];
|
|
1269
|
+
readonly description: "Connect a 1Password service account for secrets automation or an Events API token for account activity.";
|
|
1270
|
+
readonly id: "1password";
|
|
1271
|
+
readonly name: "1Password";
|
|
1272
|
+
readonly preferredConnectionMethodId: "service-account";
|
|
1149
1273
|
}, {
|
|
1150
1274
|
readonly id: "openrouter";
|
|
1151
1275
|
readonly name: string;
|
package/dist/catalog.js
CHANGED
|
@@ -72,6 +72,22 @@ export const cloudflareService = defineIntegrationService({
|
|
|
72
72
|
name: "Cloudflare",
|
|
73
73
|
preferredConnectionMethodId: "oauth",
|
|
74
74
|
});
|
|
75
|
+
export const closeService = defineIntegrationService({
|
|
76
|
+
connectionMethods: [
|
|
77
|
+
{ id: "oauth", name: "OAuth", type: "redirect" },
|
|
78
|
+
{
|
|
79
|
+
credentialUrl: "https://app.close.com/settings/developer/api-keys",
|
|
80
|
+
fields: [{ ...API_KEY_FIELD, placeholder: "Close API key" }],
|
|
81
|
+
id: "api-key",
|
|
82
|
+
name: "API key",
|
|
83
|
+
type: "form",
|
|
84
|
+
},
|
|
85
|
+
],
|
|
86
|
+
description: "Connect a Close CRM account with OAuth or an API key.",
|
|
87
|
+
id: "close",
|
|
88
|
+
name: "Close",
|
|
89
|
+
preferredConnectionMethodId: "oauth",
|
|
90
|
+
});
|
|
75
91
|
export const chatgptService = defineIntegrationService({
|
|
76
92
|
connectionMethods: [
|
|
77
93
|
{
|
|
@@ -262,6 +278,54 @@ export const openaiService = defineApiKeyService({
|
|
|
262
278
|
name: "OpenAI",
|
|
263
279
|
placeholder: "sk-...",
|
|
264
280
|
});
|
|
281
|
+
export const onePasswordService = defineIntegrationService({
|
|
282
|
+
connectionMethods: [
|
|
283
|
+
{
|
|
284
|
+
credentialUrl: "https://www.1password.dev/service-accounts/get-started",
|
|
285
|
+
fields: [
|
|
286
|
+
{
|
|
287
|
+
description: "Create an immutable service account with access to only the vaults and Environments this automation needs.",
|
|
288
|
+
input: "password",
|
|
289
|
+
label: "Service account token",
|
|
290
|
+
name: "serviceAccountToken",
|
|
291
|
+
placeholder: "ops_...",
|
|
292
|
+
required: true,
|
|
293
|
+
},
|
|
294
|
+
],
|
|
295
|
+
id: "service-account",
|
|
296
|
+
name: "Service account",
|
|
297
|
+
type: "form",
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
credentialUrl: "https://www.1password.dev/events-api/get-started",
|
|
301
|
+
fields: [
|
|
302
|
+
{
|
|
303
|
+
default: "https://events.1password.com",
|
|
304
|
+
description: "Use the Events API URL shown by 1Password for your account region.",
|
|
305
|
+
input: "url",
|
|
306
|
+
label: "Events API URL",
|
|
307
|
+
name: "baseUrl",
|
|
308
|
+
placeholder: "https://events.1password.com",
|
|
309
|
+
required: true,
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
input: "password",
|
|
313
|
+
label: "Events API bearer token",
|
|
314
|
+
name: "bearerToken",
|
|
315
|
+
placeholder: "Paste the Events Reporting token",
|
|
316
|
+
required: true,
|
|
317
|
+
},
|
|
318
|
+
],
|
|
319
|
+
id: "events-api-token",
|
|
320
|
+
name: "Events API token",
|
|
321
|
+
type: "form",
|
|
322
|
+
},
|
|
323
|
+
],
|
|
324
|
+
description: "Connect a 1Password service account for secrets automation or an Events API token for account activity.",
|
|
325
|
+
id: "1password",
|
|
326
|
+
name: "1Password",
|
|
327
|
+
preferredConnectionMethodId: "service-account",
|
|
328
|
+
});
|
|
265
329
|
export const openrouterService = defineApiKeyService({
|
|
266
330
|
description: "Connect an OpenRouter API key.",
|
|
267
331
|
id: "openrouter",
|
|
@@ -412,6 +476,7 @@ export const integrationCatalog = defineIntegrationCatalog([
|
|
|
412
476
|
cerebrasService,
|
|
413
477
|
chatgptService,
|
|
414
478
|
cloudflareService,
|
|
479
|
+
closeService,
|
|
415
480
|
codexService,
|
|
416
481
|
cohereService,
|
|
417
482
|
convexService,
|
|
@@ -429,6 +494,7 @@ export const integrationCatalog = defineIntegrationCatalog([
|
|
|
429
494
|
millionverifierService,
|
|
430
495
|
mistralService,
|
|
431
496
|
openaiService,
|
|
497
|
+
onePasswordService,
|
|
432
498
|
openrouterService,
|
|
433
499
|
perplexityService,
|
|
434
500
|
postgresService,
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, codexService, cohereService, convexService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, stripeService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, webflowService, whatsappService, xaiService, type IntegrationServiceId, } from "./catalog.js";
|
|
1
|
+
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, closeService, codexService, cohereService, convexService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, onePasswordService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, stripeService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, webflowService, whatsappService, xaiService, type IntegrationServiceId, } from "./catalog.js";
|
|
2
2
|
export { defineIntegrationCatalog, defineIntegrationService, integrationScope, type IntegrationAccountConnectionOption, type IntegrationAccountRequirement, type IntegrationConnectionDefinition, type IntegrationConnectionNotice, type IntegrationFormField, type IntegrationScopeRequirement, type IntegrationServiceDefinition, type ScopeRequirementGroup, type TriggerDefinition, type TriggerPresentation, type TriggerPresentationContext, type TriggerPresentationDetail, type TriggerScopePresentation, type TriggerPresentationValue, } from "./types.js";
|
|
3
3
|
export { getDashboardRunEndpoint, getDashboardRunEndpointKey, getHttpTriggerEndpoint, getHttpTriggerEndpointKey, getMailhookAddress, getMailhookAddressKey, DASHBOARD_RUN_CONFIG_SCHEMA, getTriggerDefinition, getTriggerName, getTriggerPresentation, isTriggerVisible, PLATFORM_EMAIL_DOMAIN, triggerCatalog, triggerDefinitions, type DashboardRunConfig, type DashboardRunEndpointOptions, type DashboardRunField, type HttpTriggerEndpointOptions, type HttpTriggerScope, type MailhookAddressOptions, type MailhookScope, type TriggerType, } from "./triggers/index.js";
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, codexService, cohereService, convexService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, stripeService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, webflowService, whatsappService, xaiService, } from "./catalog.js";
|
|
1
|
+
export { airtableService, anthropicService, apolloService, asanaService, brevoService, cerebrasService, chatgptService, cloudflareService, closeService, codexService, cohereService, convexService, deepinfraService, deepseekService, firecrawlService, fireworksService, getIntegrationService, githubService, googleGenaiService, googleService, groqService, huggingfaceService, integrationCatalog, linearService, microsoftService, millionverifierService, mistralService, openaiService, onePasswordService, openrouterService, perplexityService, postgresService, resendService, scrapflyService, slackService, stripeService, tidycalService, togetheraiService, trelloService, vercelAiGatewayService, vercelService, webflowService, whatsappService, xaiService, } from "./catalog.js";
|
|
2
2
|
export { defineIntegrationCatalog, defineIntegrationService, integrationScope, } from "./types.js";
|
|
3
3
|
export { getDashboardRunEndpoint, getDashboardRunEndpointKey, getHttpTriggerEndpoint, getHttpTriggerEndpointKey, getMailhookAddress, getMailhookAddressKey, DASHBOARD_RUN_CONFIG_SCHEMA, getTriggerDefinition, getTriggerName, getTriggerPresentation, isTriggerVisible, PLATFORM_EMAIL_DOMAIN, triggerCatalog, triggerDefinitions, } from "./triggers/index.js";
|
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
export declare const closeTriggerDefinitions: {
|
|
2
|
+
readonly closeCallAnswered: {
|
|
3
|
+
readonly account: {
|
|
4
|
+
readonly connectionOptions: readonly [{
|
|
5
|
+
readonly requiredScopes: readonly [];
|
|
6
|
+
}];
|
|
7
|
+
readonly serviceId: "close";
|
|
8
|
+
};
|
|
9
|
+
readonly type: "close.call.answered";
|
|
10
|
+
};
|
|
11
|
+
readonly closeCallCompleted: {
|
|
12
|
+
readonly account: {
|
|
13
|
+
readonly connectionOptions: readonly [{
|
|
14
|
+
readonly requiredScopes: readonly [];
|
|
15
|
+
}];
|
|
16
|
+
readonly serviceId: "close";
|
|
17
|
+
};
|
|
18
|
+
readonly type: "close.call.completed";
|
|
19
|
+
};
|
|
20
|
+
readonly closeCommentCreated: {
|
|
21
|
+
readonly account: {
|
|
22
|
+
readonly connectionOptions: readonly [{
|
|
23
|
+
readonly requiredScopes: readonly [];
|
|
24
|
+
}];
|
|
25
|
+
readonly serviceId: "close";
|
|
26
|
+
};
|
|
27
|
+
readonly type: "close.comment.created";
|
|
28
|
+
};
|
|
29
|
+
readonly closeCommentDeleted: {
|
|
30
|
+
readonly account: {
|
|
31
|
+
readonly connectionOptions: readonly [{
|
|
32
|
+
readonly requiredScopes: readonly [];
|
|
33
|
+
}];
|
|
34
|
+
readonly serviceId: "close";
|
|
35
|
+
};
|
|
36
|
+
readonly type: "close.comment.deleted";
|
|
37
|
+
};
|
|
38
|
+
readonly closeCommentUpdated: {
|
|
39
|
+
readonly account: {
|
|
40
|
+
readonly connectionOptions: readonly [{
|
|
41
|
+
readonly requiredScopes: readonly [];
|
|
42
|
+
}];
|
|
43
|
+
readonly serviceId: "close";
|
|
44
|
+
};
|
|
45
|
+
readonly type: "close.comment.updated";
|
|
46
|
+
};
|
|
47
|
+
readonly closeContactCreated: {
|
|
48
|
+
readonly account: {
|
|
49
|
+
readonly connectionOptions: readonly [{
|
|
50
|
+
readonly requiredScopes: readonly [];
|
|
51
|
+
}];
|
|
52
|
+
readonly serviceId: "close";
|
|
53
|
+
};
|
|
54
|
+
readonly type: "close.contact.created";
|
|
55
|
+
};
|
|
56
|
+
readonly closeContactDeleted: {
|
|
57
|
+
readonly account: {
|
|
58
|
+
readonly connectionOptions: readonly [{
|
|
59
|
+
readonly requiredScopes: readonly [];
|
|
60
|
+
}];
|
|
61
|
+
readonly serviceId: "close";
|
|
62
|
+
};
|
|
63
|
+
readonly type: "close.contact.deleted";
|
|
64
|
+
};
|
|
65
|
+
readonly closeContactUpdated: {
|
|
66
|
+
readonly account: {
|
|
67
|
+
readonly connectionOptions: readonly [{
|
|
68
|
+
readonly requiredScopes: readonly [];
|
|
69
|
+
}];
|
|
70
|
+
readonly serviceId: "close";
|
|
71
|
+
};
|
|
72
|
+
readonly type: "close.contact.updated";
|
|
73
|
+
};
|
|
74
|
+
readonly closeEmailReceived: {
|
|
75
|
+
readonly account: {
|
|
76
|
+
readonly connectionOptions: readonly [{
|
|
77
|
+
readonly requiredScopes: readonly [];
|
|
78
|
+
}];
|
|
79
|
+
readonly serviceId: "close";
|
|
80
|
+
};
|
|
81
|
+
readonly type: "close.email.received";
|
|
82
|
+
};
|
|
83
|
+
readonly closeEmailSent: {
|
|
84
|
+
readonly account: {
|
|
85
|
+
readonly connectionOptions: readonly [{
|
|
86
|
+
readonly requiredScopes: readonly [];
|
|
87
|
+
}];
|
|
88
|
+
readonly serviceId: "close";
|
|
89
|
+
};
|
|
90
|
+
readonly type: "close.email.sent";
|
|
91
|
+
};
|
|
92
|
+
readonly closeEvent: {
|
|
93
|
+
readonly account: {
|
|
94
|
+
readonly connectionOptions: readonly [{
|
|
95
|
+
readonly requiredScopes: readonly [];
|
|
96
|
+
}];
|
|
97
|
+
readonly serviceId: "close";
|
|
98
|
+
};
|
|
99
|
+
readonly type: "close.event";
|
|
100
|
+
};
|
|
101
|
+
readonly closeLeadCreated: {
|
|
102
|
+
readonly account: {
|
|
103
|
+
readonly connectionOptions: readonly [{
|
|
104
|
+
readonly requiredScopes: readonly [];
|
|
105
|
+
}];
|
|
106
|
+
readonly serviceId: "close";
|
|
107
|
+
};
|
|
108
|
+
readonly type: "close.lead.created";
|
|
109
|
+
};
|
|
110
|
+
readonly closeLeadDeleted: {
|
|
111
|
+
readonly account: {
|
|
112
|
+
readonly connectionOptions: readonly [{
|
|
113
|
+
readonly requiredScopes: readonly [];
|
|
114
|
+
}];
|
|
115
|
+
readonly serviceId: "close";
|
|
116
|
+
};
|
|
117
|
+
readonly type: "close.lead.deleted";
|
|
118
|
+
};
|
|
119
|
+
readonly closeLeadMerged: {
|
|
120
|
+
readonly account: {
|
|
121
|
+
readonly connectionOptions: readonly [{
|
|
122
|
+
readonly requiredScopes: readonly [];
|
|
123
|
+
}];
|
|
124
|
+
readonly serviceId: "close";
|
|
125
|
+
};
|
|
126
|
+
readonly type: "close.lead.merged";
|
|
127
|
+
};
|
|
128
|
+
readonly closeLeadUpdated: {
|
|
129
|
+
readonly account: {
|
|
130
|
+
readonly connectionOptions: readonly [{
|
|
131
|
+
readonly requiredScopes: readonly [];
|
|
132
|
+
}];
|
|
133
|
+
readonly serviceId: "close";
|
|
134
|
+
};
|
|
135
|
+
readonly type: "close.lead.updated";
|
|
136
|
+
};
|
|
137
|
+
readonly closeMeetingCanceled: {
|
|
138
|
+
readonly account: {
|
|
139
|
+
readonly connectionOptions: readonly [{
|
|
140
|
+
readonly requiredScopes: readonly [];
|
|
141
|
+
}];
|
|
142
|
+
readonly serviceId: "close";
|
|
143
|
+
};
|
|
144
|
+
readonly type: "close.meeting.canceled";
|
|
145
|
+
};
|
|
146
|
+
readonly closeMeetingCompleted: {
|
|
147
|
+
readonly account: {
|
|
148
|
+
readonly connectionOptions: readonly [{
|
|
149
|
+
readonly requiredScopes: readonly [];
|
|
150
|
+
}];
|
|
151
|
+
readonly serviceId: "close";
|
|
152
|
+
};
|
|
153
|
+
readonly type: "close.meeting.completed";
|
|
154
|
+
};
|
|
155
|
+
readonly closeMeetingScheduled: {
|
|
156
|
+
readonly account: {
|
|
157
|
+
readonly connectionOptions: readonly [{
|
|
158
|
+
readonly requiredScopes: readonly [];
|
|
159
|
+
}];
|
|
160
|
+
readonly serviceId: "close";
|
|
161
|
+
};
|
|
162
|
+
readonly type: "close.meeting.scheduled";
|
|
163
|
+
};
|
|
164
|
+
readonly closeMeetingStarted: {
|
|
165
|
+
readonly account: {
|
|
166
|
+
readonly connectionOptions: readonly [{
|
|
167
|
+
readonly requiredScopes: readonly [];
|
|
168
|
+
}];
|
|
169
|
+
readonly serviceId: "close";
|
|
170
|
+
};
|
|
171
|
+
readonly type: "close.meeting.started";
|
|
172
|
+
};
|
|
173
|
+
readonly closeOpportunityCreated: {
|
|
174
|
+
readonly account: {
|
|
175
|
+
readonly connectionOptions: readonly [{
|
|
176
|
+
readonly requiredScopes: readonly [];
|
|
177
|
+
}];
|
|
178
|
+
readonly serviceId: "close";
|
|
179
|
+
};
|
|
180
|
+
readonly type: "close.opportunity.created";
|
|
181
|
+
};
|
|
182
|
+
readonly closeOpportunityDeleted: {
|
|
183
|
+
readonly account: {
|
|
184
|
+
readonly connectionOptions: readonly [{
|
|
185
|
+
readonly requiredScopes: readonly [];
|
|
186
|
+
}];
|
|
187
|
+
readonly serviceId: "close";
|
|
188
|
+
};
|
|
189
|
+
readonly type: "close.opportunity.deleted";
|
|
190
|
+
};
|
|
191
|
+
readonly closeOpportunityLost: {
|
|
192
|
+
readonly account: {
|
|
193
|
+
readonly connectionOptions: readonly [{
|
|
194
|
+
readonly requiredScopes: readonly [];
|
|
195
|
+
}];
|
|
196
|
+
readonly serviceId: "close";
|
|
197
|
+
};
|
|
198
|
+
readonly type: "close.opportunity.lost";
|
|
199
|
+
};
|
|
200
|
+
readonly closeOpportunityUpdated: {
|
|
201
|
+
readonly account: {
|
|
202
|
+
readonly connectionOptions: readonly [{
|
|
203
|
+
readonly requiredScopes: readonly [];
|
|
204
|
+
}];
|
|
205
|
+
readonly serviceId: "close";
|
|
206
|
+
};
|
|
207
|
+
readonly type: "close.opportunity.updated";
|
|
208
|
+
};
|
|
209
|
+
readonly closeOpportunityWon: {
|
|
210
|
+
readonly account: {
|
|
211
|
+
readonly connectionOptions: readonly [{
|
|
212
|
+
readonly requiredScopes: readonly [];
|
|
213
|
+
}];
|
|
214
|
+
readonly serviceId: "close";
|
|
215
|
+
};
|
|
216
|
+
readonly type: "close.opportunity.won";
|
|
217
|
+
};
|
|
218
|
+
readonly closeSequenceSubscriptionCreated: {
|
|
219
|
+
readonly account: {
|
|
220
|
+
readonly connectionOptions: readonly [{
|
|
221
|
+
readonly requiredScopes: readonly [];
|
|
222
|
+
}];
|
|
223
|
+
readonly serviceId: "close";
|
|
224
|
+
};
|
|
225
|
+
readonly type: "close.sequenceSubscription.created";
|
|
226
|
+
};
|
|
227
|
+
readonly closeSequenceSubscriptionDeleted: {
|
|
228
|
+
readonly account: {
|
|
229
|
+
readonly connectionOptions: readonly [{
|
|
230
|
+
readonly requiredScopes: readonly [];
|
|
231
|
+
}];
|
|
232
|
+
readonly serviceId: "close";
|
|
233
|
+
};
|
|
234
|
+
readonly type: "close.sequenceSubscription.deleted";
|
|
235
|
+
};
|
|
236
|
+
readonly closeSequenceSubscriptionErrored: {
|
|
237
|
+
readonly account: {
|
|
238
|
+
readonly connectionOptions: readonly [{
|
|
239
|
+
readonly requiredScopes: readonly [];
|
|
240
|
+
}];
|
|
241
|
+
readonly serviceId: "close";
|
|
242
|
+
};
|
|
243
|
+
readonly type: "close.sequenceSubscription.errored";
|
|
244
|
+
};
|
|
245
|
+
readonly closeSequenceSubscriptionFinished: {
|
|
246
|
+
readonly account: {
|
|
247
|
+
readonly connectionOptions: readonly [{
|
|
248
|
+
readonly requiredScopes: readonly [];
|
|
249
|
+
}];
|
|
250
|
+
readonly serviceId: "close";
|
|
251
|
+
};
|
|
252
|
+
readonly type: "close.sequenceSubscription.finished";
|
|
253
|
+
};
|
|
254
|
+
readonly closeSequenceSubscriptionGoalReached: {
|
|
255
|
+
readonly account: {
|
|
256
|
+
readonly connectionOptions: readonly [{
|
|
257
|
+
readonly requiredScopes: readonly [];
|
|
258
|
+
}];
|
|
259
|
+
readonly serviceId: "close";
|
|
260
|
+
};
|
|
261
|
+
readonly type: "close.sequenceSubscription.goalReached";
|
|
262
|
+
};
|
|
263
|
+
readonly closeSequenceSubscriptionPaused: {
|
|
264
|
+
readonly account: {
|
|
265
|
+
readonly connectionOptions: readonly [{
|
|
266
|
+
readonly requiredScopes: readonly [];
|
|
267
|
+
}];
|
|
268
|
+
readonly serviceId: "close";
|
|
269
|
+
};
|
|
270
|
+
readonly type: "close.sequenceSubscription.paused";
|
|
271
|
+
};
|
|
272
|
+
readonly closeSequenceSubscriptionResumed: {
|
|
273
|
+
readonly account: {
|
|
274
|
+
readonly connectionOptions: readonly [{
|
|
275
|
+
readonly requiredScopes: readonly [];
|
|
276
|
+
}];
|
|
277
|
+
readonly serviceId: "close";
|
|
278
|
+
};
|
|
279
|
+
readonly type: "close.sequenceSubscription.resumed";
|
|
280
|
+
};
|
|
281
|
+
readonly closeSequenceSubscriptionUpdated: {
|
|
282
|
+
readonly account: {
|
|
283
|
+
readonly connectionOptions: readonly [{
|
|
284
|
+
readonly requiredScopes: readonly [];
|
|
285
|
+
}];
|
|
286
|
+
readonly serviceId: "close";
|
|
287
|
+
};
|
|
288
|
+
readonly type: "close.sequenceSubscription.updated";
|
|
289
|
+
};
|
|
290
|
+
readonly closeSmsReceived: {
|
|
291
|
+
readonly account: {
|
|
292
|
+
readonly connectionOptions: readonly [{
|
|
293
|
+
readonly requiredScopes: readonly [];
|
|
294
|
+
}];
|
|
295
|
+
readonly serviceId: "close";
|
|
296
|
+
};
|
|
297
|
+
readonly type: "close.sms.received";
|
|
298
|
+
};
|
|
299
|
+
readonly closeSmsSent: {
|
|
300
|
+
readonly account: {
|
|
301
|
+
readonly connectionOptions: readonly [{
|
|
302
|
+
readonly requiredScopes: readonly [];
|
|
303
|
+
}];
|
|
304
|
+
readonly serviceId: "close";
|
|
305
|
+
};
|
|
306
|
+
readonly type: "close.sms.sent";
|
|
307
|
+
};
|
|
308
|
+
readonly closeTaskCompleted: {
|
|
309
|
+
readonly account: {
|
|
310
|
+
readonly connectionOptions: readonly [{
|
|
311
|
+
readonly requiredScopes: readonly [];
|
|
312
|
+
}];
|
|
313
|
+
readonly serviceId: "close";
|
|
314
|
+
};
|
|
315
|
+
readonly type: "close.task.completed";
|
|
316
|
+
};
|
|
317
|
+
readonly closeTaskCreated: {
|
|
318
|
+
readonly account: {
|
|
319
|
+
readonly connectionOptions: readonly [{
|
|
320
|
+
readonly requiredScopes: readonly [];
|
|
321
|
+
}];
|
|
322
|
+
readonly serviceId: "close";
|
|
323
|
+
};
|
|
324
|
+
readonly type: "close.task.created";
|
|
325
|
+
};
|
|
326
|
+
readonly closeTaskDeleted: {
|
|
327
|
+
readonly account: {
|
|
328
|
+
readonly connectionOptions: readonly [{
|
|
329
|
+
readonly requiredScopes: readonly [];
|
|
330
|
+
}];
|
|
331
|
+
readonly serviceId: "close";
|
|
332
|
+
};
|
|
333
|
+
readonly type: "close.task.deleted";
|
|
334
|
+
};
|
|
335
|
+
readonly closeTaskUpdated: {
|
|
336
|
+
readonly account: {
|
|
337
|
+
readonly connectionOptions: readonly [{
|
|
338
|
+
readonly requiredScopes: readonly [];
|
|
339
|
+
}];
|
|
340
|
+
readonly serviceId: "close";
|
|
341
|
+
};
|
|
342
|
+
readonly type: "close.task.updated";
|
|
343
|
+
};
|
|
344
|
+
};
|