@zapier/zapier-sdk 0.105.0 → 0.107.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/CHANGELOG.md +72 -0
- package/README.md +187 -0
- package/dist/{chunk-Y2OATBGZ.cjs → chunk-I2QKGDAX.cjs} +11 -1
- package/dist/{chunk-NF7CPRHH.mjs → chunk-XGSFXI2W.mjs} +11 -1
- package/dist/experimental.cjs +678 -359
- package/dist/experimental.d.mts +10089 -3130
- package/dist/experimental.d.ts +10089 -3130
- package/dist/experimental.mjs +323 -4
- package/dist/{index-DFhYYVH_.d.mts → index-CPD7PuKo.d.mts} +9059 -2415
- package/dist/{index-DFhYYVH_.d.ts → index-CPD7PuKo.d.ts} +9059 -2415
- package/dist/index.cjs +279 -279
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/experimental.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkI2QKGDAX_cjs = require('./chunk-I2QKGDAX.cjs');
|
|
4
4
|
require('./chunk-OBGZSXTJ.cjs');
|
|
5
5
|
var kitcore = require('@zapier/kitcore');
|
|
6
6
|
var zod = require('zod');
|
|
@@ -52,7 +52,7 @@ function toWireConnections(connections) {
|
|
|
52
52
|
for (const [alias, entry] of Object.entries(connections)) {
|
|
53
53
|
const connectionId = entry.connectionId ?? entry.connection_id;
|
|
54
54
|
if (connectionId === void 0) {
|
|
55
|
-
throw new
|
|
55
|
+
throw new chunkI2QKGDAX_cjs.ZapierValidationError(
|
|
56
56
|
`connections["${alias}"] is missing connectionId`
|
|
57
57
|
);
|
|
58
58
|
}
|
|
@@ -79,7 +79,7 @@ var TriggerConfigSchema = zod.z.object({
|
|
|
79
79
|
function toWireTrigger(trigger) {
|
|
80
80
|
const selectedApi = trigger.selectedApi ?? trigger.selected_api;
|
|
81
81
|
if (selectedApi === void 0) {
|
|
82
|
-
throw new
|
|
82
|
+
throw new chunkI2QKGDAX_cjs.ZapierValidationError("trigger is missing selectedApi");
|
|
83
83
|
}
|
|
84
84
|
const wire = {
|
|
85
85
|
selected_api: selectedApi,
|
|
@@ -100,7 +100,7 @@ function toWireAppVersions(appVersions) {
|
|
|
100
100
|
for (const [key, entry] of Object.entries(appVersions)) {
|
|
101
101
|
const implementationName = entry.implementationName ?? entry.implementation_name;
|
|
102
102
|
if (implementationName === void 0) {
|
|
103
|
-
throw new
|
|
103
|
+
throw new chunkI2QKGDAX_cjs.ZapierValidationError(
|
|
104
104
|
`appVersions["${key}"] is missing implementationName`
|
|
105
105
|
);
|
|
106
106
|
}
|
|
@@ -269,7 +269,7 @@ var ListWorkflowsApiResponseSchema = zod.z.object({
|
|
|
269
269
|
var listWorkflowsPlugin = kitcore.defineMethod({
|
|
270
270
|
...codeSubstrateDefaults,
|
|
271
271
|
name: "listWorkflows",
|
|
272
|
-
imports: [
|
|
272
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
273
273
|
type: "list",
|
|
274
274
|
itemType: "Workflow",
|
|
275
275
|
inputSchema: ListWorkflowsOptionsSchema,
|
|
@@ -277,7 +277,7 @@ var listWorkflowsPlugin = kitcore.defineMethod({
|
|
|
277
277
|
skipOutputValidation: true,
|
|
278
278
|
// The handler already returns a clean `{ data, nextCursor }` page, so the
|
|
279
279
|
// standard list output (no `adaptPage`) applies.
|
|
280
|
-
output: { type: "list", defaultPageSize:
|
|
280
|
+
output: { type: "list", defaultPageSize: chunkI2QKGDAX_cjs.DEFAULT_PAGE_SIZE },
|
|
281
281
|
run: async ({ imports, input }) => {
|
|
282
282
|
const api = imports.api;
|
|
283
283
|
const searchParams = {};
|
|
@@ -352,13 +352,13 @@ var GetWorkflowResponseSchema = zod.z.object({
|
|
|
352
352
|
var getWorkflowPlugin = kitcore.defineMethod({
|
|
353
353
|
...codeSubstrateDefaults,
|
|
354
354
|
name: "getWorkflow",
|
|
355
|
-
imports: [
|
|
355
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
356
356
|
itemType: "Workflow",
|
|
357
357
|
inputSchema: GetWorkflowOptionsSchema,
|
|
358
358
|
outputSchema: GetWorkflowResponseSchema,
|
|
359
359
|
skipOutputValidation: true,
|
|
360
360
|
output: "item",
|
|
361
|
-
resolvers: { workflow:
|
|
361
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
362
362
|
run: async ({ imports, input }) => {
|
|
363
363
|
const api = imports.api;
|
|
364
364
|
const raw = await api.get(
|
|
@@ -404,7 +404,7 @@ var CreateWorkflowResponseSchema = zod.z.object({
|
|
|
404
404
|
var createWorkflowPlugin = kitcore.defineMethod({
|
|
405
405
|
...codeSubstrateDefaults,
|
|
406
406
|
name: "createWorkflow",
|
|
407
|
-
imports: [
|
|
407
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
408
408
|
type: "create",
|
|
409
409
|
itemType: "Workflow",
|
|
410
410
|
inputSchema: CreateWorkflowOptionsSchema,
|
|
@@ -495,7 +495,7 @@ var ImportWorkflowResponseSchema = zod.z.object({
|
|
|
495
495
|
var importWorkflowPlugin = kitcore.defineMethod({
|
|
496
496
|
...codeSubstrateDefaults,
|
|
497
497
|
name: "importWorkflow",
|
|
498
|
-
imports: [
|
|
498
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
499
499
|
type: "create",
|
|
500
500
|
itemType: "Workflow",
|
|
501
501
|
// The response is the composite `{ workflow, draft, issues }`, not the bare
|
|
@@ -524,8 +524,8 @@ var importWorkflowPlugin = kitcore.defineMethod({
|
|
|
524
524
|
// about which gate they hit or what to do, so name both.
|
|
525
525
|
customErrorHandler: ({ status, data }) => {
|
|
526
526
|
if (status === 403) {
|
|
527
|
-
const detail =
|
|
528
|
-
return new
|
|
527
|
+
const detail = chunkI2QKGDAX_cjs.extractErrorDetail(data);
|
|
528
|
+
return new chunkI2QKGDAX_cjs.ZapierApiError(
|
|
529
529
|
`${detail ?? "Zap import forbidden"} \u2014 only Zaps owned by the requesting user can be imported. Check the Zap ID belongs to this user, or ask its owner to run the import. Retrying will not help.`,
|
|
530
530
|
{ statusCode: status }
|
|
531
531
|
);
|
|
@@ -563,14 +563,14 @@ var UpdateWorkflowResponseSchema = zod.z.object({
|
|
|
563
563
|
var updateWorkflowPlugin = kitcore.defineMethod({
|
|
564
564
|
...codeSubstrateDefaults,
|
|
565
565
|
name: "updateWorkflow",
|
|
566
|
-
imports: [
|
|
566
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
567
567
|
type: "update",
|
|
568
568
|
itemType: "Workflow",
|
|
569
569
|
inputSchema: UpdateWorkflowOptionsSchema,
|
|
570
570
|
outputSchema: UpdateWorkflowResponseSchema,
|
|
571
571
|
skipOutputValidation: true,
|
|
572
572
|
output: "item",
|
|
573
|
-
resolvers: { workflow:
|
|
573
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
574
574
|
run: async ({ imports, input }) => {
|
|
575
575
|
const api = imports.api;
|
|
576
576
|
const body = {};
|
|
@@ -603,14 +603,14 @@ var EnableWorkflowResponseSchema = zod.z.object({
|
|
|
603
603
|
var enableWorkflowPlugin = kitcore.defineMethod({
|
|
604
604
|
...codeSubstrateDefaults,
|
|
605
605
|
name: "enableWorkflow",
|
|
606
|
-
imports: [
|
|
606
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
607
607
|
type: "update",
|
|
608
608
|
itemType: "Workflow",
|
|
609
609
|
inputSchema: EnableWorkflowOptionsSchema,
|
|
610
610
|
outputSchema: EnableWorkflowResponseSchema,
|
|
611
611
|
skipOutputValidation: true,
|
|
612
612
|
output: "item",
|
|
613
|
-
resolvers: { workflow:
|
|
613
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
614
614
|
run: async ({ imports, input }) => {
|
|
615
615
|
const api = imports.api;
|
|
616
616
|
const raw = await api.post(
|
|
@@ -638,14 +638,14 @@ var DisableWorkflowResponseSchema = zod.z.object({
|
|
|
638
638
|
var disableWorkflowPlugin = kitcore.defineMethod({
|
|
639
639
|
...codeSubstrateDefaults,
|
|
640
640
|
name: "disableWorkflow",
|
|
641
|
-
imports: [
|
|
641
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
642
642
|
type: "update",
|
|
643
643
|
itemType: "Workflow",
|
|
644
644
|
inputSchema: DisableWorkflowOptionsSchema,
|
|
645
645
|
outputSchema: DisableWorkflowResponseSchema,
|
|
646
646
|
skipOutputValidation: true,
|
|
647
647
|
output: "item",
|
|
648
|
-
resolvers: { workflow:
|
|
648
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
649
649
|
run: async ({ imports, input }) => {
|
|
650
650
|
const api = imports.api;
|
|
651
651
|
const raw = await api.post(
|
|
@@ -672,7 +672,7 @@ var DeleteWorkflowResponseSchema = zod.z.object({
|
|
|
672
672
|
var deleteWorkflowPlugin = kitcore.defineMethod({
|
|
673
673
|
...codeSubstrateDefaults,
|
|
674
674
|
name: "deleteWorkflow",
|
|
675
|
-
imports: [
|
|
675
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
676
676
|
type: "delete",
|
|
677
677
|
itemType: "Workflow",
|
|
678
678
|
confirm: "delete",
|
|
@@ -680,7 +680,7 @@ var deleteWorkflowPlugin = kitcore.defineMethod({
|
|
|
680
680
|
outputSchema: DeleteWorkflowResponseSchema,
|
|
681
681
|
skipOutputValidation: true,
|
|
682
682
|
output: "raw",
|
|
683
|
-
resolvers: { workflow:
|
|
683
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
684
684
|
run: async ({ imports, input }) => {
|
|
685
685
|
const api = imports.api;
|
|
686
686
|
await api.delete(
|
|
@@ -744,7 +744,7 @@ var ListDurableRunsApiResponseSchema = zod.z.object({
|
|
|
744
744
|
var listDurableRunsPlugin = kitcore.defineMethod({
|
|
745
745
|
...codeSubstrateDefaults,
|
|
746
746
|
name: "listDurableRuns",
|
|
747
|
-
imports: [
|
|
747
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
748
748
|
type: "list",
|
|
749
749
|
itemType: "DurableRun",
|
|
750
750
|
inputSchema: ListDurableRunsOptionsSchema,
|
|
@@ -752,7 +752,7 @@ var listDurableRunsPlugin = kitcore.defineMethod({
|
|
|
752
752
|
skipOutputValidation: true,
|
|
753
753
|
// The handler already returns a clean `{ data, nextCursor }` page, so the
|
|
754
754
|
// standard list output (no `adaptPage`) applies.
|
|
755
|
-
output: { type: "list", defaultPageSize:
|
|
755
|
+
output: { type: "list", defaultPageSize: chunkI2QKGDAX_cjs.DEFAULT_PAGE_SIZE },
|
|
756
756
|
run: async ({ imports, input }) => {
|
|
757
757
|
const api = imports.api;
|
|
758
758
|
const searchParams = {};
|
|
@@ -866,13 +866,13 @@ var GetDurableRunResponseSchema = zod.z.object({
|
|
|
866
866
|
var getDurableRunPlugin = kitcore.defineMethod({
|
|
867
867
|
...codeSubstrateDefaults,
|
|
868
868
|
name: "getDurableRun",
|
|
869
|
-
imports: [
|
|
869
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
870
870
|
itemType: "DurableRun",
|
|
871
871
|
inputSchema: GetDurableRunOptionsSchema,
|
|
872
872
|
outputSchema: GetDurableRunResponseSchema,
|
|
873
873
|
skipOutputValidation: true,
|
|
874
874
|
output: "item",
|
|
875
|
-
resolvers: { run:
|
|
875
|
+
resolvers: { run: chunkI2QKGDAX_cjs.durableRunIdResolver },
|
|
876
876
|
run: async ({ imports, input }) => {
|
|
877
877
|
const api = imports.api;
|
|
878
878
|
const raw = await api.get(
|
|
@@ -966,7 +966,7 @@ var sourceFilesResolver = kitcore.defineResolver({
|
|
|
966
966
|
var runDurablePlugin = kitcore.defineMethod({
|
|
967
967
|
...codeSubstrateDefaults,
|
|
968
968
|
name: "runDurable",
|
|
969
|
-
imports: [
|
|
969
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
970
970
|
type: "create",
|
|
971
971
|
itemType: "DurableRun",
|
|
972
972
|
inputSchema: RunDurableOptionsSchema,
|
|
@@ -1023,14 +1023,14 @@ var CancelDurableRunResponseSchema = zod.z.object({
|
|
|
1023
1023
|
var cancelDurableRunPlugin = kitcore.defineMethod({
|
|
1024
1024
|
...codeSubstrateDefaults,
|
|
1025
1025
|
name: "cancelDurableRun",
|
|
1026
|
-
imports: [
|
|
1026
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
1027
1027
|
type: "update",
|
|
1028
1028
|
itemType: "DurableRun",
|
|
1029
1029
|
inputSchema: CancelDurableRunOptionsSchema,
|
|
1030
1030
|
outputSchema: CancelDurableRunResponseSchema,
|
|
1031
1031
|
skipOutputValidation: true,
|
|
1032
1032
|
output: "item",
|
|
1033
|
-
resolvers: { run:
|
|
1033
|
+
resolvers: { run: chunkI2QKGDAX_cjs.durableRunIdResolver },
|
|
1034
1034
|
run: async ({ imports, input }) => {
|
|
1035
1035
|
const api = imports.api;
|
|
1036
1036
|
await api.post(
|
|
@@ -1145,14 +1145,14 @@ function describeOpenDraft(draft) {
|
|
|
1145
1145
|
var publishWorkflowVersionPlugin = kitcore.defineMethod({
|
|
1146
1146
|
...codeSubstrateDefaults,
|
|
1147
1147
|
name: "publishWorkflowVersion",
|
|
1148
|
-
imports: [
|
|
1148
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
1149
1149
|
type: "create",
|
|
1150
1150
|
itemType: "WorkflowVersion",
|
|
1151
1151
|
inputSchema: PublishWorkflowVersionOptionsSchema,
|
|
1152
1152
|
outputSchema: PublishWorkflowVersionResponseSchema,
|
|
1153
1153
|
skipOutputValidation: true,
|
|
1154
1154
|
output: "item",
|
|
1155
|
-
resolvers: { workflow:
|
|
1155
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver, sourceFiles: sourceFilesResolver },
|
|
1156
1156
|
run: async ({ imports, input }) => {
|
|
1157
1157
|
const api = imports.api;
|
|
1158
1158
|
const sourceFiles = "sourceFiles" in input ? input.sourceFiles : input.source_files;
|
|
@@ -1206,13 +1206,13 @@ var publishWorkflowVersionPlugin = kitcore.defineMethod({
|
|
|
1206
1206
|
if (status !== 409) return void 0;
|
|
1207
1207
|
const conflict = extractOpenDraftConflict(data);
|
|
1208
1208
|
if (!conflict) {
|
|
1209
|
-
return new
|
|
1210
|
-
|
|
1209
|
+
return new chunkI2QKGDAX_cjs.ZapierConflictError(
|
|
1210
|
+
chunkI2QKGDAX_cjs.extractErrorDetail(data) ?? "Workflow version publish conflict.",
|
|
1211
1211
|
{ statusCode: status, resourceType: "workflow" }
|
|
1212
1212
|
);
|
|
1213
1213
|
}
|
|
1214
1214
|
const detail = conflict.detail ?? "Cannot publish over open draft(s).";
|
|
1215
|
-
return new
|
|
1215
|
+
return new chunkI2QKGDAX_cjs.ZapierConflictError(
|
|
1216
1216
|
[
|
|
1217
1217
|
`${detail} Blocking draft(s):`,
|
|
1218
1218
|
...conflict.openDrafts.map(describeOpenDraft),
|
|
@@ -1267,7 +1267,7 @@ var ListWorkflowVersionsApiResponseSchema = zod.z.object({
|
|
|
1267
1267
|
var listWorkflowVersionsPlugin = kitcore.defineMethod({
|
|
1268
1268
|
...codeSubstrateDefaults,
|
|
1269
1269
|
name: "listWorkflowVersions",
|
|
1270
|
-
imports: [
|
|
1270
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
1271
1271
|
type: "list",
|
|
1272
1272
|
itemType: "WorkflowVersion",
|
|
1273
1273
|
inputSchema: ListWorkflowVersionsOptionsSchema,
|
|
@@ -1275,8 +1275,8 @@ var listWorkflowVersionsPlugin = kitcore.defineMethod({
|
|
|
1275
1275
|
skipOutputValidation: true,
|
|
1276
1276
|
// The handler already returns a clean `{ data, nextCursor }` page, so the
|
|
1277
1277
|
// standard list output (no `adaptPage`) applies.
|
|
1278
|
-
output: { type: "list", defaultPageSize:
|
|
1279
|
-
resolvers: { workflow:
|
|
1278
|
+
output: { type: "list", defaultPageSize: chunkI2QKGDAX_cjs.DEFAULT_PAGE_SIZE },
|
|
1279
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
1280
1280
|
run: async ({ imports, input }) => {
|
|
1281
1281
|
const api = imports.api;
|
|
1282
1282
|
const searchParams = {};
|
|
@@ -1311,15 +1311,15 @@ var GetWorkflowVersionResponseSchema = WorkflowVersionSchema;
|
|
|
1311
1311
|
var getWorkflowVersionPlugin = kitcore.defineMethod({
|
|
1312
1312
|
...codeSubstrateDefaults,
|
|
1313
1313
|
name: "getWorkflowVersion",
|
|
1314
|
-
imports: [
|
|
1314
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
1315
1315
|
itemType: "WorkflowVersion",
|
|
1316
1316
|
inputSchema: GetWorkflowVersionOptionsSchema,
|
|
1317
1317
|
outputSchema: GetWorkflowVersionResponseSchema,
|
|
1318
1318
|
skipOutputValidation: true,
|
|
1319
1319
|
output: "item",
|
|
1320
1320
|
resolvers: {
|
|
1321
|
-
workflow:
|
|
1322
|
-
version:
|
|
1321
|
+
workflow: chunkI2QKGDAX_cjs.workflowIdResolver,
|
|
1322
|
+
version: chunkI2QKGDAX_cjs.workflowVersionIdResolver
|
|
1323
1323
|
},
|
|
1324
1324
|
run: async ({ imports, input }) => {
|
|
1325
1325
|
const api = imports.api;
|
|
@@ -1375,7 +1375,7 @@ var ListWorkflowDraftsApiResponseSchema = zod.z.object({
|
|
|
1375
1375
|
var listWorkflowDraftsPlugin = kitcore.defineMethod({
|
|
1376
1376
|
...codeSubstrateDefaults,
|
|
1377
1377
|
name: "listWorkflowDrafts",
|
|
1378
|
-
imports: [
|
|
1378
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
1379
1379
|
type: "list",
|
|
1380
1380
|
itemType: "WorkflowDraft",
|
|
1381
1381
|
inputSchema: ListWorkflowDraftsOptionsSchema,
|
|
@@ -1383,8 +1383,8 @@ var listWorkflowDraftsPlugin = kitcore.defineMethod({
|
|
|
1383
1383
|
skipOutputValidation: true,
|
|
1384
1384
|
// The handler already returns a clean `{ data, nextCursor }` page, so the
|
|
1385
1385
|
// standard list output (no `adaptPage`) applies.
|
|
1386
|
-
output: { type: "list", defaultPageSize:
|
|
1387
|
-
resolvers: { workflow:
|
|
1386
|
+
output: { type: "list", defaultPageSize: chunkI2QKGDAX_cjs.DEFAULT_PAGE_SIZE },
|
|
1387
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
1388
1388
|
run: async ({ imports, input }) => {
|
|
1389
1389
|
const api = imports.api;
|
|
1390
1390
|
const searchParams = {};
|
|
@@ -1425,15 +1425,15 @@ var GetWorkflowDraftResponseSchema = WorkflowDraftSchema;
|
|
|
1425
1425
|
var getWorkflowDraftPlugin = kitcore.defineMethod({
|
|
1426
1426
|
...codeSubstrateDefaults,
|
|
1427
1427
|
name: "getWorkflowDraft",
|
|
1428
|
-
imports: [
|
|
1428
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
1429
1429
|
itemType: "WorkflowDraft",
|
|
1430
1430
|
inputSchema: GetWorkflowDraftOptionsSchema,
|
|
1431
1431
|
outputSchema: GetWorkflowDraftResponseSchema,
|
|
1432
1432
|
skipOutputValidation: true,
|
|
1433
1433
|
output: "item",
|
|
1434
1434
|
resolvers: {
|
|
1435
|
-
workflow:
|
|
1436
|
-
draft:
|
|
1435
|
+
workflow: chunkI2QKGDAX_cjs.workflowIdResolver,
|
|
1436
|
+
draft: chunkI2QKGDAX_cjs.workflowDraftIdResolver
|
|
1437
1437
|
},
|
|
1438
1438
|
run: async ({ imports, input }) => {
|
|
1439
1439
|
const api = imports.api;
|
|
@@ -1461,14 +1461,14 @@ var CreateWorkflowDraftResponseSchema = WorkflowDraftSchema;
|
|
|
1461
1461
|
var createWorkflowDraftPlugin = kitcore.defineMethod({
|
|
1462
1462
|
...codeSubstrateDefaults,
|
|
1463
1463
|
name: "createWorkflowDraft",
|
|
1464
|
-
imports: [
|
|
1464
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
1465
1465
|
type: "create",
|
|
1466
1466
|
itemType: "WorkflowDraft",
|
|
1467
1467
|
inputSchema: CreateWorkflowDraftOptionsSchema,
|
|
1468
1468
|
outputSchema: CreateWorkflowDraftResponseSchema,
|
|
1469
1469
|
skipOutputValidation: true,
|
|
1470
1470
|
output: "item",
|
|
1471
|
-
resolvers: { workflow:
|
|
1471
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
1472
1472
|
run: async ({ imports, input }) => {
|
|
1473
1473
|
const api = imports.api;
|
|
1474
1474
|
const body = {};
|
|
@@ -1521,7 +1521,7 @@ var UpdateWorkflowDraftResponseSchema = WorkflowDraftSchema;
|
|
|
1521
1521
|
var updateWorkflowDraftPlugin = kitcore.defineMethod({
|
|
1522
1522
|
...codeSubstrateDefaults,
|
|
1523
1523
|
name: "updateWorkflowDraft",
|
|
1524
|
-
imports: [
|
|
1524
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
1525
1525
|
type: "update",
|
|
1526
1526
|
itemType: "WorkflowDraft",
|
|
1527
1527
|
inputSchema: UpdateWorkflowDraftOptionsSchema,
|
|
@@ -1529,8 +1529,8 @@ var updateWorkflowDraftPlugin = kitcore.defineMethod({
|
|
|
1529
1529
|
skipOutputValidation: true,
|
|
1530
1530
|
output: "item",
|
|
1531
1531
|
resolvers: {
|
|
1532
|
-
workflow:
|
|
1533
|
-
draft:
|
|
1532
|
+
workflow: chunkI2QKGDAX_cjs.workflowIdResolver,
|
|
1533
|
+
draft: chunkI2QKGDAX_cjs.workflowDraftIdResolver,
|
|
1534
1534
|
sourceFiles: sourceFilesResolver
|
|
1535
1535
|
},
|
|
1536
1536
|
run: async ({ imports, input }) => {
|
|
@@ -1575,8 +1575,8 @@ var updateWorkflowDraftPlugin = kitcore.defineMethod({
|
|
|
1575
1575
|
// re-read the draft, and retry instead of blind-overwriting.
|
|
1576
1576
|
customErrorHandler: ({ status, data }) => {
|
|
1577
1577
|
if (status === 409) {
|
|
1578
|
-
const detail =
|
|
1579
|
-
return new
|
|
1578
|
+
const detail = chunkI2QKGDAX_cjs.extractErrorDetail(data);
|
|
1579
|
+
return new chunkI2QKGDAX_cjs.ZapierConflictError(
|
|
1580
1580
|
`${detail ?? "Draft revision conflict"} \u2014 the draft changed since it was last read. Re-read the draft to get the current draft_revision, merge your edits, and retry.`,
|
|
1581
1581
|
{ statusCode: status, resourceType: "workflow-draft" }
|
|
1582
1582
|
);
|
|
@@ -1600,7 +1600,7 @@ var DiscardWorkflowDraftResponseSchema = WorkflowDraftSchema;
|
|
|
1600
1600
|
var discardWorkflowDraftPlugin = kitcore.defineMethod({
|
|
1601
1601
|
...codeSubstrateDefaults,
|
|
1602
1602
|
name: "discardWorkflowDraft",
|
|
1603
|
-
imports: [
|
|
1603
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
1604
1604
|
type: "delete",
|
|
1605
1605
|
itemType: "WorkflowDraft",
|
|
1606
1606
|
// Soft delete returns the discarded draft, not the `{ success: boolean }`
|
|
@@ -1614,8 +1614,8 @@ var discardWorkflowDraftPlugin = kitcore.defineMethod({
|
|
|
1614
1614
|
skipOutputValidation: true,
|
|
1615
1615
|
output: "item",
|
|
1616
1616
|
resolvers: {
|
|
1617
|
-
workflow:
|
|
1618
|
-
draft:
|
|
1617
|
+
workflow: chunkI2QKGDAX_cjs.workflowIdResolver,
|
|
1618
|
+
draft: chunkI2QKGDAX_cjs.workflowDraftIdResolver
|
|
1619
1619
|
},
|
|
1620
1620
|
run: async ({ imports, input }) => {
|
|
1621
1621
|
const api = imports.api;
|
|
@@ -1658,7 +1658,7 @@ var PublishWorkflowDraftResponseSchema = zod.z.object({
|
|
|
1658
1658
|
var publishWorkflowDraftPlugin = kitcore.defineMethod({
|
|
1659
1659
|
...codeSubstrateDefaults,
|
|
1660
1660
|
name: "publishWorkflowDraft",
|
|
1661
|
-
imports: [
|
|
1661
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
1662
1662
|
type: "create",
|
|
1663
1663
|
itemType: "WorkflowVersion",
|
|
1664
1664
|
// The response is the composite `{ draft, version }`, not the bare
|
|
@@ -1669,8 +1669,8 @@ var publishWorkflowDraftPlugin = kitcore.defineMethod({
|
|
|
1669
1669
|
skipOutputValidation: true,
|
|
1670
1670
|
output: "item",
|
|
1671
1671
|
resolvers: {
|
|
1672
|
-
workflow:
|
|
1673
|
-
draft:
|
|
1672
|
+
workflow: chunkI2QKGDAX_cjs.workflowIdResolver,
|
|
1673
|
+
draft: chunkI2QKGDAX_cjs.workflowDraftIdResolver
|
|
1674
1674
|
},
|
|
1675
1675
|
run: async ({ imports, input }) => {
|
|
1676
1676
|
const api = imports.api;
|
|
@@ -1703,15 +1703,15 @@ var publishWorkflowDraftPlugin = kitcore.defineMethod({
|
|
|
1703
1703
|
// to ZapierValidationError via the client's default handling.
|
|
1704
1704
|
customErrorHandler: ({ status, data }) => {
|
|
1705
1705
|
if (status === 409) {
|
|
1706
|
-
const detail =
|
|
1707
|
-
return new
|
|
1706
|
+
const detail = chunkI2QKGDAX_cjs.extractErrorDetail(data);
|
|
1707
|
+
return new chunkI2QKGDAX_cjs.ZapierConflictError(
|
|
1708
1708
|
`${detail ?? "Draft publish conflict"} \u2014 the draft changed since it was last read, or a trigger switchover is already in progress. Re-read the draft to get the current draft_revision, then retry the publish.`,
|
|
1709
1709
|
{ statusCode: status, resourceType: "workflow-draft" }
|
|
1710
1710
|
);
|
|
1711
1711
|
}
|
|
1712
1712
|
if (status === 503) {
|
|
1713
|
-
const detail =
|
|
1714
|
-
return new
|
|
1713
|
+
const detail = chunkI2QKGDAX_cjs.extractErrorDetail(data);
|
|
1714
|
+
return new chunkI2QKGDAX_cjs.ZapierApiError(
|
|
1715
1715
|
detail !== void 0 ? `${detail} \u2014 the trigger config could not be validated against the platform catalog, so the publish was rejected (fail-closed). This is transient; retry the publish.` : "Draft publish temporarily unavailable \u2014 trigger validation is fail-closed, or the service is briefly unavailable. This is transient; retry the publish.",
|
|
1716
1716
|
{ statusCode: status }
|
|
1717
1717
|
);
|
|
@@ -1772,7 +1772,7 @@ var ListWorkflowRunsApiResponseSchema = zod.z.object({
|
|
|
1772
1772
|
var listWorkflowRunsPlugin = kitcore.defineMethod({
|
|
1773
1773
|
...codeSubstrateDefaults,
|
|
1774
1774
|
name: "listWorkflowRuns",
|
|
1775
|
-
imports: [
|
|
1775
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
1776
1776
|
type: "list",
|
|
1777
1777
|
itemType: "WorkflowRun",
|
|
1778
1778
|
inputSchema: ListWorkflowRunsOptionsSchema,
|
|
@@ -1780,8 +1780,8 @@ var listWorkflowRunsPlugin = kitcore.defineMethod({
|
|
|
1780
1780
|
skipOutputValidation: true,
|
|
1781
1781
|
// The handler already returns a clean `{ data, nextCursor }` page, so the
|
|
1782
1782
|
// standard list output (no `adaptPage`) applies.
|
|
1783
|
-
output: { type: "list", defaultPageSize:
|
|
1784
|
-
resolvers: { workflow:
|
|
1783
|
+
output: { type: "list", defaultPageSize: chunkI2QKGDAX_cjs.DEFAULT_PAGE_SIZE },
|
|
1784
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
1785
1785
|
run: async ({ imports, input }) => {
|
|
1786
1786
|
const api = imports.api;
|
|
1787
1787
|
const searchParams = {};
|
|
@@ -1837,15 +1837,15 @@ var GetWorkflowRunResponseSchema = zod.z.object({
|
|
|
1837
1837
|
var getWorkflowRunPlugin = kitcore.defineMethod({
|
|
1838
1838
|
...codeSubstrateDefaults,
|
|
1839
1839
|
name: "getWorkflowRun",
|
|
1840
|
-
imports: [
|
|
1840
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
1841
1841
|
itemType: "WorkflowRun",
|
|
1842
1842
|
inputSchema: GetWorkflowRunOptionsSchema,
|
|
1843
1843
|
outputSchema: GetWorkflowRunResponseSchema,
|
|
1844
1844
|
skipOutputValidation: true,
|
|
1845
1845
|
output: "item",
|
|
1846
1846
|
resolvers: {
|
|
1847
|
-
workflow:
|
|
1848
|
-
run:
|
|
1847
|
+
workflow: chunkI2QKGDAX_cjs.workflowIdResolver,
|
|
1848
|
+
run: chunkI2QKGDAX_cjs.workflowRunIdResolver
|
|
1849
1849
|
},
|
|
1850
1850
|
run: async ({ imports, input }) => {
|
|
1851
1851
|
const api = imports.api;
|
|
@@ -1882,7 +1882,7 @@ var GetTriggerRunResponseSchema = zod.z.object({
|
|
|
1882
1882
|
var getTriggerRunPlugin = kitcore.defineMethod({
|
|
1883
1883
|
...codeSubstrateDefaults,
|
|
1884
1884
|
name: "getTriggerRun",
|
|
1885
|
-
imports: [
|
|
1885
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
1886
1886
|
itemType: "WorkflowRun",
|
|
1887
1887
|
inputSchema: GetTriggerRunOptionsSchema,
|
|
1888
1888
|
outputSchema: GetTriggerRunResponseSchema,
|
|
@@ -1925,14 +1925,14 @@ var TriggerWorkflowResponseSchema = zod.z.object({
|
|
|
1925
1925
|
var triggerWorkflowPlugin = kitcore.defineMethod({
|
|
1926
1926
|
...codeSubstrateDefaults,
|
|
1927
1927
|
name: "triggerWorkflow",
|
|
1928
|
-
imports: [
|
|
1928
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
1929
1929
|
type: "create",
|
|
1930
1930
|
itemType: "WorkflowRun",
|
|
1931
1931
|
inputSchema: TriggerWorkflowOptionsSchema,
|
|
1932
1932
|
outputSchema: TriggerWorkflowResponseSchema,
|
|
1933
1933
|
skipOutputValidation: true,
|
|
1934
1934
|
output: "item",
|
|
1935
|
-
resolvers: { workflow:
|
|
1935
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
1936
1936
|
run: async ({ imports, input }) => {
|
|
1937
1937
|
const api = imports.api;
|
|
1938
1938
|
const rawWorkflow = await api.get(
|
|
@@ -1946,7 +1946,7 @@ var triggerWorkflowPlugin = kitcore.defineMethod({
|
|
|
1946
1946
|
const segments = new URL(workflow.trigger_url).pathname.split("/");
|
|
1947
1947
|
const triggerToken = segments[segments.length - 1];
|
|
1948
1948
|
if (!triggerToken) {
|
|
1949
|
-
throw new
|
|
1949
|
+
throw new chunkI2QKGDAX_cjs.ZapierApiError(
|
|
1950
1950
|
`Workflow ${input.workflow} returned a malformed trigger_url`,
|
|
1951
1951
|
{ statusCode: 0, response: workflow.trigger_url }
|
|
1952
1952
|
);
|
|
@@ -2025,7 +2025,7 @@ var ValidateWorkflowResponseSchema = zod.z.object({
|
|
|
2025
2025
|
var validateWorkflowPlugin = kitcore.defineMethod({
|
|
2026
2026
|
...codeSubstrateDefaults,
|
|
2027
2027
|
name: "validateWorkflow",
|
|
2028
|
-
imports: [
|
|
2028
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
2029
2029
|
itemType: "WorkflowValidation",
|
|
2030
2030
|
inputSchema: ValidateWorkflowOptionsSchema,
|
|
2031
2031
|
outputSchema: ValidateWorkflowResponseSchema,
|
|
@@ -2072,7 +2072,7 @@ function handleFormsAccessError({
|
|
|
2072
2072
|
if (status !== 403 || firstErrorDetail(data) !== FORMS_ACCESS_DENIED_DETAIL) {
|
|
2073
2073
|
return void 0;
|
|
2074
2074
|
}
|
|
2075
|
-
return new
|
|
2075
|
+
return new chunkI2QKGDAX_cjs.ZapierConfigurationError(
|
|
2076
2076
|
`${FORMS_ACCESS_DENIED_DETAIL} Request access through Zapier support at https://zapier.com/app/get-help.`,
|
|
2077
2077
|
{ statusCode: status }
|
|
2078
2078
|
);
|
|
@@ -2150,7 +2150,7 @@ function assertUniqueKeys(keys, fields) {
|
|
|
2150
2150
|
const label = fields[index]?.label ?? "";
|
|
2151
2151
|
const previous = seen.get(key);
|
|
2152
2152
|
if (previous !== void 0) {
|
|
2153
|
-
throw new
|
|
2153
|
+
throw new chunkI2QKGDAX_cjs.ZapierValidationError(
|
|
2154
2154
|
`Fields "${previous}" and "${label}" both derive the submission key "${key}". Give them labels that differ by more than punctuation or casing.`,
|
|
2155
2155
|
{ details: { key, labels: [previous, label] } }
|
|
2156
2156
|
);
|
|
@@ -2356,7 +2356,7 @@ var CreateFormSchema = zod.z.object({
|
|
|
2356
2356
|
var createFormPlugin = kitcore.defineMethod({
|
|
2357
2357
|
...humanInputDefaults,
|
|
2358
2358
|
name: "createForm",
|
|
2359
|
-
imports: [
|
|
2359
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
2360
2360
|
type: "create",
|
|
2361
2361
|
itemType: "Form",
|
|
2362
2362
|
inputSchema: CreateFormSchema,
|
|
@@ -2383,12 +2383,321 @@ var createFormPlugin = kitcore.defineMethod({
|
|
|
2383
2383
|
}
|
|
2384
2384
|
});
|
|
2385
2385
|
|
|
2386
|
+
// src/plugins/agenticManagement/shared.ts
|
|
2387
|
+
var agenticManagementDefaults = {
|
|
2388
|
+
categories: ["code-workflow"],
|
|
2389
|
+
stability: "experimental"
|
|
2390
|
+
};
|
|
2391
|
+
var AGENTIC_MANAGEMENT_API = "/agentic-management/v0";
|
|
2392
|
+
var AGENTIC_MANAGEMENT_RESOURCE_TYPE = "workflow";
|
|
2393
|
+
var AGENTIC_MODES_EXPLAINED = "A mode is what Agentic Management watches for and what it changes in response. `heal` monitors runs for errors and, when something breaks, diagnoses the cause and drafts and tests a fix; it is the mode a workflow gets by default. `expand` grows what the workflow covers: it reviews runs that succeeded without actually doing anything \u2014 a lookup that matched nothing, a filter that passed no items, a trigger payload no branch handles \u2014 and proposes a new branch or step to handle that case, rather than rewriting the ones that already work. `harden` watches the AI steps: when an AI step keeps doing the same work the same way, it converts that step into fixed code, so the workflow runs faster, costs less, and behaves the same way every time. Modes stack \u2014 each one you name runs alongside the others, and a mode you leave out does nothing, so a workflow on `expand` alone does not repair failed runs. Whether a change goes live on its own or waits for someone to approve it is `autoApprove`, not the mode.";
|
|
2394
|
+
var AgenticModeSchema = zod.z.enum(["heal", "expand", "harden"]).describe(
|
|
2395
|
+
`An agentic mode Agentic Management runs for the workflow. ${AGENTIC_MODES_EXPLAINED}`
|
|
2396
|
+
);
|
|
2397
|
+
var AgenticModeOutputSchema = zod.z.enum(["heal", "expand", "harden", "migrate", "optimize"]).describe(
|
|
2398
|
+
`An agentic mode the workflow is set to run. ${AGENTIC_MODES_EXPLAINED} Two more can be reported but not chosen: \`migrate\` for a workflow set up elsewhere, and \`optimize\`, which is retired and lingers only on workflows that had it.`
|
|
2399
|
+
);
|
|
2400
|
+
var AgenticModesInputSchema = zod.z.array(AgenticModeSchema).min(1, {
|
|
2401
|
+
message: "modes must name at least one mode. An empty list is not a way to turn everything off \u2014 call disableAgenticManagement to stop Agentic Management for the workflow."
|
|
2402
|
+
}).refine((modes) => new Set(modes).size === modes.length, {
|
|
2403
|
+
message: "modes must not repeat a mode."
|
|
2404
|
+
}).describe(
|
|
2405
|
+
`The modes to run. The list you pass replaces the whole current set in one step; it is not added to what is already active. Omit it and enable starts the workflow on \`heal\` alone, while update leaves the active modes as they are. ${AGENTIC_MODES_EXPLAINED}`
|
|
2406
|
+
);
|
|
2407
|
+
var UUID_PATTERN2 = /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/;
|
|
2408
|
+
var AutoApproveSchema = zod.z.boolean().describe(
|
|
2409
|
+
"Apply the fixes Agentic Management proposes without asking first. Set it to false and each proposed fix waits for someone to approve it before anything changes."
|
|
2410
|
+
).meta({ negatable: true });
|
|
2411
|
+
var WorkflowPropertySchema2 = zod.z.string().regex(UUID_PATTERN2, "workflow must be a UUID.").describe("ID of the workflow to manage.");
|
|
2412
|
+
var VersionPropertySchema = zod.z.string().regex(UUID_PATTERN2, "version must be a UUID.").describe(
|
|
2413
|
+
"The workflow version the intent belongs to. Each version stores its own intent, and a version never picks up the intent of another, so publishing a new version starts it with none. Omit this to use the workflow's current published version."
|
|
2414
|
+
);
|
|
2415
|
+
var AgenticManagementIntentSchema = zod.z.object({
|
|
2416
|
+
workflow_id: zod.z.string().describe("The workflow the intent belongs to."),
|
|
2417
|
+
workflow_version_id: zod.z.string().nullable().describe(
|
|
2418
|
+
"The version this read or write actually landed on, so you can tell which one answered when you omitted `version`. `null` only when you read a workflow that has nothing published yet."
|
|
2419
|
+
),
|
|
2420
|
+
intent: zod.z.string().nullable().describe(
|
|
2421
|
+
"The intent stored for this version, or `null` when this version has none. Intent is never carried over from another version."
|
|
2422
|
+
),
|
|
2423
|
+
updated_at: zod.z.string().nullable().optional().describe("When the intent was last written; `null` when never captured.")
|
|
2424
|
+
});
|
|
2425
|
+
|
|
2426
|
+
// src/plugins/agenticManagement/enableAgenticManagement/schemas.ts
|
|
2427
|
+
var EnableAgenticManagementSchema = zod.z.object({
|
|
2428
|
+
workflow: WorkflowPropertySchema2.describe(
|
|
2429
|
+
"ID of the workflow to put under agentic management."
|
|
2430
|
+
),
|
|
2431
|
+
modes: AgenticModesInputSchema.optional().describe(
|
|
2432
|
+
`The modes to run for this workflow. Omit it and the workflow starts on \`heal\` alone. ${AGENTIC_MODES_EXPLAINED}`
|
|
2433
|
+
),
|
|
2434
|
+
autoApprove: AutoApproveSchema.optional().describe(
|
|
2435
|
+
"Apply the fixes Agentic Management proposes without asking first. Set it to false and each fix waits for someone to approve it. Omit it and fixes are applied without asking, which is what a workflow enabled for the first time gets; a workflow being re-enabled keeps the setting it had before."
|
|
2436
|
+
)
|
|
2437
|
+
}).describe(
|
|
2438
|
+
"Put one workflow under Agentic Management. A workflow disabled earlier comes back with the modes and auto-approve choice it had, unless you pass new ones here."
|
|
2439
|
+
);
|
|
2440
|
+
var EnableAgenticManagementItemSchema = zod.z.object({
|
|
2441
|
+
manager_id: zod.z.string().describe(
|
|
2442
|
+
"ID of the manager automation Zapier provisioned to watch this workflow."
|
|
2443
|
+
)
|
|
2444
|
+
});
|
|
2445
|
+
|
|
2446
|
+
// src/plugins/agenticManagement/enableAgenticManagement/index.ts
|
|
2447
|
+
var enableAgenticManagementPlugin = kitcore.defineMethod({
|
|
2448
|
+
...agenticManagementDefaults,
|
|
2449
|
+
name: "enableAgenticManagement",
|
|
2450
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
2451
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
2452
|
+
type: "create",
|
|
2453
|
+
itemType: "AgenticManagementEnableResult",
|
|
2454
|
+
inputSchema: EnableAgenticManagementSchema,
|
|
2455
|
+
outputSchema: EnableAgenticManagementItemSchema,
|
|
2456
|
+
output: "item",
|
|
2457
|
+
run: async ({ imports, input }) => {
|
|
2458
|
+
const body = { workflow_id: input.workflow };
|
|
2459
|
+
if (input.modes !== void 0) body.modes = input.modes;
|
|
2460
|
+
if (input.autoApprove !== void 0) body.auto_approve = input.autoApprove;
|
|
2461
|
+
const data = await imports.api.post(
|
|
2462
|
+
AGENTIC_MANAGEMENT_API,
|
|
2463
|
+
body,
|
|
2464
|
+
{
|
|
2465
|
+
authRequired: true,
|
|
2466
|
+
resource: {
|
|
2467
|
+
type: AGENTIC_MANAGEMENT_RESOURCE_TYPE,
|
|
2468
|
+
id: input.workflow
|
|
2469
|
+
}
|
|
2470
|
+
}
|
|
2471
|
+
);
|
|
2472
|
+
return { data };
|
|
2473
|
+
}
|
|
2474
|
+
});
|
|
2475
|
+
var DisableAgenticManagementSchema = zod.z.object({
|
|
2476
|
+
workflow: WorkflowPropertySchema2.describe(
|
|
2477
|
+
"ID of the workflow to take out of agentic management."
|
|
2478
|
+
)
|
|
2479
|
+
}).describe(
|
|
2480
|
+
"Stop Agentic Management from working on one workflow. Its settings are kept, not deleted: the modes and auto-approve choice stay on file, so calling enableAgenticManagement later resumes with those settings instead of the defaults."
|
|
2481
|
+
);
|
|
2482
|
+
var DisableAgenticManagementItemSchema = zod.z.object({
|
|
2483
|
+
ok: zod.z.boolean().describe(
|
|
2484
|
+
"True when Zapier accepted the request to stop managing the workflow."
|
|
2485
|
+
)
|
|
2486
|
+
});
|
|
2487
|
+
|
|
2488
|
+
// src/plugins/agenticManagement/disableAgenticManagement/index.ts
|
|
2489
|
+
var disableAgenticManagementPlugin = kitcore.defineMethod({
|
|
2490
|
+
...agenticManagementDefaults,
|
|
2491
|
+
name: "disableAgenticManagement",
|
|
2492
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
2493
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
2494
|
+
type: "delete",
|
|
2495
|
+
confirm: "delete",
|
|
2496
|
+
itemType: "AgenticManagementDisableResult",
|
|
2497
|
+
inputSchema: DisableAgenticManagementSchema,
|
|
2498
|
+
outputSchema: DisableAgenticManagementItemSchema,
|
|
2499
|
+
output: "item",
|
|
2500
|
+
run: async ({ imports, input }) => {
|
|
2501
|
+
const data = await imports.api.delete(
|
|
2502
|
+
`${AGENTIC_MANAGEMENT_API}/${encodeURIComponent(input.workflow)}`,
|
|
2503
|
+
void 0,
|
|
2504
|
+
{
|
|
2505
|
+
authRequired: true,
|
|
2506
|
+
resource: {
|
|
2507
|
+
type: AGENTIC_MANAGEMENT_RESOURCE_TYPE,
|
|
2508
|
+
id: input.workflow
|
|
2509
|
+
}
|
|
2510
|
+
}
|
|
2511
|
+
);
|
|
2512
|
+
return { data };
|
|
2513
|
+
}
|
|
2514
|
+
});
|
|
2515
|
+
var GetAgenticManagementConfigSchema = zod.z.object({
|
|
2516
|
+
workflow: WorkflowPropertySchema2.describe("ID of the workflow to read.")
|
|
2517
|
+
}).describe("Read the Agentic Management config for one workflow.");
|
|
2518
|
+
var GetAgenticManagementConfigItemSchema = zod.z.object({
|
|
2519
|
+
workflow_id: zod.z.string().describe("The workflow this config describes."),
|
|
2520
|
+
enabled: zod.z.boolean().describe(
|
|
2521
|
+
"Whether Agentic Management is currently active for this workflow."
|
|
2522
|
+
),
|
|
2523
|
+
auto_approve: zod.z.boolean().describe(
|
|
2524
|
+
"Whether fixes are applied without asking for approval first. `false` when Agentic Management has never been set up for this workflow."
|
|
2525
|
+
),
|
|
2526
|
+
modes: zod.z.array(AgenticModeOutputSchema).describe(
|
|
2527
|
+
"The modes the workflow runs. Still listed while `enabled` is false, because the settings are kept for a later re-enable \u2014 so read `enabled` to tell whether they are in effect, not this list."
|
|
2528
|
+
),
|
|
2529
|
+
manager_id: zod.z.string().nullable().optional().describe(
|
|
2530
|
+
"ID of the manager automation Zapier provisioned for this workflow, once one exists; `null` otherwise. Use it to link to that automation to see the runs it has taken."
|
|
2531
|
+
)
|
|
2532
|
+
});
|
|
2533
|
+
|
|
2534
|
+
// src/plugins/agenticManagement/getAgenticManagementConfig/index.ts
|
|
2535
|
+
var getAgenticManagementConfigPlugin = kitcore.defineMethod({
|
|
2536
|
+
...agenticManagementDefaults,
|
|
2537
|
+
name: "getAgenticManagementConfig",
|
|
2538
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
2539
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
2540
|
+
type: "item",
|
|
2541
|
+
itemType: "AgenticManagementConfig",
|
|
2542
|
+
inputSchema: GetAgenticManagementConfigSchema,
|
|
2543
|
+
outputSchema: GetAgenticManagementConfigItemSchema,
|
|
2544
|
+
output: "item",
|
|
2545
|
+
run: async ({ imports, input }) => {
|
|
2546
|
+
const data = await imports.api.get(
|
|
2547
|
+
`${AGENTIC_MANAGEMENT_API}/${encodeURIComponent(input.workflow)}`,
|
|
2548
|
+
{
|
|
2549
|
+
authRequired: true,
|
|
2550
|
+
resource: {
|
|
2551
|
+
type: AGENTIC_MANAGEMENT_RESOURCE_TYPE,
|
|
2552
|
+
id: input.workflow
|
|
2553
|
+
}
|
|
2554
|
+
}
|
|
2555
|
+
);
|
|
2556
|
+
return { data };
|
|
2557
|
+
}
|
|
2558
|
+
});
|
|
2559
|
+
var UpdateAgenticManagementConfigSchema = zod.z.object({
|
|
2560
|
+
workflow: WorkflowPropertySchema2.describe("ID of the workflow to update."),
|
|
2561
|
+
modes: AgenticModesInputSchema.optional().describe(
|
|
2562
|
+
`The modes to run. The list you pass replaces the whole current set in one step; it is not added to what is already active. Omit it to leave the active modes as they are. ${AGENTIC_MODES_EXPLAINED}`
|
|
2563
|
+
),
|
|
2564
|
+
autoApprove: AutoApproveSchema.optional().describe(
|
|
2565
|
+
"Apply the fixes Agentic Management proposes without asking first. Set it to false and each fix waits for someone to approve it before anything changes. Omit it to leave the current setting alone."
|
|
2566
|
+
)
|
|
2567
|
+
}).refine(
|
|
2568
|
+
(input) => input.modes !== void 0 || input.autoApprove !== void 0,
|
|
2569
|
+
{
|
|
2570
|
+
message: "Pass modes, autoApprove, or both. An update with neither would change nothing, and Zapier rejects it."
|
|
2571
|
+
}
|
|
2572
|
+
).describe(
|
|
2573
|
+
"Change the modes a workflow runs, whether fixes are applied without approval, or both. A `modes` list replaces the whole current set rather than adding to it."
|
|
2574
|
+
);
|
|
2575
|
+
var UpdateAgenticManagementConfigItemSchema = zod.z.object({
|
|
2576
|
+
workflow_id: zod.z.string().describe("The workflow whose config was updated."),
|
|
2577
|
+
modes: zod.z.array(AgenticModeOutputSchema).describe("The modes the workflow runs after this update."),
|
|
2578
|
+
auto_approve: zod.z.boolean().describe("Whether fixes are applied without approval after this update.")
|
|
2579
|
+
});
|
|
2580
|
+
|
|
2581
|
+
// src/plugins/agenticManagement/updateAgenticManagementConfig/index.ts
|
|
2582
|
+
var updateAgenticManagementConfigPlugin = kitcore.defineMethod({
|
|
2583
|
+
...agenticManagementDefaults,
|
|
2584
|
+
name: "updateAgenticManagementConfig",
|
|
2585
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
2586
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
2587
|
+
type: "update",
|
|
2588
|
+
itemType: "AgenticManagementConfig",
|
|
2589
|
+
inputSchema: UpdateAgenticManagementConfigSchema,
|
|
2590
|
+
outputSchema: UpdateAgenticManagementConfigItemSchema,
|
|
2591
|
+
output: "item",
|
|
2592
|
+
run: async ({ imports, input }) => {
|
|
2593
|
+
const body = {};
|
|
2594
|
+
if (input.modes !== void 0) body.modes = input.modes;
|
|
2595
|
+
if (input.autoApprove !== void 0) body.auto_approve = input.autoApprove;
|
|
2596
|
+
const data = await imports.api.patch(
|
|
2597
|
+
`${AGENTIC_MANAGEMENT_API}/${encodeURIComponent(input.workflow)}`,
|
|
2598
|
+
body,
|
|
2599
|
+
{
|
|
2600
|
+
authRequired: true,
|
|
2601
|
+
resource: {
|
|
2602
|
+
type: AGENTIC_MANAGEMENT_RESOURCE_TYPE,
|
|
2603
|
+
id: input.workflow
|
|
2604
|
+
}
|
|
2605
|
+
}
|
|
2606
|
+
);
|
|
2607
|
+
return { data };
|
|
2608
|
+
}
|
|
2609
|
+
});
|
|
2610
|
+
var GetAgenticManagementIntentSchema = zod.z.object({
|
|
2611
|
+
workflow: WorkflowPropertySchema2.describe("ID of the workflow to read."),
|
|
2612
|
+
version: VersionPropertySchema.optional().describe(
|
|
2613
|
+
"The workflow version the intent belongs to. Each version stores its own intent, and a version never picks up the intent of another, so publishing a new version starts it with none. Omit this to use the workflow's current published version."
|
|
2614
|
+
)
|
|
2615
|
+
}).describe(
|
|
2616
|
+
"Read the intent recorded for one workflow version: the plain-language description of what that version of the workflow is meant to do."
|
|
2617
|
+
);
|
|
2618
|
+
|
|
2619
|
+
// src/plugins/agenticManagement/getAgenticManagementIntent/index.ts
|
|
2620
|
+
var getAgenticManagementIntentPlugin = kitcore.defineMethod({
|
|
2621
|
+
...agenticManagementDefaults,
|
|
2622
|
+
name: "getAgenticManagementIntent",
|
|
2623
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
2624
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
2625
|
+
type: "item",
|
|
2626
|
+
itemType: "AgenticManagementIntent",
|
|
2627
|
+
inputSchema: GetAgenticManagementIntentSchema,
|
|
2628
|
+
outputSchema: AgenticManagementIntentSchema,
|
|
2629
|
+
output: "item",
|
|
2630
|
+
run: async ({ imports, input }) => {
|
|
2631
|
+
const searchParams = {};
|
|
2632
|
+
if (input.version !== void 0) {
|
|
2633
|
+
searchParams.workflow_version_id = input.version;
|
|
2634
|
+
}
|
|
2635
|
+
const data = await imports.api.get(
|
|
2636
|
+
`${AGENTIC_MANAGEMENT_API}/${encodeURIComponent(input.workflow)}/intent`,
|
|
2637
|
+
{
|
|
2638
|
+
authRequired: true,
|
|
2639
|
+
searchParams,
|
|
2640
|
+
resource: {
|
|
2641
|
+
type: AGENTIC_MANAGEMENT_RESOURCE_TYPE,
|
|
2642
|
+
id: input.workflow
|
|
2643
|
+
}
|
|
2644
|
+
}
|
|
2645
|
+
);
|
|
2646
|
+
return { data };
|
|
2647
|
+
}
|
|
2648
|
+
});
|
|
2649
|
+
var UpdateAgenticManagementIntentSchema = zod.z.object({
|
|
2650
|
+
workflow: WorkflowPropertySchema2.describe(
|
|
2651
|
+
"ID of the workflow to write to."
|
|
2652
|
+
),
|
|
2653
|
+
intent: zod.z.string().min(1).max(8e3).describe(
|
|
2654
|
+
"What this version of the workflow is for, in your own words: the outcome it produces, what sets it off, and anything that must always hold true. Plain prose, not code."
|
|
2655
|
+
),
|
|
2656
|
+
version: VersionPropertySchema.optional().describe(
|
|
2657
|
+
"The workflow version the intent belongs to. Each version stores its own intent, and a version never picks up the intent of another, so publishing a new version starts it with none. Omit this to use the workflow's current published version."
|
|
2658
|
+
)
|
|
2659
|
+
}).describe(
|
|
2660
|
+
"Record what one workflow version is meant to do. Writing again for the same version replaces the text already stored, so there is no separate create and update."
|
|
2661
|
+
);
|
|
2662
|
+
|
|
2663
|
+
// src/plugins/agenticManagement/updateAgenticManagementIntent/index.ts
|
|
2664
|
+
var updateAgenticManagementIntentPlugin = kitcore.defineMethod({
|
|
2665
|
+
...agenticManagementDefaults,
|
|
2666
|
+
name: "updateAgenticManagementIntent",
|
|
2667
|
+
imports: [chunkI2QKGDAX_cjs.apiPluginRef],
|
|
2668
|
+
resolvers: { workflow: chunkI2QKGDAX_cjs.workflowIdResolver },
|
|
2669
|
+
type: "update",
|
|
2670
|
+
itemType: "AgenticManagementIntent",
|
|
2671
|
+
inputSchema: UpdateAgenticManagementIntentSchema,
|
|
2672
|
+
outputSchema: AgenticManagementIntentSchema,
|
|
2673
|
+
output: "item",
|
|
2674
|
+
run: async ({ imports, input }) => {
|
|
2675
|
+
const searchParams = {};
|
|
2676
|
+
if (input.version !== void 0) {
|
|
2677
|
+
searchParams.workflow_version_id = input.version;
|
|
2678
|
+
}
|
|
2679
|
+
const data = await imports.api.put(
|
|
2680
|
+
`${AGENTIC_MANAGEMENT_API}/${encodeURIComponent(input.workflow)}/intent`,
|
|
2681
|
+
{ intent: input.intent },
|
|
2682
|
+
{
|
|
2683
|
+
authRequired: true,
|
|
2684
|
+
searchParams,
|
|
2685
|
+
resource: {
|
|
2686
|
+
type: AGENTIC_MANAGEMENT_RESOURCE_TYPE,
|
|
2687
|
+
id: input.workflow
|
|
2688
|
+
}
|
|
2689
|
+
}
|
|
2690
|
+
);
|
|
2691
|
+
return { data };
|
|
2692
|
+
}
|
|
2693
|
+
});
|
|
2694
|
+
|
|
2386
2695
|
// src/experimental.ts
|
|
2387
2696
|
var zapierExperimentalSdkPlugin = kitcore.definePlugin({
|
|
2388
2697
|
namespace: "zapier",
|
|
2389
2698
|
name: "experimental-sdk",
|
|
2390
2699
|
exports: [
|
|
2391
|
-
|
|
2700
|
+
chunkI2QKGDAX_cjs.zapierSdkPlugin,
|
|
2392
2701
|
// Code substrate (experimental). `list*` plugins are exported before their
|
|
2393
2702
|
// `get*` / mutation siblings because per-row resolvers reach the listing
|
|
2394
2703
|
// methods.
|
|
@@ -2419,1134 +2728,1144 @@ var zapierExperimentalSdkPlugin = kitcore.definePlugin({
|
|
|
2419
2728
|
getTriggerRunPlugin,
|
|
2420
2729
|
validateWorkflowPlugin,
|
|
2421
2730
|
// Human input (experimental). Routed through the Public API Gateway
|
|
2422
|
-
// rather than the sdkapi proxy — see the `/forms` entry in api/
|
|
2423
|
-
createFormPlugin
|
|
2731
|
+
// rather than the sdkapi proxy — see the `/forms` entry in api/routing/config.ts.
|
|
2732
|
+
createFormPlugin,
|
|
2733
|
+
// Agentic Management (experimental). Also routed through the Public API
|
|
2734
|
+
// Gateway — see the `/agentic-management` entry in api/routing/config.ts.
|
|
2735
|
+
// The gateway route is staff-gated, and a non-staff caller gets a generic
|
|
2736
|
+
// 404 — see the note on AGENTIC_MANAGEMENT_API.
|
|
2737
|
+
enableAgenticManagementPlugin,
|
|
2738
|
+
disableAgenticManagementPlugin,
|
|
2739
|
+
getAgenticManagementConfigPlugin,
|
|
2740
|
+
updateAgenticManagementConfigPlugin,
|
|
2741
|
+
getAgenticManagementIntentPlugin,
|
|
2742
|
+
updateAgenticManagementIntentPlugin
|
|
2424
2743
|
]
|
|
2425
2744
|
});
|
|
2426
2745
|
function createZapierSdk(options = {}) {
|
|
2427
2746
|
return kitcore.createSdk(zapierExperimentalSdkPlugin, {
|
|
2428
2747
|
configuration: {
|
|
2429
|
-
[
|
|
2430
|
-
[kitcore.CORE_OPTIONS_ID]:
|
|
2748
|
+
[chunkI2QKGDAX_cjs.SDK_OPTIONS_ID]: options,
|
|
2749
|
+
[kitcore.CORE_OPTIONS_ID]: chunkI2QKGDAX_cjs.zapierCoreOptions
|
|
2431
2750
|
}
|
|
2432
2751
|
});
|
|
2433
2752
|
}
|
|
2434
2753
|
|
|
2435
2754
|
Object.defineProperty(exports, "ACTION_RUNS_PATH", {
|
|
2436
2755
|
enumerable: true,
|
|
2437
|
-
get: function () { return
|
|
2756
|
+
get: function () { return chunkI2QKGDAX_cjs.ACTION_RUNS_PATH; }
|
|
2438
2757
|
});
|
|
2439
2758
|
Object.defineProperty(exports, "API_ID", {
|
|
2440
2759
|
enumerable: true,
|
|
2441
|
-
get: function () { return
|
|
2760
|
+
get: function () { return chunkI2QKGDAX_cjs.API_ID; }
|
|
2442
2761
|
});
|
|
2443
2762
|
Object.defineProperty(exports, "ActionKeyPropertySchema", {
|
|
2444
2763
|
enumerable: true,
|
|
2445
|
-
get: function () { return
|
|
2764
|
+
get: function () { return chunkI2QKGDAX_cjs.ActionKeyPropertySchema; }
|
|
2446
2765
|
});
|
|
2447
2766
|
Object.defineProperty(exports, "ActionPropertySchema", {
|
|
2448
2767
|
enumerable: true,
|
|
2449
|
-
get: function () { return
|
|
2768
|
+
get: function () { return chunkI2QKGDAX_cjs.ActionPropertySchema; }
|
|
2450
2769
|
});
|
|
2451
2770
|
Object.defineProperty(exports, "ActionTimeoutMillisecondsPropertySchema", {
|
|
2452
2771
|
enumerable: true,
|
|
2453
|
-
get: function () { return
|
|
2772
|
+
get: function () { return chunkI2QKGDAX_cjs.ActionTimeoutMillisecondsPropertySchema; }
|
|
2454
2773
|
});
|
|
2455
2774
|
Object.defineProperty(exports, "ActionTimeoutSecondsPropertySchema", {
|
|
2456
2775
|
enumerable: true,
|
|
2457
|
-
get: function () { return
|
|
2776
|
+
get: function () { return chunkI2QKGDAX_cjs.ActionTimeoutSecondsPropertySchema; }
|
|
2458
2777
|
});
|
|
2459
2778
|
Object.defineProperty(exports, "ActionTypePropertySchema", {
|
|
2460
2779
|
enumerable: true,
|
|
2461
|
-
get: function () { return
|
|
2780
|
+
get: function () { return chunkI2QKGDAX_cjs.ActionTypePropertySchema; }
|
|
2462
2781
|
});
|
|
2463
2782
|
Object.defineProperty(exports, "AppKeyPropertySchema", {
|
|
2464
2783
|
enumerable: true,
|
|
2465
|
-
get: function () { return
|
|
2784
|
+
get: function () { return chunkI2QKGDAX_cjs.AppKeyPropertySchema; }
|
|
2466
2785
|
});
|
|
2467
2786
|
Object.defineProperty(exports, "AppPropertySchema", {
|
|
2468
2787
|
enumerable: true,
|
|
2469
|
-
get: function () { return
|
|
2788
|
+
get: function () { return chunkI2QKGDAX_cjs.AppPropertySchema; }
|
|
2470
2789
|
});
|
|
2471
2790
|
Object.defineProperty(exports, "AppsPropertySchema", {
|
|
2472
2791
|
enumerable: true,
|
|
2473
|
-
get: function () { return
|
|
2792
|
+
get: function () { return chunkI2QKGDAX_cjs.AppsPropertySchema; }
|
|
2474
2793
|
});
|
|
2475
2794
|
Object.defineProperty(exports, "AuthMechanism", {
|
|
2476
2795
|
enumerable: true,
|
|
2477
|
-
get: function () { return
|
|
2796
|
+
get: function () { return chunkI2QKGDAX_cjs.AuthMechanism; }
|
|
2478
2797
|
});
|
|
2479
2798
|
Object.defineProperty(exports, "AuthenticationIdPropertySchema", {
|
|
2480
2799
|
enumerable: true,
|
|
2481
|
-
get: function () { return
|
|
2800
|
+
get: function () { return chunkI2QKGDAX_cjs.AuthenticationIdPropertySchema; }
|
|
2482
2801
|
});
|
|
2483
2802
|
Object.defineProperty(exports, "BaseSdkOptionsSchema", {
|
|
2484
2803
|
enumerable: true,
|
|
2485
|
-
get: function () { return
|
|
2804
|
+
get: function () { return chunkI2QKGDAX_cjs.BaseSdkOptionsSchema; }
|
|
2486
2805
|
});
|
|
2487
2806
|
Object.defineProperty(exports, "CONNECTIONS_ID", {
|
|
2488
2807
|
enumerable: true,
|
|
2489
|
-
get: function () { return
|
|
2808
|
+
get: function () { return chunkI2QKGDAX_cjs.CONNECTIONS_ID; }
|
|
2490
2809
|
});
|
|
2491
2810
|
Object.defineProperty(exports, "CONTEXT", {
|
|
2492
2811
|
enumerable: true,
|
|
2493
|
-
get: function () { return
|
|
2812
|
+
get: function () { return chunkI2QKGDAX_cjs.CONTEXT; }
|
|
2494
2813
|
});
|
|
2495
2814
|
Object.defineProperty(exports, "CONTEXT_CACHE_MAX_SIZE", {
|
|
2496
2815
|
enumerable: true,
|
|
2497
|
-
get: function () { return
|
|
2816
|
+
get: function () { return chunkI2QKGDAX_cjs.CONTEXT_CACHE_MAX_SIZE; }
|
|
2498
2817
|
});
|
|
2499
2818
|
Object.defineProperty(exports, "CONTEXT_CACHE_TTL_MILLISECONDS", {
|
|
2500
2819
|
enumerable: true,
|
|
2501
|
-
get: function () { return
|
|
2820
|
+
get: function () { return chunkI2QKGDAX_cjs.CONTEXT_CACHE_TTL_MILLISECONDS; }
|
|
2502
2821
|
});
|
|
2503
2822
|
Object.defineProperty(exports, "CORE_ERROR_SYMBOL", {
|
|
2504
2823
|
enumerable: true,
|
|
2505
|
-
get: function () { return
|
|
2824
|
+
get: function () { return chunkI2QKGDAX_cjs.CORE_ERROR_SYMBOL; }
|
|
2506
2825
|
});
|
|
2507
2826
|
Object.defineProperty(exports, "CORE_OPTIONS_ID", {
|
|
2508
2827
|
enumerable: true,
|
|
2509
|
-
get: function () { return
|
|
2828
|
+
get: function () { return chunkI2QKGDAX_cjs.CORE_OPTIONS_ID; }
|
|
2510
2829
|
});
|
|
2511
2830
|
Object.defineProperty(exports, "CORE_SIGNAL_SYMBOL", {
|
|
2512
2831
|
enumerable: true,
|
|
2513
|
-
get: function () { return
|
|
2832
|
+
get: function () { return chunkI2QKGDAX_cjs.CORE_SIGNAL_SYMBOL; }
|
|
2514
2833
|
});
|
|
2515
2834
|
Object.defineProperty(exports, "ClientCredentialsObjectSchema", {
|
|
2516
2835
|
enumerable: true,
|
|
2517
|
-
get: function () { return
|
|
2836
|
+
get: function () { return chunkI2QKGDAX_cjs.ClientCredentialsObjectSchema; }
|
|
2518
2837
|
});
|
|
2519
2838
|
Object.defineProperty(exports, "ConnectionEntrySchema", {
|
|
2520
2839
|
enumerable: true,
|
|
2521
|
-
get: function () { return
|
|
2840
|
+
get: function () { return chunkI2QKGDAX_cjs.ConnectionEntrySchema; }
|
|
2522
2841
|
});
|
|
2523
2842
|
Object.defineProperty(exports, "ConnectionIdPropertySchema", {
|
|
2524
2843
|
enumerable: true,
|
|
2525
|
-
get: function () { return
|
|
2844
|
+
get: function () { return chunkI2QKGDAX_cjs.ConnectionIdPropertySchema; }
|
|
2526
2845
|
});
|
|
2527
2846
|
Object.defineProperty(exports, "ConnectionPropertySchema", {
|
|
2528
2847
|
enumerable: true,
|
|
2529
|
-
get: function () { return
|
|
2848
|
+
get: function () { return chunkI2QKGDAX_cjs.ConnectionPropertySchema; }
|
|
2530
2849
|
});
|
|
2531
2850
|
Object.defineProperty(exports, "ConnectionsMapSchema", {
|
|
2532
2851
|
enumerable: true,
|
|
2533
|
-
get: function () { return
|
|
2852
|
+
get: function () { return chunkI2QKGDAX_cjs.ConnectionsMapSchema; }
|
|
2534
2853
|
});
|
|
2535
2854
|
Object.defineProperty(exports, "ConnectionsPropertySchema", {
|
|
2536
2855
|
enumerable: true,
|
|
2537
|
-
get: function () { return
|
|
2856
|
+
get: function () { return chunkI2QKGDAX_cjs.ConnectionsPropertySchema; }
|
|
2538
2857
|
});
|
|
2539
2858
|
Object.defineProperty(exports, "CoreCancelledSignal", {
|
|
2540
2859
|
enumerable: true,
|
|
2541
|
-
get: function () { return
|
|
2860
|
+
get: function () { return chunkI2QKGDAX_cjs.CoreCancelledSignal; }
|
|
2542
2861
|
});
|
|
2543
2862
|
Object.defineProperty(exports, "CoreDisposeError", {
|
|
2544
2863
|
enumerable: true,
|
|
2545
|
-
get: function () { return
|
|
2864
|
+
get: function () { return chunkI2QKGDAX_cjs.CoreDisposeError; }
|
|
2546
2865
|
});
|
|
2547
2866
|
Object.defineProperty(exports, "CoreErrorCode", {
|
|
2548
2867
|
enumerable: true,
|
|
2549
|
-
get: function () { return
|
|
2868
|
+
get: function () { return chunkI2QKGDAX_cjs.CoreErrorCode; }
|
|
2550
2869
|
});
|
|
2551
2870
|
Object.defineProperty(exports, "CoreSignal", {
|
|
2552
2871
|
enumerable: true,
|
|
2553
|
-
get: function () { return
|
|
2872
|
+
get: function () { return chunkI2QKGDAX_cjs.CoreSignal; }
|
|
2554
2873
|
});
|
|
2555
2874
|
Object.defineProperty(exports, "CredentialsFunctionSchema", {
|
|
2556
2875
|
enumerable: true,
|
|
2557
|
-
get: function () { return
|
|
2876
|
+
get: function () { return chunkI2QKGDAX_cjs.CredentialsFunctionSchema; }
|
|
2558
2877
|
});
|
|
2559
2878
|
Object.defineProperty(exports, "CredentialsObjectSchema", {
|
|
2560
2879
|
enumerable: true,
|
|
2561
|
-
get: function () { return
|
|
2880
|
+
get: function () { return chunkI2QKGDAX_cjs.CredentialsObjectSchema; }
|
|
2562
2881
|
});
|
|
2563
2882
|
Object.defineProperty(exports, "CredentialsSchema", {
|
|
2564
2883
|
enumerable: true,
|
|
2565
|
-
get: function () { return
|
|
2884
|
+
get: function () { return chunkI2QKGDAX_cjs.CredentialsSchema; }
|
|
2566
2885
|
});
|
|
2567
2886
|
Object.defineProperty(exports, "DEFAULT_ACTION_TIMEOUT_MILLISECONDS", {
|
|
2568
2887
|
enumerable: true,
|
|
2569
|
-
get: function () { return
|
|
2888
|
+
get: function () { return chunkI2QKGDAX_cjs.DEFAULT_ACTION_TIMEOUT_MILLISECONDS; }
|
|
2570
2889
|
});
|
|
2571
2890
|
Object.defineProperty(exports, "DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS", {
|
|
2572
2891
|
enumerable: true,
|
|
2573
|
-
get: function () { return
|
|
2892
|
+
get: function () { return chunkI2QKGDAX_cjs.DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS; }
|
|
2574
2893
|
});
|
|
2575
2894
|
Object.defineProperty(exports, "DEFAULT_CONFIG_PATH", {
|
|
2576
2895
|
enumerable: true,
|
|
2577
|
-
get: function () { return
|
|
2896
|
+
get: function () { return chunkI2QKGDAX_cjs.DEFAULT_CONFIG_PATH; }
|
|
2578
2897
|
});
|
|
2579
2898
|
Object.defineProperty(exports, "DEFAULT_MAX_APPROVAL_RETRIES", {
|
|
2580
2899
|
enumerable: true,
|
|
2581
|
-
get: function () { return
|
|
2900
|
+
get: function () { return chunkI2QKGDAX_cjs.DEFAULT_MAX_APPROVAL_RETRIES; }
|
|
2582
2901
|
});
|
|
2583
2902
|
Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
|
|
2584
2903
|
enumerable: true,
|
|
2585
|
-
get: function () { return
|
|
2904
|
+
get: function () { return chunkI2QKGDAX_cjs.DEFAULT_PAGE_SIZE; }
|
|
2586
2905
|
});
|
|
2587
2906
|
Object.defineProperty(exports, "DEPRECATION_NOTICE_EVENT", {
|
|
2588
2907
|
enumerable: true,
|
|
2589
|
-
get: function () { return
|
|
2908
|
+
get: function () { return chunkI2QKGDAX_cjs.DEPRECATION_NOTICE_EVENT; }
|
|
2590
2909
|
});
|
|
2591
2910
|
Object.defineProperty(exports, "DebugPropertySchema", {
|
|
2592
2911
|
enumerable: true,
|
|
2593
|
-
get: function () { return
|
|
2912
|
+
get: function () { return chunkI2QKGDAX_cjs.DebugPropertySchema; }
|
|
2594
2913
|
});
|
|
2595
2914
|
Object.defineProperty(exports, "DrainTriggerInboxSchema", {
|
|
2596
2915
|
enumerable: true,
|
|
2597
|
-
get: function () { return
|
|
2916
|
+
get: function () { return chunkI2QKGDAX_cjs.DrainTriggerInboxSchema; }
|
|
2598
2917
|
});
|
|
2599
2918
|
Object.defineProperty(exports, "EVENT_EMISSION_ID", {
|
|
2600
2919
|
enumerable: true,
|
|
2601
|
-
get: function () { return
|
|
2920
|
+
get: function () { return chunkI2QKGDAX_cjs.EVENT_EMISSION_ID; }
|
|
2602
2921
|
});
|
|
2603
2922
|
Object.defineProperty(exports, "FieldsPropertySchema", {
|
|
2604
2923
|
enumerable: true,
|
|
2605
|
-
get: function () { return
|
|
2924
|
+
get: function () { return chunkI2QKGDAX_cjs.FieldsPropertySchema; }
|
|
2606
2925
|
});
|
|
2607
2926
|
Object.defineProperty(exports, "InputFieldPropertySchema", {
|
|
2608
2927
|
enumerable: true,
|
|
2609
|
-
get: function () { return
|
|
2928
|
+
get: function () { return chunkI2QKGDAX_cjs.InputFieldPropertySchema; }
|
|
2610
2929
|
});
|
|
2611
2930
|
Object.defineProperty(exports, "InputsPropertySchema", {
|
|
2612
2931
|
enumerable: true,
|
|
2613
|
-
get: function () { return
|
|
2932
|
+
get: function () { return chunkI2QKGDAX_cjs.InputsPropertySchema; }
|
|
2614
2933
|
});
|
|
2615
2934
|
Object.defineProperty(exports, "LeaseLimitPropertySchema", {
|
|
2616
2935
|
enumerable: true,
|
|
2617
|
-
get: function () { return
|
|
2936
|
+
get: function () { return chunkI2QKGDAX_cjs.LeaseLimitPropertySchema; }
|
|
2618
2937
|
});
|
|
2619
2938
|
Object.defineProperty(exports, "LeasePropertySchema", {
|
|
2620
2939
|
enumerable: true,
|
|
2621
|
-
get: function () { return
|
|
2940
|
+
get: function () { return chunkI2QKGDAX_cjs.LeasePropertySchema; }
|
|
2622
2941
|
});
|
|
2623
2942
|
Object.defineProperty(exports, "LeaseSecondsPropertySchema", {
|
|
2624
2943
|
enumerable: true,
|
|
2625
|
-
get: function () { return
|
|
2944
|
+
get: function () { return chunkI2QKGDAX_cjs.LeaseSecondsPropertySchema; }
|
|
2626
2945
|
});
|
|
2627
2946
|
Object.defineProperty(exports, "LimitPropertySchema", {
|
|
2628
2947
|
enumerable: true,
|
|
2629
|
-
get: function () { return
|
|
2948
|
+
get: function () { return chunkI2QKGDAX_cjs.LimitPropertySchema; }
|
|
2630
2949
|
});
|
|
2631
2950
|
Object.defineProperty(exports, "MANIFEST_ID", {
|
|
2632
2951
|
enumerable: true,
|
|
2633
|
-
get: function () { return
|
|
2952
|
+
get: function () { return chunkI2QKGDAX_cjs.MANIFEST_ID; }
|
|
2634
2953
|
});
|
|
2635
2954
|
Object.defineProperty(exports, "MAX_CONCURRENCY_LIMIT", {
|
|
2636
2955
|
enumerable: true,
|
|
2637
|
-
get: function () { return
|
|
2956
|
+
get: function () { return chunkI2QKGDAX_cjs.MAX_CONCURRENCY_LIMIT; }
|
|
2638
2957
|
});
|
|
2639
2958
|
Object.defineProperty(exports, "MAX_PAGE_LIMIT", {
|
|
2640
2959
|
enumerable: true,
|
|
2641
|
-
get: function () { return
|
|
2960
|
+
get: function () { return chunkI2QKGDAX_cjs.MAX_PAGE_LIMIT; }
|
|
2642
2961
|
});
|
|
2643
2962
|
Object.defineProperty(exports, "OffsetPropertySchema", {
|
|
2644
2963
|
enumerable: true,
|
|
2645
|
-
get: function () { return
|
|
2964
|
+
get: function () { return chunkI2QKGDAX_cjs.OffsetPropertySchema; }
|
|
2646
2965
|
});
|
|
2647
2966
|
Object.defineProperty(exports, "OutputPropertySchema", {
|
|
2648
2967
|
enumerable: true,
|
|
2649
|
-
get: function () { return
|
|
2968
|
+
get: function () { return chunkI2QKGDAX_cjs.OutputPropertySchema; }
|
|
2650
2969
|
});
|
|
2651
2970
|
Object.defineProperty(exports, "ParamsPropertySchema", {
|
|
2652
2971
|
enumerable: true,
|
|
2653
|
-
get: function () { return
|
|
2972
|
+
get: function () { return chunkI2QKGDAX_cjs.ParamsPropertySchema; }
|
|
2654
2973
|
});
|
|
2655
2974
|
Object.defineProperty(exports, "PkceCredentialsObjectSchema", {
|
|
2656
2975
|
enumerable: true,
|
|
2657
|
-
get: function () { return
|
|
2976
|
+
get: function () { return chunkI2QKGDAX_cjs.PkceCredentialsObjectSchema; }
|
|
2658
2977
|
});
|
|
2659
2978
|
Object.defineProperty(exports, "RESOLVE_CREDENTIALS_ID", {
|
|
2660
2979
|
enumerable: true,
|
|
2661
|
-
get: function () { return
|
|
2980
|
+
get: function () { return chunkI2QKGDAX_cjs.RESOLVE_CREDENTIALS_ID; }
|
|
2662
2981
|
});
|
|
2663
2982
|
Object.defineProperty(exports, "RecordPropertySchema", {
|
|
2664
2983
|
enumerable: true,
|
|
2665
|
-
get: function () { return
|
|
2984
|
+
get: function () { return chunkI2QKGDAX_cjs.RecordPropertySchema; }
|
|
2666
2985
|
});
|
|
2667
2986
|
Object.defineProperty(exports, "RecordsPropertySchema", {
|
|
2668
2987
|
enumerable: true,
|
|
2669
|
-
get: function () { return
|
|
2988
|
+
get: function () { return chunkI2QKGDAX_cjs.RecordsPropertySchema; }
|
|
2670
2989
|
});
|
|
2671
2990
|
Object.defineProperty(exports, "RelayFetchSchema", {
|
|
2672
2991
|
enumerable: true,
|
|
2673
|
-
get: function () { return
|
|
2992
|
+
get: function () { return chunkI2QKGDAX_cjs.RelayFetchSchema; }
|
|
2674
2993
|
});
|
|
2675
2994
|
Object.defineProperty(exports, "RelayRequestSchema", {
|
|
2676
2995
|
enumerable: true,
|
|
2677
|
-
get: function () { return
|
|
2996
|
+
get: function () { return chunkI2QKGDAX_cjs.RelayRequestSchema; }
|
|
2678
2997
|
});
|
|
2679
2998
|
Object.defineProperty(exports, "ResolvedCredentialsSchema", {
|
|
2680
2999
|
enumerable: true,
|
|
2681
|
-
get: function () { return
|
|
3000
|
+
get: function () { return chunkI2QKGDAX_cjs.ResolvedCredentialsSchema; }
|
|
2682
3001
|
});
|
|
2683
3002
|
Object.defineProperty(exports, "SDK_OPTIONS_ID", {
|
|
2684
3003
|
enumerable: true,
|
|
2685
|
-
get: function () { return
|
|
3004
|
+
get: function () { return chunkI2QKGDAX_cjs.SDK_OPTIONS_ID; }
|
|
2686
3005
|
});
|
|
2687
3006
|
Object.defineProperty(exports, "TablePropertySchema", {
|
|
2688
3007
|
enumerable: true,
|
|
2689
|
-
get: function () { return
|
|
3008
|
+
get: function () { return chunkI2QKGDAX_cjs.TablePropertySchema; }
|
|
2690
3009
|
});
|
|
2691
3010
|
Object.defineProperty(exports, "TablesPropertySchema", {
|
|
2692
3011
|
enumerable: true,
|
|
2693
|
-
get: function () { return
|
|
3012
|
+
get: function () { return chunkI2QKGDAX_cjs.TablesPropertySchema; }
|
|
2694
3013
|
});
|
|
2695
3014
|
Object.defineProperty(exports, "TriggerInboxKeyPropertySchema", {
|
|
2696
3015
|
enumerable: true,
|
|
2697
|
-
get: function () { return
|
|
3016
|
+
get: function () { return chunkI2QKGDAX_cjs.TriggerInboxKeyPropertySchema; }
|
|
2698
3017
|
});
|
|
2699
3018
|
Object.defineProperty(exports, "TriggerInboxNamePropertySchema", {
|
|
2700
3019
|
enumerable: true,
|
|
2701
|
-
get: function () { return
|
|
3020
|
+
get: function () { return chunkI2QKGDAX_cjs.TriggerInboxNamePropertySchema; }
|
|
2702
3021
|
});
|
|
2703
3022
|
Object.defineProperty(exports, "TriggerInboxPropertySchema", {
|
|
2704
3023
|
enumerable: true,
|
|
2705
|
-
get: function () { return
|
|
3024
|
+
get: function () { return chunkI2QKGDAX_cjs.TriggerInboxPropertySchema; }
|
|
2706
3025
|
});
|
|
2707
3026
|
Object.defineProperty(exports, "WatchTriggerInboxSchema", {
|
|
2708
3027
|
enumerable: true,
|
|
2709
|
-
get: function () { return
|
|
3028
|
+
get: function () { return chunkI2QKGDAX_cjs.WatchTriggerInboxSchema; }
|
|
2710
3029
|
});
|
|
2711
3030
|
Object.defineProperty(exports, "ZAPIER_BASE_URL", {
|
|
2712
3031
|
enumerable: true,
|
|
2713
|
-
get: function () { return
|
|
3032
|
+
get: function () { return chunkI2QKGDAX_cjs.ZAPIER_BASE_URL; }
|
|
2714
3033
|
});
|
|
2715
3034
|
Object.defineProperty(exports, "ZAPIER_MAX_CONCURRENT_REQUESTS", {
|
|
2716
3035
|
enumerable: true,
|
|
2717
|
-
get: function () { return
|
|
3036
|
+
get: function () { return chunkI2QKGDAX_cjs.ZAPIER_MAX_CONCURRENT_REQUESTS; }
|
|
2718
3037
|
});
|
|
2719
3038
|
Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRIES", {
|
|
2720
3039
|
enumerable: true,
|
|
2721
|
-
get: function () { return
|
|
3040
|
+
get: function () { return chunkI2QKGDAX_cjs.ZAPIER_MAX_NETWORK_RETRIES; }
|
|
2722
3041
|
});
|
|
2723
3042
|
Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS", {
|
|
2724
3043
|
enumerable: true,
|
|
2725
|
-
get: function () { return
|
|
3044
|
+
get: function () { return chunkI2QKGDAX_cjs.ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS; }
|
|
2726
3045
|
});
|
|
2727
3046
|
Object.defineProperty(exports, "ZapierAbortDrainSignal", {
|
|
2728
3047
|
enumerable: true,
|
|
2729
|
-
get: function () { return
|
|
3048
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierAbortDrainSignal; }
|
|
2730
3049
|
});
|
|
2731
3050
|
Object.defineProperty(exports, "ZapierActionError", {
|
|
2732
3051
|
enumerable: true,
|
|
2733
|
-
get: function () { return
|
|
3052
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierActionError; }
|
|
2734
3053
|
});
|
|
2735
3054
|
Object.defineProperty(exports, "ZapierApiError", {
|
|
2736
3055
|
enumerable: true,
|
|
2737
|
-
get: function () { return
|
|
3056
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierApiError; }
|
|
2738
3057
|
});
|
|
2739
3058
|
Object.defineProperty(exports, "ZapierAppNotFoundError", {
|
|
2740
3059
|
enumerable: true,
|
|
2741
|
-
get: function () { return
|
|
3060
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierAppNotFoundError; }
|
|
2742
3061
|
});
|
|
2743
3062
|
Object.defineProperty(exports, "ZapierApprovalError", {
|
|
2744
3063
|
enumerable: true,
|
|
2745
|
-
get: function () { return
|
|
3064
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierApprovalError; }
|
|
2746
3065
|
});
|
|
2747
3066
|
Object.defineProperty(exports, "ZapierAuthenticationError", {
|
|
2748
3067
|
enumerable: true,
|
|
2749
|
-
get: function () { return
|
|
3068
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierAuthenticationError; }
|
|
2750
3069
|
});
|
|
2751
3070
|
Object.defineProperty(exports, "ZapierBundleError", {
|
|
2752
3071
|
enumerable: true,
|
|
2753
|
-
get: function () { return
|
|
3072
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierBundleError; }
|
|
2754
3073
|
});
|
|
2755
3074
|
Object.defineProperty(exports, "ZapierConfigurationError", {
|
|
2756
3075
|
enumerable: true,
|
|
2757
|
-
get: function () { return
|
|
3076
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierConfigurationError; }
|
|
2758
3077
|
});
|
|
2759
3078
|
Object.defineProperty(exports, "ZapierConflictError", {
|
|
2760
3079
|
enumerable: true,
|
|
2761
|
-
get: function () { return
|
|
3080
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierConflictError; }
|
|
2762
3081
|
});
|
|
2763
3082
|
Object.defineProperty(exports, "ZapierError", {
|
|
2764
3083
|
enumerable: true,
|
|
2765
|
-
get: function () { return
|
|
3084
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierError; }
|
|
2766
3085
|
});
|
|
2767
3086
|
Object.defineProperty(exports, "ZapierNotFoundError", {
|
|
2768
3087
|
enumerable: true,
|
|
2769
|
-
get: function () { return
|
|
3088
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierNotFoundError; }
|
|
2770
3089
|
});
|
|
2771
3090
|
Object.defineProperty(exports, "ZapierRateLimitError", {
|
|
2772
3091
|
enumerable: true,
|
|
2773
|
-
get: function () { return
|
|
3092
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierRateLimitError; }
|
|
2774
3093
|
});
|
|
2775
3094
|
Object.defineProperty(exports, "ZapierRelayError", {
|
|
2776
3095
|
enumerable: true,
|
|
2777
|
-
get: function () { return
|
|
3096
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierRelayError; }
|
|
2778
3097
|
});
|
|
2779
3098
|
Object.defineProperty(exports, "ZapierReleaseTriggerMessageSignal", {
|
|
2780
3099
|
enumerable: true,
|
|
2781
|
-
get: function () { return
|
|
3100
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierReleaseTriggerMessageSignal; }
|
|
2782
3101
|
});
|
|
2783
3102
|
Object.defineProperty(exports, "ZapierResourceNotFoundError", {
|
|
2784
3103
|
enumerable: true,
|
|
2785
|
-
get: function () { return
|
|
3104
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierResourceNotFoundError; }
|
|
2786
3105
|
});
|
|
2787
3106
|
Object.defineProperty(exports, "ZapierSignal", {
|
|
2788
3107
|
enumerable: true,
|
|
2789
|
-
get: function () { return
|
|
3108
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierSignal; }
|
|
2790
3109
|
});
|
|
2791
3110
|
Object.defineProperty(exports, "ZapierTimeoutError", {
|
|
2792
3111
|
enumerable: true,
|
|
2793
|
-
get: function () { return
|
|
3112
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierTimeoutError; }
|
|
2794
3113
|
});
|
|
2795
3114
|
Object.defineProperty(exports, "ZapierUnknownError", {
|
|
2796
3115
|
enumerable: true,
|
|
2797
|
-
get: function () { return
|
|
3116
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierUnknownError; }
|
|
2798
3117
|
});
|
|
2799
3118
|
Object.defineProperty(exports, "ZapierValidationError", {
|
|
2800
3119
|
enumerable: true,
|
|
2801
|
-
get: function () { return
|
|
3120
|
+
get: function () { return chunkI2QKGDAX_cjs.ZapierValidationError; }
|
|
2802
3121
|
});
|
|
2803
3122
|
Object.defineProperty(exports, "actionKeyResolver", {
|
|
2804
3123
|
enumerable: true,
|
|
2805
|
-
get: function () { return
|
|
3124
|
+
get: function () { return chunkI2QKGDAX_cjs.actionKeyResolver; }
|
|
2806
3125
|
});
|
|
2807
3126
|
Object.defineProperty(exports, "actionTypeResolver", {
|
|
2808
3127
|
enumerable: true,
|
|
2809
|
-
get: function () { return
|
|
3128
|
+
get: function () { return chunkI2QKGDAX_cjs.actionTypeResolver; }
|
|
2810
3129
|
});
|
|
2811
3130
|
Object.defineProperty(exports, "addPlugin", {
|
|
2812
3131
|
enumerable: true,
|
|
2813
|
-
get: function () { return
|
|
3132
|
+
get: function () { return chunkI2QKGDAX_cjs.addPlugin; }
|
|
2814
3133
|
});
|
|
2815
3134
|
Object.defineProperty(exports, "apiPlugin", {
|
|
2816
3135
|
enumerable: true,
|
|
2817
|
-
get: function () { return
|
|
3136
|
+
get: function () { return chunkI2QKGDAX_cjs.apiPlugin; }
|
|
2818
3137
|
});
|
|
2819
3138
|
Object.defineProperty(exports, "apiPluginRef", {
|
|
2820
3139
|
enumerable: true,
|
|
2821
|
-
get: function () { return
|
|
3140
|
+
get: function () { return chunkI2QKGDAX_cjs.apiPluginRef; }
|
|
2822
3141
|
});
|
|
2823
3142
|
Object.defineProperty(exports, "appKeyResolver", {
|
|
2824
3143
|
enumerable: true,
|
|
2825
|
-
get: function () { return
|
|
3144
|
+
get: function () { return chunkI2QKGDAX_cjs.appKeyResolver; }
|
|
2826
3145
|
});
|
|
2827
3146
|
Object.defineProperty(exports, "appsPlugin", {
|
|
2828
3147
|
enumerable: true,
|
|
2829
|
-
get: function () { return
|
|
3148
|
+
get: function () { return chunkI2QKGDAX_cjs.appsPlugin; }
|
|
2830
3149
|
});
|
|
2831
3150
|
Object.defineProperty(exports, "batch", {
|
|
2832
3151
|
enumerable: true,
|
|
2833
|
-
get: function () { return
|
|
3152
|
+
get: function () { return chunkI2QKGDAX_cjs.batch; }
|
|
2834
3153
|
});
|
|
2835
3154
|
Object.defineProperty(exports, "buildApplicationLifecycleEvent", {
|
|
2836
3155
|
enumerable: true,
|
|
2837
|
-
get: function () { return
|
|
3156
|
+
get: function () { return chunkI2QKGDAX_cjs.buildApplicationLifecycleEvent; }
|
|
2838
3157
|
});
|
|
2839
3158
|
Object.defineProperty(exports, "buildCapabilityMessage", {
|
|
2840
3159
|
enumerable: true,
|
|
2841
|
-
get: function () { return
|
|
3160
|
+
get: function () { return chunkI2QKGDAX_cjs.buildCapabilityMessage; }
|
|
2842
3161
|
});
|
|
2843
3162
|
Object.defineProperty(exports, "buildErrorEvent", {
|
|
2844
3163
|
enumerable: true,
|
|
2845
|
-
get: function () { return
|
|
3164
|
+
get: function () { return chunkI2QKGDAX_cjs.buildErrorEvent; }
|
|
2846
3165
|
});
|
|
2847
3166
|
Object.defineProperty(exports, "buildErrorEventWithContext", {
|
|
2848
3167
|
enumerable: true,
|
|
2849
|
-
get: function () { return
|
|
3168
|
+
get: function () { return chunkI2QKGDAX_cjs.buildErrorEventWithContext; }
|
|
2850
3169
|
});
|
|
2851
3170
|
Object.defineProperty(exports, "buildMethodCalledEvent", {
|
|
2852
3171
|
enumerable: true,
|
|
2853
|
-
get: function () { return
|
|
3172
|
+
get: function () { return chunkI2QKGDAX_cjs.buildMethodCalledEvent; }
|
|
2854
3173
|
});
|
|
2855
3174
|
Object.defineProperty(exports, "cleanupEventListeners", {
|
|
2856
3175
|
enumerable: true,
|
|
2857
|
-
get: function () { return
|
|
3176
|
+
get: function () { return chunkI2QKGDAX_cjs.cleanupEventListeners; }
|
|
2858
3177
|
});
|
|
2859
3178
|
Object.defineProperty(exports, "clearTokenCache", {
|
|
2860
3179
|
enumerable: true,
|
|
2861
|
-
get: function () { return
|
|
3180
|
+
get: function () { return chunkI2QKGDAX_cjs.clearTokenCache; }
|
|
2862
3181
|
});
|
|
2863
3182
|
Object.defineProperty(exports, "clientCredentialsNameResolver", {
|
|
2864
3183
|
enumerable: true,
|
|
2865
|
-
get: function () { return
|
|
3184
|
+
get: function () { return chunkI2QKGDAX_cjs.clientCredentialsNameResolver; }
|
|
2866
3185
|
});
|
|
2867
3186
|
Object.defineProperty(exports, "clientIdResolver", {
|
|
2868
3187
|
enumerable: true,
|
|
2869
|
-
get: function () { return
|
|
3188
|
+
get: function () { return chunkI2QKGDAX_cjs.clientIdResolver; }
|
|
2870
3189
|
});
|
|
2871
3190
|
Object.defineProperty(exports, "composePlugins", {
|
|
2872
3191
|
enumerable: true,
|
|
2873
|
-
get: function () { return
|
|
3192
|
+
get: function () { return chunkI2QKGDAX_cjs.composePlugins; }
|
|
2874
3193
|
});
|
|
2875
3194
|
Object.defineProperty(exports, "connectionIdGenericResolver", {
|
|
2876
3195
|
enumerable: true,
|
|
2877
|
-
get: function () { return
|
|
3196
|
+
get: function () { return chunkI2QKGDAX_cjs.connectionIdGenericResolver; }
|
|
2878
3197
|
});
|
|
2879
3198
|
Object.defineProperty(exports, "connectionIdResolver", {
|
|
2880
3199
|
enumerable: true,
|
|
2881
|
-
get: function () { return
|
|
3200
|
+
get: function () { return chunkI2QKGDAX_cjs.connectionIdResolver; }
|
|
2882
3201
|
});
|
|
2883
3202
|
Object.defineProperty(exports, "connectionsPlugin", {
|
|
2884
3203
|
enumerable: true,
|
|
2885
|
-
get: function () { return
|
|
3204
|
+
get: function () { return chunkI2QKGDAX_cjs.connectionsPlugin; }
|
|
2886
3205
|
});
|
|
2887
3206
|
Object.defineProperty(exports, "connectionsPluginRef", {
|
|
2888
3207
|
enumerable: true,
|
|
2889
|
-
get: function () { return
|
|
3208
|
+
get: function () { return chunkI2QKGDAX_cjs.connectionsPluginRef; }
|
|
2890
3209
|
});
|
|
2891
3210
|
Object.defineProperty(exports, "createActionRunPlugin", {
|
|
2892
3211
|
enumerable: true,
|
|
2893
|
-
get: function () { return
|
|
3212
|
+
get: function () { return chunkI2QKGDAX_cjs.createActionRunPlugin; }
|
|
2894
3213
|
});
|
|
2895
3214
|
Object.defineProperty(exports, "createBaseEvent", {
|
|
2896
3215
|
enumerable: true,
|
|
2897
|
-
get: function () { return
|
|
3216
|
+
get: function () { return chunkI2QKGDAX_cjs.createBaseEvent; }
|
|
2898
3217
|
});
|
|
2899
3218
|
Object.defineProperty(exports, "createClientCredentialsPlugin", {
|
|
2900
3219
|
enumerable: true,
|
|
2901
|
-
get: function () { return
|
|
3220
|
+
get: function () { return chunkI2QKGDAX_cjs.createClientCredentialsPlugin; }
|
|
2902
3221
|
});
|
|
2903
3222
|
Object.defineProperty(exports, "createController", {
|
|
2904
3223
|
enumerable: true,
|
|
2905
|
-
get: function () { return
|
|
3224
|
+
get: function () { return chunkI2QKGDAX_cjs.createController; }
|
|
2906
3225
|
});
|
|
2907
3226
|
Object.defineProperty(exports, "createCorePlugin", {
|
|
2908
3227
|
enumerable: true,
|
|
2909
|
-
get: function () { return
|
|
3228
|
+
get: function () { return chunkI2QKGDAX_cjs.createCorePlugin; }
|
|
2910
3229
|
});
|
|
2911
3230
|
Object.defineProperty(exports, "createFunction", {
|
|
2912
3231
|
enumerable: true,
|
|
2913
|
-
get: function () { return
|
|
3232
|
+
get: function () { return chunkI2QKGDAX_cjs.createFunction; }
|
|
2914
3233
|
});
|
|
2915
3234
|
Object.defineProperty(exports, "createMemoryCache", {
|
|
2916
3235
|
enumerable: true,
|
|
2917
|
-
get: function () { return
|
|
3236
|
+
get: function () { return chunkI2QKGDAX_cjs.createMemoryCache; }
|
|
2918
3237
|
});
|
|
2919
3238
|
Object.defineProperty(exports, "createPaginatedFunction", {
|
|
2920
3239
|
enumerable: true,
|
|
2921
|
-
get: function () { return
|
|
3240
|
+
get: function () { return chunkI2QKGDAX_cjs.createPaginatedFunction; }
|
|
2922
3241
|
});
|
|
2923
3242
|
Object.defineProperty(exports, "createPaginatedPluginMethod", {
|
|
2924
3243
|
enumerable: true,
|
|
2925
|
-
get: function () { return
|
|
3244
|
+
get: function () { return chunkI2QKGDAX_cjs.createPaginatedPluginMethod; }
|
|
2926
3245
|
});
|
|
2927
3246
|
Object.defineProperty(exports, "createPluginMethod", {
|
|
2928
3247
|
enumerable: true,
|
|
2929
|
-
get: function () { return
|
|
3248
|
+
get: function () { return chunkI2QKGDAX_cjs.createPluginMethod; }
|
|
2930
3249
|
});
|
|
2931
3250
|
Object.defineProperty(exports, "createPluginStack", {
|
|
2932
3251
|
enumerable: true,
|
|
2933
|
-
get: function () { return
|
|
3252
|
+
get: function () { return chunkI2QKGDAX_cjs.createPluginStack; }
|
|
2934
3253
|
});
|
|
2935
3254
|
Object.defineProperty(exports, "createSdk", {
|
|
2936
3255
|
enumerable: true,
|
|
2937
|
-
get: function () { return
|
|
3256
|
+
get: function () { return chunkI2QKGDAX_cjs.createSdk; }
|
|
2938
3257
|
});
|
|
2939
3258
|
Object.defineProperty(exports, "createTableFieldsPlugin", {
|
|
2940
3259
|
enumerable: true,
|
|
2941
|
-
get: function () { return
|
|
3260
|
+
get: function () { return chunkI2QKGDAX_cjs.createTableFieldsPlugin; }
|
|
2942
3261
|
});
|
|
2943
3262
|
Object.defineProperty(exports, "createTablePlugin", {
|
|
2944
3263
|
enumerable: true,
|
|
2945
|
-
get: function () { return
|
|
3264
|
+
get: function () { return chunkI2QKGDAX_cjs.createTablePlugin; }
|
|
2946
3265
|
});
|
|
2947
3266
|
Object.defineProperty(exports, "createTableRecordsPlugin", {
|
|
2948
3267
|
enumerable: true,
|
|
2949
|
-
get: function () { return
|
|
3268
|
+
get: function () { return chunkI2QKGDAX_cjs.createTableRecordsPlugin; }
|
|
2950
3269
|
});
|
|
2951
3270
|
Object.defineProperty(exports, "createZapierApi", {
|
|
2952
3271
|
enumerable: true,
|
|
2953
|
-
get: function () { return
|
|
3272
|
+
get: function () { return chunkI2QKGDAX_cjs.createZapierApi; }
|
|
2954
3273
|
});
|
|
2955
3274
|
Object.defineProperty(exports, "createZapierSdkWithoutRegistry", {
|
|
2956
3275
|
enumerable: true,
|
|
2957
|
-
get: function () { return
|
|
3276
|
+
get: function () { return chunkI2QKGDAX_cjs.createZapierSdkWithoutRegistry; }
|
|
2958
3277
|
});
|
|
2959
3278
|
Object.defineProperty(exports, "declareMethod", {
|
|
2960
3279
|
enumerable: true,
|
|
2961
|
-
get: function () { return
|
|
3280
|
+
get: function () { return chunkI2QKGDAX_cjs.declareMethod; }
|
|
2962
3281
|
});
|
|
2963
3282
|
Object.defineProperty(exports, "declareOptionalProperty", {
|
|
2964
3283
|
enumerable: true,
|
|
2965
|
-
get: function () { return
|
|
3284
|
+
get: function () { return chunkI2QKGDAX_cjs.declareOptionalProperty; }
|
|
2966
3285
|
});
|
|
2967
3286
|
Object.defineProperty(exports, "declarePlugin", {
|
|
2968
3287
|
enumerable: true,
|
|
2969
|
-
get: function () { return
|
|
3288
|
+
get: function () { return chunkI2QKGDAX_cjs.declarePlugin; }
|
|
2970
3289
|
});
|
|
2971
3290
|
Object.defineProperty(exports, "declareProperty", {
|
|
2972
3291
|
enumerable: true,
|
|
2973
|
-
get: function () { return
|
|
3292
|
+
get: function () { return chunkI2QKGDAX_cjs.declareProperty; }
|
|
2974
3293
|
});
|
|
2975
3294
|
Object.defineProperty(exports, "defineFormatter", {
|
|
2976
3295
|
enumerable: true,
|
|
2977
|
-
get: function () { return
|
|
3296
|
+
get: function () { return chunkI2QKGDAX_cjs.defineFormatter; }
|
|
2978
3297
|
});
|
|
2979
3298
|
Object.defineProperty(exports, "defineLegacyMerge", {
|
|
2980
3299
|
enumerable: true,
|
|
2981
|
-
get: function () { return
|
|
3300
|
+
get: function () { return chunkI2QKGDAX_cjs.defineLegacyMerge; }
|
|
2982
3301
|
});
|
|
2983
3302
|
Object.defineProperty(exports, "defineMethod", {
|
|
2984
3303
|
enumerable: true,
|
|
2985
|
-
get: function () { return
|
|
3304
|
+
get: function () { return chunkI2QKGDAX_cjs.defineMethod; }
|
|
2986
3305
|
});
|
|
2987
3306
|
Object.defineProperty(exports, "defineMethodOverride", {
|
|
2988
3307
|
enumerable: true,
|
|
2989
|
-
get: function () { return
|
|
3308
|
+
get: function () { return chunkI2QKGDAX_cjs.defineMethodOverride; }
|
|
2990
3309
|
});
|
|
2991
3310
|
Object.defineProperty(exports, "defineOverride", {
|
|
2992
3311
|
enumerable: true,
|
|
2993
|
-
get: function () { return
|
|
3312
|
+
get: function () { return chunkI2QKGDAX_cjs.defineOverride; }
|
|
2994
3313
|
});
|
|
2995
3314
|
Object.defineProperty(exports, "definePlugin", {
|
|
2996
3315
|
enumerable: true,
|
|
2997
|
-
get: function () { return
|
|
3316
|
+
get: function () { return chunkI2QKGDAX_cjs.definePlugin; }
|
|
2998
3317
|
});
|
|
2999
3318
|
Object.defineProperty(exports, "defineProperty", {
|
|
3000
3319
|
enumerable: true,
|
|
3001
|
-
get: function () { return
|
|
3320
|
+
get: function () { return chunkI2QKGDAX_cjs.defineProperty; }
|
|
3002
3321
|
});
|
|
3003
3322
|
Object.defineProperty(exports, "defineResolver", {
|
|
3004
3323
|
enumerable: true,
|
|
3005
|
-
get: function () { return
|
|
3324
|
+
get: function () { return chunkI2QKGDAX_cjs.defineResolver; }
|
|
3006
3325
|
});
|
|
3007
3326
|
Object.defineProperty(exports, "deleteClientCredentialsPlugin", {
|
|
3008
3327
|
enumerable: true,
|
|
3009
|
-
get: function () { return
|
|
3328
|
+
get: function () { return chunkI2QKGDAX_cjs.deleteClientCredentialsPlugin; }
|
|
3010
3329
|
});
|
|
3011
3330
|
Object.defineProperty(exports, "deleteTableFieldsPlugin", {
|
|
3012
3331
|
enumerable: true,
|
|
3013
|
-
get: function () { return
|
|
3332
|
+
get: function () { return chunkI2QKGDAX_cjs.deleteTableFieldsPlugin; }
|
|
3014
3333
|
});
|
|
3015
3334
|
Object.defineProperty(exports, "deleteTablePlugin", {
|
|
3016
3335
|
enumerable: true,
|
|
3017
|
-
get: function () { return
|
|
3336
|
+
get: function () { return chunkI2QKGDAX_cjs.deleteTablePlugin; }
|
|
3018
3337
|
});
|
|
3019
3338
|
Object.defineProperty(exports, "deleteTableRecordsPlugin", {
|
|
3020
3339
|
enumerable: true,
|
|
3021
|
-
get: function () { return
|
|
3340
|
+
get: function () { return chunkI2QKGDAX_cjs.deleteTableRecordsPlugin; }
|
|
3022
3341
|
});
|
|
3023
3342
|
Object.defineProperty(exports, "disposeSdk", {
|
|
3024
3343
|
enumerable: true,
|
|
3025
|
-
get: function () { return
|
|
3344
|
+
get: function () { return chunkI2QKGDAX_cjs.disposeSdk; }
|
|
3026
3345
|
});
|
|
3027
3346
|
Object.defineProperty(exports, "durableRunIdResolver", {
|
|
3028
3347
|
enumerable: true,
|
|
3029
|
-
get: function () { return
|
|
3348
|
+
get: function () { return chunkI2QKGDAX_cjs.durableRunIdResolver; }
|
|
3030
3349
|
});
|
|
3031
3350
|
Object.defineProperty(exports, "eventEmissionHookPlugin", {
|
|
3032
3351
|
enumerable: true,
|
|
3033
|
-
get: function () { return
|
|
3352
|
+
get: function () { return chunkI2QKGDAX_cjs.eventEmissionHookPlugin; }
|
|
3034
3353
|
});
|
|
3035
3354
|
Object.defineProperty(exports, "eventEmissionPlugin", {
|
|
3036
3355
|
enumerable: true,
|
|
3037
|
-
get: function () { return
|
|
3356
|
+
get: function () { return chunkI2QKGDAX_cjs.eventEmissionPlugin; }
|
|
3038
3357
|
});
|
|
3039
3358
|
Object.defineProperty(exports, "eventEmissionPluginRef", {
|
|
3040
3359
|
enumerable: true,
|
|
3041
|
-
get: function () { return
|
|
3360
|
+
get: function () { return chunkI2QKGDAX_cjs.eventEmissionPluginRef; }
|
|
3042
3361
|
});
|
|
3043
3362
|
Object.defineProperty(exports, "fetchPlugin", {
|
|
3044
3363
|
enumerable: true,
|
|
3045
|
-
get: function () { return
|
|
3364
|
+
get: function () { return chunkI2QKGDAX_cjs.fetchPlugin; }
|
|
3046
3365
|
});
|
|
3047
3366
|
Object.defineProperty(exports, "findFirstConnectionPlugin", {
|
|
3048
3367
|
enumerable: true,
|
|
3049
|
-
get: function () { return
|
|
3368
|
+
get: function () { return chunkI2QKGDAX_cjs.findFirstConnectionPlugin; }
|
|
3050
3369
|
});
|
|
3051
3370
|
Object.defineProperty(exports, "findManifestEntry", {
|
|
3052
3371
|
enumerable: true,
|
|
3053
|
-
get: function () { return
|
|
3372
|
+
get: function () { return chunkI2QKGDAX_cjs.findManifestEntry; }
|
|
3054
3373
|
});
|
|
3055
3374
|
Object.defineProperty(exports, "findUniqueConnectionPlugin", {
|
|
3056
3375
|
enumerable: true,
|
|
3057
|
-
get: function () { return
|
|
3376
|
+
get: function () { return chunkI2QKGDAX_cjs.findUniqueConnectionPlugin; }
|
|
3058
3377
|
});
|
|
3059
3378
|
Object.defineProperty(exports, "formatErrorMessage", {
|
|
3060
3379
|
enumerable: true,
|
|
3061
|
-
get: function () { return
|
|
3380
|
+
get: function () { return chunkI2QKGDAX_cjs.formatErrorMessage; }
|
|
3062
3381
|
});
|
|
3063
3382
|
Object.defineProperty(exports, "fromFunctionPlugin", {
|
|
3064
3383
|
enumerable: true,
|
|
3065
|
-
get: function () { return
|
|
3384
|
+
get: function () { return chunkI2QKGDAX_cjs.fromFunctionPlugin; }
|
|
3066
3385
|
});
|
|
3067
3386
|
Object.defineProperty(exports, "generateEventId", {
|
|
3068
3387
|
enumerable: true,
|
|
3069
|
-
get: function () { return
|
|
3388
|
+
get: function () { return chunkI2QKGDAX_cjs.generateEventId; }
|
|
3070
3389
|
});
|
|
3071
3390
|
Object.defineProperty(exports, "getActionInputFieldsSchemaPlugin", {
|
|
3072
3391
|
enumerable: true,
|
|
3073
|
-
get: function () { return
|
|
3392
|
+
get: function () { return chunkI2QKGDAX_cjs.getActionInputFieldsSchemaPlugin; }
|
|
3074
3393
|
});
|
|
3075
3394
|
Object.defineProperty(exports, "getActionPlugin", {
|
|
3076
3395
|
enumerable: true,
|
|
3077
|
-
get: function () { return
|
|
3396
|
+
get: function () { return chunkI2QKGDAX_cjs.getActionPlugin; }
|
|
3078
3397
|
});
|
|
3079
3398
|
Object.defineProperty(exports, "getActionRunPlugin", {
|
|
3080
3399
|
enumerable: true,
|
|
3081
|
-
get: function () { return
|
|
3400
|
+
get: function () { return chunkI2QKGDAX_cjs.getActionRunPlugin; }
|
|
3082
3401
|
});
|
|
3083
3402
|
Object.defineProperty(exports, "getAgent", {
|
|
3084
3403
|
enumerable: true,
|
|
3085
|
-
get: function () { return
|
|
3404
|
+
get: function () { return chunkI2QKGDAX_cjs.getAgent; }
|
|
3086
3405
|
});
|
|
3087
3406
|
Object.defineProperty(exports, "getAppPlugin", {
|
|
3088
3407
|
enumerable: true,
|
|
3089
|
-
get: function () { return
|
|
3408
|
+
get: function () { return chunkI2QKGDAX_cjs.getAppPlugin; }
|
|
3090
3409
|
});
|
|
3091
3410
|
Object.defineProperty(exports, "getBaseUrlFromCredentials", {
|
|
3092
3411
|
enumerable: true,
|
|
3093
|
-
get: function () { return
|
|
3412
|
+
get: function () { return chunkI2QKGDAX_cjs.getBaseUrlFromCredentials; }
|
|
3094
3413
|
});
|
|
3095
3414
|
Object.defineProperty(exports, "getCallerContext", {
|
|
3096
3415
|
enumerable: true,
|
|
3097
|
-
get: function () { return
|
|
3416
|
+
get: function () { return chunkI2QKGDAX_cjs.getCallerContext; }
|
|
3098
3417
|
});
|
|
3099
3418
|
Object.defineProperty(exports, "getCiPlatform", {
|
|
3100
3419
|
enumerable: true,
|
|
3101
|
-
get: function () { return
|
|
3420
|
+
get: function () { return chunkI2QKGDAX_cjs.getCiPlatform; }
|
|
3102
3421
|
});
|
|
3103
3422
|
Object.defineProperty(exports, "getClientIdFromCredentials", {
|
|
3104
3423
|
enumerable: true,
|
|
3105
|
-
get: function () { return
|
|
3424
|
+
get: function () { return chunkI2QKGDAX_cjs.getClientIdFromCredentials; }
|
|
3106
3425
|
});
|
|
3107
3426
|
Object.defineProperty(exports, "getConnectionPlugin", {
|
|
3108
3427
|
enumerable: true,
|
|
3109
|
-
get: function () { return
|
|
3428
|
+
get: function () { return chunkI2QKGDAX_cjs.getConnectionPlugin; }
|
|
3110
3429
|
});
|
|
3111
3430
|
Object.defineProperty(exports, "getContext", {
|
|
3112
3431
|
enumerable: true,
|
|
3113
|
-
get: function () { return
|
|
3432
|
+
get: function () { return chunkI2QKGDAX_cjs.getContext; }
|
|
3114
3433
|
});
|
|
3115
3434
|
Object.defineProperty(exports, "getCoreErrorCause", {
|
|
3116
3435
|
enumerable: true,
|
|
3117
|
-
get: function () { return
|
|
3436
|
+
get: function () { return chunkI2QKGDAX_cjs.getCoreErrorCause; }
|
|
3118
3437
|
});
|
|
3119
3438
|
Object.defineProperty(exports, "getCoreErrorCode", {
|
|
3120
3439
|
enumerable: true,
|
|
3121
|
-
get: function () { return
|
|
3440
|
+
get: function () { return chunkI2QKGDAX_cjs.getCoreErrorCode; }
|
|
3122
3441
|
});
|
|
3123
3442
|
Object.defineProperty(exports, "getCpuTime", {
|
|
3124
3443
|
enumerable: true,
|
|
3125
|
-
get: function () { return
|
|
3444
|
+
get: function () { return chunkI2QKGDAX_cjs.getCpuTime; }
|
|
3126
3445
|
});
|
|
3127
3446
|
Object.defineProperty(exports, "getCurrentTimestamp", {
|
|
3128
3447
|
enumerable: true,
|
|
3129
|
-
get: function () { return
|
|
3448
|
+
get: function () { return chunkI2QKGDAX_cjs.getCurrentTimestamp; }
|
|
3130
3449
|
});
|
|
3131
3450
|
Object.defineProperty(exports, "getMemoryUsage", {
|
|
3132
3451
|
enumerable: true,
|
|
3133
|
-
get: function () { return
|
|
3452
|
+
get: function () { return chunkI2QKGDAX_cjs.getMemoryUsage; }
|
|
3134
3453
|
});
|
|
3135
3454
|
Object.defineProperty(exports, "getNegatable", {
|
|
3136
3455
|
enumerable: true,
|
|
3137
|
-
get: function () { return
|
|
3456
|
+
get: function () { return chunkI2QKGDAX_cjs.getNegatable; }
|
|
3138
3457
|
});
|
|
3139
3458
|
Object.defineProperty(exports, "getOrCreateApiClient", {
|
|
3140
3459
|
enumerable: true,
|
|
3141
|
-
get: function () { return
|
|
3460
|
+
get: function () { return chunkI2QKGDAX_cjs.getOrCreateApiClient; }
|
|
3142
3461
|
});
|
|
3143
3462
|
Object.defineProperty(exports, "getOsInfo", {
|
|
3144
3463
|
enumerable: true,
|
|
3145
|
-
get: function () { return
|
|
3464
|
+
get: function () { return chunkI2QKGDAX_cjs.getOsInfo; }
|
|
3146
3465
|
});
|
|
3147
3466
|
Object.defineProperty(exports, "getPlatformVersions", {
|
|
3148
3467
|
enumerable: true,
|
|
3149
|
-
get: function () { return
|
|
3468
|
+
get: function () { return chunkI2QKGDAX_cjs.getPlatformVersions; }
|
|
3150
3469
|
});
|
|
3151
3470
|
Object.defineProperty(exports, "getPreferredManifestEntryKey", {
|
|
3152
3471
|
enumerable: true,
|
|
3153
|
-
get: function () { return
|
|
3472
|
+
get: function () { return chunkI2QKGDAX_cjs.getPreferredManifestEntryKey; }
|
|
3154
3473
|
});
|
|
3155
3474
|
Object.defineProperty(exports, "getProfilePlugin", {
|
|
3156
3475
|
enumerable: true,
|
|
3157
|
-
get: function () { return
|
|
3476
|
+
get: function () { return chunkI2QKGDAX_cjs.getProfilePlugin; }
|
|
3158
3477
|
});
|
|
3159
3478
|
Object.defineProperty(exports, "getRegistryPlugin", {
|
|
3160
3479
|
enumerable: true,
|
|
3161
|
-
get: function () { return
|
|
3480
|
+
get: function () { return chunkI2QKGDAX_cjs.getRegistryPlugin; }
|
|
3162
3481
|
});
|
|
3163
3482
|
Object.defineProperty(exports, "getReleaseId", {
|
|
3164
3483
|
enumerable: true,
|
|
3165
|
-
get: function () { return
|
|
3484
|
+
get: function () { return chunkI2QKGDAX_cjs.getReleaseId; }
|
|
3166
3485
|
});
|
|
3167
3486
|
Object.defineProperty(exports, "getTablePlugin", {
|
|
3168
3487
|
enumerable: true,
|
|
3169
|
-
get: function () { return
|
|
3488
|
+
get: function () { return chunkI2QKGDAX_cjs.getTablePlugin; }
|
|
3170
3489
|
});
|
|
3171
3490
|
Object.defineProperty(exports, "getTableRecordPlugin", {
|
|
3172
3491
|
enumerable: true,
|
|
3173
|
-
get: function () { return
|
|
3492
|
+
get: function () { return chunkI2QKGDAX_cjs.getTableRecordPlugin; }
|
|
3174
3493
|
});
|
|
3175
3494
|
Object.defineProperty(exports, "getTokenFromCliLogin", {
|
|
3176
3495
|
enumerable: true,
|
|
3177
|
-
get: function () { return
|
|
3496
|
+
get: function () { return chunkI2QKGDAX_cjs.getTokenFromCliLogin; }
|
|
3178
3497
|
});
|
|
3179
3498
|
Object.defineProperty(exports, "getTtyContext", {
|
|
3180
3499
|
enumerable: true,
|
|
3181
|
-
get: function () { return
|
|
3500
|
+
get: function () { return chunkI2QKGDAX_cjs.getTtyContext; }
|
|
3182
3501
|
});
|
|
3183
3502
|
Object.defineProperty(exports, "getZapierApprovalMode", {
|
|
3184
3503
|
enumerable: true,
|
|
3185
|
-
get: function () { return
|
|
3504
|
+
get: function () { return chunkI2QKGDAX_cjs.getZapierApprovalMode; }
|
|
3186
3505
|
});
|
|
3187
3506
|
Object.defineProperty(exports, "getZapierCausationId", {
|
|
3188
3507
|
enumerable: true,
|
|
3189
|
-
get: function () { return
|
|
3508
|
+
get: function () { return chunkI2QKGDAX_cjs.getZapierCausationId; }
|
|
3190
3509
|
});
|
|
3191
3510
|
Object.defineProperty(exports, "getZapierCorrelationId", {
|
|
3192
3511
|
enumerable: true,
|
|
3193
|
-
get: function () { return
|
|
3512
|
+
get: function () { return chunkI2QKGDAX_cjs.getZapierCorrelationId; }
|
|
3194
3513
|
});
|
|
3195
3514
|
Object.defineProperty(exports, "getZapierDefaultApprovalMode", {
|
|
3196
3515
|
enumerable: true,
|
|
3197
|
-
get: function () { return
|
|
3516
|
+
get: function () { return chunkI2QKGDAX_cjs.getZapierDefaultApprovalMode; }
|
|
3198
3517
|
});
|
|
3199
3518
|
Object.defineProperty(exports, "getZapierOpenAutoModeApprovalsInBrowser", {
|
|
3200
3519
|
enumerable: true,
|
|
3201
|
-
get: function () { return
|
|
3520
|
+
get: function () { return chunkI2QKGDAX_cjs.getZapierOpenAutoModeApprovalsInBrowser; }
|
|
3202
3521
|
});
|
|
3203
3522
|
Object.defineProperty(exports, "getZapierSdkService", {
|
|
3204
3523
|
enumerable: true,
|
|
3205
|
-
get: function () { return
|
|
3524
|
+
get: function () { return chunkI2QKGDAX_cjs.getZapierSdkService; }
|
|
3206
3525
|
});
|
|
3207
3526
|
Object.defineProperty(exports, "injectCliLogin", {
|
|
3208
3527
|
enumerable: true,
|
|
3209
|
-
get: function () { return
|
|
3528
|
+
get: function () { return chunkI2QKGDAX_cjs.injectCliLogin; }
|
|
3210
3529
|
});
|
|
3211
3530
|
Object.defineProperty(exports, "inputFieldKeyResolver", {
|
|
3212
3531
|
enumerable: true,
|
|
3213
|
-
get: function () { return
|
|
3532
|
+
get: function () { return chunkI2QKGDAX_cjs.inputFieldKeyResolver; }
|
|
3214
3533
|
});
|
|
3215
3534
|
Object.defineProperty(exports, "inputsAllOptionalResolver", {
|
|
3216
3535
|
enumerable: true,
|
|
3217
|
-
get: function () { return
|
|
3536
|
+
get: function () { return chunkI2QKGDAX_cjs.inputsAllOptionalResolver; }
|
|
3218
3537
|
});
|
|
3219
3538
|
Object.defineProperty(exports, "inputsResolver", {
|
|
3220
3539
|
enumerable: true,
|
|
3221
|
-
get: function () { return
|
|
3540
|
+
get: function () { return chunkI2QKGDAX_cjs.inputsResolver; }
|
|
3222
3541
|
});
|
|
3223
3542
|
Object.defineProperty(exports, "invalidateCachedToken", {
|
|
3224
3543
|
enumerable: true,
|
|
3225
|
-
get: function () { return
|
|
3544
|
+
get: function () { return chunkI2QKGDAX_cjs.invalidateCachedToken; }
|
|
3226
3545
|
});
|
|
3227
3546
|
Object.defineProperty(exports, "invalidateCredentialsToken", {
|
|
3228
3547
|
enumerable: true,
|
|
3229
|
-
get: function () { return
|
|
3548
|
+
get: function () { return chunkI2QKGDAX_cjs.invalidateCredentialsToken; }
|
|
3230
3549
|
});
|
|
3231
3550
|
Object.defineProperty(exports, "isCi", {
|
|
3232
3551
|
enumerable: true,
|
|
3233
|
-
get: function () { return
|
|
3552
|
+
get: function () { return chunkI2QKGDAX_cjs.isCi; }
|
|
3234
3553
|
});
|
|
3235
3554
|
Object.defineProperty(exports, "isCliLoginAvailable", {
|
|
3236
3555
|
enumerable: true,
|
|
3237
|
-
get: function () { return
|
|
3556
|
+
get: function () { return chunkI2QKGDAX_cjs.isCliLoginAvailable; }
|
|
3238
3557
|
});
|
|
3239
3558
|
Object.defineProperty(exports, "isClientCredentials", {
|
|
3240
3559
|
enumerable: true,
|
|
3241
|
-
get: function () { return
|
|
3560
|
+
get: function () { return chunkI2QKGDAX_cjs.isClientCredentials; }
|
|
3242
3561
|
});
|
|
3243
3562
|
Object.defineProperty(exports, "isCoreCancelledSignal", {
|
|
3244
3563
|
enumerable: true,
|
|
3245
|
-
get: function () { return
|
|
3564
|
+
get: function () { return chunkI2QKGDAX_cjs.isCoreCancelledSignal; }
|
|
3246
3565
|
});
|
|
3247
3566
|
Object.defineProperty(exports, "isCoreError", {
|
|
3248
3567
|
enumerable: true,
|
|
3249
|
-
get: function () { return
|
|
3568
|
+
get: function () { return chunkI2QKGDAX_cjs.isCoreError; }
|
|
3250
3569
|
});
|
|
3251
3570
|
Object.defineProperty(exports, "isCoreSignal", {
|
|
3252
3571
|
enumerable: true,
|
|
3253
|
-
get: function () { return
|
|
3572
|
+
get: function () { return chunkI2QKGDAX_cjs.isCoreSignal; }
|
|
3254
3573
|
});
|
|
3255
3574
|
Object.defineProperty(exports, "isCredentialsFunction", {
|
|
3256
3575
|
enumerable: true,
|
|
3257
|
-
get: function () { return
|
|
3576
|
+
get: function () { return chunkI2QKGDAX_cjs.isCredentialsFunction; }
|
|
3258
3577
|
});
|
|
3259
3578
|
Object.defineProperty(exports, "isCredentialsObject", {
|
|
3260
3579
|
enumerable: true,
|
|
3261
|
-
get: function () { return
|
|
3580
|
+
get: function () { return chunkI2QKGDAX_cjs.isCredentialsObject; }
|
|
3262
3581
|
});
|
|
3263
3582
|
Object.defineProperty(exports, "isPermanentHttpError", {
|
|
3264
3583
|
enumerable: true,
|
|
3265
|
-
get: function () { return
|
|
3584
|
+
get: function () { return chunkI2QKGDAX_cjs.isPermanentHttpError; }
|
|
3266
3585
|
});
|
|
3267
3586
|
Object.defineProperty(exports, "isPkceCredentials", {
|
|
3268
3587
|
enumerable: true,
|
|
3269
|
-
get: function () { return
|
|
3588
|
+
get: function () { return chunkI2QKGDAX_cjs.isPkceCredentials; }
|
|
3270
3589
|
});
|
|
3271
3590
|
Object.defineProperty(exports, "isPositional", {
|
|
3272
3591
|
enumerable: true,
|
|
3273
|
-
get: function () { return
|
|
3592
|
+
get: function () { return chunkI2QKGDAX_cjs.isPositional; }
|
|
3274
3593
|
});
|
|
3275
3594
|
Object.defineProperty(exports, "isZapierAbortDrainSignal", {
|
|
3276
3595
|
enumerable: true,
|
|
3277
|
-
get: function () { return
|
|
3596
|
+
get: function () { return chunkI2QKGDAX_cjs.isZapierAbortDrainSignal; }
|
|
3278
3597
|
});
|
|
3279
3598
|
Object.defineProperty(exports, "isZapierActionError", {
|
|
3280
3599
|
enumerable: true,
|
|
3281
|
-
get: function () { return
|
|
3600
|
+
get: function () { return chunkI2QKGDAX_cjs.isZapierActionError; }
|
|
3282
3601
|
});
|
|
3283
3602
|
Object.defineProperty(exports, "isZapierAppNotFoundError", {
|
|
3284
3603
|
enumerable: true,
|
|
3285
|
-
get: function () { return
|
|
3604
|
+
get: function () { return chunkI2QKGDAX_cjs.isZapierAppNotFoundError; }
|
|
3286
3605
|
});
|
|
3287
3606
|
Object.defineProperty(exports, "isZapierApprovalError", {
|
|
3288
3607
|
enumerable: true,
|
|
3289
|
-
get: function () { return
|
|
3608
|
+
get: function () { return chunkI2QKGDAX_cjs.isZapierApprovalError; }
|
|
3290
3609
|
});
|
|
3291
3610
|
Object.defineProperty(exports, "isZapierAuthenticationError", {
|
|
3292
3611
|
enumerable: true,
|
|
3293
|
-
get: function () { return
|
|
3612
|
+
get: function () { return chunkI2QKGDAX_cjs.isZapierAuthenticationError; }
|
|
3294
3613
|
});
|
|
3295
3614
|
Object.defineProperty(exports, "isZapierBundleError", {
|
|
3296
3615
|
enumerable: true,
|
|
3297
|
-
get: function () { return
|
|
3616
|
+
get: function () { return chunkI2QKGDAX_cjs.isZapierBundleError; }
|
|
3298
3617
|
});
|
|
3299
3618
|
Object.defineProperty(exports, "isZapierConflictError", {
|
|
3300
3619
|
enumerable: true,
|
|
3301
|
-
get: function () { return
|
|
3620
|
+
get: function () { return chunkI2QKGDAX_cjs.isZapierConflictError; }
|
|
3302
3621
|
});
|
|
3303
3622
|
Object.defineProperty(exports, "isZapierError", {
|
|
3304
3623
|
enumerable: true,
|
|
3305
|
-
get: function () { return
|
|
3624
|
+
get: function () { return chunkI2QKGDAX_cjs.isZapierError; }
|
|
3306
3625
|
});
|
|
3307
3626
|
Object.defineProperty(exports, "isZapierNotFoundError", {
|
|
3308
3627
|
enumerable: true,
|
|
3309
|
-
get: function () { return
|
|
3628
|
+
get: function () { return chunkI2QKGDAX_cjs.isZapierNotFoundError; }
|
|
3310
3629
|
});
|
|
3311
3630
|
Object.defineProperty(exports, "isZapierRateLimitError", {
|
|
3312
3631
|
enumerable: true,
|
|
3313
|
-
get: function () { return
|
|
3632
|
+
get: function () { return chunkI2QKGDAX_cjs.isZapierRateLimitError; }
|
|
3314
3633
|
});
|
|
3315
3634
|
Object.defineProperty(exports, "isZapierReleaseTriggerMessageSignal", {
|
|
3316
3635
|
enumerable: true,
|
|
3317
|
-
get: function () { return
|
|
3636
|
+
get: function () { return chunkI2QKGDAX_cjs.isZapierReleaseTriggerMessageSignal; }
|
|
3318
3637
|
});
|
|
3319
3638
|
Object.defineProperty(exports, "isZapierResourceNotFoundError", {
|
|
3320
3639
|
enumerable: true,
|
|
3321
|
-
get: function () { return
|
|
3640
|
+
get: function () { return chunkI2QKGDAX_cjs.isZapierResourceNotFoundError; }
|
|
3322
3641
|
});
|
|
3323
3642
|
Object.defineProperty(exports, "isZapierSignal", {
|
|
3324
3643
|
enumerable: true,
|
|
3325
|
-
get: function () { return
|
|
3644
|
+
get: function () { return chunkI2QKGDAX_cjs.isZapierSignal; }
|
|
3326
3645
|
});
|
|
3327
3646
|
Object.defineProperty(exports, "isZapierTimeoutError", {
|
|
3328
3647
|
enumerable: true,
|
|
3329
|
-
get: function () { return
|
|
3648
|
+
get: function () { return chunkI2QKGDAX_cjs.isZapierTimeoutError; }
|
|
3330
3649
|
});
|
|
3331
3650
|
Object.defineProperty(exports, "isZapierValidationError", {
|
|
3332
3651
|
enumerable: true,
|
|
3333
|
-
get: function () { return
|
|
3652
|
+
get: function () { return chunkI2QKGDAX_cjs.isZapierValidationError; }
|
|
3334
3653
|
});
|
|
3335
3654
|
Object.defineProperty(exports, "listActionInputFieldChoicesPlugin", {
|
|
3336
3655
|
enumerable: true,
|
|
3337
|
-
get: function () { return
|
|
3656
|
+
get: function () { return chunkI2QKGDAX_cjs.listActionInputFieldChoicesPlugin; }
|
|
3338
3657
|
});
|
|
3339
3658
|
Object.defineProperty(exports, "listActionInputFieldsPlugin", {
|
|
3340
3659
|
enumerable: true,
|
|
3341
|
-
get: function () { return
|
|
3660
|
+
get: function () { return chunkI2QKGDAX_cjs.listActionInputFieldsPlugin; }
|
|
3342
3661
|
});
|
|
3343
3662
|
Object.defineProperty(exports, "listActionsPlugin", {
|
|
3344
3663
|
enumerable: true,
|
|
3345
|
-
get: function () { return
|
|
3664
|
+
get: function () { return chunkI2QKGDAX_cjs.listActionsPlugin; }
|
|
3346
3665
|
});
|
|
3347
3666
|
Object.defineProperty(exports, "listAppsPlugin", {
|
|
3348
3667
|
enumerable: true,
|
|
3349
|
-
get: function () { return
|
|
3668
|
+
get: function () { return chunkI2QKGDAX_cjs.listAppsPlugin; }
|
|
3350
3669
|
});
|
|
3351
3670
|
Object.defineProperty(exports, "listClientCredentialsPlugin", {
|
|
3352
3671
|
enumerable: true,
|
|
3353
|
-
get: function () { return
|
|
3672
|
+
get: function () { return chunkI2QKGDAX_cjs.listClientCredentialsPlugin; }
|
|
3354
3673
|
});
|
|
3355
3674
|
Object.defineProperty(exports, "listConnectionsPlugin", {
|
|
3356
3675
|
enumerable: true,
|
|
3357
|
-
get: function () { return
|
|
3676
|
+
get: function () { return chunkI2QKGDAX_cjs.listConnectionsPlugin; }
|
|
3358
3677
|
});
|
|
3359
3678
|
Object.defineProperty(exports, "listTableFieldsPlugin", {
|
|
3360
3679
|
enumerable: true,
|
|
3361
|
-
get: function () { return
|
|
3680
|
+
get: function () { return chunkI2QKGDAX_cjs.listTableFieldsPlugin; }
|
|
3362
3681
|
});
|
|
3363
3682
|
Object.defineProperty(exports, "listTableRecordsPlugin", {
|
|
3364
3683
|
enumerable: true,
|
|
3365
|
-
get: function () { return
|
|
3684
|
+
get: function () { return chunkI2QKGDAX_cjs.listTableRecordsPlugin; }
|
|
3366
3685
|
});
|
|
3367
3686
|
Object.defineProperty(exports, "listTablesPlugin", {
|
|
3368
3687
|
enumerable: true,
|
|
3369
|
-
get: function () { return
|
|
3688
|
+
get: function () { return chunkI2QKGDAX_cjs.listTablesPlugin; }
|
|
3370
3689
|
});
|
|
3371
3690
|
Object.defineProperty(exports, "logDeprecation", {
|
|
3372
3691
|
enumerable: true,
|
|
3373
|
-
get: function () { return
|
|
3692
|
+
get: function () { return chunkI2QKGDAX_cjs.logDeprecation; }
|
|
3374
3693
|
});
|
|
3375
3694
|
Object.defineProperty(exports, "manifestPlugin", {
|
|
3376
3695
|
enumerable: true,
|
|
3377
|
-
get: function () { return
|
|
3696
|
+
get: function () { return chunkI2QKGDAX_cjs.manifestPlugin; }
|
|
3378
3697
|
});
|
|
3379
3698
|
Object.defineProperty(exports, "manifestPluginRef", {
|
|
3380
3699
|
enumerable: true,
|
|
3381
|
-
get: function () { return
|
|
3700
|
+
get: function () { return chunkI2QKGDAX_cjs.manifestPluginRef; }
|
|
3382
3701
|
});
|
|
3383
3702
|
Object.defineProperty(exports, "omitExports", {
|
|
3384
3703
|
enumerable: true,
|
|
3385
|
-
get: function () { return
|
|
3704
|
+
get: function () { return chunkI2QKGDAX_cjs.omitExports; }
|
|
3386
3705
|
});
|
|
3387
3706
|
Object.defineProperty(exports, "operationAnnotatorPlugin", {
|
|
3388
3707
|
enumerable: true,
|
|
3389
|
-
get: function () { return
|
|
3708
|
+
get: function () { return chunkI2QKGDAX_cjs.operationAnnotatorPlugin; }
|
|
3390
3709
|
});
|
|
3391
3710
|
Object.defineProperty(exports, "parseConcurrencyEnvVar", {
|
|
3392
3711
|
enumerable: true,
|
|
3393
|
-
get: function () { return
|
|
3712
|
+
get: function () { return chunkI2QKGDAX_cjs.parseConcurrencyEnvVar; }
|
|
3394
3713
|
});
|
|
3395
3714
|
Object.defineProperty(exports, "readManifestFromFile", {
|
|
3396
3715
|
enumerable: true,
|
|
3397
|
-
get: function () { return
|
|
3716
|
+
get: function () { return chunkI2QKGDAX_cjs.readManifestFromFile; }
|
|
3398
3717
|
});
|
|
3399
3718
|
Object.defineProperty(exports, "registryPlugin", {
|
|
3400
3719
|
enumerable: true,
|
|
3401
|
-
get: function () { return
|
|
3720
|
+
get: function () { return chunkI2QKGDAX_cjs.registryPlugin; }
|
|
3402
3721
|
});
|
|
3403
3722
|
Object.defineProperty(exports, "requestPlugin", {
|
|
3404
3723
|
enumerable: true,
|
|
3405
|
-
get: function () { return
|
|
3724
|
+
get: function () { return chunkI2QKGDAX_cjs.requestPlugin; }
|
|
3406
3725
|
});
|
|
3407
3726
|
Object.defineProperty(exports, "resetDeprecationWarnings", {
|
|
3408
3727
|
enumerable: true,
|
|
3409
|
-
get: function () { return
|
|
3728
|
+
get: function () { return chunkI2QKGDAX_cjs.resetDeprecationWarnings; }
|
|
3410
3729
|
});
|
|
3411
3730
|
Object.defineProperty(exports, "resolveAuth", {
|
|
3412
3731
|
enumerable: true,
|
|
3413
|
-
get: function () { return
|
|
3732
|
+
get: function () { return chunkI2QKGDAX_cjs.resolveAuth; }
|
|
3414
3733
|
});
|
|
3415
3734
|
Object.defineProperty(exports, "resolveAuthToken", {
|
|
3416
3735
|
enumerable: true,
|
|
3417
|
-
get: function () { return
|
|
3736
|
+
get: function () { return chunkI2QKGDAX_cjs.resolveAuthToken; }
|
|
3418
3737
|
});
|
|
3419
3738
|
Object.defineProperty(exports, "resolveCredentials", {
|
|
3420
3739
|
enumerable: true,
|
|
3421
|
-
get: function () { return
|
|
3740
|
+
get: function () { return chunkI2QKGDAX_cjs.resolveCredentials; }
|
|
3422
3741
|
});
|
|
3423
3742
|
Object.defineProperty(exports, "resolveCredentialsFromEnv", {
|
|
3424
3743
|
enumerable: true,
|
|
3425
|
-
get: function () { return
|
|
3744
|
+
get: function () { return chunkI2QKGDAX_cjs.resolveCredentialsFromEnv; }
|
|
3426
3745
|
});
|
|
3427
3746
|
Object.defineProperty(exports, "resolveCredentialsPlugin", {
|
|
3428
3747
|
enumerable: true,
|
|
3429
|
-
get: function () { return
|
|
3748
|
+
get: function () { return chunkI2QKGDAX_cjs.resolveCredentialsPlugin; }
|
|
3430
3749
|
});
|
|
3431
3750
|
Object.defineProperty(exports, "resolveCredentialsPluginRef", {
|
|
3432
3751
|
enumerable: true,
|
|
3433
|
-
get: function () { return
|
|
3752
|
+
get: function () { return chunkI2QKGDAX_cjs.resolveCredentialsPluginRef; }
|
|
3434
3753
|
});
|
|
3435
3754
|
Object.defineProperty(exports, "resolvePlugin", {
|
|
3436
3755
|
enumerable: true,
|
|
3437
|
-
get: function () { return
|
|
3756
|
+
get: function () { return chunkI2QKGDAX_cjs.resolvePlugin; }
|
|
3438
3757
|
});
|
|
3439
3758
|
Object.defineProperty(exports, "runActionPlugin", {
|
|
3440
3759
|
enumerable: true,
|
|
3441
|
-
get: function () { return
|
|
3760
|
+
get: function () { return chunkI2QKGDAX_cjs.runActionPlugin; }
|
|
3442
3761
|
});
|
|
3443
3762
|
Object.defineProperty(exports, "runInMethodScope", {
|
|
3444
3763
|
enumerable: true,
|
|
3445
|
-
get: function () { return
|
|
3764
|
+
get: function () { return chunkI2QKGDAX_cjs.runInMethodScope; }
|
|
3446
3765
|
});
|
|
3447
3766
|
Object.defineProperty(exports, "runWithCallerContext", {
|
|
3448
3767
|
enumerable: true,
|
|
3449
|
-
get: function () { return
|
|
3768
|
+
get: function () { return chunkI2QKGDAX_cjs.runWithCallerContext; }
|
|
3450
3769
|
});
|
|
3451
3770
|
Object.defineProperty(exports, "runWithTelemetryContext", {
|
|
3452
3771
|
enumerable: true,
|
|
3453
|
-
get: function () { return
|
|
3772
|
+
get: function () { return chunkI2QKGDAX_cjs.runWithTelemetryContext; }
|
|
3454
3773
|
});
|
|
3455
3774
|
Object.defineProperty(exports, "sdkOptionsPluginRef", {
|
|
3456
3775
|
enumerable: true,
|
|
3457
|
-
get: function () { return
|
|
3776
|
+
get: function () { return chunkI2QKGDAX_cjs.sdkOptionsPluginRef; }
|
|
3458
3777
|
});
|
|
3459
3778
|
Object.defineProperty(exports, "selectExports", {
|
|
3460
3779
|
enumerable: true,
|
|
3461
|
-
get: function () { return
|
|
3780
|
+
get: function () { return chunkI2QKGDAX_cjs.selectExports; }
|
|
3462
3781
|
});
|
|
3463
3782
|
Object.defineProperty(exports, "tableFieldIdsResolver", {
|
|
3464
3783
|
enumerable: true,
|
|
3465
|
-
get: function () { return
|
|
3784
|
+
get: function () { return chunkI2QKGDAX_cjs.tableFieldIdsResolver; }
|
|
3466
3785
|
});
|
|
3467
3786
|
Object.defineProperty(exports, "tableFieldsResolver", {
|
|
3468
3787
|
enumerable: true,
|
|
3469
|
-
get: function () { return
|
|
3788
|
+
get: function () { return chunkI2QKGDAX_cjs.tableFieldsResolver; }
|
|
3470
3789
|
});
|
|
3471
3790
|
Object.defineProperty(exports, "tableFiltersResolver", {
|
|
3472
3791
|
enumerable: true,
|
|
3473
|
-
get: function () { return
|
|
3792
|
+
get: function () { return chunkI2QKGDAX_cjs.tableFiltersResolver; }
|
|
3474
3793
|
});
|
|
3475
3794
|
Object.defineProperty(exports, "tableIdResolver", {
|
|
3476
3795
|
enumerable: true,
|
|
3477
|
-
get: function () { return
|
|
3796
|
+
get: function () { return chunkI2QKGDAX_cjs.tableIdResolver; }
|
|
3478
3797
|
});
|
|
3479
3798
|
Object.defineProperty(exports, "tableNameResolver", {
|
|
3480
3799
|
enumerable: true,
|
|
3481
|
-
get: function () { return
|
|
3800
|
+
get: function () { return chunkI2QKGDAX_cjs.tableNameResolver; }
|
|
3482
3801
|
});
|
|
3483
3802
|
Object.defineProperty(exports, "tableRecordIdResolver", {
|
|
3484
3803
|
enumerable: true,
|
|
3485
|
-
get: function () { return
|
|
3804
|
+
get: function () { return chunkI2QKGDAX_cjs.tableRecordIdResolver; }
|
|
3486
3805
|
});
|
|
3487
3806
|
Object.defineProperty(exports, "tableRecordIdsResolver", {
|
|
3488
3807
|
enumerable: true,
|
|
3489
|
-
get: function () { return
|
|
3808
|
+
get: function () { return chunkI2QKGDAX_cjs.tableRecordIdsResolver; }
|
|
3490
3809
|
});
|
|
3491
3810
|
Object.defineProperty(exports, "tableRecordsResolver", {
|
|
3492
3811
|
enumerable: true,
|
|
3493
|
-
get: function () { return
|
|
3812
|
+
get: function () { return chunkI2QKGDAX_cjs.tableRecordsResolver; }
|
|
3494
3813
|
});
|
|
3495
3814
|
Object.defineProperty(exports, "tableSortResolver", {
|
|
3496
3815
|
enumerable: true,
|
|
3497
|
-
get: function () { return
|
|
3816
|
+
get: function () { return chunkI2QKGDAX_cjs.tableSortResolver; }
|
|
3498
3817
|
});
|
|
3499
3818
|
Object.defineProperty(exports, "tableUpdateRecordsResolver", {
|
|
3500
3819
|
enumerable: true,
|
|
3501
|
-
get: function () { return
|
|
3820
|
+
get: function () { return chunkI2QKGDAX_cjs.tableUpdateRecordsResolver; }
|
|
3502
3821
|
});
|
|
3503
3822
|
Object.defineProperty(exports, "toSnakeCase", {
|
|
3504
3823
|
enumerable: true,
|
|
3505
|
-
get: function () { return
|
|
3824
|
+
get: function () { return chunkI2QKGDAX_cjs.toSnakeCase; }
|
|
3506
3825
|
});
|
|
3507
3826
|
Object.defineProperty(exports, "toTitleCase", {
|
|
3508
3827
|
enumerable: true,
|
|
3509
|
-
get: function () { return
|
|
3828
|
+
get: function () { return chunkI2QKGDAX_cjs.toTitleCase; }
|
|
3510
3829
|
});
|
|
3511
3830
|
Object.defineProperty(exports, "triggerInboxResolver", {
|
|
3512
3831
|
enumerable: true,
|
|
3513
|
-
get: function () { return
|
|
3832
|
+
get: function () { return chunkI2QKGDAX_cjs.triggerInboxResolver; }
|
|
3514
3833
|
});
|
|
3515
3834
|
Object.defineProperty(exports, "triggerMessagesResolver", {
|
|
3516
3835
|
enumerable: true,
|
|
3517
|
-
get: function () { return
|
|
3836
|
+
get: function () { return chunkI2QKGDAX_cjs.triggerMessagesResolver; }
|
|
3518
3837
|
});
|
|
3519
3838
|
Object.defineProperty(exports, "updateTableRecordsPlugin", {
|
|
3520
3839
|
enumerable: true,
|
|
3521
|
-
get: function () { return
|
|
3840
|
+
get: function () { return chunkI2QKGDAX_cjs.updateTableRecordsPlugin; }
|
|
3522
3841
|
});
|
|
3523
3842
|
Object.defineProperty(exports, "workflowDraftIdResolver", {
|
|
3524
3843
|
enumerable: true,
|
|
3525
|
-
get: function () { return
|
|
3844
|
+
get: function () { return chunkI2QKGDAX_cjs.workflowDraftIdResolver; }
|
|
3526
3845
|
});
|
|
3527
3846
|
Object.defineProperty(exports, "workflowIdResolver", {
|
|
3528
3847
|
enumerable: true,
|
|
3529
|
-
get: function () { return
|
|
3848
|
+
get: function () { return chunkI2QKGDAX_cjs.workflowIdResolver; }
|
|
3530
3849
|
});
|
|
3531
3850
|
Object.defineProperty(exports, "workflowRunIdResolver", {
|
|
3532
3851
|
enumerable: true,
|
|
3533
|
-
get: function () { return
|
|
3852
|
+
get: function () { return chunkI2QKGDAX_cjs.workflowRunIdResolver; }
|
|
3534
3853
|
});
|
|
3535
3854
|
Object.defineProperty(exports, "workflowVersionIdResolver", {
|
|
3536
3855
|
enumerable: true,
|
|
3537
|
-
get: function () { return
|
|
3856
|
+
get: function () { return chunkI2QKGDAX_cjs.workflowVersionIdResolver; }
|
|
3538
3857
|
});
|
|
3539
3858
|
Object.defineProperty(exports, "zapierAdaptError", {
|
|
3540
3859
|
enumerable: true,
|
|
3541
|
-
get: function () { return
|
|
3860
|
+
get: function () { return chunkI2QKGDAX_cjs.zapierAdaptError; }
|
|
3542
3861
|
});
|
|
3543
3862
|
Object.defineProperty(exports, "zapierCoreOptions", {
|
|
3544
3863
|
enumerable: true,
|
|
3545
|
-
get: function () { return
|
|
3864
|
+
get: function () { return chunkI2QKGDAX_cjs.zapierCoreOptions; }
|
|
3546
3865
|
});
|
|
3547
3866
|
Object.defineProperty(exports, "zapierSdkPlugin", {
|
|
3548
3867
|
enumerable: true,
|
|
3549
|
-
get: function () { return
|
|
3868
|
+
get: function () { return chunkI2QKGDAX_cjs.zapierSdkPlugin; }
|
|
3550
3869
|
});
|
|
3551
3870
|
exports.createZapierSdk = createZapierSdk;
|
|
3552
3871
|
exports.zapierExperimentalSdkPlugin = zapierExperimentalSdkPlugin;
|