@zapier/zapier-sdk 0.89.0 → 0.91.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 +20 -0
- package/README.md +238 -33
- package/dist/{chunk-UBI5FOL5.cjs → chunk-RO34ZWKR.cjs} +2 -1
- package/dist/{chunk-NOPKQ333.mjs → chunk-SZBWDVX3.mjs} +2 -2
- package/dist/experimental.cjs +695 -449
- package/dist/experimental.d.mts +379 -1
- package/dist/experimental.d.ts +379 -1
- package/dist/experimental.mjs +346 -100
- package/dist/index.cjs +272 -272
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/experimental.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkRO34ZWKR_cjs = require('./chunk-RO34ZWKR.cjs');
|
|
4
4
|
require('./chunk-OBGZSXTJ.cjs');
|
|
5
5
|
var zod = require('zod');
|
|
6
6
|
|
|
@@ -50,7 +50,7 @@ function toWireConnections(connections) {
|
|
|
50
50
|
for (const [alias, entry] of Object.entries(connections)) {
|
|
51
51
|
const connectionId = entry.connectionId ?? entry.connection_id;
|
|
52
52
|
if (connectionId === void 0) {
|
|
53
|
-
throw new
|
|
53
|
+
throw new chunkRO34ZWKR_cjs.ZapierValidationError(
|
|
54
54
|
`connections["${alias}"] is missing connectionId`
|
|
55
55
|
);
|
|
56
56
|
}
|
|
@@ -58,12 +58,47 @@ function toWireConnections(connections) {
|
|
|
58
58
|
}
|
|
59
59
|
return wire;
|
|
60
60
|
}
|
|
61
|
+
var TriggerConfigSchema = zod.z.object({
|
|
62
|
+
selectedApi: zod.z.string().optional().describe(
|
|
63
|
+
"Zapier app/API identifier (e.g. 'GoogleSheetsAPI'). Required when a trigger is configured."
|
|
64
|
+
),
|
|
65
|
+
/** @deprecated Use `selectedApi` instead. */
|
|
66
|
+
selected_api: zod.z.string().optional().meta({ deprecated: true }),
|
|
67
|
+
action: zod.z.string().describe("Trigger action key (e.g. 'new_row')"),
|
|
68
|
+
authenticationId: zod.z.string().nullish().describe(
|
|
69
|
+
"Connection ID for the trigger source. Omit or pass null for no-auth triggers (e.g. Schedule by Zapier)."
|
|
70
|
+
),
|
|
71
|
+
/** @deprecated Use `authenticationId` instead. */
|
|
72
|
+
authentication_id: zod.z.string().nullish().meta({ deprecated: true }),
|
|
73
|
+
params: zod.z.record(zod.z.string(), zod.z.unknown()).optional().describe("Trigger parameters as a JSON object")
|
|
74
|
+
}).describe(
|
|
75
|
+
"Zapier trigger configuration. When set, the workflow subscribes to trigger events."
|
|
76
|
+
);
|
|
77
|
+
function toWireTrigger(trigger) {
|
|
78
|
+
const selectedApi = trigger.selectedApi ?? trigger.selected_api;
|
|
79
|
+
if (selectedApi === void 0) {
|
|
80
|
+
throw new chunkRO34ZWKR_cjs.ZapierValidationError("trigger is missing selectedApi");
|
|
81
|
+
}
|
|
82
|
+
const wire = {
|
|
83
|
+
selected_api: selectedApi,
|
|
84
|
+
action: trigger.action
|
|
85
|
+
};
|
|
86
|
+
if ("authenticationId" in trigger) {
|
|
87
|
+
wire.authentication_id = trigger.authenticationId;
|
|
88
|
+
} else if ("authentication_id" in trigger) {
|
|
89
|
+
wire.authentication_id = trigger.authentication_id;
|
|
90
|
+
}
|
|
91
|
+
if (trigger.params !== void 0) {
|
|
92
|
+
wire.params = trigger.params;
|
|
93
|
+
}
|
|
94
|
+
return wire;
|
|
95
|
+
}
|
|
61
96
|
function toWireAppVersions(appVersions) {
|
|
62
97
|
const wire = {};
|
|
63
98
|
for (const [key, entry] of Object.entries(appVersions)) {
|
|
64
99
|
const implementationName = entry.implementationName ?? entry.implementation_name;
|
|
65
100
|
if (implementationName === void 0) {
|
|
66
|
-
throw new
|
|
101
|
+
throw new chunkRO34ZWKR_cjs.ZapierValidationError(
|
|
67
102
|
`appVersions["${key}"] is missing implementationName`
|
|
68
103
|
);
|
|
69
104
|
}
|
|
@@ -101,6 +136,50 @@ var WorkflowVersionTriggerConfigSchema = zod.z.object({
|
|
|
101
136
|
),
|
|
102
137
|
params: zod.z.record(zod.z.string(), zod.z.unknown()).optional().describe("Trigger parameters as a JSON object")
|
|
103
138
|
}).describe("Trigger configuration persisted on a workflow version.");
|
|
139
|
+
var WorkflowDraftSchema = zod.z.object({
|
|
140
|
+
id: zod.z.string().describe("Workflow draft ID (UUID)"),
|
|
141
|
+
workflow_id: zod.z.string().describe("Parent workflow ID (UUID)"),
|
|
142
|
+
slug: zod.z.string().describe(
|
|
143
|
+
"Human-friendly identifier for URL routing; unique among open drafts per workflow"
|
|
144
|
+
),
|
|
145
|
+
base_version_id: zod.z.string().nullable().describe(
|
|
146
|
+
"The version this draft was forked from (the live version at draft creation), or null when the workflow had no published version yet"
|
|
147
|
+
),
|
|
148
|
+
source_files: zod.z.record(zod.z.string(), zod.z.string()).describe("Source files keyed by filename \u2192 contents"),
|
|
149
|
+
zapier_durable_version: zod.z.string().describe("Pinned semver of @zapier/zapier-durable used by this draft"),
|
|
150
|
+
dependencies: zod.z.record(zod.z.string(), zod.z.string()).nullable().describe("Additional npm dependencies pinned for this draft (or null)"),
|
|
151
|
+
draft_revision: zod.z.number().int().describe(
|
|
152
|
+
"Monotonic revision counter for optimistic concurrency. Echo it back on draft updates to detect concurrent edits."
|
|
153
|
+
),
|
|
154
|
+
status: WorkflowDraftStatusSchema,
|
|
155
|
+
created_by_user_id: zod.z.string().describe("ID of the user who created (forked) this draft"),
|
|
156
|
+
last_edited_by_user_id: zod.z.string().nullable().describe("ID of the user who last saved this draft (or null)"),
|
|
157
|
+
last_edited_at: zod.z.string().nullable().describe("When the draft was last edited (ISO-8601, or null)"),
|
|
158
|
+
discarded_at: zod.z.string().nullable().describe("When the draft was discarded (ISO-8601), or null while open"),
|
|
159
|
+
created_at: zod.z.string().describe("When the draft was created (ISO-8601)"),
|
|
160
|
+
updated_at: zod.z.string().describe("When the draft row was last updated (ISO-8601)"),
|
|
161
|
+
trigger: WorkflowVersionTriggerConfigSchema.nullable().describe(
|
|
162
|
+
"Trigger configuration held on this draft, or null for webhook-only workflows."
|
|
163
|
+
),
|
|
164
|
+
connections: zod.z.record(zod.z.string(), ConnectionBindingSchema2).nullable().describe("Connection aliases bound on this draft (or null)."),
|
|
165
|
+
app_versions: zod.z.record(zod.z.string(), AppVersionBindingSchema2).nullable().describe("App-version pins bound on this draft (or null).")
|
|
166
|
+
});
|
|
167
|
+
var WorkflowVersionSchema = zod.z.object({
|
|
168
|
+
id: zod.z.string().describe("Workflow version ID (UUID)"),
|
|
169
|
+
workflow_id: zod.z.string().describe("Parent workflow ID (UUID)"),
|
|
170
|
+
source_files: zod.z.record(zod.z.string(), zod.z.string()).describe("Source files keyed by filename \u2192 contents"),
|
|
171
|
+
zapier_durable_version: zod.z.string().describe(
|
|
172
|
+
"Pinned semver of @zapier/zapier-durable used by this version's runs"
|
|
173
|
+
),
|
|
174
|
+
dependencies: zod.z.record(zod.z.string(), zod.z.string()).nullable().describe("Additional npm dependencies pinned for this version (or null)"),
|
|
175
|
+
created_by_user_id: zod.z.string().describe("ID of the user who published this version"),
|
|
176
|
+
created_at: zod.z.string().describe("When the version was published (ISO-8601)"),
|
|
177
|
+
trigger: WorkflowVersionTriggerConfigSchema.nullable().describe(
|
|
178
|
+
"Trigger configuration persisted on this version, or null for webhook-only workflows."
|
|
179
|
+
),
|
|
180
|
+
connections: zod.z.record(zod.z.string(), ConnectionBindingSchema2).nullable().describe("Connection aliases bound on this version (or null)."),
|
|
181
|
+
app_versions: zod.z.record(zod.z.string(), AppVersionBindingSchema2).nullable().describe("App-version pins bound on this version (or null).")
|
|
182
|
+
});
|
|
104
183
|
var WorkflowTriggerStatusSchema = zod.z.enum([
|
|
105
184
|
"unclaimed",
|
|
106
185
|
"pending",
|
|
@@ -183,17 +262,17 @@ var ListWorkflowsApiResponseSchema = zod.z.object({
|
|
|
183
262
|
});
|
|
184
263
|
|
|
185
264
|
// src/plugins/codeSubstrate/listWorkflows/index.ts
|
|
186
|
-
var listWorkflowsPlugin =
|
|
265
|
+
var listWorkflowsPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
187
266
|
...codeSubstrateDefaults,
|
|
188
267
|
name: "listWorkflows",
|
|
189
|
-
imports: [
|
|
268
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
190
269
|
type: "list",
|
|
191
270
|
itemType: "Workflow",
|
|
192
271
|
inputSchema: ListWorkflowsOptionsSchema,
|
|
193
272
|
outputSchema: WorkflowItemSchema,
|
|
194
273
|
// The handler already returns a clean `{ data, nextCursor }` page, so the
|
|
195
274
|
// standard list output (no `adaptPage`) applies.
|
|
196
|
-
output: { type: "list", defaultPageSize:
|
|
275
|
+
output: { type: "list", defaultPageSize: chunkRO34ZWKR_cjs.DEFAULT_PAGE_SIZE },
|
|
197
276
|
run: async ({ imports, input }) => {
|
|
198
277
|
const api = imports.api;
|
|
199
278
|
const searchParams = {};
|
|
@@ -214,7 +293,7 @@ var listWorkflowsPlugin = chunkUBI5FOL5_cjs.defineMethod({
|
|
|
214
293
|
};
|
|
215
294
|
}
|
|
216
295
|
});
|
|
217
|
-
var
|
|
296
|
+
var WorkflowVersionSchema2 = zod.z.object({
|
|
218
297
|
id: zod.z.string().describe("Workflow version ID (UUID)"),
|
|
219
298
|
workflow_id: zod.z.string().describe("Parent workflow ID"),
|
|
220
299
|
source_files: zod.z.record(zod.z.string(), zod.z.string()).describe("Source files keyed by filename \u2192 contents"),
|
|
@@ -253,7 +332,7 @@ var GetWorkflowResponseSchema = zod.z.object({
|
|
|
253
332
|
"Whether the workflow is private to the creating user. False means account-visible."
|
|
254
333
|
),
|
|
255
334
|
created_by_user_id: zod.z.string().nullable().describe("User ID of the workflow creator (null in legacy data)"),
|
|
256
|
-
current_version:
|
|
335
|
+
current_version: WorkflowVersionSchema2.optional().describe(
|
|
257
336
|
"The currently published version, if any. Absent for workflows with no version published yet."
|
|
258
337
|
),
|
|
259
338
|
triggers: zod.z.array(WorkflowTriggerSchema).describe(
|
|
@@ -264,15 +343,15 @@ var GetWorkflowResponseSchema = zod.z.object({
|
|
|
264
343
|
});
|
|
265
344
|
|
|
266
345
|
// src/plugins/codeSubstrate/getWorkflow/index.ts
|
|
267
|
-
var getWorkflowPlugin =
|
|
346
|
+
var getWorkflowPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
268
347
|
...codeSubstrateDefaults,
|
|
269
348
|
name: "getWorkflow",
|
|
270
|
-
imports: [
|
|
349
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
271
350
|
itemType: "Workflow",
|
|
272
351
|
inputSchema: GetWorkflowOptionsSchema,
|
|
273
352
|
outputSchema: GetWorkflowResponseSchema,
|
|
274
353
|
output: "item",
|
|
275
|
-
resolvers: { workflow:
|
|
354
|
+
resolvers: { workflow: chunkRO34ZWKR_cjs.workflowIdResolver },
|
|
276
355
|
run: async ({ imports, input }) => {
|
|
277
356
|
const api = imports.api;
|
|
278
357
|
const raw = await api.get(
|
|
@@ -314,10 +393,10 @@ var CreateWorkflowResponseSchema = zod.z.object({
|
|
|
314
393
|
});
|
|
315
394
|
|
|
316
395
|
// src/plugins/codeSubstrate/createWorkflow/index.ts
|
|
317
|
-
var createWorkflowPlugin =
|
|
396
|
+
var createWorkflowPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
318
397
|
...codeSubstrateDefaults,
|
|
319
398
|
name: "createWorkflow",
|
|
320
|
-
imports: [
|
|
399
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
321
400
|
type: "create",
|
|
322
401
|
itemType: "Workflow",
|
|
323
402
|
inputSchema: CreateWorkflowOptionsSchema,
|
|
@@ -365,16 +444,16 @@ var UpdateWorkflowResponseSchema = zod.z.object({
|
|
|
365
444
|
});
|
|
366
445
|
|
|
367
446
|
// src/plugins/codeSubstrate/updateWorkflow/index.ts
|
|
368
|
-
var updateWorkflowPlugin =
|
|
447
|
+
var updateWorkflowPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
369
448
|
...codeSubstrateDefaults,
|
|
370
449
|
name: "updateWorkflow",
|
|
371
|
-
imports: [
|
|
450
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
372
451
|
type: "update",
|
|
373
452
|
itemType: "Workflow",
|
|
374
453
|
inputSchema: UpdateWorkflowOptionsSchema,
|
|
375
454
|
outputSchema: UpdateWorkflowResponseSchema,
|
|
376
455
|
output: "item",
|
|
377
|
-
resolvers: { workflow:
|
|
456
|
+
resolvers: { workflow: chunkRO34ZWKR_cjs.workflowIdResolver },
|
|
378
457
|
run: async ({ imports, input }) => {
|
|
379
458
|
const api = imports.api;
|
|
380
459
|
const body = {};
|
|
@@ -404,16 +483,16 @@ var EnableWorkflowResponseSchema = zod.z.object({
|
|
|
404
483
|
});
|
|
405
484
|
|
|
406
485
|
// src/plugins/codeSubstrate/enableWorkflow/index.ts
|
|
407
|
-
var enableWorkflowPlugin =
|
|
486
|
+
var enableWorkflowPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
408
487
|
...codeSubstrateDefaults,
|
|
409
488
|
name: "enableWorkflow",
|
|
410
|
-
imports: [
|
|
489
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
411
490
|
type: "update",
|
|
412
491
|
itemType: "Workflow",
|
|
413
492
|
inputSchema: EnableWorkflowOptionsSchema,
|
|
414
493
|
outputSchema: EnableWorkflowResponseSchema,
|
|
415
494
|
output: "item",
|
|
416
|
-
resolvers: { workflow:
|
|
495
|
+
resolvers: { workflow: chunkRO34ZWKR_cjs.workflowIdResolver },
|
|
417
496
|
run: async ({ imports, input }) => {
|
|
418
497
|
const api = imports.api;
|
|
419
498
|
const raw = await api.post(
|
|
@@ -438,16 +517,16 @@ var DisableWorkflowResponseSchema = zod.z.object({
|
|
|
438
517
|
});
|
|
439
518
|
|
|
440
519
|
// src/plugins/codeSubstrate/disableWorkflow/index.ts
|
|
441
|
-
var disableWorkflowPlugin =
|
|
520
|
+
var disableWorkflowPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
442
521
|
...codeSubstrateDefaults,
|
|
443
522
|
name: "disableWorkflow",
|
|
444
|
-
imports: [
|
|
523
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
445
524
|
type: "update",
|
|
446
525
|
itemType: "Workflow",
|
|
447
526
|
inputSchema: DisableWorkflowOptionsSchema,
|
|
448
527
|
outputSchema: DisableWorkflowResponseSchema,
|
|
449
528
|
output: "item",
|
|
450
|
-
resolvers: { workflow:
|
|
529
|
+
resolvers: { workflow: chunkRO34ZWKR_cjs.workflowIdResolver },
|
|
451
530
|
run: async ({ imports, input }) => {
|
|
452
531
|
const api = imports.api;
|
|
453
532
|
const raw = await api.post(
|
|
@@ -471,17 +550,17 @@ var DeleteWorkflowResponseSchema = zod.z.object({
|
|
|
471
550
|
});
|
|
472
551
|
|
|
473
552
|
// src/plugins/codeSubstrate/deleteWorkflow/index.ts
|
|
474
|
-
var deleteWorkflowPlugin =
|
|
553
|
+
var deleteWorkflowPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
475
554
|
...codeSubstrateDefaults,
|
|
476
555
|
name: "deleteWorkflow",
|
|
477
|
-
imports: [
|
|
556
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
478
557
|
type: "delete",
|
|
479
558
|
itemType: "Workflow",
|
|
480
559
|
confirm: "delete",
|
|
481
560
|
inputSchema: DeleteWorkflowOptionsSchema,
|
|
482
561
|
outputSchema: DeleteWorkflowResponseSchema,
|
|
483
562
|
output: "raw",
|
|
484
|
-
resolvers: { workflow:
|
|
563
|
+
resolvers: { workflow: chunkRO34ZWKR_cjs.workflowIdResolver },
|
|
485
564
|
run: async ({ imports, input }) => {
|
|
486
565
|
const api = imports.api;
|
|
487
566
|
await api.delete(
|
|
@@ -495,7 +574,7 @@ var deleteWorkflowPlugin = chunkUBI5FOL5_cjs.defineMethod({
|
|
|
495
574
|
return { data: { id: input.workflow } };
|
|
496
575
|
}
|
|
497
576
|
});
|
|
498
|
-
var RunStatusSchema =
|
|
577
|
+
var RunStatusSchema = chunkRO34ZWKR_cjs.openEnum(
|
|
499
578
|
["initialized", "started", "finished", "failed", "cancelled"],
|
|
500
579
|
"Run lifecycle status. `finished` / `failed` / `cancelled` are terminal."
|
|
501
580
|
);
|
|
@@ -542,17 +621,17 @@ var ListDurableRunsApiResponseSchema = zod.z.object({
|
|
|
542
621
|
});
|
|
543
622
|
|
|
544
623
|
// src/plugins/codeSubstrate/listDurableRuns/index.ts
|
|
545
|
-
var listDurableRunsPlugin =
|
|
624
|
+
var listDurableRunsPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
546
625
|
...codeSubstrateDefaults,
|
|
547
626
|
name: "listDurableRuns",
|
|
548
|
-
imports: [
|
|
627
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
549
628
|
type: "list",
|
|
550
629
|
itemType: "DurableRun",
|
|
551
630
|
inputSchema: ListDurableRunsOptionsSchema,
|
|
552
631
|
outputSchema: RunItemSchema,
|
|
553
632
|
// The handler already returns a clean `{ data, nextCursor }` page, so the
|
|
554
633
|
// standard list output (no `adaptPage`) applies.
|
|
555
|
-
output: { type: "list", defaultPageSize:
|
|
634
|
+
output: { type: "list", defaultPageSize: chunkRO34ZWKR_cjs.DEFAULT_PAGE_SIZE },
|
|
556
635
|
run: async ({ imports, input }) => {
|
|
557
636
|
const api = imports.api;
|
|
558
637
|
const searchParams = {};
|
|
@@ -573,11 +652,11 @@ var listDurableRunsPlugin = chunkUBI5FOL5_cjs.defineMethod({
|
|
|
573
652
|
};
|
|
574
653
|
}
|
|
575
654
|
});
|
|
576
|
-
var OperationTypeSchema =
|
|
655
|
+
var OperationTypeSchema = chunkRO34ZWKR_cjs.openEnum(
|
|
577
656
|
["step", "wait", "callback"],
|
|
578
657
|
"Operation kind: `step` is a journaled function call; `wait` is a time-based suspension; `callback` is a wait on an external callback."
|
|
579
658
|
);
|
|
580
|
-
var OperationStatusSchema =
|
|
659
|
+
var OperationStatusSchema = chunkRO34ZWKR_cjs.openEnum(
|
|
581
660
|
["pending", "completed", "failed", "exhausted"],
|
|
582
661
|
"Operation lifecycle status. `exhausted` means retries were exceeded."
|
|
583
662
|
);
|
|
@@ -606,7 +685,7 @@ var OperationSchema = zod.z.object({
|
|
|
606
685
|
completed_at: zod.z.string().optional().describe("When the operation reached a terminal state (ISO-8601)"),
|
|
607
686
|
created_at: zod.z.string().describe("When the operation was created (ISO-8601)")
|
|
608
687
|
});
|
|
609
|
-
var ExecutionStatusSchema =
|
|
688
|
+
var ExecutionStatusSchema = chunkRO34ZWKR_cjs.openEnum(
|
|
610
689
|
["running", "waiting", "completed", "failed"],
|
|
611
690
|
"Execution lifecycle status. `waiting` means blocked on a wait or callback operation."
|
|
612
691
|
);
|
|
@@ -663,15 +742,15 @@ var GetDurableRunResponseSchema = zod.z.object({
|
|
|
663
742
|
});
|
|
664
743
|
|
|
665
744
|
// src/plugins/codeSubstrate/getDurableRun/index.ts
|
|
666
|
-
var getDurableRunPlugin =
|
|
745
|
+
var getDurableRunPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
667
746
|
...codeSubstrateDefaults,
|
|
668
747
|
name: "getDurableRun",
|
|
669
|
-
imports: [
|
|
748
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
670
749
|
itemType: "DurableRun",
|
|
671
750
|
inputSchema: GetDurableRunOptionsSchema,
|
|
672
751
|
outputSchema: GetDurableRunResponseSchema,
|
|
673
752
|
output: "item",
|
|
674
|
-
resolvers: { run:
|
|
753
|
+
resolvers: { run: chunkRO34ZWKR_cjs.durableRunIdResolver },
|
|
675
754
|
run: async ({ imports, input }) => {
|
|
676
755
|
const api = imports.api;
|
|
677
756
|
const raw = await api.get(
|
|
@@ -742,16 +821,16 @@ var RunDurableResponseSchema = zod.z.object({
|
|
|
742
821
|
});
|
|
743
822
|
|
|
744
823
|
// src/resolvers/sourceFiles.ts
|
|
745
|
-
var sourceFilesResolver =
|
|
824
|
+
var sourceFilesResolver = chunkRO34ZWKR_cjs.defineResolver({
|
|
746
825
|
type: "object",
|
|
747
826
|
additionalKeys: {
|
|
748
827
|
minEntries: 1,
|
|
749
|
-
keys:
|
|
828
|
+
keys: chunkRO34ZWKR_cjs.defineResolver({
|
|
750
829
|
type: "static",
|
|
751
830
|
inputType: "text",
|
|
752
831
|
placeholder: "filename (e.g. index.ts)"
|
|
753
832
|
}),
|
|
754
|
-
values:
|
|
833
|
+
values: chunkRO34ZWKR_cjs.defineResolver({
|
|
755
834
|
type: "static",
|
|
756
835
|
inputType: "text",
|
|
757
836
|
placeholder: "file contents"
|
|
@@ -762,10 +841,10 @@ var sourceFilesResolver = chunkUBI5FOL5_cjs.defineResolver({
|
|
|
762
841
|
});
|
|
763
842
|
|
|
764
843
|
// src/plugins/codeSubstrate/runDurable/index.ts
|
|
765
|
-
var runDurablePlugin =
|
|
844
|
+
var runDurablePlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
766
845
|
...codeSubstrateDefaults,
|
|
767
846
|
name: "runDurable",
|
|
768
|
-
imports: [
|
|
847
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
769
848
|
type: "create",
|
|
770
849
|
itemType: "DurableRun",
|
|
771
850
|
inputSchema: RunDurableOptionsSchema,
|
|
@@ -818,16 +897,16 @@ var CancelDurableRunResponseSchema = zod.z.object({
|
|
|
818
897
|
});
|
|
819
898
|
|
|
820
899
|
// src/plugins/codeSubstrate/cancelDurableRun/index.ts
|
|
821
|
-
var cancelDurableRunPlugin =
|
|
900
|
+
var cancelDurableRunPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
822
901
|
...codeSubstrateDefaults,
|
|
823
902
|
name: "cancelDurableRun",
|
|
824
|
-
imports: [
|
|
903
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
825
904
|
type: "update",
|
|
826
905
|
itemType: "DurableRun",
|
|
827
906
|
inputSchema: CancelDurableRunOptionsSchema,
|
|
828
907
|
outputSchema: CancelDurableRunResponseSchema,
|
|
829
908
|
output: "item",
|
|
830
|
-
resolvers: { run:
|
|
909
|
+
resolvers: { run: chunkRO34ZWKR_cjs.durableRunIdResolver },
|
|
831
910
|
run: async ({ imports, input }) => {
|
|
832
911
|
const api = imports.api;
|
|
833
912
|
await api.post(
|
|
@@ -841,22 +920,6 @@ var cancelDurableRunPlugin = chunkUBI5FOL5_cjs.defineMethod({
|
|
|
841
920
|
return { data: { id: input.run, status: "cancelled" } };
|
|
842
921
|
}
|
|
843
922
|
});
|
|
844
|
-
var TriggerConfigSchema = zod.z.object({
|
|
845
|
-
selectedApi: zod.z.string().optional().describe(
|
|
846
|
-
"Zapier app/API identifier (e.g. 'GoogleSheetsAPI'). Required when a trigger is configured."
|
|
847
|
-
),
|
|
848
|
-
/** @deprecated Use `selectedApi` instead. */
|
|
849
|
-
selected_api: zod.z.string().optional().meta({ deprecated: true }),
|
|
850
|
-
action: zod.z.string().describe("Trigger action key (e.g. 'new_row')"),
|
|
851
|
-
authenticationId: zod.z.string().nullish().describe(
|
|
852
|
-
"Connection ID for the trigger source. Omit or pass null for no-auth triggers (e.g. Schedule by Zapier)."
|
|
853
|
-
),
|
|
854
|
-
/** @deprecated Use `authenticationId` instead. */
|
|
855
|
-
authentication_id: zod.z.string().nullish().meta({ deprecated: true }),
|
|
856
|
-
params: zod.z.record(zod.z.string(), zod.z.unknown()).optional().describe("Trigger parameters as a JSON object")
|
|
857
|
-
}).describe(
|
|
858
|
-
"Zapier trigger configuration. When set, the workflow subscribes to trigger events."
|
|
859
|
-
);
|
|
860
923
|
var PublishWorkflowVersionDescription = "Publish a new version of a durable workflow. Enables the workflow by default.";
|
|
861
924
|
var PublishWorkflowVersionBaseSchema = zod.z.object({
|
|
862
925
|
dependencies: zod.z.record(zod.z.string(), zod.z.string()).optional().describe("Optional npm package dependencies"),
|
|
@@ -896,53 +959,19 @@ var PublishWorkflowVersionSchemaDeprecated = zod.z.object({
|
|
|
896
959
|
source_files: SourceFilesSchema
|
|
897
960
|
}).merge(PublishWorkflowVersionBaseSchema);
|
|
898
961
|
var PublishWorkflowVersionOptionsSchema = zod.z.union([PublishWorkflowVersionSchema, PublishWorkflowVersionSchemaDeprecated]).describe(PublishWorkflowVersionDescription);
|
|
899
|
-
var PublishWorkflowVersionResponseSchema =
|
|
900
|
-
id: zod.z.string().describe("Workflow version ID (UUID)"),
|
|
901
|
-
workflow_id: zod.z.string().describe("Parent workflow ID (UUID)"),
|
|
902
|
-
source_files: zod.z.record(zod.z.string(), zod.z.string()).describe("Source files keyed by filename \u2192 contents"),
|
|
903
|
-
zapier_durable_version: zod.z.string().describe(
|
|
904
|
-
"Pinned semver of @zapier/zapier-durable used by this version's runs"
|
|
905
|
-
),
|
|
906
|
-
dependencies: zod.z.record(zod.z.string(), zod.z.string()).nullable().describe("Additional npm dependencies pinned for this version (or null)"),
|
|
907
|
-
created_by_user_id: zod.z.string().describe("ID of the user who published this version"),
|
|
908
|
-
created_at: zod.z.string().describe("When the version was published (ISO-8601)"),
|
|
909
|
-
trigger: WorkflowVersionTriggerConfigSchema.nullable().describe(
|
|
910
|
-
"Trigger configuration persisted on this version, or null for webhook-only workflows."
|
|
911
|
-
),
|
|
912
|
-
connections: zod.z.record(zod.z.string(), ConnectionBindingSchema2).nullable().describe("Connection aliases bound on this version (or null)."),
|
|
913
|
-
app_versions: zod.z.record(zod.z.string(), AppVersionBindingSchema2).nullable().describe("App-version pins bound on this version (or null).")
|
|
914
|
-
});
|
|
962
|
+
var PublishWorkflowVersionResponseSchema = WorkflowVersionSchema;
|
|
915
963
|
|
|
916
964
|
// src/plugins/codeSubstrate/publishWorkflowVersion/index.ts
|
|
917
|
-
|
|
918
|
-
const selectedApi = trigger.selectedApi ?? trigger.selected_api;
|
|
919
|
-
if (selectedApi === void 0) {
|
|
920
|
-
throw new chunkUBI5FOL5_cjs.ZapierValidationError("trigger is missing selectedApi");
|
|
921
|
-
}
|
|
922
|
-
const wire = {
|
|
923
|
-
selected_api: selectedApi,
|
|
924
|
-
action: trigger.action
|
|
925
|
-
};
|
|
926
|
-
if ("authenticationId" in trigger) {
|
|
927
|
-
wire.authentication_id = trigger.authenticationId;
|
|
928
|
-
} else if ("authentication_id" in trigger) {
|
|
929
|
-
wire.authentication_id = trigger.authentication_id;
|
|
930
|
-
}
|
|
931
|
-
if (trigger.params !== void 0) {
|
|
932
|
-
wire.params = trigger.params;
|
|
933
|
-
}
|
|
934
|
-
return wire;
|
|
935
|
-
}
|
|
936
|
-
var publishWorkflowVersionPlugin = chunkUBI5FOL5_cjs.defineMethod({
|
|
965
|
+
var publishWorkflowVersionPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
937
966
|
...codeSubstrateDefaults,
|
|
938
967
|
name: "publishWorkflowVersion",
|
|
939
|
-
imports: [
|
|
968
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
940
969
|
type: "create",
|
|
941
970
|
itemType: "WorkflowVersion",
|
|
942
971
|
inputSchema: PublishWorkflowVersionOptionsSchema,
|
|
943
972
|
outputSchema: PublishWorkflowVersionResponseSchema,
|
|
944
973
|
output: "item",
|
|
945
|
-
resolvers: { workflow:
|
|
974
|
+
resolvers: { workflow: chunkRO34ZWKR_cjs.workflowIdResolver, sourceFiles: sourceFilesResolver },
|
|
946
975
|
run: async ({ imports, input }) => {
|
|
947
976
|
const api = imports.api;
|
|
948
977
|
const sourceFiles = "sourceFiles" in input ? input.sourceFiles : input.source_files;
|
|
@@ -1016,18 +1045,18 @@ var ListWorkflowVersionsApiResponseSchema = zod.z.object({
|
|
|
1016
1045
|
});
|
|
1017
1046
|
|
|
1018
1047
|
// src/plugins/codeSubstrate/listWorkflowVersions/index.ts
|
|
1019
|
-
var listWorkflowVersionsPlugin =
|
|
1048
|
+
var listWorkflowVersionsPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
1020
1049
|
...codeSubstrateDefaults,
|
|
1021
1050
|
name: "listWorkflowVersions",
|
|
1022
|
-
imports: [
|
|
1051
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
1023
1052
|
type: "list",
|
|
1024
1053
|
itemType: "WorkflowVersion",
|
|
1025
1054
|
inputSchema: ListWorkflowVersionsOptionsSchema,
|
|
1026
1055
|
outputSchema: WorkflowVersionListItemSchema,
|
|
1027
1056
|
// The handler already returns a clean `{ data, nextCursor }` page, so the
|
|
1028
1057
|
// standard list output (no `adaptPage`) applies.
|
|
1029
|
-
output: { type: "list", defaultPageSize:
|
|
1030
|
-
resolvers: { workflow:
|
|
1058
|
+
output: { type: "list", defaultPageSize: chunkRO34ZWKR_cjs.DEFAULT_PAGE_SIZE },
|
|
1059
|
+
resolvers: { workflow: chunkRO34ZWKR_cjs.workflowIdResolver },
|
|
1031
1060
|
run: async ({ imports, input }) => {
|
|
1032
1061
|
const api = imports.api;
|
|
1033
1062
|
const searchParams = {};
|
|
@@ -1056,35 +1085,20 @@ var GetWorkflowVersionOptionsSchema = zod.z.object({
|
|
|
1056
1085
|
workflow: zod.z.string().uuid().describe("Durable workflow ID"),
|
|
1057
1086
|
version: zod.z.string().uuid().describe("Workflow version ID")
|
|
1058
1087
|
}).describe("Get full details of a workflow version including source files");
|
|
1059
|
-
var GetWorkflowVersionResponseSchema =
|
|
1060
|
-
id: zod.z.string().describe("Workflow version ID (UUID)"),
|
|
1061
|
-
workflow_id: zod.z.string().describe("Parent workflow ID (UUID)"),
|
|
1062
|
-
source_files: zod.z.record(zod.z.string(), zod.z.string()).describe("Source files keyed by filename \u2192 contents"),
|
|
1063
|
-
zapier_durable_version: zod.z.string().describe(
|
|
1064
|
-
"Pinned semver of @zapier/zapier-durable used by this version's runs"
|
|
1065
|
-
),
|
|
1066
|
-
dependencies: zod.z.record(zod.z.string(), zod.z.string()).nullable().describe("Additional npm dependencies pinned for this version (or null)"),
|
|
1067
|
-
created_by_user_id: zod.z.string().describe("ID of the user who published this version"),
|
|
1068
|
-
created_at: zod.z.string().describe("When the version was published (ISO-8601)"),
|
|
1069
|
-
trigger: WorkflowVersionTriggerConfigSchema.nullable().describe(
|
|
1070
|
-
"Trigger configuration persisted on this version, or null for webhook-only workflows."
|
|
1071
|
-
),
|
|
1072
|
-
connections: zod.z.record(zod.z.string(), ConnectionBindingSchema2).nullable().describe("Connection aliases bound on this version (or null)."),
|
|
1073
|
-
app_versions: zod.z.record(zod.z.string(), AppVersionBindingSchema2).nullable().describe("App-version pins bound on this version (or null).")
|
|
1074
|
-
});
|
|
1088
|
+
var GetWorkflowVersionResponseSchema = WorkflowVersionSchema;
|
|
1075
1089
|
|
|
1076
1090
|
// src/plugins/codeSubstrate/getWorkflowVersion/index.ts
|
|
1077
|
-
var getWorkflowVersionPlugin =
|
|
1091
|
+
var getWorkflowVersionPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
1078
1092
|
...codeSubstrateDefaults,
|
|
1079
1093
|
name: "getWorkflowVersion",
|
|
1080
|
-
imports: [
|
|
1094
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
1081
1095
|
itemType: "WorkflowVersion",
|
|
1082
1096
|
inputSchema: GetWorkflowVersionOptionsSchema,
|
|
1083
1097
|
outputSchema: GetWorkflowVersionResponseSchema,
|
|
1084
1098
|
output: "item",
|
|
1085
1099
|
resolvers: {
|
|
1086
|
-
workflow:
|
|
1087
|
-
version:
|
|
1100
|
+
workflow: chunkRO34ZWKR_cjs.workflowIdResolver,
|
|
1101
|
+
version: chunkRO34ZWKR_cjs.workflowVersionIdResolver
|
|
1088
1102
|
},
|
|
1089
1103
|
run: async ({ imports, input }) => {
|
|
1090
1104
|
const api = imports.api;
|
|
@@ -1105,7 +1119,7 @@ var WorkflowDraftSummarySchema = zod.z.object({
|
|
|
1105
1119
|
"Human-friendly identifier for URL routing; unique among open drafts per workflow"
|
|
1106
1120
|
),
|
|
1107
1121
|
base_version_id: zod.z.string().nullable().describe(
|
|
1108
|
-
"
|
|
1122
|
+
"The version this draft was forked from (the live version at draft creation), or null when the workflow had no published version yet"
|
|
1109
1123
|
),
|
|
1110
1124
|
status: WorkflowDraftStatusSchema,
|
|
1111
1125
|
last_edited_by_user_id: zod.z.string().nullable().describe("ID of the user who last saved this draft (or null)"),
|
|
@@ -1137,18 +1151,18 @@ var ListWorkflowDraftsApiResponseSchema = zod.z.object({
|
|
|
1137
1151
|
});
|
|
1138
1152
|
|
|
1139
1153
|
// src/plugins/codeSubstrate/listWorkflowDrafts/index.ts
|
|
1140
|
-
var listWorkflowDraftsPlugin =
|
|
1154
|
+
var listWorkflowDraftsPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
1141
1155
|
...codeSubstrateDefaults,
|
|
1142
1156
|
name: "listWorkflowDrafts",
|
|
1143
|
-
imports: [
|
|
1157
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
1144
1158
|
type: "list",
|
|
1145
1159
|
itemType: "WorkflowDraft",
|
|
1146
1160
|
inputSchema: ListWorkflowDraftsOptionsSchema,
|
|
1147
1161
|
outputSchema: WorkflowDraftSummarySchema,
|
|
1148
1162
|
// The handler already returns a clean `{ data, nextCursor }` page, so the
|
|
1149
1163
|
// standard list output (no `adaptPage`) applies.
|
|
1150
|
-
output: { type: "list", defaultPageSize:
|
|
1151
|
-
resolvers: { workflow:
|
|
1164
|
+
output: { type: "list", defaultPageSize: chunkRO34ZWKR_cjs.DEFAULT_PAGE_SIZE },
|
|
1165
|
+
resolvers: { workflow: chunkRO34ZWKR_cjs.workflowIdResolver },
|
|
1152
1166
|
run: async ({ imports, input }) => {
|
|
1153
1167
|
const api = imports.api;
|
|
1154
1168
|
const searchParams = {};
|
|
@@ -1183,47 +1197,20 @@ var GetWorkflowDraftOptionsSchema = zod.z.object({
|
|
|
1183
1197
|
workflow: zod.z.string().uuid().describe("Durable workflow ID"),
|
|
1184
1198
|
draft: zod.z.string().uuid().describe("Workflow draft ID")
|
|
1185
1199
|
}).describe("Get full details of a workflow draft including source files");
|
|
1186
|
-
var GetWorkflowDraftResponseSchema =
|
|
1187
|
-
id: zod.z.string().describe("Workflow draft ID (UUID)"),
|
|
1188
|
-
workflow_id: zod.z.string().describe("Parent workflow ID (UUID)"),
|
|
1189
|
-
slug: zod.z.string().describe(
|
|
1190
|
-
"Human-friendly identifier for URL routing; unique among open drafts per workflow"
|
|
1191
|
-
),
|
|
1192
|
-
base_version_id: zod.z.string().nullable().describe(
|
|
1193
|
-
"Live version at draft creation or last publish rebase, or null before the workflow's first publish"
|
|
1194
|
-
),
|
|
1195
|
-
source_files: zod.z.record(zod.z.string(), zod.z.string()).describe("Source files keyed by filename \u2192 contents"),
|
|
1196
|
-
zapier_durable_version: zod.z.string().describe("Pinned semver of @zapier/zapier-durable used by this draft"),
|
|
1197
|
-
dependencies: zod.z.record(zod.z.string(), zod.z.string()).nullable().describe("Additional npm dependencies pinned for this draft (or null)"),
|
|
1198
|
-
draft_revision: zod.z.number().int().describe(
|
|
1199
|
-
"Monotonic revision counter for optimistic concurrency. Echo it back on draft updates to detect concurrent edits."
|
|
1200
|
-
),
|
|
1201
|
-
status: WorkflowDraftStatusSchema,
|
|
1202
|
-
created_by_user_id: zod.z.string().describe("ID of the user who created (forked) this draft"),
|
|
1203
|
-
last_edited_by_user_id: zod.z.string().nullable().describe("ID of the user who last saved this draft (or null)"),
|
|
1204
|
-
last_edited_at: zod.z.string().nullable().describe("When the draft was last edited (ISO-8601, or null)"),
|
|
1205
|
-
discarded_at: zod.z.string().nullable().describe("When the draft was discarded (ISO-8601), or null while open"),
|
|
1206
|
-
created_at: zod.z.string().describe("When the draft was created (ISO-8601)"),
|
|
1207
|
-
updated_at: zod.z.string().describe("When the draft row was last updated (ISO-8601)"),
|
|
1208
|
-
trigger: WorkflowVersionTriggerConfigSchema.nullable().describe(
|
|
1209
|
-
"Trigger configuration held on this draft, or null for webhook-only workflows."
|
|
1210
|
-
),
|
|
1211
|
-
connections: zod.z.record(zod.z.string(), ConnectionBindingSchema2).nullable().describe("Connection aliases bound on this draft (or null)."),
|
|
1212
|
-
app_versions: zod.z.record(zod.z.string(), AppVersionBindingSchema2).nullable().describe("App-version pins bound on this draft (or null).")
|
|
1213
|
-
});
|
|
1200
|
+
var GetWorkflowDraftResponseSchema = WorkflowDraftSchema;
|
|
1214
1201
|
|
|
1215
1202
|
// src/plugins/codeSubstrate/getWorkflowDraft/index.ts
|
|
1216
|
-
var getWorkflowDraftPlugin =
|
|
1203
|
+
var getWorkflowDraftPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
1217
1204
|
...codeSubstrateDefaults,
|
|
1218
1205
|
name: "getWorkflowDraft",
|
|
1219
|
-
imports: [
|
|
1206
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
1220
1207
|
itemType: "WorkflowDraft",
|
|
1221
1208
|
inputSchema: GetWorkflowDraftOptionsSchema,
|
|
1222
1209
|
outputSchema: GetWorkflowDraftResponseSchema,
|
|
1223
1210
|
output: "item",
|
|
1224
1211
|
resolvers: {
|
|
1225
|
-
workflow:
|
|
1226
|
-
draft:
|
|
1212
|
+
workflow: chunkRO34ZWKR_cjs.workflowIdResolver,
|
|
1213
|
+
draft: chunkRO34ZWKR_cjs.workflowDraftIdResolver
|
|
1227
1214
|
},
|
|
1228
1215
|
run: async ({ imports, input }) => {
|
|
1229
1216
|
const api = imports.api;
|
|
@@ -1237,6 +1224,261 @@ var getWorkflowDraftPlugin = chunkUBI5FOL5_cjs.defineMethod({
|
|
|
1237
1224
|
return { data: GetWorkflowDraftResponseSchema.parse(raw) };
|
|
1238
1225
|
}
|
|
1239
1226
|
});
|
|
1227
|
+
var CreateWorkflowDraftOptionsSchema = zod.z.object({
|
|
1228
|
+
workflow: zod.z.string().uuid().describe("Durable workflow ID"),
|
|
1229
|
+
slug: zod.z.string().min(1).max(128).optional().describe(
|
|
1230
|
+
"Optional slug for URL routing. When omitted, the server generates one."
|
|
1231
|
+
)
|
|
1232
|
+
}).describe(
|
|
1233
|
+
"Fork a new draft from the workflow's current live version (or a blank stub before the first publish)"
|
|
1234
|
+
);
|
|
1235
|
+
var CreateWorkflowDraftResponseSchema = WorkflowDraftSchema;
|
|
1236
|
+
|
|
1237
|
+
// src/plugins/codeSubstrate/createWorkflowDraft/index.ts
|
|
1238
|
+
var createWorkflowDraftPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
1239
|
+
...codeSubstrateDefaults,
|
|
1240
|
+
name: "createWorkflowDraft",
|
|
1241
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
1242
|
+
type: "create",
|
|
1243
|
+
itemType: "WorkflowDraft",
|
|
1244
|
+
inputSchema: CreateWorkflowDraftOptionsSchema,
|
|
1245
|
+
outputSchema: CreateWorkflowDraftResponseSchema,
|
|
1246
|
+
output: "item",
|
|
1247
|
+
resolvers: { workflow: chunkRO34ZWKR_cjs.workflowIdResolver },
|
|
1248
|
+
run: async ({ imports, input }) => {
|
|
1249
|
+
const api = imports.api;
|
|
1250
|
+
const body = {};
|
|
1251
|
+
if (input.slug !== void 0) {
|
|
1252
|
+
body.slug = input.slug;
|
|
1253
|
+
}
|
|
1254
|
+
const raw = await api.post(
|
|
1255
|
+
`${CODE_SUBSTRATE_WORKFLOWS_API}/workflows/${encodeURIComponent(input.workflow)}/drafts`,
|
|
1256
|
+
body,
|
|
1257
|
+
{
|
|
1258
|
+
authRequired: true,
|
|
1259
|
+
resource: { type: "workflow", id: input.workflow }
|
|
1260
|
+
}
|
|
1261
|
+
);
|
|
1262
|
+
return { data: CreateWorkflowDraftResponseSchema.parse(raw) };
|
|
1263
|
+
}
|
|
1264
|
+
});
|
|
1265
|
+
var UpdateWorkflowDraftOptionsSchema = zod.z.object({
|
|
1266
|
+
workflow: zod.z.string().uuid().describe("Durable workflow ID"),
|
|
1267
|
+
draft: zod.z.string().uuid().describe("Workflow draft ID"),
|
|
1268
|
+
sourceFiles: SourceFilesSchema,
|
|
1269
|
+
zapierDurableVersion: zod.z.string().optional().describe(
|
|
1270
|
+
'Exact semver of @zapier/zapier-durable to use (e.g. "1.2.3"). Leaves the stored pin unchanged if omitted.'
|
|
1271
|
+
),
|
|
1272
|
+
dependencies: zod.z.record(zod.z.string(), zod.z.string()).optional().describe("Optional npm package dependencies"),
|
|
1273
|
+
draftRevision: zod.z.number().int().min(0).optional().describe(
|
|
1274
|
+
"Expected draft revision for optimistic concurrency. Pass the revision from the last read; the server rejects the save with a conflict if the draft has changed since. Omit to skip the check."
|
|
1275
|
+
),
|
|
1276
|
+
trigger: TriggerConfigSchema.nullish().describe(
|
|
1277
|
+
"Trigger configuration. Omit to leave the stored trigger unchanged, pass null to clear it, or pass an object to replace it."
|
|
1278
|
+
),
|
|
1279
|
+
connections: zod.z.record(zod.z.string(), ConnectionBindingSchema).nullish().describe(
|
|
1280
|
+
"Map of connection aliases to Zapier connections used by the workflow. Pass `null` to clear an existing binding."
|
|
1281
|
+
),
|
|
1282
|
+
appVersions: zod.z.record(zod.z.string(), AppVersionBindingSchema).nullish().describe(
|
|
1283
|
+
"Map of app keys to pinned app implementation/version used by the workflow. Pass `null` to clear an existing binding."
|
|
1284
|
+
)
|
|
1285
|
+
}).describe("Update (autosave) an open workflow draft");
|
|
1286
|
+
var UpdateWorkflowDraftResponseSchema = WorkflowDraftSchema;
|
|
1287
|
+
|
|
1288
|
+
// src/plugins/codeSubstrate/updateWorkflowDraft/index.ts
|
|
1289
|
+
var updateWorkflowDraftPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
1290
|
+
...codeSubstrateDefaults,
|
|
1291
|
+
name: "updateWorkflowDraft",
|
|
1292
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
1293
|
+
type: "update",
|
|
1294
|
+
itemType: "WorkflowDraft",
|
|
1295
|
+
inputSchema: UpdateWorkflowDraftOptionsSchema,
|
|
1296
|
+
outputSchema: UpdateWorkflowDraftResponseSchema,
|
|
1297
|
+
output: "item",
|
|
1298
|
+
resolvers: {
|
|
1299
|
+
workflow: chunkRO34ZWKR_cjs.workflowIdResolver,
|
|
1300
|
+
draft: chunkRO34ZWKR_cjs.workflowDraftIdResolver,
|
|
1301
|
+
sourceFiles: sourceFilesResolver
|
|
1302
|
+
},
|
|
1303
|
+
run: async ({ imports, input }) => {
|
|
1304
|
+
const api = imports.api;
|
|
1305
|
+
const body = { source_files: input.sourceFiles };
|
|
1306
|
+
if (input.zapierDurableVersion !== void 0) {
|
|
1307
|
+
body.zapier_durable_version = input.zapierDurableVersion;
|
|
1308
|
+
}
|
|
1309
|
+
if (input.dependencies !== void 0) {
|
|
1310
|
+
body.dependencies = input.dependencies;
|
|
1311
|
+
}
|
|
1312
|
+
if (input.draftRevision !== void 0) {
|
|
1313
|
+
body.draft_revision = input.draftRevision;
|
|
1314
|
+
}
|
|
1315
|
+
if (input.trigger === null) {
|
|
1316
|
+
body.trigger = null;
|
|
1317
|
+
} else if (input.trigger !== void 0) {
|
|
1318
|
+
body.trigger = toWireTrigger(input.trigger);
|
|
1319
|
+
}
|
|
1320
|
+
if (input.connections === null) {
|
|
1321
|
+
body.connections = null;
|
|
1322
|
+
} else if (input.connections !== void 0) {
|
|
1323
|
+
body.connections = toWireConnections(input.connections);
|
|
1324
|
+
}
|
|
1325
|
+
if (input.appVersions === null) {
|
|
1326
|
+
body.app_versions = null;
|
|
1327
|
+
} else if (input.appVersions !== void 0) {
|
|
1328
|
+
body.app_versions = toWireAppVersions(input.appVersions);
|
|
1329
|
+
}
|
|
1330
|
+
const raw = await api.put(
|
|
1331
|
+
`${CODE_SUBSTRATE_WORKFLOWS_API}/workflows/${encodeURIComponent(input.workflow)}/drafts/${encodeURIComponent(input.draft)}`,
|
|
1332
|
+
body,
|
|
1333
|
+
{
|
|
1334
|
+
authRequired: true,
|
|
1335
|
+
resource: { type: "workflow-draft", id: input.draft },
|
|
1336
|
+
// A 409 is the optimistic-concurrency signal: the draft's revision
|
|
1337
|
+
// moved past the caller's `draftRevision` (someone else saved in
|
|
1338
|
+
// between). Type it so callers can catch ZapierConflictError,
|
|
1339
|
+
// re-read the draft, and retry instead of blind-overwriting.
|
|
1340
|
+
customErrorHandler: ({ status, data }) => {
|
|
1341
|
+
if (status === 409) {
|
|
1342
|
+
const detail = chunkRO34ZWKR_cjs.extractErrorDetail(data);
|
|
1343
|
+
return new chunkRO34ZWKR_cjs.ZapierConflictError(
|
|
1344
|
+
`${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.`,
|
|
1345
|
+
{ statusCode: status, resourceType: "workflow-draft" }
|
|
1346
|
+
);
|
|
1347
|
+
}
|
|
1348
|
+
return void 0;
|
|
1349
|
+
}
|
|
1350
|
+
}
|
|
1351
|
+
);
|
|
1352
|
+
return { data: UpdateWorkflowDraftResponseSchema.parse(raw) };
|
|
1353
|
+
}
|
|
1354
|
+
});
|
|
1355
|
+
var DiscardWorkflowDraftOptionsSchema = zod.z.object({
|
|
1356
|
+
workflow: zod.z.string().uuid().describe("Durable workflow ID"),
|
|
1357
|
+
draft: zod.z.string().uuid().describe("Workflow draft ID")
|
|
1358
|
+
}).describe(
|
|
1359
|
+
"Discard an open workflow draft (soft delete). The draft's unpublished edits stop resolving; the published version is untouched."
|
|
1360
|
+
);
|
|
1361
|
+
var DiscardWorkflowDraftResponseSchema = WorkflowDraftSchema;
|
|
1362
|
+
|
|
1363
|
+
// src/plugins/codeSubstrate/discardWorkflowDraft/index.ts
|
|
1364
|
+
var discardWorkflowDraftPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
1365
|
+
...codeSubstrateDefaults,
|
|
1366
|
+
name: "discardWorkflowDraft",
|
|
1367
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
1368
|
+
type: "delete",
|
|
1369
|
+
itemType: "WorkflowDraft",
|
|
1370
|
+
// Soft delete returns the discarded draft, not the `{ success: boolean }`
|
|
1371
|
+
// shape the docs generator assumes for delete methods.
|
|
1372
|
+
returnType: "WorkflowDraftItem",
|
|
1373
|
+
// Discard throws away the draft's unpublished edits, so it warrants the
|
|
1374
|
+
// same interactive confirmation as deleteWorkflow.
|
|
1375
|
+
confirm: "delete",
|
|
1376
|
+
inputSchema: DiscardWorkflowDraftOptionsSchema,
|
|
1377
|
+
outputSchema: DiscardWorkflowDraftResponseSchema,
|
|
1378
|
+
output: "item",
|
|
1379
|
+
resolvers: {
|
|
1380
|
+
workflow: chunkRO34ZWKR_cjs.workflowIdResolver,
|
|
1381
|
+
draft: chunkRO34ZWKR_cjs.workflowDraftIdResolver
|
|
1382
|
+
},
|
|
1383
|
+
run: async ({ imports, input }) => {
|
|
1384
|
+
const api = imports.api;
|
|
1385
|
+
const raw = await api.delete(
|
|
1386
|
+
`${CODE_SUBSTRATE_WORKFLOWS_API}/workflows/${encodeURIComponent(input.workflow)}/drafts/${encodeURIComponent(input.draft)}`,
|
|
1387
|
+
void 0,
|
|
1388
|
+
{
|
|
1389
|
+
authRequired: true,
|
|
1390
|
+
resource: { type: "workflow-draft", id: input.draft }
|
|
1391
|
+
}
|
|
1392
|
+
);
|
|
1393
|
+
return { data: DiscardWorkflowDraftResponseSchema.parse(raw) };
|
|
1394
|
+
}
|
|
1395
|
+
});
|
|
1396
|
+
var PublishWorkflowDraftOptionsSchema = zod.z.object({
|
|
1397
|
+
workflow: zod.z.string().uuid().describe("Durable workflow ID"),
|
|
1398
|
+
draft: zod.z.string().uuid().describe("Workflow draft ID"),
|
|
1399
|
+
enabled: zod.z.boolean().optional().describe(
|
|
1400
|
+
"Set the workflow's enabled state as part of the publish. If omitted, the current enabled state is preserved."
|
|
1401
|
+
),
|
|
1402
|
+
draftRevision: zod.z.number().int().min(0).optional().describe(
|
|
1403
|
+
"Expected draft revision for optimistic concurrency. Pass the revision from the last read; the server rejects the publish with a conflict if the draft has changed since. Omit to skip the check."
|
|
1404
|
+
)
|
|
1405
|
+
}).describe(
|
|
1406
|
+
"Publish an open draft as a new immutable workflow version. Advances the workflow's live pointer and discards the draft \u2014 publish consumes it, so an open draft always means unpublished work. Continue editing by creating a new draft, which forks from the just-published version."
|
|
1407
|
+
);
|
|
1408
|
+
var PublishWorkflowDraftResponseSchema = zod.z.object({
|
|
1409
|
+
draft: WorkflowDraftSchema.describe(
|
|
1410
|
+
"The consumed draft: status is 'discarded' and discarded_at is set. base_version_id still records the version the draft was forked from."
|
|
1411
|
+
),
|
|
1412
|
+
version: WorkflowVersionSchema.describe(
|
|
1413
|
+
"The newly published immutable workflow version, now live."
|
|
1414
|
+
)
|
|
1415
|
+
});
|
|
1416
|
+
|
|
1417
|
+
// src/plugins/codeSubstrate/publishWorkflowDraft/index.ts
|
|
1418
|
+
var publishWorkflowDraftPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
1419
|
+
...codeSubstrateDefaults,
|
|
1420
|
+
name: "publishWorkflowDraft",
|
|
1421
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
1422
|
+
type: "create",
|
|
1423
|
+
itemType: "WorkflowVersion",
|
|
1424
|
+
// The response is the composite `{ draft, version }`, not the bare
|
|
1425
|
+
// `WorkflowVersionItem` the docs generator derives from itemType.
|
|
1426
|
+
returnType: "PublishWorkflowDraftResponse",
|
|
1427
|
+
inputSchema: PublishWorkflowDraftOptionsSchema,
|
|
1428
|
+
outputSchema: PublishWorkflowDraftResponseSchema,
|
|
1429
|
+
output: "item",
|
|
1430
|
+
resolvers: {
|
|
1431
|
+
workflow: chunkRO34ZWKR_cjs.workflowIdResolver,
|
|
1432
|
+
draft: chunkRO34ZWKR_cjs.workflowDraftIdResolver
|
|
1433
|
+
},
|
|
1434
|
+
run: async ({ imports, input }) => {
|
|
1435
|
+
const api = imports.api;
|
|
1436
|
+
const body = {};
|
|
1437
|
+
if (input.enabled !== void 0) {
|
|
1438
|
+
body.enabled = input.enabled;
|
|
1439
|
+
}
|
|
1440
|
+
if (input.draftRevision !== void 0) {
|
|
1441
|
+
body.draft_revision = input.draftRevision;
|
|
1442
|
+
}
|
|
1443
|
+
const raw = await api.post(
|
|
1444
|
+
`${CODE_SUBSTRATE_WORKFLOWS_API}/workflows/${encodeURIComponent(input.workflow)}/drafts/${encodeURIComponent(input.draft)}/publish`,
|
|
1445
|
+
body,
|
|
1446
|
+
{
|
|
1447
|
+
authRequired: true,
|
|
1448
|
+
resource: { type: "workflow-draft", id: input.draft },
|
|
1449
|
+
// Preserve the endpoint's distinct failure modes instead of letting
|
|
1450
|
+
// them flatten into a generic API error:
|
|
1451
|
+
// 409 — the draft was edited concurrently (draft_revision moved past
|
|
1452
|
+
// the caller's), or a trigger subscription switchover is
|
|
1453
|
+
// already in progress. Retryable after re-reading the draft.
|
|
1454
|
+
// 503 — the trigger config could not be validated against the
|
|
1455
|
+
// platform catalog; validation is fail-closed so the publish
|
|
1456
|
+
// is rejected rather than committing unvalidated config.
|
|
1457
|
+
// Retryable as-is.
|
|
1458
|
+
// 400 (invalid zapier_durable_version / trigger config) already maps
|
|
1459
|
+
// to ZapierValidationError via the client's default handling.
|
|
1460
|
+
customErrorHandler: ({ status, data }) => {
|
|
1461
|
+
if (status === 409) {
|
|
1462
|
+
const detail = chunkRO34ZWKR_cjs.extractErrorDetail(data);
|
|
1463
|
+
return new chunkRO34ZWKR_cjs.ZapierConflictError(
|
|
1464
|
+
`${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.`,
|
|
1465
|
+
{ statusCode: status, resourceType: "workflow-draft" }
|
|
1466
|
+
);
|
|
1467
|
+
}
|
|
1468
|
+
if (status === 503) {
|
|
1469
|
+
const detail = chunkRO34ZWKR_cjs.extractErrorDetail(data);
|
|
1470
|
+
return new chunkRO34ZWKR_cjs.ZapierApiError(
|
|
1471
|
+
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.",
|
|
1472
|
+
{ statusCode: status }
|
|
1473
|
+
);
|
|
1474
|
+
}
|
|
1475
|
+
return void 0;
|
|
1476
|
+
}
|
|
1477
|
+
}
|
|
1478
|
+
);
|
|
1479
|
+
return { data: PublishWorkflowDraftResponseSchema.parse(raw) };
|
|
1480
|
+
}
|
|
1481
|
+
});
|
|
1240
1482
|
var WorkflowRunStatusSchema = zod.z.union([
|
|
1241
1483
|
zod.z.enum(["initialized", "started", "finished", "failed", "cancelled"]),
|
|
1242
1484
|
zod.z.string()
|
|
@@ -1283,18 +1525,18 @@ var ListWorkflowRunsApiResponseSchema = zod.z.object({
|
|
|
1283
1525
|
});
|
|
1284
1526
|
|
|
1285
1527
|
// src/plugins/codeSubstrate/listWorkflowRuns/index.ts
|
|
1286
|
-
var listWorkflowRunsPlugin =
|
|
1528
|
+
var listWorkflowRunsPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
1287
1529
|
...codeSubstrateDefaults,
|
|
1288
1530
|
name: "listWorkflowRuns",
|
|
1289
|
-
imports: [
|
|
1531
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
1290
1532
|
type: "list",
|
|
1291
1533
|
itemType: "WorkflowRun",
|
|
1292
1534
|
inputSchema: ListWorkflowRunsOptionsSchema,
|
|
1293
1535
|
outputSchema: WorkflowRunListItemSchema,
|
|
1294
1536
|
// The handler already returns a clean `{ data, nextCursor }` page, so the
|
|
1295
1537
|
// standard list output (no `adaptPage`) applies.
|
|
1296
|
-
output: { type: "list", defaultPageSize:
|
|
1297
|
-
resolvers: { workflow:
|
|
1538
|
+
output: { type: "list", defaultPageSize: chunkRO34ZWKR_cjs.DEFAULT_PAGE_SIZE },
|
|
1539
|
+
resolvers: { workflow: chunkRO34ZWKR_cjs.workflowIdResolver },
|
|
1298
1540
|
run: async ({ imports, input }) => {
|
|
1299
1541
|
const api = imports.api;
|
|
1300
1542
|
const searchParams = {};
|
|
@@ -1347,17 +1589,17 @@ var GetWorkflowRunResponseSchema = zod.z.object({
|
|
|
1347
1589
|
});
|
|
1348
1590
|
|
|
1349
1591
|
// src/plugins/codeSubstrate/getWorkflowRun/index.ts
|
|
1350
|
-
var getWorkflowRunPlugin =
|
|
1592
|
+
var getWorkflowRunPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
1351
1593
|
...codeSubstrateDefaults,
|
|
1352
1594
|
name: "getWorkflowRun",
|
|
1353
|
-
imports: [
|
|
1595
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
1354
1596
|
itemType: "WorkflowRun",
|
|
1355
1597
|
inputSchema: GetWorkflowRunOptionsSchema,
|
|
1356
1598
|
outputSchema: GetWorkflowRunResponseSchema,
|
|
1357
1599
|
output: "item",
|
|
1358
1600
|
resolvers: {
|
|
1359
|
-
workflow:
|
|
1360
|
-
run:
|
|
1601
|
+
workflow: chunkRO34ZWKR_cjs.workflowIdResolver,
|
|
1602
|
+
run: chunkRO34ZWKR_cjs.workflowRunIdResolver
|
|
1361
1603
|
},
|
|
1362
1604
|
run: async ({ imports, input }) => {
|
|
1363
1605
|
const api = imports.api;
|
|
@@ -1391,10 +1633,10 @@ var GetTriggerRunResponseSchema = zod.z.object({
|
|
|
1391
1633
|
});
|
|
1392
1634
|
|
|
1393
1635
|
// src/plugins/codeSubstrate/getTriggerRun/index.ts
|
|
1394
|
-
var getTriggerRunPlugin =
|
|
1636
|
+
var getTriggerRunPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
1395
1637
|
...codeSubstrateDefaults,
|
|
1396
1638
|
name: "getTriggerRun",
|
|
1397
|
-
imports: [
|
|
1639
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
1398
1640
|
itemType: "WorkflowRun",
|
|
1399
1641
|
inputSchema: GetTriggerRunOptionsSchema,
|
|
1400
1642
|
outputSchema: GetTriggerRunResponseSchema,
|
|
@@ -1433,16 +1675,16 @@ var TriggerWorkflowResponseSchema = zod.z.object({
|
|
|
1433
1675
|
});
|
|
1434
1676
|
|
|
1435
1677
|
// src/plugins/codeSubstrate/triggerWorkflow/index.ts
|
|
1436
|
-
var triggerWorkflowPlugin =
|
|
1678
|
+
var triggerWorkflowPlugin = chunkRO34ZWKR_cjs.defineMethod({
|
|
1437
1679
|
...codeSubstrateDefaults,
|
|
1438
1680
|
name: "triggerWorkflow",
|
|
1439
|
-
imports: [
|
|
1681
|
+
imports: [chunkRO34ZWKR_cjs.apiPluginRef],
|
|
1440
1682
|
type: "create",
|
|
1441
1683
|
itemType: "WorkflowRun",
|
|
1442
1684
|
inputSchema: TriggerWorkflowOptionsSchema,
|
|
1443
1685
|
outputSchema: TriggerWorkflowResponseSchema,
|
|
1444
1686
|
output: "item",
|
|
1445
|
-
resolvers: { workflow:
|
|
1687
|
+
resolvers: { workflow: chunkRO34ZWKR_cjs.workflowIdResolver },
|
|
1446
1688
|
run: async ({ imports, input }) => {
|
|
1447
1689
|
const api = imports.api;
|
|
1448
1690
|
const rawWorkflow = await api.get(
|
|
@@ -1456,7 +1698,7 @@ var triggerWorkflowPlugin = chunkUBI5FOL5_cjs.defineMethod({
|
|
|
1456
1698
|
const segments = new URL(workflow.trigger_url).pathname.split("/");
|
|
1457
1699
|
const triggerToken = segments[segments.length - 1];
|
|
1458
1700
|
if (!triggerToken) {
|
|
1459
|
-
throw new
|
|
1701
|
+
throw new chunkRO34ZWKR_cjs.ZapierApiError(
|
|
1460
1702
|
`Workflow ${input.workflow} returned a malformed trigger_url`,
|
|
1461
1703
|
{ statusCode: 0, response: workflow.trigger_url }
|
|
1462
1704
|
);
|
|
@@ -1474,11 +1716,11 @@ var triggerWorkflowPlugin = chunkUBI5FOL5_cjs.defineMethod({
|
|
|
1474
1716
|
});
|
|
1475
1717
|
|
|
1476
1718
|
// src/experimental.ts
|
|
1477
|
-
var zapierExperimentalSdkPlugin =
|
|
1719
|
+
var zapierExperimentalSdkPlugin = chunkRO34ZWKR_cjs.definePlugin({
|
|
1478
1720
|
namespace: "zapier",
|
|
1479
1721
|
name: "experimental-sdk",
|
|
1480
1722
|
exports: [
|
|
1481
|
-
|
|
1723
|
+
chunkRO34ZWKR_cjs.zapierSdkPlugin,
|
|
1482
1724
|
// Code substrate (experimental). `list*` plugins are exported before their
|
|
1483
1725
|
// `get*` / mutation siblings because per-row resolvers reach the listing
|
|
1484
1726
|
// methods.
|
|
@@ -1494,6 +1736,10 @@ var zapierExperimentalSdkPlugin = chunkUBI5FOL5_cjs.definePlugin({
|
|
|
1494
1736
|
publishWorkflowVersionPlugin,
|
|
1495
1737
|
listWorkflowDraftsPlugin,
|
|
1496
1738
|
getWorkflowDraftPlugin,
|
|
1739
|
+
createWorkflowDraftPlugin,
|
|
1740
|
+
updateWorkflowDraftPlugin,
|
|
1741
|
+
discardWorkflowDraftPlugin,
|
|
1742
|
+
publishWorkflowDraftPlugin,
|
|
1497
1743
|
listWorkflowRunsPlugin,
|
|
1498
1744
|
getWorkflowRunPlugin,
|
|
1499
1745
|
listDurableRunsPlugin,
|
|
@@ -1505,1101 +1751,1101 @@ var zapierExperimentalSdkPlugin = chunkUBI5FOL5_cjs.definePlugin({
|
|
|
1505
1751
|
]
|
|
1506
1752
|
});
|
|
1507
1753
|
function createZapierSdk(options = {}) {
|
|
1508
|
-
return
|
|
1754
|
+
return chunkRO34ZWKR_cjs.createSdk(zapierExperimentalSdkPlugin, {
|
|
1509
1755
|
configuration: {
|
|
1510
|
-
[
|
|
1511
|
-
[
|
|
1756
|
+
[chunkRO34ZWKR_cjs.SDK_OPTIONS_ID]: options,
|
|
1757
|
+
[chunkRO34ZWKR_cjs.CORE_OPTIONS_ID]: chunkRO34ZWKR_cjs.zapierCoreOptions
|
|
1512
1758
|
}
|
|
1513
1759
|
});
|
|
1514
1760
|
}
|
|
1515
1761
|
|
|
1516
1762
|
Object.defineProperty(exports, "API_ID", {
|
|
1517
1763
|
enumerable: true,
|
|
1518
|
-
get: function () { return
|
|
1764
|
+
get: function () { return chunkRO34ZWKR_cjs.API_ID; }
|
|
1519
1765
|
});
|
|
1520
1766
|
Object.defineProperty(exports, "ActionKeyPropertySchema", {
|
|
1521
1767
|
enumerable: true,
|
|
1522
|
-
get: function () { return
|
|
1768
|
+
get: function () { return chunkRO34ZWKR_cjs.ActionKeyPropertySchema; }
|
|
1523
1769
|
});
|
|
1524
1770
|
Object.defineProperty(exports, "ActionPropertySchema", {
|
|
1525
1771
|
enumerable: true,
|
|
1526
|
-
get: function () { return
|
|
1772
|
+
get: function () { return chunkRO34ZWKR_cjs.ActionPropertySchema; }
|
|
1527
1773
|
});
|
|
1528
1774
|
Object.defineProperty(exports, "ActionTimeoutMillisecondsPropertySchema", {
|
|
1529
1775
|
enumerable: true,
|
|
1530
|
-
get: function () { return
|
|
1776
|
+
get: function () { return chunkRO34ZWKR_cjs.ActionTimeoutMillisecondsPropertySchema; }
|
|
1531
1777
|
});
|
|
1532
1778
|
Object.defineProperty(exports, "ActionTimeoutSecondsPropertySchema", {
|
|
1533
1779
|
enumerable: true,
|
|
1534
|
-
get: function () { return
|
|
1780
|
+
get: function () { return chunkRO34ZWKR_cjs.ActionTimeoutSecondsPropertySchema; }
|
|
1535
1781
|
});
|
|
1536
1782
|
Object.defineProperty(exports, "ActionTypePropertySchema", {
|
|
1537
1783
|
enumerable: true,
|
|
1538
|
-
get: function () { return
|
|
1784
|
+
get: function () { return chunkRO34ZWKR_cjs.ActionTypePropertySchema; }
|
|
1539
1785
|
});
|
|
1540
1786
|
Object.defineProperty(exports, "AppKeyPropertySchema", {
|
|
1541
1787
|
enumerable: true,
|
|
1542
|
-
get: function () { return
|
|
1788
|
+
get: function () { return chunkRO34ZWKR_cjs.AppKeyPropertySchema; }
|
|
1543
1789
|
});
|
|
1544
1790
|
Object.defineProperty(exports, "AppPropertySchema", {
|
|
1545
1791
|
enumerable: true,
|
|
1546
|
-
get: function () { return
|
|
1792
|
+
get: function () { return chunkRO34ZWKR_cjs.AppPropertySchema; }
|
|
1547
1793
|
});
|
|
1548
1794
|
Object.defineProperty(exports, "AppsPropertySchema", {
|
|
1549
1795
|
enumerable: true,
|
|
1550
|
-
get: function () { return
|
|
1796
|
+
get: function () { return chunkRO34ZWKR_cjs.AppsPropertySchema; }
|
|
1551
1797
|
});
|
|
1552
1798
|
Object.defineProperty(exports, "AuthMechanism", {
|
|
1553
1799
|
enumerable: true,
|
|
1554
|
-
get: function () { return
|
|
1800
|
+
get: function () { return chunkRO34ZWKR_cjs.AuthMechanism; }
|
|
1555
1801
|
});
|
|
1556
1802
|
Object.defineProperty(exports, "AuthenticationIdPropertySchema", {
|
|
1557
1803
|
enumerable: true,
|
|
1558
|
-
get: function () { return
|
|
1804
|
+
get: function () { return chunkRO34ZWKR_cjs.AuthenticationIdPropertySchema; }
|
|
1559
1805
|
});
|
|
1560
1806
|
Object.defineProperty(exports, "BaseSdkOptionsSchema", {
|
|
1561
1807
|
enumerable: true,
|
|
1562
|
-
get: function () { return
|
|
1808
|
+
get: function () { return chunkRO34ZWKR_cjs.BaseSdkOptionsSchema; }
|
|
1563
1809
|
});
|
|
1564
1810
|
Object.defineProperty(exports, "CONNECTIONS_ID", {
|
|
1565
1811
|
enumerable: true,
|
|
1566
|
-
get: function () { return
|
|
1812
|
+
get: function () { return chunkRO34ZWKR_cjs.CONNECTIONS_ID; }
|
|
1567
1813
|
});
|
|
1568
1814
|
Object.defineProperty(exports, "CONTEXT", {
|
|
1569
1815
|
enumerable: true,
|
|
1570
|
-
get: function () { return
|
|
1816
|
+
get: function () { return chunkRO34ZWKR_cjs.CONTEXT; }
|
|
1571
1817
|
});
|
|
1572
1818
|
Object.defineProperty(exports, "CONTEXT_CACHE_MAX_SIZE", {
|
|
1573
1819
|
enumerable: true,
|
|
1574
|
-
get: function () { return
|
|
1820
|
+
get: function () { return chunkRO34ZWKR_cjs.CONTEXT_CACHE_MAX_SIZE; }
|
|
1575
1821
|
});
|
|
1576
1822
|
Object.defineProperty(exports, "CONTEXT_CACHE_TTL_MILLISECONDS", {
|
|
1577
1823
|
enumerable: true,
|
|
1578
|
-
get: function () { return
|
|
1824
|
+
get: function () { return chunkRO34ZWKR_cjs.CONTEXT_CACHE_TTL_MILLISECONDS; }
|
|
1579
1825
|
});
|
|
1580
1826
|
Object.defineProperty(exports, "CORE_ERROR_SYMBOL", {
|
|
1581
1827
|
enumerable: true,
|
|
1582
|
-
get: function () { return
|
|
1828
|
+
get: function () { return chunkRO34ZWKR_cjs.CORE_ERROR_SYMBOL; }
|
|
1583
1829
|
});
|
|
1584
1830
|
Object.defineProperty(exports, "CORE_OPTIONS_ID", {
|
|
1585
1831
|
enumerable: true,
|
|
1586
|
-
get: function () { return
|
|
1832
|
+
get: function () { return chunkRO34ZWKR_cjs.CORE_OPTIONS_ID; }
|
|
1587
1833
|
});
|
|
1588
1834
|
Object.defineProperty(exports, "CORE_SIGNAL_SYMBOL", {
|
|
1589
1835
|
enumerable: true,
|
|
1590
|
-
get: function () { return
|
|
1836
|
+
get: function () { return chunkRO34ZWKR_cjs.CORE_SIGNAL_SYMBOL; }
|
|
1591
1837
|
});
|
|
1592
1838
|
Object.defineProperty(exports, "ClientCredentialsObjectSchema", {
|
|
1593
1839
|
enumerable: true,
|
|
1594
|
-
get: function () { return
|
|
1840
|
+
get: function () { return chunkRO34ZWKR_cjs.ClientCredentialsObjectSchema; }
|
|
1595
1841
|
});
|
|
1596
1842
|
Object.defineProperty(exports, "ConnectionEntrySchema", {
|
|
1597
1843
|
enumerable: true,
|
|
1598
|
-
get: function () { return
|
|
1844
|
+
get: function () { return chunkRO34ZWKR_cjs.ConnectionEntrySchema; }
|
|
1599
1845
|
});
|
|
1600
1846
|
Object.defineProperty(exports, "ConnectionIdPropertySchema", {
|
|
1601
1847
|
enumerable: true,
|
|
1602
|
-
get: function () { return
|
|
1848
|
+
get: function () { return chunkRO34ZWKR_cjs.ConnectionIdPropertySchema; }
|
|
1603
1849
|
});
|
|
1604
1850
|
Object.defineProperty(exports, "ConnectionPropertySchema", {
|
|
1605
1851
|
enumerable: true,
|
|
1606
|
-
get: function () { return
|
|
1852
|
+
get: function () { return chunkRO34ZWKR_cjs.ConnectionPropertySchema; }
|
|
1607
1853
|
});
|
|
1608
1854
|
Object.defineProperty(exports, "ConnectionsMapSchema", {
|
|
1609
1855
|
enumerable: true,
|
|
1610
|
-
get: function () { return
|
|
1856
|
+
get: function () { return chunkRO34ZWKR_cjs.ConnectionsMapSchema; }
|
|
1611
1857
|
});
|
|
1612
1858
|
Object.defineProperty(exports, "ConnectionsPropertySchema", {
|
|
1613
1859
|
enumerable: true,
|
|
1614
|
-
get: function () { return
|
|
1860
|
+
get: function () { return chunkRO34ZWKR_cjs.ConnectionsPropertySchema; }
|
|
1615
1861
|
});
|
|
1616
1862
|
Object.defineProperty(exports, "CoreCancelledSignal", {
|
|
1617
1863
|
enumerable: true,
|
|
1618
|
-
get: function () { return
|
|
1864
|
+
get: function () { return chunkRO34ZWKR_cjs.CoreCancelledSignal; }
|
|
1619
1865
|
});
|
|
1620
1866
|
Object.defineProperty(exports, "CoreDisposeError", {
|
|
1621
1867
|
enumerable: true,
|
|
1622
|
-
get: function () { return
|
|
1868
|
+
get: function () { return chunkRO34ZWKR_cjs.CoreDisposeError; }
|
|
1623
1869
|
});
|
|
1624
1870
|
Object.defineProperty(exports, "CoreErrorCode", {
|
|
1625
1871
|
enumerable: true,
|
|
1626
|
-
get: function () { return
|
|
1872
|
+
get: function () { return chunkRO34ZWKR_cjs.CoreErrorCode; }
|
|
1627
1873
|
});
|
|
1628
1874
|
Object.defineProperty(exports, "CoreSignal", {
|
|
1629
1875
|
enumerable: true,
|
|
1630
|
-
get: function () { return
|
|
1876
|
+
get: function () { return chunkRO34ZWKR_cjs.CoreSignal; }
|
|
1631
1877
|
});
|
|
1632
1878
|
Object.defineProperty(exports, "CredentialsFunctionSchema", {
|
|
1633
1879
|
enumerable: true,
|
|
1634
|
-
get: function () { return
|
|
1880
|
+
get: function () { return chunkRO34ZWKR_cjs.CredentialsFunctionSchema; }
|
|
1635
1881
|
});
|
|
1636
1882
|
Object.defineProperty(exports, "CredentialsObjectSchema", {
|
|
1637
1883
|
enumerable: true,
|
|
1638
|
-
get: function () { return
|
|
1884
|
+
get: function () { return chunkRO34ZWKR_cjs.CredentialsObjectSchema; }
|
|
1639
1885
|
});
|
|
1640
1886
|
Object.defineProperty(exports, "CredentialsSchema", {
|
|
1641
1887
|
enumerable: true,
|
|
1642
|
-
get: function () { return
|
|
1888
|
+
get: function () { return chunkRO34ZWKR_cjs.CredentialsSchema; }
|
|
1643
1889
|
});
|
|
1644
1890
|
Object.defineProperty(exports, "DEFAULT_ACTION_TIMEOUT_MILLISECONDS", {
|
|
1645
1891
|
enumerable: true,
|
|
1646
|
-
get: function () { return
|
|
1892
|
+
get: function () { return chunkRO34ZWKR_cjs.DEFAULT_ACTION_TIMEOUT_MILLISECONDS; }
|
|
1647
1893
|
});
|
|
1648
1894
|
Object.defineProperty(exports, "DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS", {
|
|
1649
1895
|
enumerable: true,
|
|
1650
|
-
get: function () { return
|
|
1896
|
+
get: function () { return chunkRO34ZWKR_cjs.DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS; }
|
|
1651
1897
|
});
|
|
1652
1898
|
Object.defineProperty(exports, "DEFAULT_CONFIG_PATH", {
|
|
1653
1899
|
enumerable: true,
|
|
1654
|
-
get: function () { return
|
|
1900
|
+
get: function () { return chunkRO34ZWKR_cjs.DEFAULT_CONFIG_PATH; }
|
|
1655
1901
|
});
|
|
1656
1902
|
Object.defineProperty(exports, "DEFAULT_MAX_APPROVAL_RETRIES", {
|
|
1657
1903
|
enumerable: true,
|
|
1658
|
-
get: function () { return
|
|
1904
|
+
get: function () { return chunkRO34ZWKR_cjs.DEFAULT_MAX_APPROVAL_RETRIES; }
|
|
1659
1905
|
});
|
|
1660
1906
|
Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
|
|
1661
1907
|
enumerable: true,
|
|
1662
|
-
get: function () { return
|
|
1908
|
+
get: function () { return chunkRO34ZWKR_cjs.DEFAULT_PAGE_SIZE; }
|
|
1663
1909
|
});
|
|
1664
1910
|
Object.defineProperty(exports, "DEPRECATION_NOTICE_EVENT", {
|
|
1665
1911
|
enumerable: true,
|
|
1666
|
-
get: function () { return
|
|
1912
|
+
get: function () { return chunkRO34ZWKR_cjs.DEPRECATION_NOTICE_EVENT; }
|
|
1667
1913
|
});
|
|
1668
1914
|
Object.defineProperty(exports, "DebugPropertySchema", {
|
|
1669
1915
|
enumerable: true,
|
|
1670
|
-
get: function () { return
|
|
1916
|
+
get: function () { return chunkRO34ZWKR_cjs.DebugPropertySchema; }
|
|
1671
1917
|
});
|
|
1672
1918
|
Object.defineProperty(exports, "DrainTriggerInboxSchema", {
|
|
1673
1919
|
enumerable: true,
|
|
1674
|
-
get: function () { return
|
|
1920
|
+
get: function () { return chunkRO34ZWKR_cjs.DrainTriggerInboxSchema; }
|
|
1675
1921
|
});
|
|
1676
1922
|
Object.defineProperty(exports, "EVENT_EMISSION_ID", {
|
|
1677
1923
|
enumerable: true,
|
|
1678
|
-
get: function () { return
|
|
1924
|
+
get: function () { return chunkRO34ZWKR_cjs.EVENT_EMISSION_ID; }
|
|
1679
1925
|
});
|
|
1680
1926
|
Object.defineProperty(exports, "FieldsPropertySchema", {
|
|
1681
1927
|
enumerable: true,
|
|
1682
|
-
get: function () { return
|
|
1928
|
+
get: function () { return chunkRO34ZWKR_cjs.FieldsPropertySchema; }
|
|
1683
1929
|
});
|
|
1684
1930
|
Object.defineProperty(exports, "InputFieldPropertySchema", {
|
|
1685
1931
|
enumerable: true,
|
|
1686
|
-
get: function () { return
|
|
1932
|
+
get: function () { return chunkRO34ZWKR_cjs.InputFieldPropertySchema; }
|
|
1687
1933
|
});
|
|
1688
1934
|
Object.defineProperty(exports, "InputsPropertySchema", {
|
|
1689
1935
|
enumerable: true,
|
|
1690
|
-
get: function () { return
|
|
1936
|
+
get: function () { return chunkRO34ZWKR_cjs.InputsPropertySchema; }
|
|
1691
1937
|
});
|
|
1692
1938
|
Object.defineProperty(exports, "LeaseLimitPropertySchema", {
|
|
1693
1939
|
enumerable: true,
|
|
1694
|
-
get: function () { return
|
|
1940
|
+
get: function () { return chunkRO34ZWKR_cjs.LeaseLimitPropertySchema; }
|
|
1695
1941
|
});
|
|
1696
1942
|
Object.defineProperty(exports, "LeasePropertySchema", {
|
|
1697
1943
|
enumerable: true,
|
|
1698
|
-
get: function () { return
|
|
1944
|
+
get: function () { return chunkRO34ZWKR_cjs.LeasePropertySchema; }
|
|
1699
1945
|
});
|
|
1700
1946
|
Object.defineProperty(exports, "LeaseSecondsPropertySchema", {
|
|
1701
1947
|
enumerable: true,
|
|
1702
|
-
get: function () { return
|
|
1948
|
+
get: function () { return chunkRO34ZWKR_cjs.LeaseSecondsPropertySchema; }
|
|
1703
1949
|
});
|
|
1704
1950
|
Object.defineProperty(exports, "LimitPropertySchema", {
|
|
1705
1951
|
enumerable: true,
|
|
1706
|
-
get: function () { return
|
|
1952
|
+
get: function () { return chunkRO34ZWKR_cjs.LimitPropertySchema; }
|
|
1707
1953
|
});
|
|
1708
1954
|
Object.defineProperty(exports, "MANIFEST_ID", {
|
|
1709
1955
|
enumerable: true,
|
|
1710
|
-
get: function () { return
|
|
1956
|
+
get: function () { return chunkRO34ZWKR_cjs.MANIFEST_ID; }
|
|
1711
1957
|
});
|
|
1712
1958
|
Object.defineProperty(exports, "MAX_CONCURRENCY_LIMIT", {
|
|
1713
1959
|
enumerable: true,
|
|
1714
|
-
get: function () { return
|
|
1960
|
+
get: function () { return chunkRO34ZWKR_cjs.MAX_CONCURRENCY_LIMIT; }
|
|
1715
1961
|
});
|
|
1716
1962
|
Object.defineProperty(exports, "MAX_PAGE_LIMIT", {
|
|
1717
1963
|
enumerable: true,
|
|
1718
|
-
get: function () { return
|
|
1964
|
+
get: function () { return chunkRO34ZWKR_cjs.MAX_PAGE_LIMIT; }
|
|
1719
1965
|
});
|
|
1720
1966
|
Object.defineProperty(exports, "OffsetPropertySchema", {
|
|
1721
1967
|
enumerable: true,
|
|
1722
|
-
get: function () { return
|
|
1968
|
+
get: function () { return chunkRO34ZWKR_cjs.OffsetPropertySchema; }
|
|
1723
1969
|
});
|
|
1724
1970
|
Object.defineProperty(exports, "OutputPropertySchema", {
|
|
1725
1971
|
enumerable: true,
|
|
1726
|
-
get: function () { return
|
|
1972
|
+
get: function () { return chunkRO34ZWKR_cjs.OutputPropertySchema; }
|
|
1727
1973
|
});
|
|
1728
1974
|
Object.defineProperty(exports, "ParamsPropertySchema", {
|
|
1729
1975
|
enumerable: true,
|
|
1730
|
-
get: function () { return
|
|
1976
|
+
get: function () { return chunkRO34ZWKR_cjs.ParamsPropertySchema; }
|
|
1731
1977
|
});
|
|
1732
1978
|
Object.defineProperty(exports, "PkceCredentialsObjectSchema", {
|
|
1733
1979
|
enumerable: true,
|
|
1734
|
-
get: function () { return
|
|
1980
|
+
get: function () { return chunkRO34ZWKR_cjs.PkceCredentialsObjectSchema; }
|
|
1735
1981
|
});
|
|
1736
1982
|
Object.defineProperty(exports, "RESOLVE_CREDENTIALS_ID", {
|
|
1737
1983
|
enumerable: true,
|
|
1738
|
-
get: function () { return
|
|
1984
|
+
get: function () { return chunkRO34ZWKR_cjs.RESOLVE_CREDENTIALS_ID; }
|
|
1739
1985
|
});
|
|
1740
1986
|
Object.defineProperty(exports, "RecordPropertySchema", {
|
|
1741
1987
|
enumerable: true,
|
|
1742
|
-
get: function () { return
|
|
1988
|
+
get: function () { return chunkRO34ZWKR_cjs.RecordPropertySchema; }
|
|
1743
1989
|
});
|
|
1744
1990
|
Object.defineProperty(exports, "RecordsPropertySchema", {
|
|
1745
1991
|
enumerable: true,
|
|
1746
|
-
get: function () { return
|
|
1992
|
+
get: function () { return chunkRO34ZWKR_cjs.RecordsPropertySchema; }
|
|
1747
1993
|
});
|
|
1748
1994
|
Object.defineProperty(exports, "RelayFetchSchema", {
|
|
1749
1995
|
enumerable: true,
|
|
1750
|
-
get: function () { return
|
|
1996
|
+
get: function () { return chunkRO34ZWKR_cjs.RelayFetchSchema; }
|
|
1751
1997
|
});
|
|
1752
1998
|
Object.defineProperty(exports, "RelayRequestSchema", {
|
|
1753
1999
|
enumerable: true,
|
|
1754
|
-
get: function () { return
|
|
2000
|
+
get: function () { return chunkRO34ZWKR_cjs.RelayRequestSchema; }
|
|
1755
2001
|
});
|
|
1756
2002
|
Object.defineProperty(exports, "ResolvedCredentialsSchema", {
|
|
1757
2003
|
enumerable: true,
|
|
1758
|
-
get: function () { return
|
|
2004
|
+
get: function () { return chunkRO34ZWKR_cjs.ResolvedCredentialsSchema; }
|
|
1759
2005
|
});
|
|
1760
2006
|
Object.defineProperty(exports, "SDK_OPTIONS_ID", {
|
|
1761
2007
|
enumerable: true,
|
|
1762
|
-
get: function () { return
|
|
2008
|
+
get: function () { return chunkRO34ZWKR_cjs.SDK_OPTIONS_ID; }
|
|
1763
2009
|
});
|
|
1764
2010
|
Object.defineProperty(exports, "TablePropertySchema", {
|
|
1765
2011
|
enumerable: true,
|
|
1766
|
-
get: function () { return
|
|
2012
|
+
get: function () { return chunkRO34ZWKR_cjs.TablePropertySchema; }
|
|
1767
2013
|
});
|
|
1768
2014
|
Object.defineProperty(exports, "TablesPropertySchema", {
|
|
1769
2015
|
enumerable: true,
|
|
1770
|
-
get: function () { return
|
|
2016
|
+
get: function () { return chunkRO34ZWKR_cjs.TablesPropertySchema; }
|
|
1771
2017
|
});
|
|
1772
2018
|
Object.defineProperty(exports, "TriggerInboxKeyPropertySchema", {
|
|
1773
2019
|
enumerable: true,
|
|
1774
|
-
get: function () { return
|
|
2020
|
+
get: function () { return chunkRO34ZWKR_cjs.TriggerInboxKeyPropertySchema; }
|
|
1775
2021
|
});
|
|
1776
2022
|
Object.defineProperty(exports, "TriggerInboxNamePropertySchema", {
|
|
1777
2023
|
enumerable: true,
|
|
1778
|
-
get: function () { return
|
|
2024
|
+
get: function () { return chunkRO34ZWKR_cjs.TriggerInboxNamePropertySchema; }
|
|
1779
2025
|
});
|
|
1780
2026
|
Object.defineProperty(exports, "TriggerInboxPropertySchema", {
|
|
1781
2027
|
enumerable: true,
|
|
1782
|
-
get: function () { return
|
|
2028
|
+
get: function () { return chunkRO34ZWKR_cjs.TriggerInboxPropertySchema; }
|
|
1783
2029
|
});
|
|
1784
2030
|
Object.defineProperty(exports, "WatchTriggerInboxSchema", {
|
|
1785
2031
|
enumerable: true,
|
|
1786
|
-
get: function () { return
|
|
2032
|
+
get: function () { return chunkRO34ZWKR_cjs.WatchTriggerInboxSchema; }
|
|
1787
2033
|
});
|
|
1788
2034
|
Object.defineProperty(exports, "ZAPIER_BASE_URL", {
|
|
1789
2035
|
enumerable: true,
|
|
1790
|
-
get: function () { return
|
|
2036
|
+
get: function () { return chunkRO34ZWKR_cjs.ZAPIER_BASE_URL; }
|
|
1791
2037
|
});
|
|
1792
2038
|
Object.defineProperty(exports, "ZAPIER_MAX_CONCURRENT_REQUESTS", {
|
|
1793
2039
|
enumerable: true,
|
|
1794
|
-
get: function () { return
|
|
2040
|
+
get: function () { return chunkRO34ZWKR_cjs.ZAPIER_MAX_CONCURRENT_REQUESTS; }
|
|
1795
2041
|
});
|
|
1796
2042
|
Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRIES", {
|
|
1797
2043
|
enumerable: true,
|
|
1798
|
-
get: function () { return
|
|
2044
|
+
get: function () { return chunkRO34ZWKR_cjs.ZAPIER_MAX_NETWORK_RETRIES; }
|
|
1799
2045
|
});
|
|
1800
2046
|
Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS", {
|
|
1801
2047
|
enumerable: true,
|
|
1802
|
-
get: function () { return
|
|
2048
|
+
get: function () { return chunkRO34ZWKR_cjs.ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS; }
|
|
1803
2049
|
});
|
|
1804
2050
|
Object.defineProperty(exports, "ZapierAbortDrainSignal", {
|
|
1805
2051
|
enumerable: true,
|
|
1806
|
-
get: function () { return
|
|
2052
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierAbortDrainSignal; }
|
|
1807
2053
|
});
|
|
1808
2054
|
Object.defineProperty(exports, "ZapierActionError", {
|
|
1809
2055
|
enumerable: true,
|
|
1810
|
-
get: function () { return
|
|
2056
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierActionError; }
|
|
1811
2057
|
});
|
|
1812
2058
|
Object.defineProperty(exports, "ZapierApiError", {
|
|
1813
2059
|
enumerable: true,
|
|
1814
|
-
get: function () { return
|
|
2060
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierApiError; }
|
|
1815
2061
|
});
|
|
1816
2062
|
Object.defineProperty(exports, "ZapierAppNotFoundError", {
|
|
1817
2063
|
enumerable: true,
|
|
1818
|
-
get: function () { return
|
|
2064
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierAppNotFoundError; }
|
|
1819
2065
|
});
|
|
1820
2066
|
Object.defineProperty(exports, "ZapierApprovalError", {
|
|
1821
2067
|
enumerable: true,
|
|
1822
|
-
get: function () { return
|
|
2068
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierApprovalError; }
|
|
1823
2069
|
});
|
|
1824
2070
|
Object.defineProperty(exports, "ZapierAuthenticationError", {
|
|
1825
2071
|
enumerable: true,
|
|
1826
|
-
get: function () { return
|
|
2072
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierAuthenticationError; }
|
|
1827
2073
|
});
|
|
1828
2074
|
Object.defineProperty(exports, "ZapierBundleError", {
|
|
1829
2075
|
enumerable: true,
|
|
1830
|
-
get: function () { return
|
|
2076
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierBundleError; }
|
|
1831
2077
|
});
|
|
1832
2078
|
Object.defineProperty(exports, "ZapierConfigurationError", {
|
|
1833
2079
|
enumerable: true,
|
|
1834
|
-
get: function () { return
|
|
2080
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierConfigurationError; }
|
|
1835
2081
|
});
|
|
1836
2082
|
Object.defineProperty(exports, "ZapierConflictError", {
|
|
1837
2083
|
enumerable: true,
|
|
1838
|
-
get: function () { return
|
|
2084
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierConflictError; }
|
|
1839
2085
|
});
|
|
1840
2086
|
Object.defineProperty(exports, "ZapierError", {
|
|
1841
2087
|
enumerable: true,
|
|
1842
|
-
get: function () { return
|
|
2088
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierError; }
|
|
1843
2089
|
});
|
|
1844
2090
|
Object.defineProperty(exports, "ZapierNotFoundError", {
|
|
1845
2091
|
enumerable: true,
|
|
1846
|
-
get: function () { return
|
|
2092
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierNotFoundError; }
|
|
1847
2093
|
});
|
|
1848
2094
|
Object.defineProperty(exports, "ZapierRateLimitError", {
|
|
1849
2095
|
enumerable: true,
|
|
1850
|
-
get: function () { return
|
|
2096
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierRateLimitError; }
|
|
1851
2097
|
});
|
|
1852
2098
|
Object.defineProperty(exports, "ZapierRelayError", {
|
|
1853
2099
|
enumerable: true,
|
|
1854
|
-
get: function () { return
|
|
2100
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierRelayError; }
|
|
1855
2101
|
});
|
|
1856
2102
|
Object.defineProperty(exports, "ZapierReleaseTriggerMessageSignal", {
|
|
1857
2103
|
enumerable: true,
|
|
1858
|
-
get: function () { return
|
|
2104
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierReleaseTriggerMessageSignal; }
|
|
1859
2105
|
});
|
|
1860
2106
|
Object.defineProperty(exports, "ZapierResourceNotFoundError", {
|
|
1861
2107
|
enumerable: true,
|
|
1862
|
-
get: function () { return
|
|
2108
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierResourceNotFoundError; }
|
|
1863
2109
|
});
|
|
1864
2110
|
Object.defineProperty(exports, "ZapierSignal", {
|
|
1865
2111
|
enumerable: true,
|
|
1866
|
-
get: function () { return
|
|
2112
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierSignal; }
|
|
1867
2113
|
});
|
|
1868
2114
|
Object.defineProperty(exports, "ZapierTimeoutError", {
|
|
1869
2115
|
enumerable: true,
|
|
1870
|
-
get: function () { return
|
|
2116
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierTimeoutError; }
|
|
1871
2117
|
});
|
|
1872
2118
|
Object.defineProperty(exports, "ZapierUnknownError", {
|
|
1873
2119
|
enumerable: true,
|
|
1874
|
-
get: function () { return
|
|
2120
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierUnknownError; }
|
|
1875
2121
|
});
|
|
1876
2122
|
Object.defineProperty(exports, "ZapierValidationError", {
|
|
1877
2123
|
enumerable: true,
|
|
1878
|
-
get: function () { return
|
|
2124
|
+
get: function () { return chunkRO34ZWKR_cjs.ZapierValidationError; }
|
|
1879
2125
|
});
|
|
1880
2126
|
Object.defineProperty(exports, "actionKeyResolver", {
|
|
1881
2127
|
enumerable: true,
|
|
1882
|
-
get: function () { return
|
|
2128
|
+
get: function () { return chunkRO34ZWKR_cjs.actionKeyResolver; }
|
|
1883
2129
|
});
|
|
1884
2130
|
Object.defineProperty(exports, "actionTypeResolver", {
|
|
1885
2131
|
enumerable: true,
|
|
1886
|
-
get: function () { return
|
|
2132
|
+
get: function () { return chunkRO34ZWKR_cjs.actionTypeResolver; }
|
|
1887
2133
|
});
|
|
1888
2134
|
Object.defineProperty(exports, "addPlugin", {
|
|
1889
2135
|
enumerable: true,
|
|
1890
|
-
get: function () { return
|
|
2136
|
+
get: function () { return chunkRO34ZWKR_cjs.addPlugin; }
|
|
1891
2137
|
});
|
|
1892
2138
|
Object.defineProperty(exports, "apiPlugin", {
|
|
1893
2139
|
enumerable: true,
|
|
1894
|
-
get: function () { return
|
|
2140
|
+
get: function () { return chunkRO34ZWKR_cjs.apiPlugin; }
|
|
1895
2141
|
});
|
|
1896
2142
|
Object.defineProperty(exports, "apiPluginRef", {
|
|
1897
2143
|
enumerable: true,
|
|
1898
|
-
get: function () { return
|
|
2144
|
+
get: function () { return chunkRO34ZWKR_cjs.apiPluginRef; }
|
|
1899
2145
|
});
|
|
1900
2146
|
Object.defineProperty(exports, "appKeyResolver", {
|
|
1901
2147
|
enumerable: true,
|
|
1902
|
-
get: function () { return
|
|
2148
|
+
get: function () { return chunkRO34ZWKR_cjs.appKeyResolver; }
|
|
1903
2149
|
});
|
|
1904
2150
|
Object.defineProperty(exports, "appsPlugin", {
|
|
1905
2151
|
enumerable: true,
|
|
1906
|
-
get: function () { return
|
|
2152
|
+
get: function () { return chunkRO34ZWKR_cjs.appsPlugin; }
|
|
1907
2153
|
});
|
|
1908
2154
|
Object.defineProperty(exports, "batch", {
|
|
1909
2155
|
enumerable: true,
|
|
1910
|
-
get: function () { return
|
|
2156
|
+
get: function () { return chunkRO34ZWKR_cjs.batch; }
|
|
1911
2157
|
});
|
|
1912
2158
|
Object.defineProperty(exports, "buildApplicationLifecycleEvent", {
|
|
1913
2159
|
enumerable: true,
|
|
1914
|
-
get: function () { return
|
|
2160
|
+
get: function () { return chunkRO34ZWKR_cjs.buildApplicationLifecycleEvent; }
|
|
1915
2161
|
});
|
|
1916
2162
|
Object.defineProperty(exports, "buildCapabilityMessage", {
|
|
1917
2163
|
enumerable: true,
|
|
1918
|
-
get: function () { return
|
|
2164
|
+
get: function () { return chunkRO34ZWKR_cjs.buildCapabilityMessage; }
|
|
1919
2165
|
});
|
|
1920
2166
|
Object.defineProperty(exports, "buildErrorEvent", {
|
|
1921
2167
|
enumerable: true,
|
|
1922
|
-
get: function () { return
|
|
2168
|
+
get: function () { return chunkRO34ZWKR_cjs.buildErrorEvent; }
|
|
1923
2169
|
});
|
|
1924
2170
|
Object.defineProperty(exports, "buildErrorEventWithContext", {
|
|
1925
2171
|
enumerable: true,
|
|
1926
|
-
get: function () { return
|
|
2172
|
+
get: function () { return chunkRO34ZWKR_cjs.buildErrorEventWithContext; }
|
|
1927
2173
|
});
|
|
1928
2174
|
Object.defineProperty(exports, "buildMethodCalledEvent", {
|
|
1929
2175
|
enumerable: true,
|
|
1930
|
-
get: function () { return
|
|
2176
|
+
get: function () { return chunkRO34ZWKR_cjs.buildMethodCalledEvent; }
|
|
1931
2177
|
});
|
|
1932
2178
|
Object.defineProperty(exports, "cleanupEventListeners", {
|
|
1933
2179
|
enumerable: true,
|
|
1934
|
-
get: function () { return
|
|
2180
|
+
get: function () { return chunkRO34ZWKR_cjs.cleanupEventListeners; }
|
|
1935
2181
|
});
|
|
1936
2182
|
Object.defineProperty(exports, "clearTokenCache", {
|
|
1937
2183
|
enumerable: true,
|
|
1938
|
-
get: function () { return
|
|
2184
|
+
get: function () { return chunkRO34ZWKR_cjs.clearTokenCache; }
|
|
1939
2185
|
});
|
|
1940
2186
|
Object.defineProperty(exports, "clientCredentialsNameResolver", {
|
|
1941
2187
|
enumerable: true,
|
|
1942
|
-
get: function () { return
|
|
2188
|
+
get: function () { return chunkRO34ZWKR_cjs.clientCredentialsNameResolver; }
|
|
1943
2189
|
});
|
|
1944
2190
|
Object.defineProperty(exports, "clientIdResolver", {
|
|
1945
2191
|
enumerable: true,
|
|
1946
|
-
get: function () { return
|
|
2192
|
+
get: function () { return chunkRO34ZWKR_cjs.clientIdResolver; }
|
|
1947
2193
|
});
|
|
1948
2194
|
Object.defineProperty(exports, "composePlugins", {
|
|
1949
2195
|
enumerable: true,
|
|
1950
|
-
get: function () { return
|
|
2196
|
+
get: function () { return chunkRO34ZWKR_cjs.composePlugins; }
|
|
1951
2197
|
});
|
|
1952
2198
|
Object.defineProperty(exports, "connectionIdGenericResolver", {
|
|
1953
2199
|
enumerable: true,
|
|
1954
|
-
get: function () { return
|
|
2200
|
+
get: function () { return chunkRO34ZWKR_cjs.connectionIdGenericResolver; }
|
|
1955
2201
|
});
|
|
1956
2202
|
Object.defineProperty(exports, "connectionIdResolver", {
|
|
1957
2203
|
enumerable: true,
|
|
1958
|
-
get: function () { return
|
|
2204
|
+
get: function () { return chunkRO34ZWKR_cjs.connectionIdResolver; }
|
|
1959
2205
|
});
|
|
1960
2206
|
Object.defineProperty(exports, "connectionsPlugin", {
|
|
1961
2207
|
enumerable: true,
|
|
1962
|
-
get: function () { return
|
|
2208
|
+
get: function () { return chunkRO34ZWKR_cjs.connectionsPlugin; }
|
|
1963
2209
|
});
|
|
1964
2210
|
Object.defineProperty(exports, "connectionsPluginRef", {
|
|
1965
2211
|
enumerable: true,
|
|
1966
|
-
get: function () { return
|
|
2212
|
+
get: function () { return chunkRO34ZWKR_cjs.connectionsPluginRef; }
|
|
1967
2213
|
});
|
|
1968
2214
|
Object.defineProperty(exports, "createBaseEvent", {
|
|
1969
2215
|
enumerable: true,
|
|
1970
|
-
get: function () { return
|
|
2216
|
+
get: function () { return chunkRO34ZWKR_cjs.createBaseEvent; }
|
|
1971
2217
|
});
|
|
1972
2218
|
Object.defineProperty(exports, "createClientCredentialsPlugin", {
|
|
1973
2219
|
enumerable: true,
|
|
1974
|
-
get: function () { return
|
|
2220
|
+
get: function () { return chunkRO34ZWKR_cjs.createClientCredentialsPlugin; }
|
|
1975
2221
|
});
|
|
1976
2222
|
Object.defineProperty(exports, "createController", {
|
|
1977
2223
|
enumerable: true,
|
|
1978
|
-
get: function () { return
|
|
2224
|
+
get: function () { return chunkRO34ZWKR_cjs.createController; }
|
|
1979
2225
|
});
|
|
1980
2226
|
Object.defineProperty(exports, "createCorePlugin", {
|
|
1981
2227
|
enumerable: true,
|
|
1982
|
-
get: function () { return
|
|
2228
|
+
get: function () { return chunkRO34ZWKR_cjs.createCorePlugin; }
|
|
1983
2229
|
});
|
|
1984
2230
|
Object.defineProperty(exports, "createFunction", {
|
|
1985
2231
|
enumerable: true,
|
|
1986
|
-
get: function () { return
|
|
2232
|
+
get: function () { return chunkRO34ZWKR_cjs.createFunction; }
|
|
1987
2233
|
});
|
|
1988
2234
|
Object.defineProperty(exports, "createMemoryCache", {
|
|
1989
2235
|
enumerable: true,
|
|
1990
|
-
get: function () { return
|
|
2236
|
+
get: function () { return chunkRO34ZWKR_cjs.createMemoryCache; }
|
|
1991
2237
|
});
|
|
1992
2238
|
Object.defineProperty(exports, "createPaginatedFunction", {
|
|
1993
2239
|
enumerable: true,
|
|
1994
|
-
get: function () { return
|
|
2240
|
+
get: function () { return chunkRO34ZWKR_cjs.createPaginatedFunction; }
|
|
1995
2241
|
});
|
|
1996
2242
|
Object.defineProperty(exports, "createPaginatedPluginMethod", {
|
|
1997
2243
|
enumerable: true,
|
|
1998
|
-
get: function () { return
|
|
2244
|
+
get: function () { return chunkRO34ZWKR_cjs.createPaginatedPluginMethod; }
|
|
1999
2245
|
});
|
|
2000
2246
|
Object.defineProperty(exports, "createPluginMethod", {
|
|
2001
2247
|
enumerable: true,
|
|
2002
|
-
get: function () { return
|
|
2248
|
+
get: function () { return chunkRO34ZWKR_cjs.createPluginMethod; }
|
|
2003
2249
|
});
|
|
2004
2250
|
Object.defineProperty(exports, "createPluginStack", {
|
|
2005
2251
|
enumerable: true,
|
|
2006
|
-
get: function () { return
|
|
2252
|
+
get: function () { return chunkRO34ZWKR_cjs.createPluginStack; }
|
|
2007
2253
|
});
|
|
2008
2254
|
Object.defineProperty(exports, "createSdk", {
|
|
2009
2255
|
enumerable: true,
|
|
2010
|
-
get: function () { return
|
|
2256
|
+
get: function () { return chunkRO34ZWKR_cjs.createSdk; }
|
|
2011
2257
|
});
|
|
2012
2258
|
Object.defineProperty(exports, "createTableFieldsPlugin", {
|
|
2013
2259
|
enumerable: true,
|
|
2014
|
-
get: function () { return
|
|
2260
|
+
get: function () { return chunkRO34ZWKR_cjs.createTableFieldsPlugin; }
|
|
2015
2261
|
});
|
|
2016
2262
|
Object.defineProperty(exports, "createTablePlugin", {
|
|
2017
2263
|
enumerable: true,
|
|
2018
|
-
get: function () { return
|
|
2264
|
+
get: function () { return chunkRO34ZWKR_cjs.createTablePlugin; }
|
|
2019
2265
|
});
|
|
2020
2266
|
Object.defineProperty(exports, "createTableRecordsPlugin", {
|
|
2021
2267
|
enumerable: true,
|
|
2022
|
-
get: function () { return
|
|
2268
|
+
get: function () { return chunkRO34ZWKR_cjs.createTableRecordsPlugin; }
|
|
2023
2269
|
});
|
|
2024
2270
|
Object.defineProperty(exports, "createZapierApi", {
|
|
2025
2271
|
enumerable: true,
|
|
2026
|
-
get: function () { return
|
|
2272
|
+
get: function () { return chunkRO34ZWKR_cjs.createZapierApi; }
|
|
2027
2273
|
});
|
|
2028
2274
|
Object.defineProperty(exports, "createZapierSdkWithoutRegistry", {
|
|
2029
2275
|
enumerable: true,
|
|
2030
|
-
get: function () { return
|
|
2276
|
+
get: function () { return chunkRO34ZWKR_cjs.createZapierSdkWithoutRegistry; }
|
|
2031
2277
|
});
|
|
2032
2278
|
Object.defineProperty(exports, "declareMethod", {
|
|
2033
2279
|
enumerable: true,
|
|
2034
|
-
get: function () { return
|
|
2280
|
+
get: function () { return chunkRO34ZWKR_cjs.declareMethod; }
|
|
2035
2281
|
});
|
|
2036
2282
|
Object.defineProperty(exports, "declareOptionalProperty", {
|
|
2037
2283
|
enumerable: true,
|
|
2038
|
-
get: function () { return
|
|
2284
|
+
get: function () { return chunkRO34ZWKR_cjs.declareOptionalProperty; }
|
|
2039
2285
|
});
|
|
2040
2286
|
Object.defineProperty(exports, "declarePlugin", {
|
|
2041
2287
|
enumerable: true,
|
|
2042
|
-
get: function () { return
|
|
2288
|
+
get: function () { return chunkRO34ZWKR_cjs.declarePlugin; }
|
|
2043
2289
|
});
|
|
2044
2290
|
Object.defineProperty(exports, "declareProperty", {
|
|
2045
2291
|
enumerable: true,
|
|
2046
|
-
get: function () { return
|
|
2292
|
+
get: function () { return chunkRO34ZWKR_cjs.declareProperty; }
|
|
2047
2293
|
});
|
|
2048
2294
|
Object.defineProperty(exports, "defineFormatter", {
|
|
2049
2295
|
enumerable: true,
|
|
2050
|
-
get: function () { return
|
|
2296
|
+
get: function () { return chunkRO34ZWKR_cjs.defineFormatter; }
|
|
2051
2297
|
});
|
|
2052
2298
|
Object.defineProperty(exports, "defineLegacyMerge", {
|
|
2053
2299
|
enumerable: true,
|
|
2054
|
-
get: function () { return
|
|
2300
|
+
get: function () { return chunkRO34ZWKR_cjs.defineLegacyMerge; }
|
|
2055
2301
|
});
|
|
2056
2302
|
Object.defineProperty(exports, "defineMethod", {
|
|
2057
2303
|
enumerable: true,
|
|
2058
|
-
get: function () { return
|
|
2304
|
+
get: function () { return chunkRO34ZWKR_cjs.defineMethod; }
|
|
2059
2305
|
});
|
|
2060
2306
|
Object.defineProperty(exports, "defineMethodOverride", {
|
|
2061
2307
|
enumerable: true,
|
|
2062
|
-
get: function () { return
|
|
2308
|
+
get: function () { return chunkRO34ZWKR_cjs.defineMethodOverride; }
|
|
2063
2309
|
});
|
|
2064
2310
|
Object.defineProperty(exports, "definePlugin", {
|
|
2065
2311
|
enumerable: true,
|
|
2066
|
-
get: function () { return
|
|
2312
|
+
get: function () { return chunkRO34ZWKR_cjs.definePlugin; }
|
|
2067
2313
|
});
|
|
2068
2314
|
Object.defineProperty(exports, "defineProperty", {
|
|
2069
2315
|
enumerable: true,
|
|
2070
|
-
get: function () { return
|
|
2316
|
+
get: function () { return chunkRO34ZWKR_cjs.defineProperty; }
|
|
2071
2317
|
});
|
|
2072
2318
|
Object.defineProperty(exports, "defineResolver", {
|
|
2073
2319
|
enumerable: true,
|
|
2074
|
-
get: function () { return
|
|
2320
|
+
get: function () { return chunkRO34ZWKR_cjs.defineResolver; }
|
|
2075
2321
|
});
|
|
2076
2322
|
Object.defineProperty(exports, "deleteClientCredentialsPlugin", {
|
|
2077
2323
|
enumerable: true,
|
|
2078
|
-
get: function () { return
|
|
2324
|
+
get: function () { return chunkRO34ZWKR_cjs.deleteClientCredentialsPlugin; }
|
|
2079
2325
|
});
|
|
2080
2326
|
Object.defineProperty(exports, "deleteTableFieldsPlugin", {
|
|
2081
2327
|
enumerable: true,
|
|
2082
|
-
get: function () { return
|
|
2328
|
+
get: function () { return chunkRO34ZWKR_cjs.deleteTableFieldsPlugin; }
|
|
2083
2329
|
});
|
|
2084
2330
|
Object.defineProperty(exports, "deleteTablePlugin", {
|
|
2085
2331
|
enumerable: true,
|
|
2086
|
-
get: function () { return
|
|
2332
|
+
get: function () { return chunkRO34ZWKR_cjs.deleteTablePlugin; }
|
|
2087
2333
|
});
|
|
2088
2334
|
Object.defineProperty(exports, "deleteTableRecordsPlugin", {
|
|
2089
2335
|
enumerable: true,
|
|
2090
|
-
get: function () { return
|
|
2336
|
+
get: function () { return chunkRO34ZWKR_cjs.deleteTableRecordsPlugin; }
|
|
2091
2337
|
});
|
|
2092
2338
|
Object.defineProperty(exports, "disposeSdk", {
|
|
2093
2339
|
enumerable: true,
|
|
2094
|
-
get: function () { return
|
|
2340
|
+
get: function () { return chunkRO34ZWKR_cjs.disposeSdk; }
|
|
2095
2341
|
});
|
|
2096
2342
|
Object.defineProperty(exports, "durableRunIdResolver", {
|
|
2097
2343
|
enumerable: true,
|
|
2098
|
-
get: function () { return
|
|
2344
|
+
get: function () { return chunkRO34ZWKR_cjs.durableRunIdResolver; }
|
|
2099
2345
|
});
|
|
2100
2346
|
Object.defineProperty(exports, "eventEmissionHookPlugin", {
|
|
2101
2347
|
enumerable: true,
|
|
2102
|
-
get: function () { return
|
|
2348
|
+
get: function () { return chunkRO34ZWKR_cjs.eventEmissionHookPlugin; }
|
|
2103
2349
|
});
|
|
2104
2350
|
Object.defineProperty(exports, "eventEmissionPlugin", {
|
|
2105
2351
|
enumerable: true,
|
|
2106
|
-
get: function () { return
|
|
2352
|
+
get: function () { return chunkRO34ZWKR_cjs.eventEmissionPlugin; }
|
|
2107
2353
|
});
|
|
2108
2354
|
Object.defineProperty(exports, "eventEmissionPluginRef", {
|
|
2109
2355
|
enumerable: true,
|
|
2110
|
-
get: function () { return
|
|
2356
|
+
get: function () { return chunkRO34ZWKR_cjs.eventEmissionPluginRef; }
|
|
2111
2357
|
});
|
|
2112
2358
|
Object.defineProperty(exports, "fetchPlugin", {
|
|
2113
2359
|
enumerable: true,
|
|
2114
|
-
get: function () { return
|
|
2360
|
+
get: function () { return chunkRO34ZWKR_cjs.fetchPlugin; }
|
|
2115
2361
|
});
|
|
2116
2362
|
Object.defineProperty(exports, "findFirstConnectionPlugin", {
|
|
2117
2363
|
enumerable: true,
|
|
2118
|
-
get: function () { return
|
|
2364
|
+
get: function () { return chunkRO34ZWKR_cjs.findFirstConnectionPlugin; }
|
|
2119
2365
|
});
|
|
2120
2366
|
Object.defineProperty(exports, "findManifestEntry", {
|
|
2121
2367
|
enumerable: true,
|
|
2122
|
-
get: function () { return
|
|
2368
|
+
get: function () { return chunkRO34ZWKR_cjs.findManifestEntry; }
|
|
2123
2369
|
});
|
|
2124
2370
|
Object.defineProperty(exports, "findUniqueConnectionPlugin", {
|
|
2125
2371
|
enumerable: true,
|
|
2126
|
-
get: function () { return
|
|
2372
|
+
get: function () { return chunkRO34ZWKR_cjs.findUniqueConnectionPlugin; }
|
|
2127
2373
|
});
|
|
2128
2374
|
Object.defineProperty(exports, "formatErrorMessage", {
|
|
2129
2375
|
enumerable: true,
|
|
2130
|
-
get: function () { return
|
|
2376
|
+
get: function () { return chunkRO34ZWKR_cjs.formatErrorMessage; }
|
|
2131
2377
|
});
|
|
2132
2378
|
Object.defineProperty(exports, "fromFunctionPlugin", {
|
|
2133
2379
|
enumerable: true,
|
|
2134
|
-
get: function () { return
|
|
2380
|
+
get: function () { return chunkRO34ZWKR_cjs.fromFunctionPlugin; }
|
|
2135
2381
|
});
|
|
2136
2382
|
Object.defineProperty(exports, "generateEventId", {
|
|
2137
2383
|
enumerable: true,
|
|
2138
|
-
get: function () { return
|
|
2384
|
+
get: function () { return chunkRO34ZWKR_cjs.generateEventId; }
|
|
2139
2385
|
});
|
|
2140
2386
|
Object.defineProperty(exports, "getActionInputFieldsSchemaPlugin", {
|
|
2141
2387
|
enumerable: true,
|
|
2142
|
-
get: function () { return
|
|
2388
|
+
get: function () { return chunkRO34ZWKR_cjs.getActionInputFieldsSchemaPlugin; }
|
|
2143
2389
|
});
|
|
2144
2390
|
Object.defineProperty(exports, "getActionPlugin", {
|
|
2145
2391
|
enumerable: true,
|
|
2146
|
-
get: function () { return
|
|
2392
|
+
get: function () { return chunkRO34ZWKR_cjs.getActionPlugin; }
|
|
2147
2393
|
});
|
|
2148
2394
|
Object.defineProperty(exports, "getAgent", {
|
|
2149
2395
|
enumerable: true,
|
|
2150
|
-
get: function () { return
|
|
2396
|
+
get: function () { return chunkRO34ZWKR_cjs.getAgent; }
|
|
2151
2397
|
});
|
|
2152
2398
|
Object.defineProperty(exports, "getAppPlugin", {
|
|
2153
2399
|
enumerable: true,
|
|
2154
|
-
get: function () { return
|
|
2400
|
+
get: function () { return chunkRO34ZWKR_cjs.getAppPlugin; }
|
|
2155
2401
|
});
|
|
2156
2402
|
Object.defineProperty(exports, "getBaseUrlFromCredentials", {
|
|
2157
2403
|
enumerable: true,
|
|
2158
|
-
get: function () { return
|
|
2404
|
+
get: function () { return chunkRO34ZWKR_cjs.getBaseUrlFromCredentials; }
|
|
2159
2405
|
});
|
|
2160
2406
|
Object.defineProperty(exports, "getCallerContext", {
|
|
2161
2407
|
enumerable: true,
|
|
2162
|
-
get: function () { return
|
|
2408
|
+
get: function () { return chunkRO34ZWKR_cjs.getCallerContext; }
|
|
2163
2409
|
});
|
|
2164
2410
|
Object.defineProperty(exports, "getCiPlatform", {
|
|
2165
2411
|
enumerable: true,
|
|
2166
|
-
get: function () { return
|
|
2412
|
+
get: function () { return chunkRO34ZWKR_cjs.getCiPlatform; }
|
|
2167
2413
|
});
|
|
2168
2414
|
Object.defineProperty(exports, "getClientIdFromCredentials", {
|
|
2169
2415
|
enumerable: true,
|
|
2170
|
-
get: function () { return
|
|
2416
|
+
get: function () { return chunkRO34ZWKR_cjs.getClientIdFromCredentials; }
|
|
2171
2417
|
});
|
|
2172
2418
|
Object.defineProperty(exports, "getConnectionPlugin", {
|
|
2173
2419
|
enumerable: true,
|
|
2174
|
-
get: function () { return
|
|
2420
|
+
get: function () { return chunkRO34ZWKR_cjs.getConnectionPlugin; }
|
|
2175
2421
|
});
|
|
2176
2422
|
Object.defineProperty(exports, "getContext", {
|
|
2177
2423
|
enumerable: true,
|
|
2178
|
-
get: function () { return
|
|
2424
|
+
get: function () { return chunkRO34ZWKR_cjs.getContext; }
|
|
2179
2425
|
});
|
|
2180
2426
|
Object.defineProperty(exports, "getCoreErrorCause", {
|
|
2181
2427
|
enumerable: true,
|
|
2182
|
-
get: function () { return
|
|
2428
|
+
get: function () { return chunkRO34ZWKR_cjs.getCoreErrorCause; }
|
|
2183
2429
|
});
|
|
2184
2430
|
Object.defineProperty(exports, "getCoreErrorCode", {
|
|
2185
2431
|
enumerable: true,
|
|
2186
|
-
get: function () { return
|
|
2432
|
+
get: function () { return chunkRO34ZWKR_cjs.getCoreErrorCode; }
|
|
2187
2433
|
});
|
|
2188
2434
|
Object.defineProperty(exports, "getCpuTime", {
|
|
2189
2435
|
enumerable: true,
|
|
2190
|
-
get: function () { return
|
|
2436
|
+
get: function () { return chunkRO34ZWKR_cjs.getCpuTime; }
|
|
2191
2437
|
});
|
|
2192
2438
|
Object.defineProperty(exports, "getCurrentTimestamp", {
|
|
2193
2439
|
enumerable: true,
|
|
2194
|
-
get: function () { return
|
|
2440
|
+
get: function () { return chunkRO34ZWKR_cjs.getCurrentTimestamp; }
|
|
2195
2441
|
});
|
|
2196
2442
|
Object.defineProperty(exports, "getMemoryUsage", {
|
|
2197
2443
|
enumerable: true,
|
|
2198
|
-
get: function () { return
|
|
2444
|
+
get: function () { return chunkRO34ZWKR_cjs.getMemoryUsage; }
|
|
2199
2445
|
});
|
|
2200
2446
|
Object.defineProperty(exports, "getOrCreateApiClient", {
|
|
2201
2447
|
enumerable: true,
|
|
2202
|
-
get: function () { return
|
|
2448
|
+
get: function () { return chunkRO34ZWKR_cjs.getOrCreateApiClient; }
|
|
2203
2449
|
});
|
|
2204
2450
|
Object.defineProperty(exports, "getOsInfo", {
|
|
2205
2451
|
enumerable: true,
|
|
2206
|
-
get: function () { return
|
|
2452
|
+
get: function () { return chunkRO34ZWKR_cjs.getOsInfo; }
|
|
2207
2453
|
});
|
|
2208
2454
|
Object.defineProperty(exports, "getPlatformVersions", {
|
|
2209
2455
|
enumerable: true,
|
|
2210
|
-
get: function () { return
|
|
2456
|
+
get: function () { return chunkRO34ZWKR_cjs.getPlatformVersions; }
|
|
2211
2457
|
});
|
|
2212
2458
|
Object.defineProperty(exports, "getPreferredManifestEntryKey", {
|
|
2213
2459
|
enumerable: true,
|
|
2214
|
-
get: function () { return
|
|
2460
|
+
get: function () { return chunkRO34ZWKR_cjs.getPreferredManifestEntryKey; }
|
|
2215
2461
|
});
|
|
2216
2462
|
Object.defineProperty(exports, "getProfilePlugin", {
|
|
2217
2463
|
enumerable: true,
|
|
2218
|
-
get: function () { return
|
|
2464
|
+
get: function () { return chunkRO34ZWKR_cjs.getProfilePlugin; }
|
|
2219
2465
|
});
|
|
2220
2466
|
Object.defineProperty(exports, "getRegistryPlugin", {
|
|
2221
2467
|
enumerable: true,
|
|
2222
|
-
get: function () { return
|
|
2468
|
+
get: function () { return chunkRO34ZWKR_cjs.getRegistryPlugin; }
|
|
2223
2469
|
});
|
|
2224
2470
|
Object.defineProperty(exports, "getReleaseId", {
|
|
2225
2471
|
enumerable: true,
|
|
2226
|
-
get: function () { return
|
|
2472
|
+
get: function () { return chunkRO34ZWKR_cjs.getReleaseId; }
|
|
2227
2473
|
});
|
|
2228
2474
|
Object.defineProperty(exports, "getTablePlugin", {
|
|
2229
2475
|
enumerable: true,
|
|
2230
|
-
get: function () { return
|
|
2476
|
+
get: function () { return chunkRO34ZWKR_cjs.getTablePlugin; }
|
|
2231
2477
|
});
|
|
2232
2478
|
Object.defineProperty(exports, "getTableRecordPlugin", {
|
|
2233
2479
|
enumerable: true,
|
|
2234
|
-
get: function () { return
|
|
2480
|
+
get: function () { return chunkRO34ZWKR_cjs.getTableRecordPlugin; }
|
|
2235
2481
|
});
|
|
2236
2482
|
Object.defineProperty(exports, "getTokenFromCliLogin", {
|
|
2237
2483
|
enumerable: true,
|
|
2238
|
-
get: function () { return
|
|
2484
|
+
get: function () { return chunkRO34ZWKR_cjs.getTokenFromCliLogin; }
|
|
2239
2485
|
});
|
|
2240
2486
|
Object.defineProperty(exports, "getTtyContext", {
|
|
2241
2487
|
enumerable: true,
|
|
2242
|
-
get: function () { return
|
|
2488
|
+
get: function () { return chunkRO34ZWKR_cjs.getTtyContext; }
|
|
2243
2489
|
});
|
|
2244
2490
|
Object.defineProperty(exports, "getZapierApprovalMode", {
|
|
2245
2491
|
enumerable: true,
|
|
2246
|
-
get: function () { return
|
|
2492
|
+
get: function () { return chunkRO34ZWKR_cjs.getZapierApprovalMode; }
|
|
2247
2493
|
});
|
|
2248
2494
|
Object.defineProperty(exports, "getZapierDefaultApprovalMode", {
|
|
2249
2495
|
enumerable: true,
|
|
2250
|
-
get: function () { return
|
|
2496
|
+
get: function () { return chunkRO34ZWKR_cjs.getZapierDefaultApprovalMode; }
|
|
2251
2497
|
});
|
|
2252
2498
|
Object.defineProperty(exports, "getZapierOpenAutoModeApprovalsInBrowser", {
|
|
2253
2499
|
enumerable: true,
|
|
2254
|
-
get: function () { return
|
|
2500
|
+
get: function () { return chunkRO34ZWKR_cjs.getZapierOpenAutoModeApprovalsInBrowser; }
|
|
2255
2501
|
});
|
|
2256
2502
|
Object.defineProperty(exports, "getZapierSdkService", {
|
|
2257
2503
|
enumerable: true,
|
|
2258
|
-
get: function () { return
|
|
2504
|
+
get: function () { return chunkRO34ZWKR_cjs.getZapierSdkService; }
|
|
2259
2505
|
});
|
|
2260
2506
|
Object.defineProperty(exports, "injectCliLogin", {
|
|
2261
2507
|
enumerable: true,
|
|
2262
|
-
get: function () { return
|
|
2508
|
+
get: function () { return chunkRO34ZWKR_cjs.injectCliLogin; }
|
|
2263
2509
|
});
|
|
2264
2510
|
Object.defineProperty(exports, "inputFieldKeyResolver", {
|
|
2265
2511
|
enumerable: true,
|
|
2266
|
-
get: function () { return
|
|
2512
|
+
get: function () { return chunkRO34ZWKR_cjs.inputFieldKeyResolver; }
|
|
2267
2513
|
});
|
|
2268
2514
|
Object.defineProperty(exports, "inputsAllOptionalResolver", {
|
|
2269
2515
|
enumerable: true,
|
|
2270
|
-
get: function () { return
|
|
2516
|
+
get: function () { return chunkRO34ZWKR_cjs.inputsAllOptionalResolver; }
|
|
2271
2517
|
});
|
|
2272
2518
|
Object.defineProperty(exports, "inputsResolver", {
|
|
2273
2519
|
enumerable: true,
|
|
2274
|
-
get: function () { return
|
|
2520
|
+
get: function () { return chunkRO34ZWKR_cjs.inputsResolver; }
|
|
2275
2521
|
});
|
|
2276
2522
|
Object.defineProperty(exports, "invalidateCachedToken", {
|
|
2277
2523
|
enumerable: true,
|
|
2278
|
-
get: function () { return
|
|
2524
|
+
get: function () { return chunkRO34ZWKR_cjs.invalidateCachedToken; }
|
|
2279
2525
|
});
|
|
2280
2526
|
Object.defineProperty(exports, "invalidateCredentialsToken", {
|
|
2281
2527
|
enumerable: true,
|
|
2282
|
-
get: function () { return
|
|
2528
|
+
get: function () { return chunkRO34ZWKR_cjs.invalidateCredentialsToken; }
|
|
2283
2529
|
});
|
|
2284
2530
|
Object.defineProperty(exports, "isCi", {
|
|
2285
2531
|
enumerable: true,
|
|
2286
|
-
get: function () { return
|
|
2532
|
+
get: function () { return chunkRO34ZWKR_cjs.isCi; }
|
|
2287
2533
|
});
|
|
2288
2534
|
Object.defineProperty(exports, "isCliLoginAvailable", {
|
|
2289
2535
|
enumerable: true,
|
|
2290
|
-
get: function () { return
|
|
2536
|
+
get: function () { return chunkRO34ZWKR_cjs.isCliLoginAvailable; }
|
|
2291
2537
|
});
|
|
2292
2538
|
Object.defineProperty(exports, "isClientCredentials", {
|
|
2293
2539
|
enumerable: true,
|
|
2294
|
-
get: function () { return
|
|
2540
|
+
get: function () { return chunkRO34ZWKR_cjs.isClientCredentials; }
|
|
2295
2541
|
});
|
|
2296
2542
|
Object.defineProperty(exports, "isCoreCancelledSignal", {
|
|
2297
2543
|
enumerable: true,
|
|
2298
|
-
get: function () { return
|
|
2544
|
+
get: function () { return chunkRO34ZWKR_cjs.isCoreCancelledSignal; }
|
|
2299
2545
|
});
|
|
2300
2546
|
Object.defineProperty(exports, "isCoreError", {
|
|
2301
2547
|
enumerable: true,
|
|
2302
|
-
get: function () { return
|
|
2548
|
+
get: function () { return chunkRO34ZWKR_cjs.isCoreError; }
|
|
2303
2549
|
});
|
|
2304
2550
|
Object.defineProperty(exports, "isCoreSignal", {
|
|
2305
2551
|
enumerable: true,
|
|
2306
|
-
get: function () { return
|
|
2552
|
+
get: function () { return chunkRO34ZWKR_cjs.isCoreSignal; }
|
|
2307
2553
|
});
|
|
2308
2554
|
Object.defineProperty(exports, "isCredentialsFunction", {
|
|
2309
2555
|
enumerable: true,
|
|
2310
|
-
get: function () { return
|
|
2556
|
+
get: function () { return chunkRO34ZWKR_cjs.isCredentialsFunction; }
|
|
2311
2557
|
});
|
|
2312
2558
|
Object.defineProperty(exports, "isCredentialsObject", {
|
|
2313
2559
|
enumerable: true,
|
|
2314
|
-
get: function () { return
|
|
2560
|
+
get: function () { return chunkRO34ZWKR_cjs.isCredentialsObject; }
|
|
2315
2561
|
});
|
|
2316
2562
|
Object.defineProperty(exports, "isPermanentHttpError", {
|
|
2317
2563
|
enumerable: true,
|
|
2318
|
-
get: function () { return
|
|
2564
|
+
get: function () { return chunkRO34ZWKR_cjs.isPermanentHttpError; }
|
|
2319
2565
|
});
|
|
2320
2566
|
Object.defineProperty(exports, "isPkceCredentials", {
|
|
2321
2567
|
enumerable: true,
|
|
2322
|
-
get: function () { return
|
|
2568
|
+
get: function () { return chunkRO34ZWKR_cjs.isPkceCredentials; }
|
|
2323
2569
|
});
|
|
2324
2570
|
Object.defineProperty(exports, "isPositional", {
|
|
2325
2571
|
enumerable: true,
|
|
2326
|
-
get: function () { return
|
|
2572
|
+
get: function () { return chunkRO34ZWKR_cjs.isPositional; }
|
|
2327
2573
|
});
|
|
2328
2574
|
Object.defineProperty(exports, "isZapierAbortDrainSignal", {
|
|
2329
2575
|
enumerable: true,
|
|
2330
|
-
get: function () { return
|
|
2576
|
+
get: function () { return chunkRO34ZWKR_cjs.isZapierAbortDrainSignal; }
|
|
2331
2577
|
});
|
|
2332
2578
|
Object.defineProperty(exports, "isZapierActionError", {
|
|
2333
2579
|
enumerable: true,
|
|
2334
|
-
get: function () { return
|
|
2580
|
+
get: function () { return chunkRO34ZWKR_cjs.isZapierActionError; }
|
|
2335
2581
|
});
|
|
2336
2582
|
Object.defineProperty(exports, "isZapierAppNotFoundError", {
|
|
2337
2583
|
enumerable: true,
|
|
2338
|
-
get: function () { return
|
|
2584
|
+
get: function () { return chunkRO34ZWKR_cjs.isZapierAppNotFoundError; }
|
|
2339
2585
|
});
|
|
2340
2586
|
Object.defineProperty(exports, "isZapierApprovalError", {
|
|
2341
2587
|
enumerable: true,
|
|
2342
|
-
get: function () { return
|
|
2588
|
+
get: function () { return chunkRO34ZWKR_cjs.isZapierApprovalError; }
|
|
2343
2589
|
});
|
|
2344
2590
|
Object.defineProperty(exports, "isZapierAuthenticationError", {
|
|
2345
2591
|
enumerable: true,
|
|
2346
|
-
get: function () { return
|
|
2592
|
+
get: function () { return chunkRO34ZWKR_cjs.isZapierAuthenticationError; }
|
|
2347
2593
|
});
|
|
2348
2594
|
Object.defineProperty(exports, "isZapierBundleError", {
|
|
2349
2595
|
enumerable: true,
|
|
2350
|
-
get: function () { return
|
|
2596
|
+
get: function () { return chunkRO34ZWKR_cjs.isZapierBundleError; }
|
|
2351
2597
|
});
|
|
2352
2598
|
Object.defineProperty(exports, "isZapierConflictError", {
|
|
2353
2599
|
enumerable: true,
|
|
2354
|
-
get: function () { return
|
|
2600
|
+
get: function () { return chunkRO34ZWKR_cjs.isZapierConflictError; }
|
|
2355
2601
|
});
|
|
2356
2602
|
Object.defineProperty(exports, "isZapierError", {
|
|
2357
2603
|
enumerable: true,
|
|
2358
|
-
get: function () { return
|
|
2604
|
+
get: function () { return chunkRO34ZWKR_cjs.isZapierError; }
|
|
2359
2605
|
});
|
|
2360
2606
|
Object.defineProperty(exports, "isZapierNotFoundError", {
|
|
2361
2607
|
enumerable: true,
|
|
2362
|
-
get: function () { return
|
|
2608
|
+
get: function () { return chunkRO34ZWKR_cjs.isZapierNotFoundError; }
|
|
2363
2609
|
});
|
|
2364
2610
|
Object.defineProperty(exports, "isZapierRateLimitError", {
|
|
2365
2611
|
enumerable: true,
|
|
2366
|
-
get: function () { return
|
|
2612
|
+
get: function () { return chunkRO34ZWKR_cjs.isZapierRateLimitError; }
|
|
2367
2613
|
});
|
|
2368
2614
|
Object.defineProperty(exports, "isZapierReleaseTriggerMessageSignal", {
|
|
2369
2615
|
enumerable: true,
|
|
2370
|
-
get: function () { return
|
|
2616
|
+
get: function () { return chunkRO34ZWKR_cjs.isZapierReleaseTriggerMessageSignal; }
|
|
2371
2617
|
});
|
|
2372
2618
|
Object.defineProperty(exports, "isZapierResourceNotFoundError", {
|
|
2373
2619
|
enumerable: true,
|
|
2374
|
-
get: function () { return
|
|
2620
|
+
get: function () { return chunkRO34ZWKR_cjs.isZapierResourceNotFoundError; }
|
|
2375
2621
|
});
|
|
2376
2622
|
Object.defineProperty(exports, "isZapierSignal", {
|
|
2377
2623
|
enumerable: true,
|
|
2378
|
-
get: function () { return
|
|
2624
|
+
get: function () { return chunkRO34ZWKR_cjs.isZapierSignal; }
|
|
2379
2625
|
});
|
|
2380
2626
|
Object.defineProperty(exports, "isZapierTimeoutError", {
|
|
2381
2627
|
enumerable: true,
|
|
2382
|
-
get: function () { return
|
|
2628
|
+
get: function () { return chunkRO34ZWKR_cjs.isZapierTimeoutError; }
|
|
2383
2629
|
});
|
|
2384
2630
|
Object.defineProperty(exports, "isZapierValidationError", {
|
|
2385
2631
|
enumerable: true,
|
|
2386
|
-
get: function () { return
|
|
2632
|
+
get: function () { return chunkRO34ZWKR_cjs.isZapierValidationError; }
|
|
2387
2633
|
});
|
|
2388
2634
|
Object.defineProperty(exports, "listActionInputFieldChoicesPlugin", {
|
|
2389
2635
|
enumerable: true,
|
|
2390
|
-
get: function () { return
|
|
2636
|
+
get: function () { return chunkRO34ZWKR_cjs.listActionInputFieldChoicesPlugin; }
|
|
2391
2637
|
});
|
|
2392
2638
|
Object.defineProperty(exports, "listActionInputFieldsPlugin", {
|
|
2393
2639
|
enumerable: true,
|
|
2394
|
-
get: function () { return
|
|
2640
|
+
get: function () { return chunkRO34ZWKR_cjs.listActionInputFieldsPlugin; }
|
|
2395
2641
|
});
|
|
2396
2642
|
Object.defineProperty(exports, "listActionsPlugin", {
|
|
2397
2643
|
enumerable: true,
|
|
2398
|
-
get: function () { return
|
|
2644
|
+
get: function () { return chunkRO34ZWKR_cjs.listActionsPlugin; }
|
|
2399
2645
|
});
|
|
2400
2646
|
Object.defineProperty(exports, "listAppsPlugin", {
|
|
2401
2647
|
enumerable: true,
|
|
2402
|
-
get: function () { return
|
|
2648
|
+
get: function () { return chunkRO34ZWKR_cjs.listAppsPlugin; }
|
|
2403
2649
|
});
|
|
2404
2650
|
Object.defineProperty(exports, "listClientCredentialsPlugin", {
|
|
2405
2651
|
enumerable: true,
|
|
2406
|
-
get: function () { return
|
|
2652
|
+
get: function () { return chunkRO34ZWKR_cjs.listClientCredentialsPlugin; }
|
|
2407
2653
|
});
|
|
2408
2654
|
Object.defineProperty(exports, "listConnectionsPlugin", {
|
|
2409
2655
|
enumerable: true,
|
|
2410
|
-
get: function () { return
|
|
2656
|
+
get: function () { return chunkRO34ZWKR_cjs.listConnectionsPlugin; }
|
|
2411
2657
|
});
|
|
2412
2658
|
Object.defineProperty(exports, "listTableFieldsPlugin", {
|
|
2413
2659
|
enumerable: true,
|
|
2414
|
-
get: function () { return
|
|
2660
|
+
get: function () { return chunkRO34ZWKR_cjs.listTableFieldsPlugin; }
|
|
2415
2661
|
});
|
|
2416
2662
|
Object.defineProperty(exports, "listTableRecordsPlugin", {
|
|
2417
2663
|
enumerable: true,
|
|
2418
|
-
get: function () { return
|
|
2664
|
+
get: function () { return chunkRO34ZWKR_cjs.listTableRecordsPlugin; }
|
|
2419
2665
|
});
|
|
2420
2666
|
Object.defineProperty(exports, "listTablesPlugin", {
|
|
2421
2667
|
enumerable: true,
|
|
2422
|
-
get: function () { return
|
|
2668
|
+
get: function () { return chunkRO34ZWKR_cjs.listTablesPlugin; }
|
|
2423
2669
|
});
|
|
2424
2670
|
Object.defineProperty(exports, "logDeprecation", {
|
|
2425
2671
|
enumerable: true,
|
|
2426
|
-
get: function () { return
|
|
2672
|
+
get: function () { return chunkRO34ZWKR_cjs.logDeprecation; }
|
|
2427
2673
|
});
|
|
2428
2674
|
Object.defineProperty(exports, "manifestPlugin", {
|
|
2429
2675
|
enumerable: true,
|
|
2430
|
-
get: function () { return
|
|
2676
|
+
get: function () { return chunkRO34ZWKR_cjs.manifestPlugin; }
|
|
2431
2677
|
});
|
|
2432
2678
|
Object.defineProperty(exports, "manifestPluginRef", {
|
|
2433
2679
|
enumerable: true,
|
|
2434
|
-
get: function () { return
|
|
2680
|
+
get: function () { return chunkRO34ZWKR_cjs.manifestPluginRef; }
|
|
2435
2681
|
});
|
|
2436
2682
|
Object.defineProperty(exports, "omitExports", {
|
|
2437
2683
|
enumerable: true,
|
|
2438
|
-
get: function () { return
|
|
2684
|
+
get: function () { return chunkRO34ZWKR_cjs.omitExports; }
|
|
2439
2685
|
});
|
|
2440
2686
|
Object.defineProperty(exports, "operationAnnotatorPlugin", {
|
|
2441
2687
|
enumerable: true,
|
|
2442
|
-
get: function () { return
|
|
2688
|
+
get: function () { return chunkRO34ZWKR_cjs.operationAnnotatorPlugin; }
|
|
2443
2689
|
});
|
|
2444
2690
|
Object.defineProperty(exports, "parseConcurrencyEnvVar", {
|
|
2445
2691
|
enumerable: true,
|
|
2446
|
-
get: function () { return
|
|
2692
|
+
get: function () { return chunkRO34ZWKR_cjs.parseConcurrencyEnvVar; }
|
|
2447
2693
|
});
|
|
2448
2694
|
Object.defineProperty(exports, "readManifestFromFile", {
|
|
2449
2695
|
enumerable: true,
|
|
2450
|
-
get: function () { return
|
|
2696
|
+
get: function () { return chunkRO34ZWKR_cjs.readManifestFromFile; }
|
|
2451
2697
|
});
|
|
2452
2698
|
Object.defineProperty(exports, "registryPlugin", {
|
|
2453
2699
|
enumerable: true,
|
|
2454
|
-
get: function () { return
|
|
2700
|
+
get: function () { return chunkRO34ZWKR_cjs.registryPlugin; }
|
|
2455
2701
|
});
|
|
2456
2702
|
Object.defineProperty(exports, "requestPlugin", {
|
|
2457
2703
|
enumerable: true,
|
|
2458
|
-
get: function () { return
|
|
2704
|
+
get: function () { return chunkRO34ZWKR_cjs.requestPlugin; }
|
|
2459
2705
|
});
|
|
2460
2706
|
Object.defineProperty(exports, "resetDeprecationWarnings", {
|
|
2461
2707
|
enumerable: true,
|
|
2462
|
-
get: function () { return
|
|
2708
|
+
get: function () { return chunkRO34ZWKR_cjs.resetDeprecationWarnings; }
|
|
2463
2709
|
});
|
|
2464
2710
|
Object.defineProperty(exports, "resolveAuth", {
|
|
2465
2711
|
enumerable: true,
|
|
2466
|
-
get: function () { return
|
|
2712
|
+
get: function () { return chunkRO34ZWKR_cjs.resolveAuth; }
|
|
2467
2713
|
});
|
|
2468
2714
|
Object.defineProperty(exports, "resolveAuthToken", {
|
|
2469
2715
|
enumerable: true,
|
|
2470
|
-
get: function () { return
|
|
2716
|
+
get: function () { return chunkRO34ZWKR_cjs.resolveAuthToken; }
|
|
2471
2717
|
});
|
|
2472
2718
|
Object.defineProperty(exports, "resolveCredentials", {
|
|
2473
2719
|
enumerable: true,
|
|
2474
|
-
get: function () { return
|
|
2720
|
+
get: function () { return chunkRO34ZWKR_cjs.resolveCredentials; }
|
|
2475
2721
|
});
|
|
2476
2722
|
Object.defineProperty(exports, "resolveCredentialsFromEnv", {
|
|
2477
2723
|
enumerable: true,
|
|
2478
|
-
get: function () { return
|
|
2724
|
+
get: function () { return chunkRO34ZWKR_cjs.resolveCredentialsFromEnv; }
|
|
2479
2725
|
});
|
|
2480
2726
|
Object.defineProperty(exports, "resolveCredentialsPlugin", {
|
|
2481
2727
|
enumerable: true,
|
|
2482
|
-
get: function () { return
|
|
2728
|
+
get: function () { return chunkRO34ZWKR_cjs.resolveCredentialsPlugin; }
|
|
2483
2729
|
});
|
|
2484
2730
|
Object.defineProperty(exports, "resolveCredentialsPluginRef", {
|
|
2485
2731
|
enumerable: true,
|
|
2486
|
-
get: function () { return
|
|
2732
|
+
get: function () { return chunkRO34ZWKR_cjs.resolveCredentialsPluginRef; }
|
|
2487
2733
|
});
|
|
2488
2734
|
Object.defineProperty(exports, "resolvePlugin", {
|
|
2489
2735
|
enumerable: true,
|
|
2490
|
-
get: function () { return
|
|
2736
|
+
get: function () { return chunkRO34ZWKR_cjs.resolvePlugin; }
|
|
2491
2737
|
});
|
|
2492
2738
|
Object.defineProperty(exports, "runActionPlugin", {
|
|
2493
2739
|
enumerable: true,
|
|
2494
|
-
get: function () { return
|
|
2740
|
+
get: function () { return chunkRO34ZWKR_cjs.runActionPlugin; }
|
|
2495
2741
|
});
|
|
2496
2742
|
Object.defineProperty(exports, "runInMethodScope", {
|
|
2497
2743
|
enumerable: true,
|
|
2498
|
-
get: function () { return
|
|
2744
|
+
get: function () { return chunkRO34ZWKR_cjs.runInMethodScope; }
|
|
2499
2745
|
});
|
|
2500
2746
|
Object.defineProperty(exports, "runWithCallerContext", {
|
|
2501
2747
|
enumerable: true,
|
|
2502
|
-
get: function () { return
|
|
2748
|
+
get: function () { return chunkRO34ZWKR_cjs.runWithCallerContext; }
|
|
2503
2749
|
});
|
|
2504
2750
|
Object.defineProperty(exports, "runWithTelemetryContext", {
|
|
2505
2751
|
enumerable: true,
|
|
2506
|
-
get: function () { return
|
|
2752
|
+
get: function () { return chunkRO34ZWKR_cjs.runWithTelemetryContext; }
|
|
2507
2753
|
});
|
|
2508
2754
|
Object.defineProperty(exports, "sdkOptionsPluginRef", {
|
|
2509
2755
|
enumerable: true,
|
|
2510
|
-
get: function () { return
|
|
2756
|
+
get: function () { return chunkRO34ZWKR_cjs.sdkOptionsPluginRef; }
|
|
2511
2757
|
});
|
|
2512
2758
|
Object.defineProperty(exports, "selectExports", {
|
|
2513
2759
|
enumerable: true,
|
|
2514
|
-
get: function () { return
|
|
2760
|
+
get: function () { return chunkRO34ZWKR_cjs.selectExports; }
|
|
2515
2761
|
});
|
|
2516
2762
|
Object.defineProperty(exports, "tableFieldIdsResolver", {
|
|
2517
2763
|
enumerable: true,
|
|
2518
|
-
get: function () { return
|
|
2764
|
+
get: function () { return chunkRO34ZWKR_cjs.tableFieldIdsResolver; }
|
|
2519
2765
|
});
|
|
2520
2766
|
Object.defineProperty(exports, "tableFieldsResolver", {
|
|
2521
2767
|
enumerable: true,
|
|
2522
|
-
get: function () { return
|
|
2768
|
+
get: function () { return chunkRO34ZWKR_cjs.tableFieldsResolver; }
|
|
2523
2769
|
});
|
|
2524
2770
|
Object.defineProperty(exports, "tableFiltersResolver", {
|
|
2525
2771
|
enumerable: true,
|
|
2526
|
-
get: function () { return
|
|
2772
|
+
get: function () { return chunkRO34ZWKR_cjs.tableFiltersResolver; }
|
|
2527
2773
|
});
|
|
2528
2774
|
Object.defineProperty(exports, "tableIdResolver", {
|
|
2529
2775
|
enumerable: true,
|
|
2530
|
-
get: function () { return
|
|
2776
|
+
get: function () { return chunkRO34ZWKR_cjs.tableIdResolver; }
|
|
2531
2777
|
});
|
|
2532
2778
|
Object.defineProperty(exports, "tableNameResolver", {
|
|
2533
2779
|
enumerable: true,
|
|
2534
|
-
get: function () { return
|
|
2780
|
+
get: function () { return chunkRO34ZWKR_cjs.tableNameResolver; }
|
|
2535
2781
|
});
|
|
2536
2782
|
Object.defineProperty(exports, "tableRecordIdResolver", {
|
|
2537
2783
|
enumerable: true,
|
|
2538
|
-
get: function () { return
|
|
2784
|
+
get: function () { return chunkRO34ZWKR_cjs.tableRecordIdResolver; }
|
|
2539
2785
|
});
|
|
2540
2786
|
Object.defineProperty(exports, "tableRecordIdsResolver", {
|
|
2541
2787
|
enumerable: true,
|
|
2542
|
-
get: function () { return
|
|
2788
|
+
get: function () { return chunkRO34ZWKR_cjs.tableRecordIdsResolver; }
|
|
2543
2789
|
});
|
|
2544
2790
|
Object.defineProperty(exports, "tableRecordsResolver", {
|
|
2545
2791
|
enumerable: true,
|
|
2546
|
-
get: function () { return
|
|
2792
|
+
get: function () { return chunkRO34ZWKR_cjs.tableRecordsResolver; }
|
|
2547
2793
|
});
|
|
2548
2794
|
Object.defineProperty(exports, "tableSortResolver", {
|
|
2549
2795
|
enumerable: true,
|
|
2550
|
-
get: function () { return
|
|
2796
|
+
get: function () { return chunkRO34ZWKR_cjs.tableSortResolver; }
|
|
2551
2797
|
});
|
|
2552
2798
|
Object.defineProperty(exports, "tableUpdateRecordsResolver", {
|
|
2553
2799
|
enumerable: true,
|
|
2554
|
-
get: function () { return
|
|
2800
|
+
get: function () { return chunkRO34ZWKR_cjs.tableUpdateRecordsResolver; }
|
|
2555
2801
|
});
|
|
2556
2802
|
Object.defineProperty(exports, "toSnakeCase", {
|
|
2557
2803
|
enumerable: true,
|
|
2558
|
-
get: function () { return
|
|
2804
|
+
get: function () { return chunkRO34ZWKR_cjs.toSnakeCase; }
|
|
2559
2805
|
});
|
|
2560
2806
|
Object.defineProperty(exports, "toTitleCase", {
|
|
2561
2807
|
enumerable: true,
|
|
2562
|
-
get: function () { return
|
|
2808
|
+
get: function () { return chunkRO34ZWKR_cjs.toTitleCase; }
|
|
2563
2809
|
});
|
|
2564
2810
|
Object.defineProperty(exports, "triggerInboxResolver", {
|
|
2565
2811
|
enumerable: true,
|
|
2566
|
-
get: function () { return
|
|
2812
|
+
get: function () { return chunkRO34ZWKR_cjs.triggerInboxResolver; }
|
|
2567
2813
|
});
|
|
2568
2814
|
Object.defineProperty(exports, "triggerMessagesResolver", {
|
|
2569
2815
|
enumerable: true,
|
|
2570
|
-
get: function () { return
|
|
2816
|
+
get: function () { return chunkRO34ZWKR_cjs.triggerMessagesResolver; }
|
|
2571
2817
|
});
|
|
2572
2818
|
Object.defineProperty(exports, "updateTableRecordsPlugin", {
|
|
2573
2819
|
enumerable: true,
|
|
2574
|
-
get: function () { return
|
|
2820
|
+
get: function () { return chunkRO34ZWKR_cjs.updateTableRecordsPlugin; }
|
|
2575
2821
|
});
|
|
2576
2822
|
Object.defineProperty(exports, "workflowDraftIdResolver", {
|
|
2577
2823
|
enumerable: true,
|
|
2578
|
-
get: function () { return
|
|
2824
|
+
get: function () { return chunkRO34ZWKR_cjs.workflowDraftIdResolver; }
|
|
2579
2825
|
});
|
|
2580
2826
|
Object.defineProperty(exports, "workflowIdResolver", {
|
|
2581
2827
|
enumerable: true,
|
|
2582
|
-
get: function () { return
|
|
2828
|
+
get: function () { return chunkRO34ZWKR_cjs.workflowIdResolver; }
|
|
2583
2829
|
});
|
|
2584
2830
|
Object.defineProperty(exports, "workflowRunIdResolver", {
|
|
2585
2831
|
enumerable: true,
|
|
2586
|
-
get: function () { return
|
|
2832
|
+
get: function () { return chunkRO34ZWKR_cjs.workflowRunIdResolver; }
|
|
2587
2833
|
});
|
|
2588
2834
|
Object.defineProperty(exports, "workflowVersionIdResolver", {
|
|
2589
2835
|
enumerable: true,
|
|
2590
|
-
get: function () { return
|
|
2836
|
+
get: function () { return chunkRO34ZWKR_cjs.workflowVersionIdResolver; }
|
|
2591
2837
|
});
|
|
2592
2838
|
Object.defineProperty(exports, "zapierAdaptError", {
|
|
2593
2839
|
enumerable: true,
|
|
2594
|
-
get: function () { return
|
|
2840
|
+
get: function () { return chunkRO34ZWKR_cjs.zapierAdaptError; }
|
|
2595
2841
|
});
|
|
2596
2842
|
Object.defineProperty(exports, "zapierCoreOptions", {
|
|
2597
2843
|
enumerable: true,
|
|
2598
|
-
get: function () { return
|
|
2844
|
+
get: function () { return chunkRO34ZWKR_cjs.zapierCoreOptions; }
|
|
2599
2845
|
});
|
|
2600
2846
|
Object.defineProperty(exports, "zapierSdkPlugin", {
|
|
2601
2847
|
enumerable: true,
|
|
2602
|
-
get: function () { return
|
|
2848
|
+
get: function () { return chunkRO34ZWKR_cjs.zapierSdkPlugin; }
|
|
2603
2849
|
});
|
|
2604
2850
|
exports.createZapierSdk = createZapierSdk;
|
|
2605
2851
|
exports.zapierExperimentalSdkPlugin = zapierExperimentalSdkPlugin;
|