@automate.ax/catalog 0.103.2 → 0.105.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/catalog.d.ts +2 -2
- package/dist/catalog.js +2 -1
- package/dist/triggers/close.d.ts +36 -0
- package/dist/triggers/close.js +16 -0
- package/dist/triggers/index.d.ts +72 -0
- package/package.json +1 -1
- package/src/catalog.ts +2 -1
- package/src/triggers/close.ts +16 -0
package/dist/catalog.d.ts
CHANGED
|
@@ -637,7 +637,7 @@ export declare const postgresService: {
|
|
|
637
637
|
readonly name: "Credentials";
|
|
638
638
|
readonly type: "form";
|
|
639
639
|
}];
|
|
640
|
-
readonly description: "Connect a PostgreSQL database.";
|
|
640
|
+
readonly description: "Connect a PostgreSQL database with a least-privilege role.";
|
|
641
641
|
readonly id: "postgres";
|
|
642
642
|
readonly name: "PostgreSQL";
|
|
643
643
|
};
|
|
@@ -1449,7 +1449,7 @@ export declare const integrationCatalog: readonly [{
|
|
|
1449
1449
|
readonly name: "Credentials";
|
|
1450
1450
|
readonly type: "form";
|
|
1451
1451
|
}];
|
|
1452
|
-
readonly description: "Connect a PostgreSQL database.";
|
|
1452
|
+
readonly description: "Connect a PostgreSQL database with a least-privilege role.";
|
|
1453
1453
|
readonly id: "postgres";
|
|
1454
1454
|
readonly name: "PostgreSQL";
|
|
1455
1455
|
}, {
|
package/dist/catalog.js
CHANGED
|
@@ -408,7 +408,7 @@ export const postgresService = defineIntegrationService({
|
|
|
408
408
|
type: "form",
|
|
409
409
|
},
|
|
410
410
|
],
|
|
411
|
-
description: "Connect a PostgreSQL database.",
|
|
411
|
+
description: "Connect a PostgreSQL database with a least-privilege role.",
|
|
412
412
|
id: "postgres",
|
|
413
413
|
name: "PostgreSQL",
|
|
414
414
|
});
|
|
@@ -428,6 +428,7 @@ export const resendService = defineIntegrationService({
|
|
|
428
428
|
preferredConnectionMethodId: "oauth",
|
|
429
429
|
});
|
|
430
430
|
export const scrapflyService = defineApiKeyService({
|
|
431
|
+
credentialUrl: "https://scrapfly.io/dashboard/project",
|
|
431
432
|
description: "Connect a Scrapfly API key.",
|
|
432
433
|
id: "scrapfly",
|
|
433
434
|
name: "Scrapfly",
|
package/dist/triggers/close.d.ts
CHANGED
|
@@ -134,6 +134,24 @@ export declare const closeTriggerDefinitions: {
|
|
|
134
134
|
};
|
|
135
135
|
readonly type: "close.lead.updated";
|
|
136
136
|
};
|
|
137
|
+
readonly closeLeadEnteredSmartView: {
|
|
138
|
+
readonly account: {
|
|
139
|
+
readonly connectionOptions: readonly [{
|
|
140
|
+
readonly requiredScopes: readonly [];
|
|
141
|
+
}];
|
|
142
|
+
readonly serviceId: "close";
|
|
143
|
+
};
|
|
144
|
+
readonly type: "close.smartView.leadEntered";
|
|
145
|
+
};
|
|
146
|
+
readonly closeLeadExitedSmartView: {
|
|
147
|
+
readonly account: {
|
|
148
|
+
readonly connectionOptions: readonly [{
|
|
149
|
+
readonly requiredScopes: readonly [];
|
|
150
|
+
}];
|
|
151
|
+
readonly serviceId: "close";
|
|
152
|
+
};
|
|
153
|
+
readonly type: "close.smartView.leadExited";
|
|
154
|
+
};
|
|
137
155
|
readonly closeMeetingCanceled: {
|
|
138
156
|
readonly account: {
|
|
139
157
|
readonly connectionOptions: readonly [{
|
|
@@ -287,6 +305,24 @@ export declare const closeTriggerDefinitions: {
|
|
|
287
305
|
};
|
|
288
306
|
readonly type: "close.sequenceSubscription.updated";
|
|
289
307
|
};
|
|
308
|
+
readonly closeSmartViewCreated: {
|
|
309
|
+
readonly account: {
|
|
310
|
+
readonly connectionOptions: readonly [{
|
|
311
|
+
readonly requiredScopes: readonly [];
|
|
312
|
+
}];
|
|
313
|
+
readonly serviceId: "close";
|
|
314
|
+
};
|
|
315
|
+
readonly type: "close.smartView.created";
|
|
316
|
+
};
|
|
317
|
+
readonly closeSmartViewUpdated: {
|
|
318
|
+
readonly account: {
|
|
319
|
+
readonly connectionOptions: readonly [{
|
|
320
|
+
readonly requiredScopes: readonly [];
|
|
321
|
+
}];
|
|
322
|
+
readonly serviceId: "close";
|
|
323
|
+
};
|
|
324
|
+
readonly type: "close.smartView.updated";
|
|
325
|
+
};
|
|
290
326
|
readonly closeSmsReceived: {
|
|
291
327
|
readonly account: {
|
|
292
328
|
readonly connectionOptions: readonly [{
|
package/dist/triggers/close.js
CHANGED
|
@@ -36,6 +36,14 @@ export const closeTriggerDefinitions = {
|
|
|
36
36
|
closeLeadDeleted: { account: CLOSE_ACCOUNT, type: "close.lead.deleted" },
|
|
37
37
|
closeLeadMerged: { account: CLOSE_ACCOUNT, type: "close.lead.merged" },
|
|
38
38
|
closeLeadUpdated: { account: CLOSE_ACCOUNT, type: "close.lead.updated" },
|
|
39
|
+
closeLeadEnteredSmartView: {
|
|
40
|
+
account: CLOSE_ACCOUNT,
|
|
41
|
+
type: "close.smartView.leadEntered",
|
|
42
|
+
},
|
|
43
|
+
closeLeadExitedSmartView: {
|
|
44
|
+
account: CLOSE_ACCOUNT,
|
|
45
|
+
type: "close.smartView.leadExited",
|
|
46
|
+
},
|
|
39
47
|
closeMeetingCanceled: {
|
|
40
48
|
account: CLOSE_ACCOUNT,
|
|
41
49
|
type: "close.meeting.canceled",
|
|
@@ -104,6 +112,14 @@ export const closeTriggerDefinitions = {
|
|
|
104
112
|
account: CLOSE_ACCOUNT,
|
|
105
113
|
type: "close.sequenceSubscription.updated",
|
|
106
114
|
},
|
|
115
|
+
closeSmartViewCreated: {
|
|
116
|
+
account: CLOSE_ACCOUNT,
|
|
117
|
+
type: "close.smartView.created",
|
|
118
|
+
},
|
|
119
|
+
closeSmartViewUpdated: {
|
|
120
|
+
account: CLOSE_ACCOUNT,
|
|
121
|
+
type: "close.smartView.updated",
|
|
122
|
+
},
|
|
107
123
|
closeSmsReceived: { account: CLOSE_ACCOUNT, type: "close.sms.received" },
|
|
108
124
|
closeSmsSent: { account: CLOSE_ACCOUNT, type: "close.sms.sent" },
|
|
109
125
|
closeTaskCompleted: { account: CLOSE_ACCOUNT, type: "close.task.completed" },
|
package/dist/triggers/index.d.ts
CHANGED
|
@@ -3806,6 +3806,24 @@ export declare const triggerDefinitions: {
|
|
|
3806
3806
|
};
|
|
3807
3807
|
readonly type: "close.lead.updated";
|
|
3808
3808
|
};
|
|
3809
|
+
readonly closeLeadEnteredSmartView: {
|
|
3810
|
+
readonly account: {
|
|
3811
|
+
readonly connectionOptions: readonly [{
|
|
3812
|
+
readonly requiredScopes: readonly [];
|
|
3813
|
+
}];
|
|
3814
|
+
readonly serviceId: "close";
|
|
3815
|
+
};
|
|
3816
|
+
readonly type: "close.smartView.leadEntered";
|
|
3817
|
+
};
|
|
3818
|
+
readonly closeLeadExitedSmartView: {
|
|
3819
|
+
readonly account: {
|
|
3820
|
+
readonly connectionOptions: readonly [{
|
|
3821
|
+
readonly requiredScopes: readonly [];
|
|
3822
|
+
}];
|
|
3823
|
+
readonly serviceId: "close";
|
|
3824
|
+
};
|
|
3825
|
+
readonly type: "close.smartView.leadExited";
|
|
3826
|
+
};
|
|
3809
3827
|
readonly closeMeetingCanceled: {
|
|
3810
3828
|
readonly account: {
|
|
3811
3829
|
readonly connectionOptions: readonly [{
|
|
@@ -3959,6 +3977,24 @@ export declare const triggerDefinitions: {
|
|
|
3959
3977
|
};
|
|
3960
3978
|
readonly type: "close.sequenceSubscription.updated";
|
|
3961
3979
|
};
|
|
3980
|
+
readonly closeSmartViewCreated: {
|
|
3981
|
+
readonly account: {
|
|
3982
|
+
readonly connectionOptions: readonly [{
|
|
3983
|
+
readonly requiredScopes: readonly [];
|
|
3984
|
+
}];
|
|
3985
|
+
readonly serviceId: "close";
|
|
3986
|
+
};
|
|
3987
|
+
readonly type: "close.smartView.created";
|
|
3988
|
+
};
|
|
3989
|
+
readonly closeSmartViewUpdated: {
|
|
3990
|
+
readonly account: {
|
|
3991
|
+
readonly connectionOptions: readonly [{
|
|
3992
|
+
readonly requiredScopes: readonly [];
|
|
3993
|
+
}];
|
|
3994
|
+
readonly serviceId: "close";
|
|
3995
|
+
};
|
|
3996
|
+
readonly type: "close.smartView.updated";
|
|
3997
|
+
};
|
|
3962
3998
|
readonly closeSmsReceived: {
|
|
3963
3999
|
readonly account: {
|
|
3964
4000
|
readonly connectionOptions: readonly [{
|
|
@@ -5157,6 +5193,24 @@ export declare const triggerCatalog: ({
|
|
|
5157
5193
|
readonly serviceId: "close";
|
|
5158
5194
|
};
|
|
5159
5195
|
type: "close.lead.updated";
|
|
5196
|
+
} | {
|
|
5197
|
+
name: string;
|
|
5198
|
+
account: {
|
|
5199
|
+
readonly connectionOptions: readonly [{
|
|
5200
|
+
readonly requiredScopes: readonly [];
|
|
5201
|
+
}];
|
|
5202
|
+
readonly serviceId: "close";
|
|
5203
|
+
};
|
|
5204
|
+
type: "close.smartView.leadEntered";
|
|
5205
|
+
} | {
|
|
5206
|
+
name: string;
|
|
5207
|
+
account: {
|
|
5208
|
+
readonly connectionOptions: readonly [{
|
|
5209
|
+
readonly requiredScopes: readonly [];
|
|
5210
|
+
}];
|
|
5211
|
+
readonly serviceId: "close";
|
|
5212
|
+
};
|
|
5213
|
+
type: "close.smartView.leadExited";
|
|
5160
5214
|
} | {
|
|
5161
5215
|
name: string;
|
|
5162
5216
|
account: {
|
|
@@ -5310,6 +5364,24 @@ export declare const triggerCatalog: ({
|
|
|
5310
5364
|
readonly serviceId: "close";
|
|
5311
5365
|
};
|
|
5312
5366
|
type: "close.sequenceSubscription.updated";
|
|
5367
|
+
} | {
|
|
5368
|
+
name: string;
|
|
5369
|
+
account: {
|
|
5370
|
+
readonly connectionOptions: readonly [{
|
|
5371
|
+
readonly requiredScopes: readonly [];
|
|
5372
|
+
}];
|
|
5373
|
+
readonly serviceId: "close";
|
|
5374
|
+
};
|
|
5375
|
+
type: "close.smartView.created";
|
|
5376
|
+
} | {
|
|
5377
|
+
name: string;
|
|
5378
|
+
account: {
|
|
5379
|
+
readonly connectionOptions: readonly [{
|
|
5380
|
+
readonly requiredScopes: readonly [];
|
|
5381
|
+
}];
|
|
5382
|
+
readonly serviceId: "close";
|
|
5383
|
+
};
|
|
5384
|
+
type: "close.smartView.updated";
|
|
5313
5385
|
} | {
|
|
5314
5386
|
name: string;
|
|
5315
5387
|
account: {
|
package/package.json
CHANGED
package/src/catalog.ts
CHANGED
|
@@ -454,7 +454,7 @@ export const postgresService = defineIntegrationService({
|
|
|
454
454
|
type: "form",
|
|
455
455
|
},
|
|
456
456
|
],
|
|
457
|
-
description: "Connect a PostgreSQL database.",
|
|
457
|
+
description: "Connect a PostgreSQL database with a least-privilege role.",
|
|
458
458
|
id: "postgres",
|
|
459
459
|
name: "PostgreSQL",
|
|
460
460
|
})
|
|
@@ -476,6 +476,7 @@ export const resendService = defineIntegrationService({
|
|
|
476
476
|
})
|
|
477
477
|
|
|
478
478
|
export const scrapflyService = defineApiKeyService({
|
|
479
|
+
credentialUrl: "https://scrapfly.io/dashboard/project",
|
|
479
480
|
description: "Connect a Scrapfly API key.",
|
|
480
481
|
id: "scrapfly",
|
|
481
482
|
name: "Scrapfly",
|
package/src/triggers/close.ts
CHANGED
|
@@ -39,6 +39,14 @@ export const closeTriggerDefinitions = {
|
|
|
39
39
|
closeLeadDeleted: { account: CLOSE_ACCOUNT, type: "close.lead.deleted" },
|
|
40
40
|
closeLeadMerged: { account: CLOSE_ACCOUNT, type: "close.lead.merged" },
|
|
41
41
|
closeLeadUpdated: { account: CLOSE_ACCOUNT, type: "close.lead.updated" },
|
|
42
|
+
closeLeadEnteredSmartView: {
|
|
43
|
+
account: CLOSE_ACCOUNT,
|
|
44
|
+
type: "close.smartView.leadEntered",
|
|
45
|
+
},
|
|
46
|
+
closeLeadExitedSmartView: {
|
|
47
|
+
account: CLOSE_ACCOUNT,
|
|
48
|
+
type: "close.smartView.leadExited",
|
|
49
|
+
},
|
|
42
50
|
closeMeetingCanceled: {
|
|
43
51
|
account: CLOSE_ACCOUNT,
|
|
44
52
|
type: "close.meeting.canceled",
|
|
@@ -107,6 +115,14 @@ export const closeTriggerDefinitions = {
|
|
|
107
115
|
account: CLOSE_ACCOUNT,
|
|
108
116
|
type: "close.sequenceSubscription.updated",
|
|
109
117
|
},
|
|
118
|
+
closeSmartViewCreated: {
|
|
119
|
+
account: CLOSE_ACCOUNT,
|
|
120
|
+
type: "close.smartView.created",
|
|
121
|
+
},
|
|
122
|
+
closeSmartViewUpdated: {
|
|
123
|
+
account: CLOSE_ACCOUNT,
|
|
124
|
+
type: "close.smartView.updated",
|
|
125
|
+
},
|
|
110
126
|
closeSmsReceived: { account: CLOSE_ACCOUNT, type: "close.sms.received" },
|
|
111
127
|
closeSmsSent: { account: CLOSE_ACCOUNT, type: "close.sms.sent" },
|
|
112
128
|
closeTaskCompleted: { account: CLOSE_ACCOUNT, type: "close.task.completed" },
|