@zapier/zapier-sdk 0.91.1 → 0.92.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/README.md +22 -15
- package/dist/{chunk-22USOWAR.mjs → chunk-6B4QZVQM.mjs} +264 -22
- package/dist/{chunk-6HEA7RSA.cjs → chunk-WFWTHI2N.cjs} +264 -22
- package/dist/experimental.cjs +476 -374
- package/dist/experimental.d.mts +140 -3
- package/dist/experimental.d.ts +140 -3
- package/dist/experimental.mjs +105 -3
- package/dist/{index-BBBkZ80x.d.mts → index-CBwO7l3J.d.mts} +212 -4
- package/dist/{index-BBBkZ80x.d.ts → index-CBwO7l3J.d.ts} +212 -4
- package/dist/index.cjs +272 -272
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/experimental.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkWFWTHI2N_cjs = require('./chunk-WFWTHI2N.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 chunkWFWTHI2N_cjs.ZapierValidationError(
|
|
54
54
|
`connections["${alias}"] is missing connectionId`
|
|
55
55
|
);
|
|
56
56
|
}
|
|
@@ -77,7 +77,7 @@ var TriggerConfigSchema = zod.z.object({
|
|
|
77
77
|
function toWireTrigger(trigger) {
|
|
78
78
|
const selectedApi = trigger.selectedApi ?? trigger.selected_api;
|
|
79
79
|
if (selectedApi === void 0) {
|
|
80
|
-
throw new
|
|
80
|
+
throw new chunkWFWTHI2N_cjs.ZapierValidationError("trigger is missing selectedApi");
|
|
81
81
|
}
|
|
82
82
|
const wire = {
|
|
83
83
|
selected_api: selectedApi,
|
|
@@ -98,7 +98,7 @@ function toWireAppVersions(appVersions) {
|
|
|
98
98
|
for (const [key, entry] of Object.entries(appVersions)) {
|
|
99
99
|
const implementationName = entry.implementationName ?? entry.implementation_name;
|
|
100
100
|
if (implementationName === void 0) {
|
|
101
|
-
throw new
|
|
101
|
+
throw new chunkWFWTHI2N_cjs.ZapierValidationError(
|
|
102
102
|
`appVersions["${key}"] is missing implementationName`
|
|
103
103
|
);
|
|
104
104
|
}
|
|
@@ -262,17 +262,18 @@ var ListWorkflowsApiResponseSchema = zod.z.object({
|
|
|
262
262
|
});
|
|
263
263
|
|
|
264
264
|
// src/plugins/codeSubstrate/listWorkflows/index.ts
|
|
265
|
-
var listWorkflowsPlugin =
|
|
265
|
+
var listWorkflowsPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
266
266
|
...codeSubstrateDefaults,
|
|
267
267
|
name: "listWorkflows",
|
|
268
|
-
imports: [
|
|
268
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
269
269
|
type: "list",
|
|
270
270
|
itemType: "Workflow",
|
|
271
271
|
inputSchema: ListWorkflowsOptionsSchema,
|
|
272
272
|
outputSchema: WorkflowItemSchema,
|
|
273
|
+
skipOutputValidation: true,
|
|
273
274
|
// The handler already returns a clean `{ data, nextCursor }` page, so the
|
|
274
275
|
// standard list output (no `adaptPage`) applies.
|
|
275
|
-
output: { type: "list", defaultPageSize:
|
|
276
|
+
output: { type: "list", defaultPageSize: chunkWFWTHI2N_cjs.DEFAULT_PAGE_SIZE },
|
|
276
277
|
run: async ({ imports, input }) => {
|
|
277
278
|
const api = imports.api;
|
|
278
279
|
const searchParams = {};
|
|
@@ -343,15 +344,16 @@ var GetWorkflowResponseSchema = zod.z.object({
|
|
|
343
344
|
});
|
|
344
345
|
|
|
345
346
|
// src/plugins/codeSubstrate/getWorkflow/index.ts
|
|
346
|
-
var getWorkflowPlugin =
|
|
347
|
+
var getWorkflowPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
347
348
|
...codeSubstrateDefaults,
|
|
348
349
|
name: "getWorkflow",
|
|
349
|
-
imports: [
|
|
350
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
350
351
|
itemType: "Workflow",
|
|
351
352
|
inputSchema: GetWorkflowOptionsSchema,
|
|
352
353
|
outputSchema: GetWorkflowResponseSchema,
|
|
354
|
+
skipOutputValidation: true,
|
|
353
355
|
output: "item",
|
|
354
|
-
resolvers: { workflow:
|
|
356
|
+
resolvers: { workflow: chunkWFWTHI2N_cjs.workflowIdResolver },
|
|
355
357
|
run: async ({ imports, input }) => {
|
|
356
358
|
const api = imports.api;
|
|
357
359
|
const raw = await api.get(
|
|
@@ -393,14 +395,15 @@ var CreateWorkflowResponseSchema = zod.z.object({
|
|
|
393
395
|
});
|
|
394
396
|
|
|
395
397
|
// src/plugins/codeSubstrate/createWorkflow/index.ts
|
|
396
|
-
var createWorkflowPlugin =
|
|
398
|
+
var createWorkflowPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
397
399
|
...codeSubstrateDefaults,
|
|
398
400
|
name: "createWorkflow",
|
|
399
|
-
imports: [
|
|
401
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
400
402
|
type: "create",
|
|
401
403
|
itemType: "Workflow",
|
|
402
404
|
inputSchema: CreateWorkflowOptionsSchema,
|
|
403
405
|
outputSchema: CreateWorkflowResponseSchema,
|
|
406
|
+
skipOutputValidation: true,
|
|
404
407
|
output: "item",
|
|
405
408
|
run: async ({ imports, input }) => {
|
|
406
409
|
const api = imports.api;
|
|
@@ -444,16 +447,17 @@ var UpdateWorkflowResponseSchema = zod.z.object({
|
|
|
444
447
|
});
|
|
445
448
|
|
|
446
449
|
// src/plugins/codeSubstrate/updateWorkflow/index.ts
|
|
447
|
-
var updateWorkflowPlugin =
|
|
450
|
+
var updateWorkflowPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
448
451
|
...codeSubstrateDefaults,
|
|
449
452
|
name: "updateWorkflow",
|
|
450
|
-
imports: [
|
|
453
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
451
454
|
type: "update",
|
|
452
455
|
itemType: "Workflow",
|
|
453
456
|
inputSchema: UpdateWorkflowOptionsSchema,
|
|
454
457
|
outputSchema: UpdateWorkflowResponseSchema,
|
|
458
|
+
skipOutputValidation: true,
|
|
455
459
|
output: "item",
|
|
456
|
-
resolvers: { workflow:
|
|
460
|
+
resolvers: { workflow: chunkWFWTHI2N_cjs.workflowIdResolver },
|
|
457
461
|
run: async ({ imports, input }) => {
|
|
458
462
|
const api = imports.api;
|
|
459
463
|
const body = {};
|
|
@@ -483,16 +487,17 @@ var EnableWorkflowResponseSchema = zod.z.object({
|
|
|
483
487
|
});
|
|
484
488
|
|
|
485
489
|
// src/plugins/codeSubstrate/enableWorkflow/index.ts
|
|
486
|
-
var enableWorkflowPlugin =
|
|
490
|
+
var enableWorkflowPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
487
491
|
...codeSubstrateDefaults,
|
|
488
492
|
name: "enableWorkflow",
|
|
489
|
-
imports: [
|
|
493
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
490
494
|
type: "update",
|
|
491
495
|
itemType: "Workflow",
|
|
492
496
|
inputSchema: EnableWorkflowOptionsSchema,
|
|
493
497
|
outputSchema: EnableWorkflowResponseSchema,
|
|
498
|
+
skipOutputValidation: true,
|
|
494
499
|
output: "item",
|
|
495
|
-
resolvers: { workflow:
|
|
500
|
+
resolvers: { workflow: chunkWFWTHI2N_cjs.workflowIdResolver },
|
|
496
501
|
run: async ({ imports, input }) => {
|
|
497
502
|
const api = imports.api;
|
|
498
503
|
const raw = await api.post(
|
|
@@ -517,16 +522,17 @@ var DisableWorkflowResponseSchema = zod.z.object({
|
|
|
517
522
|
});
|
|
518
523
|
|
|
519
524
|
// src/plugins/codeSubstrate/disableWorkflow/index.ts
|
|
520
|
-
var disableWorkflowPlugin =
|
|
525
|
+
var disableWorkflowPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
521
526
|
...codeSubstrateDefaults,
|
|
522
527
|
name: "disableWorkflow",
|
|
523
|
-
imports: [
|
|
528
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
524
529
|
type: "update",
|
|
525
530
|
itemType: "Workflow",
|
|
526
531
|
inputSchema: DisableWorkflowOptionsSchema,
|
|
527
532
|
outputSchema: DisableWorkflowResponseSchema,
|
|
533
|
+
skipOutputValidation: true,
|
|
528
534
|
output: "item",
|
|
529
|
-
resolvers: { workflow:
|
|
535
|
+
resolvers: { workflow: chunkWFWTHI2N_cjs.workflowIdResolver },
|
|
530
536
|
run: async ({ imports, input }) => {
|
|
531
537
|
const api = imports.api;
|
|
532
538
|
const raw = await api.post(
|
|
@@ -550,17 +556,18 @@ var DeleteWorkflowResponseSchema = zod.z.object({
|
|
|
550
556
|
});
|
|
551
557
|
|
|
552
558
|
// src/plugins/codeSubstrate/deleteWorkflow/index.ts
|
|
553
|
-
var deleteWorkflowPlugin =
|
|
559
|
+
var deleteWorkflowPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
554
560
|
...codeSubstrateDefaults,
|
|
555
561
|
name: "deleteWorkflow",
|
|
556
|
-
imports: [
|
|
562
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
557
563
|
type: "delete",
|
|
558
564
|
itemType: "Workflow",
|
|
559
565
|
confirm: "delete",
|
|
560
566
|
inputSchema: DeleteWorkflowOptionsSchema,
|
|
561
567
|
outputSchema: DeleteWorkflowResponseSchema,
|
|
568
|
+
skipOutputValidation: true,
|
|
562
569
|
output: "raw",
|
|
563
|
-
resolvers: { workflow:
|
|
570
|
+
resolvers: { workflow: chunkWFWTHI2N_cjs.workflowIdResolver },
|
|
564
571
|
run: async ({ imports, input }) => {
|
|
565
572
|
const api = imports.api;
|
|
566
573
|
await api.delete(
|
|
@@ -574,7 +581,7 @@ var deleteWorkflowPlugin = chunk6HEA7RSA_cjs.defineMethod({
|
|
|
574
581
|
return { data: { id: input.workflow } };
|
|
575
582
|
}
|
|
576
583
|
});
|
|
577
|
-
var RunStatusSchema =
|
|
584
|
+
var RunStatusSchema = chunkWFWTHI2N_cjs.openEnum(
|
|
578
585
|
["initialized", "started", "finished", "failed", "cancelled"],
|
|
579
586
|
"Run lifecycle status. `finished` / `failed` / `cancelled` are terminal."
|
|
580
587
|
);
|
|
@@ -621,17 +628,18 @@ var ListDurableRunsApiResponseSchema = zod.z.object({
|
|
|
621
628
|
});
|
|
622
629
|
|
|
623
630
|
// src/plugins/codeSubstrate/listDurableRuns/index.ts
|
|
624
|
-
var listDurableRunsPlugin =
|
|
631
|
+
var listDurableRunsPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
625
632
|
...codeSubstrateDefaults,
|
|
626
633
|
name: "listDurableRuns",
|
|
627
|
-
imports: [
|
|
634
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
628
635
|
type: "list",
|
|
629
636
|
itemType: "DurableRun",
|
|
630
637
|
inputSchema: ListDurableRunsOptionsSchema,
|
|
631
638
|
outputSchema: RunItemSchema,
|
|
639
|
+
skipOutputValidation: true,
|
|
632
640
|
// The handler already returns a clean `{ data, nextCursor }` page, so the
|
|
633
641
|
// standard list output (no `adaptPage`) applies.
|
|
634
|
-
output: { type: "list", defaultPageSize:
|
|
642
|
+
output: { type: "list", defaultPageSize: chunkWFWTHI2N_cjs.DEFAULT_PAGE_SIZE },
|
|
635
643
|
run: async ({ imports, input }) => {
|
|
636
644
|
const api = imports.api;
|
|
637
645
|
const searchParams = {};
|
|
@@ -652,11 +660,11 @@ var listDurableRunsPlugin = chunk6HEA7RSA_cjs.defineMethod({
|
|
|
652
660
|
};
|
|
653
661
|
}
|
|
654
662
|
});
|
|
655
|
-
var OperationTypeSchema =
|
|
663
|
+
var OperationTypeSchema = chunkWFWTHI2N_cjs.openEnum(
|
|
656
664
|
["step", "wait", "callback"],
|
|
657
665
|
"Operation kind: `step` is a journaled function call; `wait` is a time-based suspension; `callback` is a wait on an external callback."
|
|
658
666
|
);
|
|
659
|
-
var OperationStatusSchema =
|
|
667
|
+
var OperationStatusSchema = chunkWFWTHI2N_cjs.openEnum(
|
|
660
668
|
["pending", "completed", "failed", "exhausted"],
|
|
661
669
|
"Operation lifecycle status. `exhausted` means retries were exceeded."
|
|
662
670
|
);
|
|
@@ -685,7 +693,7 @@ var OperationSchema = zod.z.object({
|
|
|
685
693
|
completed_at: zod.z.string().optional().describe("When the operation reached a terminal state (ISO-8601)"),
|
|
686
694
|
created_at: zod.z.string().describe("When the operation was created (ISO-8601)")
|
|
687
695
|
});
|
|
688
|
-
var ExecutionStatusSchema =
|
|
696
|
+
var ExecutionStatusSchema = chunkWFWTHI2N_cjs.openEnum(
|
|
689
697
|
["running", "waiting", "completed", "failed"],
|
|
690
698
|
"Execution lifecycle status. `waiting` means blocked on a wait or callback operation."
|
|
691
699
|
);
|
|
@@ -742,15 +750,16 @@ var GetDurableRunResponseSchema = zod.z.object({
|
|
|
742
750
|
});
|
|
743
751
|
|
|
744
752
|
// src/plugins/codeSubstrate/getDurableRun/index.ts
|
|
745
|
-
var getDurableRunPlugin =
|
|
753
|
+
var getDurableRunPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
746
754
|
...codeSubstrateDefaults,
|
|
747
755
|
name: "getDurableRun",
|
|
748
|
-
imports: [
|
|
756
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
749
757
|
itemType: "DurableRun",
|
|
750
758
|
inputSchema: GetDurableRunOptionsSchema,
|
|
751
759
|
outputSchema: GetDurableRunResponseSchema,
|
|
760
|
+
skipOutputValidation: true,
|
|
752
761
|
output: "item",
|
|
753
|
-
resolvers: { run:
|
|
762
|
+
resolvers: { run: chunkWFWTHI2N_cjs.durableRunIdResolver },
|
|
754
763
|
run: async ({ imports, input }) => {
|
|
755
764
|
const api = imports.api;
|
|
756
765
|
const raw = await api.get(
|
|
@@ -821,16 +830,16 @@ var RunDurableResponseSchema = zod.z.object({
|
|
|
821
830
|
});
|
|
822
831
|
|
|
823
832
|
// src/resolvers/sourceFiles.ts
|
|
824
|
-
var sourceFilesResolver =
|
|
833
|
+
var sourceFilesResolver = chunkWFWTHI2N_cjs.defineResolver({
|
|
825
834
|
type: "object",
|
|
826
835
|
additionalKeys: {
|
|
827
836
|
minEntries: 1,
|
|
828
|
-
keys:
|
|
837
|
+
keys: chunkWFWTHI2N_cjs.defineResolver({
|
|
829
838
|
type: "static",
|
|
830
839
|
inputType: "text",
|
|
831
840
|
placeholder: "filename (e.g. index.ts)"
|
|
832
841
|
}),
|
|
833
|
-
values:
|
|
842
|
+
values: chunkWFWTHI2N_cjs.defineResolver({
|
|
834
843
|
type: "static",
|
|
835
844
|
inputType: "text",
|
|
836
845
|
placeholder: "file contents"
|
|
@@ -841,14 +850,15 @@ var sourceFilesResolver = chunk6HEA7RSA_cjs.defineResolver({
|
|
|
841
850
|
});
|
|
842
851
|
|
|
843
852
|
// src/plugins/codeSubstrate/runDurable/index.ts
|
|
844
|
-
var runDurablePlugin =
|
|
853
|
+
var runDurablePlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
845
854
|
...codeSubstrateDefaults,
|
|
846
855
|
name: "runDurable",
|
|
847
|
-
imports: [
|
|
856
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
848
857
|
type: "create",
|
|
849
858
|
itemType: "DurableRun",
|
|
850
859
|
inputSchema: RunDurableOptionsSchema,
|
|
851
860
|
outputSchema: RunDurableResponseSchema,
|
|
861
|
+
skipOutputValidation: true,
|
|
852
862
|
output: "item",
|
|
853
863
|
resolvers: { sourceFiles: sourceFilesResolver },
|
|
854
864
|
run: async ({ imports, input }) => {
|
|
@@ -897,16 +907,17 @@ var CancelDurableRunResponseSchema = zod.z.object({
|
|
|
897
907
|
});
|
|
898
908
|
|
|
899
909
|
// src/plugins/codeSubstrate/cancelDurableRun/index.ts
|
|
900
|
-
var cancelDurableRunPlugin =
|
|
910
|
+
var cancelDurableRunPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
901
911
|
...codeSubstrateDefaults,
|
|
902
912
|
name: "cancelDurableRun",
|
|
903
|
-
imports: [
|
|
913
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
904
914
|
type: "update",
|
|
905
915
|
itemType: "DurableRun",
|
|
906
916
|
inputSchema: CancelDurableRunOptionsSchema,
|
|
907
917
|
outputSchema: CancelDurableRunResponseSchema,
|
|
918
|
+
skipOutputValidation: true,
|
|
908
919
|
output: "item",
|
|
909
|
-
resolvers: { run:
|
|
920
|
+
resolvers: { run: chunkWFWTHI2N_cjs.durableRunIdResolver },
|
|
910
921
|
run: async ({ imports, input }) => {
|
|
911
922
|
const api = imports.api;
|
|
912
923
|
await api.post(
|
|
@@ -931,6 +942,9 @@ var PublishWorkflowVersionBaseSchema = zod.z.object({
|
|
|
931
942
|
enabled: zod.z.boolean().optional().describe(
|
|
932
943
|
"Enable the workflow after publishing. Defaults to true; pass false to publish without enabling."
|
|
933
944
|
),
|
|
945
|
+
ignoreOpenDrafts: zod.z.boolean().optional().describe(
|
|
946
|
+
"Publish even though the workflow has open draft(s). Without this, the API rejects a direct publish with a 409 while any draft is open, since publishing the draft later would ship its stale content over this version."
|
|
947
|
+
),
|
|
934
948
|
connections: zod.z.record(zod.z.string(), ConnectionBindingSchema).nullish().describe(
|
|
935
949
|
"Map of connection aliases to Zapier connections used by the workflow. Pass `null` to clear an existing binding."
|
|
936
950
|
),
|
|
@@ -962,16 +976,57 @@ var PublishWorkflowVersionOptionsSchema = zod.z.union([PublishWorkflowVersionSch
|
|
|
962
976
|
var PublishWorkflowVersionResponseSchema = WorkflowVersionSchema;
|
|
963
977
|
|
|
964
978
|
// src/plugins/codeSubstrate/publishWorkflowVersion/index.ts
|
|
965
|
-
|
|
979
|
+
function toOpenDraftRef(draft) {
|
|
980
|
+
if (typeof draft !== "object" || draft === null) return void 0;
|
|
981
|
+
const record = draft;
|
|
982
|
+
if (typeof record.id !== "string") return void 0;
|
|
983
|
+
const ref = { id: record.id };
|
|
984
|
+
if (typeof record.slug === "string") ref.slug = record.slug;
|
|
985
|
+
const lastEditedAt = record.last_edited_at;
|
|
986
|
+
if (typeof lastEditedAt === "string" || lastEditedAt === null) {
|
|
987
|
+
ref.last_edited_at = lastEditedAt;
|
|
988
|
+
}
|
|
989
|
+
const lastEditedByUserId = record.last_edited_by_user_id;
|
|
990
|
+
if (typeof lastEditedByUserId === "string" || lastEditedByUserId === null) {
|
|
991
|
+
ref.last_edited_by_user_id = lastEditedByUserId;
|
|
992
|
+
}
|
|
993
|
+
return ref;
|
|
994
|
+
}
|
|
995
|
+
function extractOpenDraftConflict(data) {
|
|
996
|
+
if (typeof data !== "object" || data === null) return void 0;
|
|
997
|
+
const errors = data.errors;
|
|
998
|
+
if (!Array.isArray(errors)) return void 0;
|
|
999
|
+
for (const entry of errors) {
|
|
1000
|
+
if (typeof entry !== "object" || entry === null) continue;
|
|
1001
|
+
const meta = entry.meta;
|
|
1002
|
+
if (typeof meta !== "object" || meta === null) continue;
|
|
1003
|
+
const drafts = meta.open_drafts;
|
|
1004
|
+
if (!Array.isArray(drafts)) continue;
|
|
1005
|
+
const refs = drafts.map(toOpenDraftRef).filter((ref) => ref !== void 0);
|
|
1006
|
+
if (refs.length === 0) continue;
|
|
1007
|
+
const detail = entry.detail;
|
|
1008
|
+
return {
|
|
1009
|
+
openDrafts: refs,
|
|
1010
|
+
detail: typeof detail === "string" ? detail : void 0
|
|
1011
|
+
};
|
|
1012
|
+
}
|
|
1013
|
+
return void 0;
|
|
1014
|
+
}
|
|
1015
|
+
function describeOpenDraft(draft) {
|
|
1016
|
+
const label = draft.slug ? `${draft.slug} (id: ${draft.id})` : draft.id;
|
|
1017
|
+
return draft.last_edited_at ? ` \u2022 ${label}, last edited ${draft.last_edited_at}` : ` \u2022 ${label}`;
|
|
1018
|
+
}
|
|
1019
|
+
var publishWorkflowVersionPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
966
1020
|
...codeSubstrateDefaults,
|
|
967
1021
|
name: "publishWorkflowVersion",
|
|
968
|
-
imports: [
|
|
1022
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
969
1023
|
type: "create",
|
|
970
1024
|
itemType: "WorkflowVersion",
|
|
971
1025
|
inputSchema: PublishWorkflowVersionOptionsSchema,
|
|
972
1026
|
outputSchema: PublishWorkflowVersionResponseSchema,
|
|
1027
|
+
skipOutputValidation: true,
|
|
973
1028
|
output: "item",
|
|
974
|
-
resolvers: { workflow:
|
|
1029
|
+
resolvers: { workflow: chunkWFWTHI2N_cjs.workflowIdResolver, sourceFiles: sourceFilesResolver },
|
|
975
1030
|
run: async ({ imports, input }) => {
|
|
976
1031
|
const api = imports.api;
|
|
977
1032
|
const sourceFiles = "sourceFiles" in input ? input.sourceFiles : input.source_files;
|
|
@@ -987,6 +1042,9 @@ var publishWorkflowVersionPlugin = chunk6HEA7RSA_cjs.defineMethod({
|
|
|
987
1042
|
if (input.enabled !== void 0) {
|
|
988
1043
|
body.enabled = input.enabled;
|
|
989
1044
|
}
|
|
1045
|
+
if (input.ignoreOpenDrafts !== void 0) {
|
|
1046
|
+
body.ignore_open_drafts = input.ignoreOpenDrafts;
|
|
1047
|
+
}
|
|
990
1048
|
if (input.connections === null) {
|
|
991
1049
|
body.connections = null;
|
|
992
1050
|
} else if (input.connections !== void 0) {
|
|
@@ -1005,7 +1063,39 @@ var publishWorkflowVersionPlugin = chunk6HEA7RSA_cjs.defineMethod({
|
|
|
1005
1063
|
body,
|
|
1006
1064
|
{
|
|
1007
1065
|
authRequired: true,
|
|
1008
|
-
resource: { type: "workflow", id: input.workflow }
|
|
1066
|
+
resource: { type: "workflow", id: input.workflow },
|
|
1067
|
+
// Every 409 from this endpoint is a conflict, so every 409 maps to
|
|
1068
|
+
// ZapierConflictError — mirroring publishWorkflowDraft, and keeping
|
|
1069
|
+
// isZapierConflictError(error) reliable across both publish paths.
|
|
1070
|
+
// The open-draft publish guard's 409 additionally carries
|
|
1071
|
+
// `meta.open_drafts`; surface that list and the remediations instead
|
|
1072
|
+
// of flattening to a generic message — otherwise the caller has to
|
|
1073
|
+
// pick between force-publishing and draft-publishing without seeing
|
|
1074
|
+
// what they'd be forcing over. The structured list rides on the
|
|
1075
|
+
// error's `meta` for programmatic use (CLI --json).
|
|
1076
|
+
customErrorHandler: ({ status, data }) => {
|
|
1077
|
+
if (status !== 409) return void 0;
|
|
1078
|
+
const conflict = extractOpenDraftConflict(data);
|
|
1079
|
+
if (!conflict) {
|
|
1080
|
+
return new chunkWFWTHI2N_cjs.ZapierConflictError(
|
|
1081
|
+
chunkWFWTHI2N_cjs.extractErrorDetail(data) ?? "Workflow version publish conflict.",
|
|
1082
|
+
{ statusCode: status, resourceType: "workflow" }
|
|
1083
|
+
);
|
|
1084
|
+
}
|
|
1085
|
+
const detail = conflict.detail ?? "Cannot publish over open draft(s).";
|
|
1086
|
+
return new chunkWFWTHI2N_cjs.ZapierConflictError(
|
|
1087
|
+
[
|
|
1088
|
+
`${detail} Blocking draft(s):`,
|
|
1089
|
+
...conflict.openDrafts.map(describeOpenDraft),
|
|
1090
|
+
"To keep a draft's changes, publish it with publishWorkflowDraft (CLI: publish-workflow-draft); to abandon them, discard it with discardWorkflowDraft (CLI: discard-workflow-draft); or force-publish over it by retrying with ignoreOpenDrafts: true (CLI: --ignore-open-drafts)."
|
|
1091
|
+
].join("\n"),
|
|
1092
|
+
{
|
|
1093
|
+
statusCode: status,
|
|
1094
|
+
resourceType: "workflow",
|
|
1095
|
+
meta: { open_drafts: conflict.openDrafts }
|
|
1096
|
+
}
|
|
1097
|
+
);
|
|
1098
|
+
}
|
|
1009
1099
|
}
|
|
1010
1100
|
);
|
|
1011
1101
|
return { data: PublishWorkflowVersionResponseSchema.parse(raw) };
|
|
@@ -1045,18 +1135,19 @@ var ListWorkflowVersionsApiResponseSchema = zod.z.object({
|
|
|
1045
1135
|
});
|
|
1046
1136
|
|
|
1047
1137
|
// src/plugins/codeSubstrate/listWorkflowVersions/index.ts
|
|
1048
|
-
var listWorkflowVersionsPlugin =
|
|
1138
|
+
var listWorkflowVersionsPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
1049
1139
|
...codeSubstrateDefaults,
|
|
1050
1140
|
name: "listWorkflowVersions",
|
|
1051
|
-
imports: [
|
|
1141
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
1052
1142
|
type: "list",
|
|
1053
1143
|
itemType: "WorkflowVersion",
|
|
1054
1144
|
inputSchema: ListWorkflowVersionsOptionsSchema,
|
|
1055
1145
|
outputSchema: WorkflowVersionListItemSchema,
|
|
1146
|
+
skipOutputValidation: true,
|
|
1056
1147
|
// The handler already returns a clean `{ data, nextCursor }` page, so the
|
|
1057
1148
|
// standard list output (no `adaptPage`) applies.
|
|
1058
|
-
output: { type: "list", defaultPageSize:
|
|
1059
|
-
resolvers: { workflow:
|
|
1149
|
+
output: { type: "list", defaultPageSize: chunkWFWTHI2N_cjs.DEFAULT_PAGE_SIZE },
|
|
1150
|
+
resolvers: { workflow: chunkWFWTHI2N_cjs.workflowIdResolver },
|
|
1060
1151
|
run: async ({ imports, input }) => {
|
|
1061
1152
|
const api = imports.api;
|
|
1062
1153
|
const searchParams = {};
|
|
@@ -1088,17 +1179,18 @@ var GetWorkflowVersionOptionsSchema = zod.z.object({
|
|
|
1088
1179
|
var GetWorkflowVersionResponseSchema = WorkflowVersionSchema;
|
|
1089
1180
|
|
|
1090
1181
|
// src/plugins/codeSubstrate/getWorkflowVersion/index.ts
|
|
1091
|
-
var getWorkflowVersionPlugin =
|
|
1182
|
+
var getWorkflowVersionPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
1092
1183
|
...codeSubstrateDefaults,
|
|
1093
1184
|
name: "getWorkflowVersion",
|
|
1094
|
-
imports: [
|
|
1185
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
1095
1186
|
itemType: "WorkflowVersion",
|
|
1096
1187
|
inputSchema: GetWorkflowVersionOptionsSchema,
|
|
1097
1188
|
outputSchema: GetWorkflowVersionResponseSchema,
|
|
1189
|
+
skipOutputValidation: true,
|
|
1098
1190
|
output: "item",
|
|
1099
1191
|
resolvers: {
|
|
1100
|
-
workflow:
|
|
1101
|
-
version:
|
|
1192
|
+
workflow: chunkWFWTHI2N_cjs.workflowIdResolver,
|
|
1193
|
+
version: chunkWFWTHI2N_cjs.workflowVersionIdResolver
|
|
1102
1194
|
},
|
|
1103
1195
|
run: async ({ imports, input }) => {
|
|
1104
1196
|
const api = imports.api;
|
|
@@ -1151,18 +1243,19 @@ var ListWorkflowDraftsApiResponseSchema = zod.z.object({
|
|
|
1151
1243
|
});
|
|
1152
1244
|
|
|
1153
1245
|
// src/plugins/codeSubstrate/listWorkflowDrafts/index.ts
|
|
1154
|
-
var listWorkflowDraftsPlugin =
|
|
1246
|
+
var listWorkflowDraftsPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
1155
1247
|
...codeSubstrateDefaults,
|
|
1156
1248
|
name: "listWorkflowDrafts",
|
|
1157
|
-
imports: [
|
|
1249
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
1158
1250
|
type: "list",
|
|
1159
1251
|
itemType: "WorkflowDraft",
|
|
1160
1252
|
inputSchema: ListWorkflowDraftsOptionsSchema,
|
|
1161
1253
|
outputSchema: WorkflowDraftSummarySchema,
|
|
1254
|
+
skipOutputValidation: true,
|
|
1162
1255
|
// The handler already returns a clean `{ data, nextCursor }` page, so the
|
|
1163
1256
|
// standard list output (no `adaptPage`) applies.
|
|
1164
|
-
output: { type: "list", defaultPageSize:
|
|
1165
|
-
resolvers: { workflow:
|
|
1257
|
+
output: { type: "list", defaultPageSize: chunkWFWTHI2N_cjs.DEFAULT_PAGE_SIZE },
|
|
1258
|
+
resolvers: { workflow: chunkWFWTHI2N_cjs.workflowIdResolver },
|
|
1166
1259
|
run: async ({ imports, input }) => {
|
|
1167
1260
|
const api = imports.api;
|
|
1168
1261
|
const searchParams = {};
|
|
@@ -1200,17 +1293,18 @@ var GetWorkflowDraftOptionsSchema = zod.z.object({
|
|
|
1200
1293
|
var GetWorkflowDraftResponseSchema = WorkflowDraftSchema;
|
|
1201
1294
|
|
|
1202
1295
|
// src/plugins/codeSubstrate/getWorkflowDraft/index.ts
|
|
1203
|
-
var getWorkflowDraftPlugin =
|
|
1296
|
+
var getWorkflowDraftPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
1204
1297
|
...codeSubstrateDefaults,
|
|
1205
1298
|
name: "getWorkflowDraft",
|
|
1206
|
-
imports: [
|
|
1299
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
1207
1300
|
itemType: "WorkflowDraft",
|
|
1208
1301
|
inputSchema: GetWorkflowDraftOptionsSchema,
|
|
1209
1302
|
outputSchema: GetWorkflowDraftResponseSchema,
|
|
1303
|
+
skipOutputValidation: true,
|
|
1210
1304
|
output: "item",
|
|
1211
1305
|
resolvers: {
|
|
1212
|
-
workflow:
|
|
1213
|
-
draft:
|
|
1306
|
+
workflow: chunkWFWTHI2N_cjs.workflowIdResolver,
|
|
1307
|
+
draft: chunkWFWTHI2N_cjs.workflowDraftIdResolver
|
|
1214
1308
|
},
|
|
1215
1309
|
run: async ({ imports, input }) => {
|
|
1216
1310
|
const api = imports.api;
|
|
@@ -1235,16 +1329,17 @@ var CreateWorkflowDraftOptionsSchema = zod.z.object({
|
|
|
1235
1329
|
var CreateWorkflowDraftResponseSchema = WorkflowDraftSchema;
|
|
1236
1330
|
|
|
1237
1331
|
// src/plugins/codeSubstrate/createWorkflowDraft/index.ts
|
|
1238
|
-
var createWorkflowDraftPlugin =
|
|
1332
|
+
var createWorkflowDraftPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
1239
1333
|
...codeSubstrateDefaults,
|
|
1240
1334
|
name: "createWorkflowDraft",
|
|
1241
|
-
imports: [
|
|
1335
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
1242
1336
|
type: "create",
|
|
1243
1337
|
itemType: "WorkflowDraft",
|
|
1244
1338
|
inputSchema: CreateWorkflowDraftOptionsSchema,
|
|
1245
1339
|
outputSchema: CreateWorkflowDraftResponseSchema,
|
|
1340
|
+
skipOutputValidation: true,
|
|
1246
1341
|
output: "item",
|
|
1247
|
-
resolvers: { workflow:
|
|
1342
|
+
resolvers: { workflow: chunkWFWTHI2N_cjs.workflowIdResolver },
|
|
1248
1343
|
run: async ({ imports, input }) => {
|
|
1249
1344
|
const api = imports.api;
|
|
1250
1345
|
const body = {};
|
|
@@ -1286,18 +1381,19 @@ var UpdateWorkflowDraftOptionsSchema = zod.z.object({
|
|
|
1286
1381
|
var UpdateWorkflowDraftResponseSchema = WorkflowDraftSchema;
|
|
1287
1382
|
|
|
1288
1383
|
// src/plugins/codeSubstrate/updateWorkflowDraft/index.ts
|
|
1289
|
-
var updateWorkflowDraftPlugin =
|
|
1384
|
+
var updateWorkflowDraftPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
1290
1385
|
...codeSubstrateDefaults,
|
|
1291
1386
|
name: "updateWorkflowDraft",
|
|
1292
|
-
imports: [
|
|
1387
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
1293
1388
|
type: "update",
|
|
1294
1389
|
itemType: "WorkflowDraft",
|
|
1295
1390
|
inputSchema: UpdateWorkflowDraftOptionsSchema,
|
|
1296
1391
|
outputSchema: UpdateWorkflowDraftResponseSchema,
|
|
1392
|
+
skipOutputValidation: true,
|
|
1297
1393
|
output: "item",
|
|
1298
1394
|
resolvers: {
|
|
1299
|
-
workflow:
|
|
1300
|
-
draft:
|
|
1395
|
+
workflow: chunkWFWTHI2N_cjs.workflowIdResolver,
|
|
1396
|
+
draft: chunkWFWTHI2N_cjs.workflowDraftIdResolver,
|
|
1301
1397
|
sourceFiles: sourceFilesResolver
|
|
1302
1398
|
},
|
|
1303
1399
|
run: async ({ imports, input }) => {
|
|
@@ -1339,8 +1435,8 @@ var updateWorkflowDraftPlugin = chunk6HEA7RSA_cjs.defineMethod({
|
|
|
1339
1435
|
// re-read the draft, and retry instead of blind-overwriting.
|
|
1340
1436
|
customErrorHandler: ({ status, data }) => {
|
|
1341
1437
|
if (status === 409) {
|
|
1342
|
-
const detail =
|
|
1343
|
-
return new
|
|
1438
|
+
const detail = chunkWFWTHI2N_cjs.extractErrorDetail(data);
|
|
1439
|
+
return new chunkWFWTHI2N_cjs.ZapierConflictError(
|
|
1344
1440
|
`${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
1441
|
{ statusCode: status, resourceType: "workflow-draft" }
|
|
1346
1442
|
);
|
|
@@ -1361,10 +1457,10 @@ var DiscardWorkflowDraftOptionsSchema = zod.z.object({
|
|
|
1361
1457
|
var DiscardWorkflowDraftResponseSchema = WorkflowDraftSchema;
|
|
1362
1458
|
|
|
1363
1459
|
// src/plugins/codeSubstrate/discardWorkflowDraft/index.ts
|
|
1364
|
-
var discardWorkflowDraftPlugin =
|
|
1460
|
+
var discardWorkflowDraftPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
1365
1461
|
...codeSubstrateDefaults,
|
|
1366
1462
|
name: "discardWorkflowDraft",
|
|
1367
|
-
imports: [
|
|
1463
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
1368
1464
|
type: "delete",
|
|
1369
1465
|
itemType: "WorkflowDraft",
|
|
1370
1466
|
// Soft delete returns the discarded draft, not the `{ success: boolean }`
|
|
@@ -1375,10 +1471,11 @@ var discardWorkflowDraftPlugin = chunk6HEA7RSA_cjs.defineMethod({
|
|
|
1375
1471
|
confirm: "delete",
|
|
1376
1472
|
inputSchema: DiscardWorkflowDraftOptionsSchema,
|
|
1377
1473
|
outputSchema: DiscardWorkflowDraftResponseSchema,
|
|
1474
|
+
skipOutputValidation: true,
|
|
1378
1475
|
output: "item",
|
|
1379
1476
|
resolvers: {
|
|
1380
|
-
workflow:
|
|
1381
|
-
draft:
|
|
1477
|
+
workflow: chunkWFWTHI2N_cjs.workflowIdResolver,
|
|
1478
|
+
draft: chunkWFWTHI2N_cjs.workflowDraftIdResolver
|
|
1382
1479
|
},
|
|
1383
1480
|
run: async ({ imports, input }) => {
|
|
1384
1481
|
const api = imports.api;
|
|
@@ -1415,10 +1512,10 @@ var PublishWorkflowDraftResponseSchema = zod.z.object({
|
|
|
1415
1512
|
});
|
|
1416
1513
|
|
|
1417
1514
|
// src/plugins/codeSubstrate/publishWorkflowDraft/index.ts
|
|
1418
|
-
var publishWorkflowDraftPlugin =
|
|
1515
|
+
var publishWorkflowDraftPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
1419
1516
|
...codeSubstrateDefaults,
|
|
1420
1517
|
name: "publishWorkflowDraft",
|
|
1421
|
-
imports: [
|
|
1518
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
1422
1519
|
type: "create",
|
|
1423
1520
|
itemType: "WorkflowVersion",
|
|
1424
1521
|
// The response is the composite `{ draft, version }`, not the bare
|
|
@@ -1426,10 +1523,11 @@ var publishWorkflowDraftPlugin = chunk6HEA7RSA_cjs.defineMethod({
|
|
|
1426
1523
|
returnType: "PublishWorkflowDraftResponse",
|
|
1427
1524
|
inputSchema: PublishWorkflowDraftOptionsSchema,
|
|
1428
1525
|
outputSchema: PublishWorkflowDraftResponseSchema,
|
|
1526
|
+
skipOutputValidation: true,
|
|
1429
1527
|
output: "item",
|
|
1430
1528
|
resolvers: {
|
|
1431
|
-
workflow:
|
|
1432
|
-
draft:
|
|
1529
|
+
workflow: chunkWFWTHI2N_cjs.workflowIdResolver,
|
|
1530
|
+
draft: chunkWFWTHI2N_cjs.workflowDraftIdResolver
|
|
1433
1531
|
},
|
|
1434
1532
|
run: async ({ imports, input }) => {
|
|
1435
1533
|
const api = imports.api;
|
|
@@ -1459,15 +1557,15 @@ var publishWorkflowDraftPlugin = chunk6HEA7RSA_cjs.defineMethod({
|
|
|
1459
1557
|
// to ZapierValidationError via the client's default handling.
|
|
1460
1558
|
customErrorHandler: ({ status, data }) => {
|
|
1461
1559
|
if (status === 409) {
|
|
1462
|
-
const detail =
|
|
1463
|
-
return new
|
|
1560
|
+
const detail = chunkWFWTHI2N_cjs.extractErrorDetail(data);
|
|
1561
|
+
return new chunkWFWTHI2N_cjs.ZapierConflictError(
|
|
1464
1562
|
`${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
1563
|
{ statusCode: status, resourceType: "workflow-draft" }
|
|
1466
1564
|
);
|
|
1467
1565
|
}
|
|
1468
1566
|
if (status === 503) {
|
|
1469
|
-
const detail =
|
|
1470
|
-
return new
|
|
1567
|
+
const detail = chunkWFWTHI2N_cjs.extractErrorDetail(data);
|
|
1568
|
+
return new chunkWFWTHI2N_cjs.ZapierApiError(
|
|
1471
1569
|
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
1570
|
{ statusCode: status }
|
|
1473
1571
|
);
|
|
@@ -1525,18 +1623,19 @@ var ListWorkflowRunsApiResponseSchema = zod.z.object({
|
|
|
1525
1623
|
});
|
|
1526
1624
|
|
|
1527
1625
|
// src/plugins/codeSubstrate/listWorkflowRuns/index.ts
|
|
1528
|
-
var listWorkflowRunsPlugin =
|
|
1626
|
+
var listWorkflowRunsPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
1529
1627
|
...codeSubstrateDefaults,
|
|
1530
1628
|
name: "listWorkflowRuns",
|
|
1531
|
-
imports: [
|
|
1629
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
1532
1630
|
type: "list",
|
|
1533
1631
|
itemType: "WorkflowRun",
|
|
1534
1632
|
inputSchema: ListWorkflowRunsOptionsSchema,
|
|
1535
1633
|
outputSchema: WorkflowRunListItemSchema,
|
|
1634
|
+
skipOutputValidation: true,
|
|
1536
1635
|
// The handler already returns a clean `{ data, nextCursor }` page, so the
|
|
1537
1636
|
// standard list output (no `adaptPage`) applies.
|
|
1538
|
-
output: { type: "list", defaultPageSize:
|
|
1539
|
-
resolvers: { workflow:
|
|
1637
|
+
output: { type: "list", defaultPageSize: chunkWFWTHI2N_cjs.DEFAULT_PAGE_SIZE },
|
|
1638
|
+
resolvers: { workflow: chunkWFWTHI2N_cjs.workflowIdResolver },
|
|
1540
1639
|
run: async ({ imports, input }) => {
|
|
1541
1640
|
const api = imports.api;
|
|
1542
1641
|
const searchParams = {};
|
|
@@ -1589,17 +1688,18 @@ var GetWorkflowRunResponseSchema = zod.z.object({
|
|
|
1589
1688
|
});
|
|
1590
1689
|
|
|
1591
1690
|
// src/plugins/codeSubstrate/getWorkflowRun/index.ts
|
|
1592
|
-
var getWorkflowRunPlugin =
|
|
1691
|
+
var getWorkflowRunPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
1593
1692
|
...codeSubstrateDefaults,
|
|
1594
1693
|
name: "getWorkflowRun",
|
|
1595
|
-
imports: [
|
|
1694
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
1596
1695
|
itemType: "WorkflowRun",
|
|
1597
1696
|
inputSchema: GetWorkflowRunOptionsSchema,
|
|
1598
1697
|
outputSchema: GetWorkflowRunResponseSchema,
|
|
1698
|
+
skipOutputValidation: true,
|
|
1599
1699
|
output: "item",
|
|
1600
1700
|
resolvers: {
|
|
1601
|
-
workflow:
|
|
1602
|
-
run:
|
|
1701
|
+
workflow: chunkWFWTHI2N_cjs.workflowIdResolver,
|
|
1702
|
+
run: chunkWFWTHI2N_cjs.workflowRunIdResolver
|
|
1603
1703
|
},
|
|
1604
1704
|
run: async ({ imports, input }) => {
|
|
1605
1705
|
const api = imports.api;
|
|
@@ -1633,13 +1733,14 @@ var GetTriggerRunResponseSchema = zod.z.object({
|
|
|
1633
1733
|
});
|
|
1634
1734
|
|
|
1635
1735
|
// src/plugins/codeSubstrate/getTriggerRun/index.ts
|
|
1636
|
-
var getTriggerRunPlugin =
|
|
1736
|
+
var getTriggerRunPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
1637
1737
|
...codeSubstrateDefaults,
|
|
1638
1738
|
name: "getTriggerRun",
|
|
1639
|
-
imports: [
|
|
1739
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
1640
1740
|
itemType: "WorkflowRun",
|
|
1641
1741
|
inputSchema: GetTriggerRunOptionsSchema,
|
|
1642
1742
|
outputSchema: GetTriggerRunResponseSchema,
|
|
1743
|
+
skipOutputValidation: true,
|
|
1643
1744
|
output: "item",
|
|
1644
1745
|
// No resolver for `trigger` — users typically have the trigger id
|
|
1645
1746
|
// from a recent trigger fire and pass it directly. Authoring a
|
|
@@ -1675,16 +1776,17 @@ var TriggerWorkflowResponseSchema = zod.z.object({
|
|
|
1675
1776
|
});
|
|
1676
1777
|
|
|
1677
1778
|
// src/plugins/codeSubstrate/triggerWorkflow/index.ts
|
|
1678
|
-
var triggerWorkflowPlugin =
|
|
1779
|
+
var triggerWorkflowPlugin = chunkWFWTHI2N_cjs.defineMethod({
|
|
1679
1780
|
...codeSubstrateDefaults,
|
|
1680
1781
|
name: "triggerWorkflow",
|
|
1681
|
-
imports: [
|
|
1782
|
+
imports: [chunkWFWTHI2N_cjs.apiPluginRef],
|
|
1682
1783
|
type: "create",
|
|
1683
1784
|
itemType: "WorkflowRun",
|
|
1684
1785
|
inputSchema: TriggerWorkflowOptionsSchema,
|
|
1685
1786
|
outputSchema: TriggerWorkflowResponseSchema,
|
|
1787
|
+
skipOutputValidation: true,
|
|
1686
1788
|
output: "item",
|
|
1687
|
-
resolvers: { workflow:
|
|
1789
|
+
resolvers: { workflow: chunkWFWTHI2N_cjs.workflowIdResolver },
|
|
1688
1790
|
run: async ({ imports, input }) => {
|
|
1689
1791
|
const api = imports.api;
|
|
1690
1792
|
const rawWorkflow = await api.get(
|
|
@@ -1698,7 +1800,7 @@ var triggerWorkflowPlugin = chunk6HEA7RSA_cjs.defineMethod({
|
|
|
1698
1800
|
const segments = new URL(workflow.trigger_url).pathname.split("/");
|
|
1699
1801
|
const triggerToken = segments[segments.length - 1];
|
|
1700
1802
|
if (!triggerToken) {
|
|
1701
|
-
throw new
|
|
1803
|
+
throw new chunkWFWTHI2N_cjs.ZapierApiError(
|
|
1702
1804
|
`Workflow ${input.workflow} returned a malformed trigger_url`,
|
|
1703
1805
|
{ statusCode: 0, response: workflow.trigger_url }
|
|
1704
1806
|
);
|
|
@@ -1716,11 +1818,11 @@ var triggerWorkflowPlugin = chunk6HEA7RSA_cjs.defineMethod({
|
|
|
1716
1818
|
});
|
|
1717
1819
|
|
|
1718
1820
|
// src/experimental.ts
|
|
1719
|
-
var zapierExperimentalSdkPlugin =
|
|
1821
|
+
var zapierExperimentalSdkPlugin = chunkWFWTHI2N_cjs.definePlugin({
|
|
1720
1822
|
namespace: "zapier",
|
|
1721
1823
|
name: "experimental-sdk",
|
|
1722
1824
|
exports: [
|
|
1723
|
-
|
|
1825
|
+
chunkWFWTHI2N_cjs.zapierSdkPlugin,
|
|
1724
1826
|
// Code substrate (experimental). `list*` plugins are exported before their
|
|
1725
1827
|
// `get*` / mutation siblings because per-row resolvers reach the listing
|
|
1726
1828
|
// methods.
|
|
@@ -1751,1101 +1853,1101 @@ var zapierExperimentalSdkPlugin = chunk6HEA7RSA_cjs.definePlugin({
|
|
|
1751
1853
|
]
|
|
1752
1854
|
});
|
|
1753
1855
|
function createZapierSdk(options = {}) {
|
|
1754
|
-
return
|
|
1856
|
+
return chunkWFWTHI2N_cjs.createSdk(zapierExperimentalSdkPlugin, {
|
|
1755
1857
|
configuration: {
|
|
1756
|
-
[
|
|
1757
|
-
[
|
|
1858
|
+
[chunkWFWTHI2N_cjs.SDK_OPTIONS_ID]: options,
|
|
1859
|
+
[chunkWFWTHI2N_cjs.CORE_OPTIONS_ID]: chunkWFWTHI2N_cjs.zapierCoreOptions
|
|
1758
1860
|
}
|
|
1759
1861
|
});
|
|
1760
1862
|
}
|
|
1761
1863
|
|
|
1762
1864
|
Object.defineProperty(exports, "API_ID", {
|
|
1763
1865
|
enumerable: true,
|
|
1764
|
-
get: function () { return
|
|
1866
|
+
get: function () { return chunkWFWTHI2N_cjs.API_ID; }
|
|
1765
1867
|
});
|
|
1766
1868
|
Object.defineProperty(exports, "ActionKeyPropertySchema", {
|
|
1767
1869
|
enumerable: true,
|
|
1768
|
-
get: function () { return
|
|
1870
|
+
get: function () { return chunkWFWTHI2N_cjs.ActionKeyPropertySchema; }
|
|
1769
1871
|
});
|
|
1770
1872
|
Object.defineProperty(exports, "ActionPropertySchema", {
|
|
1771
1873
|
enumerable: true,
|
|
1772
|
-
get: function () { return
|
|
1874
|
+
get: function () { return chunkWFWTHI2N_cjs.ActionPropertySchema; }
|
|
1773
1875
|
});
|
|
1774
1876
|
Object.defineProperty(exports, "ActionTimeoutMillisecondsPropertySchema", {
|
|
1775
1877
|
enumerable: true,
|
|
1776
|
-
get: function () { return
|
|
1878
|
+
get: function () { return chunkWFWTHI2N_cjs.ActionTimeoutMillisecondsPropertySchema; }
|
|
1777
1879
|
});
|
|
1778
1880
|
Object.defineProperty(exports, "ActionTimeoutSecondsPropertySchema", {
|
|
1779
1881
|
enumerable: true,
|
|
1780
|
-
get: function () { return
|
|
1882
|
+
get: function () { return chunkWFWTHI2N_cjs.ActionTimeoutSecondsPropertySchema; }
|
|
1781
1883
|
});
|
|
1782
1884
|
Object.defineProperty(exports, "ActionTypePropertySchema", {
|
|
1783
1885
|
enumerable: true,
|
|
1784
|
-
get: function () { return
|
|
1886
|
+
get: function () { return chunkWFWTHI2N_cjs.ActionTypePropertySchema; }
|
|
1785
1887
|
});
|
|
1786
1888
|
Object.defineProperty(exports, "AppKeyPropertySchema", {
|
|
1787
1889
|
enumerable: true,
|
|
1788
|
-
get: function () { return
|
|
1890
|
+
get: function () { return chunkWFWTHI2N_cjs.AppKeyPropertySchema; }
|
|
1789
1891
|
});
|
|
1790
1892
|
Object.defineProperty(exports, "AppPropertySchema", {
|
|
1791
1893
|
enumerable: true,
|
|
1792
|
-
get: function () { return
|
|
1894
|
+
get: function () { return chunkWFWTHI2N_cjs.AppPropertySchema; }
|
|
1793
1895
|
});
|
|
1794
1896
|
Object.defineProperty(exports, "AppsPropertySchema", {
|
|
1795
1897
|
enumerable: true,
|
|
1796
|
-
get: function () { return
|
|
1898
|
+
get: function () { return chunkWFWTHI2N_cjs.AppsPropertySchema; }
|
|
1797
1899
|
});
|
|
1798
1900
|
Object.defineProperty(exports, "AuthMechanism", {
|
|
1799
1901
|
enumerable: true,
|
|
1800
|
-
get: function () { return
|
|
1902
|
+
get: function () { return chunkWFWTHI2N_cjs.AuthMechanism; }
|
|
1801
1903
|
});
|
|
1802
1904
|
Object.defineProperty(exports, "AuthenticationIdPropertySchema", {
|
|
1803
1905
|
enumerable: true,
|
|
1804
|
-
get: function () { return
|
|
1906
|
+
get: function () { return chunkWFWTHI2N_cjs.AuthenticationIdPropertySchema; }
|
|
1805
1907
|
});
|
|
1806
1908
|
Object.defineProperty(exports, "BaseSdkOptionsSchema", {
|
|
1807
1909
|
enumerable: true,
|
|
1808
|
-
get: function () { return
|
|
1910
|
+
get: function () { return chunkWFWTHI2N_cjs.BaseSdkOptionsSchema; }
|
|
1809
1911
|
});
|
|
1810
1912
|
Object.defineProperty(exports, "CONNECTIONS_ID", {
|
|
1811
1913
|
enumerable: true,
|
|
1812
|
-
get: function () { return
|
|
1914
|
+
get: function () { return chunkWFWTHI2N_cjs.CONNECTIONS_ID; }
|
|
1813
1915
|
});
|
|
1814
1916
|
Object.defineProperty(exports, "CONTEXT", {
|
|
1815
1917
|
enumerable: true,
|
|
1816
|
-
get: function () { return
|
|
1918
|
+
get: function () { return chunkWFWTHI2N_cjs.CONTEXT; }
|
|
1817
1919
|
});
|
|
1818
1920
|
Object.defineProperty(exports, "CONTEXT_CACHE_MAX_SIZE", {
|
|
1819
1921
|
enumerable: true,
|
|
1820
|
-
get: function () { return
|
|
1922
|
+
get: function () { return chunkWFWTHI2N_cjs.CONTEXT_CACHE_MAX_SIZE; }
|
|
1821
1923
|
});
|
|
1822
1924
|
Object.defineProperty(exports, "CONTEXT_CACHE_TTL_MILLISECONDS", {
|
|
1823
1925
|
enumerable: true,
|
|
1824
|
-
get: function () { return
|
|
1926
|
+
get: function () { return chunkWFWTHI2N_cjs.CONTEXT_CACHE_TTL_MILLISECONDS; }
|
|
1825
1927
|
});
|
|
1826
1928
|
Object.defineProperty(exports, "CORE_ERROR_SYMBOL", {
|
|
1827
1929
|
enumerable: true,
|
|
1828
|
-
get: function () { return
|
|
1930
|
+
get: function () { return chunkWFWTHI2N_cjs.CORE_ERROR_SYMBOL; }
|
|
1829
1931
|
});
|
|
1830
1932
|
Object.defineProperty(exports, "CORE_OPTIONS_ID", {
|
|
1831
1933
|
enumerable: true,
|
|
1832
|
-
get: function () { return
|
|
1934
|
+
get: function () { return chunkWFWTHI2N_cjs.CORE_OPTIONS_ID; }
|
|
1833
1935
|
});
|
|
1834
1936
|
Object.defineProperty(exports, "CORE_SIGNAL_SYMBOL", {
|
|
1835
1937
|
enumerable: true,
|
|
1836
|
-
get: function () { return
|
|
1938
|
+
get: function () { return chunkWFWTHI2N_cjs.CORE_SIGNAL_SYMBOL; }
|
|
1837
1939
|
});
|
|
1838
1940
|
Object.defineProperty(exports, "ClientCredentialsObjectSchema", {
|
|
1839
1941
|
enumerable: true,
|
|
1840
|
-
get: function () { return
|
|
1942
|
+
get: function () { return chunkWFWTHI2N_cjs.ClientCredentialsObjectSchema; }
|
|
1841
1943
|
});
|
|
1842
1944
|
Object.defineProperty(exports, "ConnectionEntrySchema", {
|
|
1843
1945
|
enumerable: true,
|
|
1844
|
-
get: function () { return
|
|
1946
|
+
get: function () { return chunkWFWTHI2N_cjs.ConnectionEntrySchema; }
|
|
1845
1947
|
});
|
|
1846
1948
|
Object.defineProperty(exports, "ConnectionIdPropertySchema", {
|
|
1847
1949
|
enumerable: true,
|
|
1848
|
-
get: function () { return
|
|
1950
|
+
get: function () { return chunkWFWTHI2N_cjs.ConnectionIdPropertySchema; }
|
|
1849
1951
|
});
|
|
1850
1952
|
Object.defineProperty(exports, "ConnectionPropertySchema", {
|
|
1851
1953
|
enumerable: true,
|
|
1852
|
-
get: function () { return
|
|
1954
|
+
get: function () { return chunkWFWTHI2N_cjs.ConnectionPropertySchema; }
|
|
1853
1955
|
});
|
|
1854
1956
|
Object.defineProperty(exports, "ConnectionsMapSchema", {
|
|
1855
1957
|
enumerable: true,
|
|
1856
|
-
get: function () { return
|
|
1958
|
+
get: function () { return chunkWFWTHI2N_cjs.ConnectionsMapSchema; }
|
|
1857
1959
|
});
|
|
1858
1960
|
Object.defineProperty(exports, "ConnectionsPropertySchema", {
|
|
1859
1961
|
enumerable: true,
|
|
1860
|
-
get: function () { return
|
|
1962
|
+
get: function () { return chunkWFWTHI2N_cjs.ConnectionsPropertySchema; }
|
|
1861
1963
|
});
|
|
1862
1964
|
Object.defineProperty(exports, "CoreCancelledSignal", {
|
|
1863
1965
|
enumerable: true,
|
|
1864
|
-
get: function () { return
|
|
1966
|
+
get: function () { return chunkWFWTHI2N_cjs.CoreCancelledSignal; }
|
|
1865
1967
|
});
|
|
1866
1968
|
Object.defineProperty(exports, "CoreDisposeError", {
|
|
1867
1969
|
enumerable: true,
|
|
1868
|
-
get: function () { return
|
|
1970
|
+
get: function () { return chunkWFWTHI2N_cjs.CoreDisposeError; }
|
|
1869
1971
|
});
|
|
1870
1972
|
Object.defineProperty(exports, "CoreErrorCode", {
|
|
1871
1973
|
enumerable: true,
|
|
1872
|
-
get: function () { return
|
|
1974
|
+
get: function () { return chunkWFWTHI2N_cjs.CoreErrorCode; }
|
|
1873
1975
|
});
|
|
1874
1976
|
Object.defineProperty(exports, "CoreSignal", {
|
|
1875
1977
|
enumerable: true,
|
|
1876
|
-
get: function () { return
|
|
1978
|
+
get: function () { return chunkWFWTHI2N_cjs.CoreSignal; }
|
|
1877
1979
|
});
|
|
1878
1980
|
Object.defineProperty(exports, "CredentialsFunctionSchema", {
|
|
1879
1981
|
enumerable: true,
|
|
1880
|
-
get: function () { return
|
|
1982
|
+
get: function () { return chunkWFWTHI2N_cjs.CredentialsFunctionSchema; }
|
|
1881
1983
|
});
|
|
1882
1984
|
Object.defineProperty(exports, "CredentialsObjectSchema", {
|
|
1883
1985
|
enumerable: true,
|
|
1884
|
-
get: function () { return
|
|
1986
|
+
get: function () { return chunkWFWTHI2N_cjs.CredentialsObjectSchema; }
|
|
1885
1987
|
});
|
|
1886
1988
|
Object.defineProperty(exports, "CredentialsSchema", {
|
|
1887
1989
|
enumerable: true,
|
|
1888
|
-
get: function () { return
|
|
1990
|
+
get: function () { return chunkWFWTHI2N_cjs.CredentialsSchema; }
|
|
1889
1991
|
});
|
|
1890
1992
|
Object.defineProperty(exports, "DEFAULT_ACTION_TIMEOUT_MILLISECONDS", {
|
|
1891
1993
|
enumerable: true,
|
|
1892
|
-
get: function () { return
|
|
1994
|
+
get: function () { return chunkWFWTHI2N_cjs.DEFAULT_ACTION_TIMEOUT_MILLISECONDS; }
|
|
1893
1995
|
});
|
|
1894
1996
|
Object.defineProperty(exports, "DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS", {
|
|
1895
1997
|
enumerable: true,
|
|
1896
|
-
get: function () { return
|
|
1998
|
+
get: function () { return chunkWFWTHI2N_cjs.DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS; }
|
|
1897
1999
|
});
|
|
1898
2000
|
Object.defineProperty(exports, "DEFAULT_CONFIG_PATH", {
|
|
1899
2001
|
enumerable: true,
|
|
1900
|
-
get: function () { return
|
|
2002
|
+
get: function () { return chunkWFWTHI2N_cjs.DEFAULT_CONFIG_PATH; }
|
|
1901
2003
|
});
|
|
1902
2004
|
Object.defineProperty(exports, "DEFAULT_MAX_APPROVAL_RETRIES", {
|
|
1903
2005
|
enumerable: true,
|
|
1904
|
-
get: function () { return
|
|
2006
|
+
get: function () { return chunkWFWTHI2N_cjs.DEFAULT_MAX_APPROVAL_RETRIES; }
|
|
1905
2007
|
});
|
|
1906
2008
|
Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
|
|
1907
2009
|
enumerable: true,
|
|
1908
|
-
get: function () { return
|
|
2010
|
+
get: function () { return chunkWFWTHI2N_cjs.DEFAULT_PAGE_SIZE; }
|
|
1909
2011
|
});
|
|
1910
2012
|
Object.defineProperty(exports, "DEPRECATION_NOTICE_EVENT", {
|
|
1911
2013
|
enumerable: true,
|
|
1912
|
-
get: function () { return
|
|
2014
|
+
get: function () { return chunkWFWTHI2N_cjs.DEPRECATION_NOTICE_EVENT; }
|
|
1913
2015
|
});
|
|
1914
2016
|
Object.defineProperty(exports, "DebugPropertySchema", {
|
|
1915
2017
|
enumerable: true,
|
|
1916
|
-
get: function () { return
|
|
2018
|
+
get: function () { return chunkWFWTHI2N_cjs.DebugPropertySchema; }
|
|
1917
2019
|
});
|
|
1918
2020
|
Object.defineProperty(exports, "DrainTriggerInboxSchema", {
|
|
1919
2021
|
enumerable: true,
|
|
1920
|
-
get: function () { return
|
|
2022
|
+
get: function () { return chunkWFWTHI2N_cjs.DrainTriggerInboxSchema; }
|
|
1921
2023
|
});
|
|
1922
2024
|
Object.defineProperty(exports, "EVENT_EMISSION_ID", {
|
|
1923
2025
|
enumerable: true,
|
|
1924
|
-
get: function () { return
|
|
2026
|
+
get: function () { return chunkWFWTHI2N_cjs.EVENT_EMISSION_ID; }
|
|
1925
2027
|
});
|
|
1926
2028
|
Object.defineProperty(exports, "FieldsPropertySchema", {
|
|
1927
2029
|
enumerable: true,
|
|
1928
|
-
get: function () { return
|
|
2030
|
+
get: function () { return chunkWFWTHI2N_cjs.FieldsPropertySchema; }
|
|
1929
2031
|
});
|
|
1930
2032
|
Object.defineProperty(exports, "InputFieldPropertySchema", {
|
|
1931
2033
|
enumerable: true,
|
|
1932
|
-
get: function () { return
|
|
2034
|
+
get: function () { return chunkWFWTHI2N_cjs.InputFieldPropertySchema; }
|
|
1933
2035
|
});
|
|
1934
2036
|
Object.defineProperty(exports, "InputsPropertySchema", {
|
|
1935
2037
|
enumerable: true,
|
|
1936
|
-
get: function () { return
|
|
2038
|
+
get: function () { return chunkWFWTHI2N_cjs.InputsPropertySchema; }
|
|
1937
2039
|
});
|
|
1938
2040
|
Object.defineProperty(exports, "LeaseLimitPropertySchema", {
|
|
1939
2041
|
enumerable: true,
|
|
1940
|
-
get: function () { return
|
|
2042
|
+
get: function () { return chunkWFWTHI2N_cjs.LeaseLimitPropertySchema; }
|
|
1941
2043
|
});
|
|
1942
2044
|
Object.defineProperty(exports, "LeasePropertySchema", {
|
|
1943
2045
|
enumerable: true,
|
|
1944
|
-
get: function () { return
|
|
2046
|
+
get: function () { return chunkWFWTHI2N_cjs.LeasePropertySchema; }
|
|
1945
2047
|
});
|
|
1946
2048
|
Object.defineProperty(exports, "LeaseSecondsPropertySchema", {
|
|
1947
2049
|
enumerable: true,
|
|
1948
|
-
get: function () { return
|
|
2050
|
+
get: function () { return chunkWFWTHI2N_cjs.LeaseSecondsPropertySchema; }
|
|
1949
2051
|
});
|
|
1950
2052
|
Object.defineProperty(exports, "LimitPropertySchema", {
|
|
1951
2053
|
enumerable: true,
|
|
1952
|
-
get: function () { return
|
|
2054
|
+
get: function () { return chunkWFWTHI2N_cjs.LimitPropertySchema; }
|
|
1953
2055
|
});
|
|
1954
2056
|
Object.defineProperty(exports, "MANIFEST_ID", {
|
|
1955
2057
|
enumerable: true,
|
|
1956
|
-
get: function () { return
|
|
2058
|
+
get: function () { return chunkWFWTHI2N_cjs.MANIFEST_ID; }
|
|
1957
2059
|
});
|
|
1958
2060
|
Object.defineProperty(exports, "MAX_CONCURRENCY_LIMIT", {
|
|
1959
2061
|
enumerable: true,
|
|
1960
|
-
get: function () { return
|
|
2062
|
+
get: function () { return chunkWFWTHI2N_cjs.MAX_CONCURRENCY_LIMIT; }
|
|
1961
2063
|
});
|
|
1962
2064
|
Object.defineProperty(exports, "MAX_PAGE_LIMIT", {
|
|
1963
2065
|
enumerable: true,
|
|
1964
|
-
get: function () { return
|
|
2066
|
+
get: function () { return chunkWFWTHI2N_cjs.MAX_PAGE_LIMIT; }
|
|
1965
2067
|
});
|
|
1966
2068
|
Object.defineProperty(exports, "OffsetPropertySchema", {
|
|
1967
2069
|
enumerable: true,
|
|
1968
|
-
get: function () { return
|
|
2070
|
+
get: function () { return chunkWFWTHI2N_cjs.OffsetPropertySchema; }
|
|
1969
2071
|
});
|
|
1970
2072
|
Object.defineProperty(exports, "OutputPropertySchema", {
|
|
1971
2073
|
enumerable: true,
|
|
1972
|
-
get: function () { return
|
|
2074
|
+
get: function () { return chunkWFWTHI2N_cjs.OutputPropertySchema; }
|
|
1973
2075
|
});
|
|
1974
2076
|
Object.defineProperty(exports, "ParamsPropertySchema", {
|
|
1975
2077
|
enumerable: true,
|
|
1976
|
-
get: function () { return
|
|
2078
|
+
get: function () { return chunkWFWTHI2N_cjs.ParamsPropertySchema; }
|
|
1977
2079
|
});
|
|
1978
2080
|
Object.defineProperty(exports, "PkceCredentialsObjectSchema", {
|
|
1979
2081
|
enumerable: true,
|
|
1980
|
-
get: function () { return
|
|
2082
|
+
get: function () { return chunkWFWTHI2N_cjs.PkceCredentialsObjectSchema; }
|
|
1981
2083
|
});
|
|
1982
2084
|
Object.defineProperty(exports, "RESOLVE_CREDENTIALS_ID", {
|
|
1983
2085
|
enumerable: true,
|
|
1984
|
-
get: function () { return
|
|
2086
|
+
get: function () { return chunkWFWTHI2N_cjs.RESOLVE_CREDENTIALS_ID; }
|
|
1985
2087
|
});
|
|
1986
2088
|
Object.defineProperty(exports, "RecordPropertySchema", {
|
|
1987
2089
|
enumerable: true,
|
|
1988
|
-
get: function () { return
|
|
2090
|
+
get: function () { return chunkWFWTHI2N_cjs.RecordPropertySchema; }
|
|
1989
2091
|
});
|
|
1990
2092
|
Object.defineProperty(exports, "RecordsPropertySchema", {
|
|
1991
2093
|
enumerable: true,
|
|
1992
|
-
get: function () { return
|
|
2094
|
+
get: function () { return chunkWFWTHI2N_cjs.RecordsPropertySchema; }
|
|
1993
2095
|
});
|
|
1994
2096
|
Object.defineProperty(exports, "RelayFetchSchema", {
|
|
1995
2097
|
enumerable: true,
|
|
1996
|
-
get: function () { return
|
|
2098
|
+
get: function () { return chunkWFWTHI2N_cjs.RelayFetchSchema; }
|
|
1997
2099
|
});
|
|
1998
2100
|
Object.defineProperty(exports, "RelayRequestSchema", {
|
|
1999
2101
|
enumerable: true,
|
|
2000
|
-
get: function () { return
|
|
2102
|
+
get: function () { return chunkWFWTHI2N_cjs.RelayRequestSchema; }
|
|
2001
2103
|
});
|
|
2002
2104
|
Object.defineProperty(exports, "ResolvedCredentialsSchema", {
|
|
2003
2105
|
enumerable: true,
|
|
2004
|
-
get: function () { return
|
|
2106
|
+
get: function () { return chunkWFWTHI2N_cjs.ResolvedCredentialsSchema; }
|
|
2005
2107
|
});
|
|
2006
2108
|
Object.defineProperty(exports, "SDK_OPTIONS_ID", {
|
|
2007
2109
|
enumerable: true,
|
|
2008
|
-
get: function () { return
|
|
2110
|
+
get: function () { return chunkWFWTHI2N_cjs.SDK_OPTIONS_ID; }
|
|
2009
2111
|
});
|
|
2010
2112
|
Object.defineProperty(exports, "TablePropertySchema", {
|
|
2011
2113
|
enumerable: true,
|
|
2012
|
-
get: function () { return
|
|
2114
|
+
get: function () { return chunkWFWTHI2N_cjs.TablePropertySchema; }
|
|
2013
2115
|
});
|
|
2014
2116
|
Object.defineProperty(exports, "TablesPropertySchema", {
|
|
2015
2117
|
enumerable: true,
|
|
2016
|
-
get: function () { return
|
|
2118
|
+
get: function () { return chunkWFWTHI2N_cjs.TablesPropertySchema; }
|
|
2017
2119
|
});
|
|
2018
2120
|
Object.defineProperty(exports, "TriggerInboxKeyPropertySchema", {
|
|
2019
2121
|
enumerable: true,
|
|
2020
|
-
get: function () { return
|
|
2122
|
+
get: function () { return chunkWFWTHI2N_cjs.TriggerInboxKeyPropertySchema; }
|
|
2021
2123
|
});
|
|
2022
2124
|
Object.defineProperty(exports, "TriggerInboxNamePropertySchema", {
|
|
2023
2125
|
enumerable: true,
|
|
2024
|
-
get: function () { return
|
|
2126
|
+
get: function () { return chunkWFWTHI2N_cjs.TriggerInboxNamePropertySchema; }
|
|
2025
2127
|
});
|
|
2026
2128
|
Object.defineProperty(exports, "TriggerInboxPropertySchema", {
|
|
2027
2129
|
enumerable: true,
|
|
2028
|
-
get: function () { return
|
|
2130
|
+
get: function () { return chunkWFWTHI2N_cjs.TriggerInboxPropertySchema; }
|
|
2029
2131
|
});
|
|
2030
2132
|
Object.defineProperty(exports, "WatchTriggerInboxSchema", {
|
|
2031
2133
|
enumerable: true,
|
|
2032
|
-
get: function () { return
|
|
2134
|
+
get: function () { return chunkWFWTHI2N_cjs.WatchTriggerInboxSchema; }
|
|
2033
2135
|
});
|
|
2034
2136
|
Object.defineProperty(exports, "ZAPIER_BASE_URL", {
|
|
2035
2137
|
enumerable: true,
|
|
2036
|
-
get: function () { return
|
|
2138
|
+
get: function () { return chunkWFWTHI2N_cjs.ZAPIER_BASE_URL; }
|
|
2037
2139
|
});
|
|
2038
2140
|
Object.defineProperty(exports, "ZAPIER_MAX_CONCURRENT_REQUESTS", {
|
|
2039
2141
|
enumerable: true,
|
|
2040
|
-
get: function () { return
|
|
2142
|
+
get: function () { return chunkWFWTHI2N_cjs.ZAPIER_MAX_CONCURRENT_REQUESTS; }
|
|
2041
2143
|
});
|
|
2042
2144
|
Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRIES", {
|
|
2043
2145
|
enumerable: true,
|
|
2044
|
-
get: function () { return
|
|
2146
|
+
get: function () { return chunkWFWTHI2N_cjs.ZAPIER_MAX_NETWORK_RETRIES; }
|
|
2045
2147
|
});
|
|
2046
2148
|
Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS", {
|
|
2047
2149
|
enumerable: true,
|
|
2048
|
-
get: function () { return
|
|
2150
|
+
get: function () { return chunkWFWTHI2N_cjs.ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS; }
|
|
2049
2151
|
});
|
|
2050
2152
|
Object.defineProperty(exports, "ZapierAbortDrainSignal", {
|
|
2051
2153
|
enumerable: true,
|
|
2052
|
-
get: function () { return
|
|
2154
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierAbortDrainSignal; }
|
|
2053
2155
|
});
|
|
2054
2156
|
Object.defineProperty(exports, "ZapierActionError", {
|
|
2055
2157
|
enumerable: true,
|
|
2056
|
-
get: function () { return
|
|
2158
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierActionError; }
|
|
2057
2159
|
});
|
|
2058
2160
|
Object.defineProperty(exports, "ZapierApiError", {
|
|
2059
2161
|
enumerable: true,
|
|
2060
|
-
get: function () { return
|
|
2162
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierApiError; }
|
|
2061
2163
|
});
|
|
2062
2164
|
Object.defineProperty(exports, "ZapierAppNotFoundError", {
|
|
2063
2165
|
enumerable: true,
|
|
2064
|
-
get: function () { return
|
|
2166
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierAppNotFoundError; }
|
|
2065
2167
|
});
|
|
2066
2168
|
Object.defineProperty(exports, "ZapierApprovalError", {
|
|
2067
2169
|
enumerable: true,
|
|
2068
|
-
get: function () { return
|
|
2170
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierApprovalError; }
|
|
2069
2171
|
});
|
|
2070
2172
|
Object.defineProperty(exports, "ZapierAuthenticationError", {
|
|
2071
2173
|
enumerable: true,
|
|
2072
|
-
get: function () { return
|
|
2174
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierAuthenticationError; }
|
|
2073
2175
|
});
|
|
2074
2176
|
Object.defineProperty(exports, "ZapierBundleError", {
|
|
2075
2177
|
enumerable: true,
|
|
2076
|
-
get: function () { return
|
|
2178
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierBundleError; }
|
|
2077
2179
|
});
|
|
2078
2180
|
Object.defineProperty(exports, "ZapierConfigurationError", {
|
|
2079
2181
|
enumerable: true,
|
|
2080
|
-
get: function () { return
|
|
2182
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierConfigurationError; }
|
|
2081
2183
|
});
|
|
2082
2184
|
Object.defineProperty(exports, "ZapierConflictError", {
|
|
2083
2185
|
enumerable: true,
|
|
2084
|
-
get: function () { return
|
|
2186
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierConflictError; }
|
|
2085
2187
|
});
|
|
2086
2188
|
Object.defineProperty(exports, "ZapierError", {
|
|
2087
2189
|
enumerable: true,
|
|
2088
|
-
get: function () { return
|
|
2190
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierError; }
|
|
2089
2191
|
});
|
|
2090
2192
|
Object.defineProperty(exports, "ZapierNotFoundError", {
|
|
2091
2193
|
enumerable: true,
|
|
2092
|
-
get: function () { return
|
|
2194
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierNotFoundError; }
|
|
2093
2195
|
});
|
|
2094
2196
|
Object.defineProperty(exports, "ZapierRateLimitError", {
|
|
2095
2197
|
enumerable: true,
|
|
2096
|
-
get: function () { return
|
|
2198
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierRateLimitError; }
|
|
2097
2199
|
});
|
|
2098
2200
|
Object.defineProperty(exports, "ZapierRelayError", {
|
|
2099
2201
|
enumerable: true,
|
|
2100
|
-
get: function () { return
|
|
2202
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierRelayError; }
|
|
2101
2203
|
});
|
|
2102
2204
|
Object.defineProperty(exports, "ZapierReleaseTriggerMessageSignal", {
|
|
2103
2205
|
enumerable: true,
|
|
2104
|
-
get: function () { return
|
|
2206
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierReleaseTriggerMessageSignal; }
|
|
2105
2207
|
});
|
|
2106
2208
|
Object.defineProperty(exports, "ZapierResourceNotFoundError", {
|
|
2107
2209
|
enumerable: true,
|
|
2108
|
-
get: function () { return
|
|
2210
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierResourceNotFoundError; }
|
|
2109
2211
|
});
|
|
2110
2212
|
Object.defineProperty(exports, "ZapierSignal", {
|
|
2111
2213
|
enumerable: true,
|
|
2112
|
-
get: function () { return
|
|
2214
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierSignal; }
|
|
2113
2215
|
});
|
|
2114
2216
|
Object.defineProperty(exports, "ZapierTimeoutError", {
|
|
2115
2217
|
enumerable: true,
|
|
2116
|
-
get: function () { return
|
|
2218
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierTimeoutError; }
|
|
2117
2219
|
});
|
|
2118
2220
|
Object.defineProperty(exports, "ZapierUnknownError", {
|
|
2119
2221
|
enumerable: true,
|
|
2120
|
-
get: function () { return
|
|
2222
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierUnknownError; }
|
|
2121
2223
|
});
|
|
2122
2224
|
Object.defineProperty(exports, "ZapierValidationError", {
|
|
2123
2225
|
enumerable: true,
|
|
2124
|
-
get: function () { return
|
|
2226
|
+
get: function () { return chunkWFWTHI2N_cjs.ZapierValidationError; }
|
|
2125
2227
|
});
|
|
2126
2228
|
Object.defineProperty(exports, "actionKeyResolver", {
|
|
2127
2229
|
enumerable: true,
|
|
2128
|
-
get: function () { return
|
|
2230
|
+
get: function () { return chunkWFWTHI2N_cjs.actionKeyResolver; }
|
|
2129
2231
|
});
|
|
2130
2232
|
Object.defineProperty(exports, "actionTypeResolver", {
|
|
2131
2233
|
enumerable: true,
|
|
2132
|
-
get: function () { return
|
|
2234
|
+
get: function () { return chunkWFWTHI2N_cjs.actionTypeResolver; }
|
|
2133
2235
|
});
|
|
2134
2236
|
Object.defineProperty(exports, "addPlugin", {
|
|
2135
2237
|
enumerable: true,
|
|
2136
|
-
get: function () { return
|
|
2238
|
+
get: function () { return chunkWFWTHI2N_cjs.addPlugin; }
|
|
2137
2239
|
});
|
|
2138
2240
|
Object.defineProperty(exports, "apiPlugin", {
|
|
2139
2241
|
enumerable: true,
|
|
2140
|
-
get: function () { return
|
|
2242
|
+
get: function () { return chunkWFWTHI2N_cjs.apiPlugin; }
|
|
2141
2243
|
});
|
|
2142
2244
|
Object.defineProperty(exports, "apiPluginRef", {
|
|
2143
2245
|
enumerable: true,
|
|
2144
|
-
get: function () { return
|
|
2246
|
+
get: function () { return chunkWFWTHI2N_cjs.apiPluginRef; }
|
|
2145
2247
|
});
|
|
2146
2248
|
Object.defineProperty(exports, "appKeyResolver", {
|
|
2147
2249
|
enumerable: true,
|
|
2148
|
-
get: function () { return
|
|
2250
|
+
get: function () { return chunkWFWTHI2N_cjs.appKeyResolver; }
|
|
2149
2251
|
});
|
|
2150
2252
|
Object.defineProperty(exports, "appsPlugin", {
|
|
2151
2253
|
enumerable: true,
|
|
2152
|
-
get: function () { return
|
|
2254
|
+
get: function () { return chunkWFWTHI2N_cjs.appsPlugin; }
|
|
2153
2255
|
});
|
|
2154
2256
|
Object.defineProperty(exports, "batch", {
|
|
2155
2257
|
enumerable: true,
|
|
2156
|
-
get: function () { return
|
|
2258
|
+
get: function () { return chunkWFWTHI2N_cjs.batch; }
|
|
2157
2259
|
});
|
|
2158
2260
|
Object.defineProperty(exports, "buildApplicationLifecycleEvent", {
|
|
2159
2261
|
enumerable: true,
|
|
2160
|
-
get: function () { return
|
|
2262
|
+
get: function () { return chunkWFWTHI2N_cjs.buildApplicationLifecycleEvent; }
|
|
2161
2263
|
});
|
|
2162
2264
|
Object.defineProperty(exports, "buildCapabilityMessage", {
|
|
2163
2265
|
enumerable: true,
|
|
2164
|
-
get: function () { return
|
|
2266
|
+
get: function () { return chunkWFWTHI2N_cjs.buildCapabilityMessage; }
|
|
2165
2267
|
});
|
|
2166
2268
|
Object.defineProperty(exports, "buildErrorEvent", {
|
|
2167
2269
|
enumerable: true,
|
|
2168
|
-
get: function () { return
|
|
2270
|
+
get: function () { return chunkWFWTHI2N_cjs.buildErrorEvent; }
|
|
2169
2271
|
});
|
|
2170
2272
|
Object.defineProperty(exports, "buildErrorEventWithContext", {
|
|
2171
2273
|
enumerable: true,
|
|
2172
|
-
get: function () { return
|
|
2274
|
+
get: function () { return chunkWFWTHI2N_cjs.buildErrorEventWithContext; }
|
|
2173
2275
|
});
|
|
2174
2276
|
Object.defineProperty(exports, "buildMethodCalledEvent", {
|
|
2175
2277
|
enumerable: true,
|
|
2176
|
-
get: function () { return
|
|
2278
|
+
get: function () { return chunkWFWTHI2N_cjs.buildMethodCalledEvent; }
|
|
2177
2279
|
});
|
|
2178
2280
|
Object.defineProperty(exports, "cleanupEventListeners", {
|
|
2179
2281
|
enumerable: true,
|
|
2180
|
-
get: function () { return
|
|
2282
|
+
get: function () { return chunkWFWTHI2N_cjs.cleanupEventListeners; }
|
|
2181
2283
|
});
|
|
2182
2284
|
Object.defineProperty(exports, "clearTokenCache", {
|
|
2183
2285
|
enumerable: true,
|
|
2184
|
-
get: function () { return
|
|
2286
|
+
get: function () { return chunkWFWTHI2N_cjs.clearTokenCache; }
|
|
2185
2287
|
});
|
|
2186
2288
|
Object.defineProperty(exports, "clientCredentialsNameResolver", {
|
|
2187
2289
|
enumerable: true,
|
|
2188
|
-
get: function () { return
|
|
2290
|
+
get: function () { return chunkWFWTHI2N_cjs.clientCredentialsNameResolver; }
|
|
2189
2291
|
});
|
|
2190
2292
|
Object.defineProperty(exports, "clientIdResolver", {
|
|
2191
2293
|
enumerable: true,
|
|
2192
|
-
get: function () { return
|
|
2294
|
+
get: function () { return chunkWFWTHI2N_cjs.clientIdResolver; }
|
|
2193
2295
|
});
|
|
2194
2296
|
Object.defineProperty(exports, "composePlugins", {
|
|
2195
2297
|
enumerable: true,
|
|
2196
|
-
get: function () { return
|
|
2298
|
+
get: function () { return chunkWFWTHI2N_cjs.composePlugins; }
|
|
2197
2299
|
});
|
|
2198
2300
|
Object.defineProperty(exports, "connectionIdGenericResolver", {
|
|
2199
2301
|
enumerable: true,
|
|
2200
|
-
get: function () { return
|
|
2302
|
+
get: function () { return chunkWFWTHI2N_cjs.connectionIdGenericResolver; }
|
|
2201
2303
|
});
|
|
2202
2304
|
Object.defineProperty(exports, "connectionIdResolver", {
|
|
2203
2305
|
enumerable: true,
|
|
2204
|
-
get: function () { return
|
|
2306
|
+
get: function () { return chunkWFWTHI2N_cjs.connectionIdResolver; }
|
|
2205
2307
|
});
|
|
2206
2308
|
Object.defineProperty(exports, "connectionsPlugin", {
|
|
2207
2309
|
enumerable: true,
|
|
2208
|
-
get: function () { return
|
|
2310
|
+
get: function () { return chunkWFWTHI2N_cjs.connectionsPlugin; }
|
|
2209
2311
|
});
|
|
2210
2312
|
Object.defineProperty(exports, "connectionsPluginRef", {
|
|
2211
2313
|
enumerable: true,
|
|
2212
|
-
get: function () { return
|
|
2314
|
+
get: function () { return chunkWFWTHI2N_cjs.connectionsPluginRef; }
|
|
2213
2315
|
});
|
|
2214
2316
|
Object.defineProperty(exports, "createBaseEvent", {
|
|
2215
2317
|
enumerable: true,
|
|
2216
|
-
get: function () { return
|
|
2318
|
+
get: function () { return chunkWFWTHI2N_cjs.createBaseEvent; }
|
|
2217
2319
|
});
|
|
2218
2320
|
Object.defineProperty(exports, "createClientCredentialsPlugin", {
|
|
2219
2321
|
enumerable: true,
|
|
2220
|
-
get: function () { return
|
|
2322
|
+
get: function () { return chunkWFWTHI2N_cjs.createClientCredentialsPlugin; }
|
|
2221
2323
|
});
|
|
2222
2324
|
Object.defineProperty(exports, "createController", {
|
|
2223
2325
|
enumerable: true,
|
|
2224
|
-
get: function () { return
|
|
2326
|
+
get: function () { return chunkWFWTHI2N_cjs.createController; }
|
|
2225
2327
|
});
|
|
2226
2328
|
Object.defineProperty(exports, "createCorePlugin", {
|
|
2227
2329
|
enumerable: true,
|
|
2228
|
-
get: function () { return
|
|
2330
|
+
get: function () { return chunkWFWTHI2N_cjs.createCorePlugin; }
|
|
2229
2331
|
});
|
|
2230
2332
|
Object.defineProperty(exports, "createFunction", {
|
|
2231
2333
|
enumerable: true,
|
|
2232
|
-
get: function () { return
|
|
2334
|
+
get: function () { return chunkWFWTHI2N_cjs.createFunction; }
|
|
2233
2335
|
});
|
|
2234
2336
|
Object.defineProperty(exports, "createMemoryCache", {
|
|
2235
2337
|
enumerable: true,
|
|
2236
|
-
get: function () { return
|
|
2338
|
+
get: function () { return chunkWFWTHI2N_cjs.createMemoryCache; }
|
|
2237
2339
|
});
|
|
2238
2340
|
Object.defineProperty(exports, "createPaginatedFunction", {
|
|
2239
2341
|
enumerable: true,
|
|
2240
|
-
get: function () { return
|
|
2342
|
+
get: function () { return chunkWFWTHI2N_cjs.createPaginatedFunction; }
|
|
2241
2343
|
});
|
|
2242
2344
|
Object.defineProperty(exports, "createPaginatedPluginMethod", {
|
|
2243
2345
|
enumerable: true,
|
|
2244
|
-
get: function () { return
|
|
2346
|
+
get: function () { return chunkWFWTHI2N_cjs.createPaginatedPluginMethod; }
|
|
2245
2347
|
});
|
|
2246
2348
|
Object.defineProperty(exports, "createPluginMethod", {
|
|
2247
2349
|
enumerable: true,
|
|
2248
|
-
get: function () { return
|
|
2350
|
+
get: function () { return chunkWFWTHI2N_cjs.createPluginMethod; }
|
|
2249
2351
|
});
|
|
2250
2352
|
Object.defineProperty(exports, "createPluginStack", {
|
|
2251
2353
|
enumerable: true,
|
|
2252
|
-
get: function () { return
|
|
2354
|
+
get: function () { return chunkWFWTHI2N_cjs.createPluginStack; }
|
|
2253
2355
|
});
|
|
2254
2356
|
Object.defineProperty(exports, "createSdk", {
|
|
2255
2357
|
enumerable: true,
|
|
2256
|
-
get: function () { return
|
|
2358
|
+
get: function () { return chunkWFWTHI2N_cjs.createSdk; }
|
|
2257
2359
|
});
|
|
2258
2360
|
Object.defineProperty(exports, "createTableFieldsPlugin", {
|
|
2259
2361
|
enumerable: true,
|
|
2260
|
-
get: function () { return
|
|
2362
|
+
get: function () { return chunkWFWTHI2N_cjs.createTableFieldsPlugin; }
|
|
2261
2363
|
});
|
|
2262
2364
|
Object.defineProperty(exports, "createTablePlugin", {
|
|
2263
2365
|
enumerable: true,
|
|
2264
|
-
get: function () { return
|
|
2366
|
+
get: function () { return chunkWFWTHI2N_cjs.createTablePlugin; }
|
|
2265
2367
|
});
|
|
2266
2368
|
Object.defineProperty(exports, "createTableRecordsPlugin", {
|
|
2267
2369
|
enumerable: true,
|
|
2268
|
-
get: function () { return
|
|
2370
|
+
get: function () { return chunkWFWTHI2N_cjs.createTableRecordsPlugin; }
|
|
2269
2371
|
});
|
|
2270
2372
|
Object.defineProperty(exports, "createZapierApi", {
|
|
2271
2373
|
enumerable: true,
|
|
2272
|
-
get: function () { return
|
|
2374
|
+
get: function () { return chunkWFWTHI2N_cjs.createZapierApi; }
|
|
2273
2375
|
});
|
|
2274
2376
|
Object.defineProperty(exports, "createZapierSdkWithoutRegistry", {
|
|
2275
2377
|
enumerable: true,
|
|
2276
|
-
get: function () { return
|
|
2378
|
+
get: function () { return chunkWFWTHI2N_cjs.createZapierSdkWithoutRegistry; }
|
|
2277
2379
|
});
|
|
2278
2380
|
Object.defineProperty(exports, "declareMethod", {
|
|
2279
2381
|
enumerable: true,
|
|
2280
|
-
get: function () { return
|
|
2382
|
+
get: function () { return chunkWFWTHI2N_cjs.declareMethod; }
|
|
2281
2383
|
});
|
|
2282
2384
|
Object.defineProperty(exports, "declareOptionalProperty", {
|
|
2283
2385
|
enumerable: true,
|
|
2284
|
-
get: function () { return
|
|
2386
|
+
get: function () { return chunkWFWTHI2N_cjs.declareOptionalProperty; }
|
|
2285
2387
|
});
|
|
2286
2388
|
Object.defineProperty(exports, "declarePlugin", {
|
|
2287
2389
|
enumerable: true,
|
|
2288
|
-
get: function () { return
|
|
2390
|
+
get: function () { return chunkWFWTHI2N_cjs.declarePlugin; }
|
|
2289
2391
|
});
|
|
2290
2392
|
Object.defineProperty(exports, "declareProperty", {
|
|
2291
2393
|
enumerable: true,
|
|
2292
|
-
get: function () { return
|
|
2394
|
+
get: function () { return chunkWFWTHI2N_cjs.declareProperty; }
|
|
2293
2395
|
});
|
|
2294
2396
|
Object.defineProperty(exports, "defineFormatter", {
|
|
2295
2397
|
enumerable: true,
|
|
2296
|
-
get: function () { return
|
|
2398
|
+
get: function () { return chunkWFWTHI2N_cjs.defineFormatter; }
|
|
2297
2399
|
});
|
|
2298
2400
|
Object.defineProperty(exports, "defineLegacyMerge", {
|
|
2299
2401
|
enumerable: true,
|
|
2300
|
-
get: function () { return
|
|
2402
|
+
get: function () { return chunkWFWTHI2N_cjs.defineLegacyMerge; }
|
|
2301
2403
|
});
|
|
2302
2404
|
Object.defineProperty(exports, "defineMethod", {
|
|
2303
2405
|
enumerable: true,
|
|
2304
|
-
get: function () { return
|
|
2406
|
+
get: function () { return chunkWFWTHI2N_cjs.defineMethod; }
|
|
2305
2407
|
});
|
|
2306
2408
|
Object.defineProperty(exports, "defineMethodOverride", {
|
|
2307
2409
|
enumerable: true,
|
|
2308
|
-
get: function () { return
|
|
2410
|
+
get: function () { return chunkWFWTHI2N_cjs.defineMethodOverride; }
|
|
2309
2411
|
});
|
|
2310
2412
|
Object.defineProperty(exports, "definePlugin", {
|
|
2311
2413
|
enumerable: true,
|
|
2312
|
-
get: function () { return
|
|
2414
|
+
get: function () { return chunkWFWTHI2N_cjs.definePlugin; }
|
|
2313
2415
|
});
|
|
2314
2416
|
Object.defineProperty(exports, "defineProperty", {
|
|
2315
2417
|
enumerable: true,
|
|
2316
|
-
get: function () { return
|
|
2418
|
+
get: function () { return chunkWFWTHI2N_cjs.defineProperty; }
|
|
2317
2419
|
});
|
|
2318
2420
|
Object.defineProperty(exports, "defineResolver", {
|
|
2319
2421
|
enumerable: true,
|
|
2320
|
-
get: function () { return
|
|
2422
|
+
get: function () { return chunkWFWTHI2N_cjs.defineResolver; }
|
|
2321
2423
|
});
|
|
2322
2424
|
Object.defineProperty(exports, "deleteClientCredentialsPlugin", {
|
|
2323
2425
|
enumerable: true,
|
|
2324
|
-
get: function () { return
|
|
2426
|
+
get: function () { return chunkWFWTHI2N_cjs.deleteClientCredentialsPlugin; }
|
|
2325
2427
|
});
|
|
2326
2428
|
Object.defineProperty(exports, "deleteTableFieldsPlugin", {
|
|
2327
2429
|
enumerable: true,
|
|
2328
|
-
get: function () { return
|
|
2430
|
+
get: function () { return chunkWFWTHI2N_cjs.deleteTableFieldsPlugin; }
|
|
2329
2431
|
});
|
|
2330
2432
|
Object.defineProperty(exports, "deleteTablePlugin", {
|
|
2331
2433
|
enumerable: true,
|
|
2332
|
-
get: function () { return
|
|
2434
|
+
get: function () { return chunkWFWTHI2N_cjs.deleteTablePlugin; }
|
|
2333
2435
|
});
|
|
2334
2436
|
Object.defineProperty(exports, "deleteTableRecordsPlugin", {
|
|
2335
2437
|
enumerable: true,
|
|
2336
|
-
get: function () { return
|
|
2438
|
+
get: function () { return chunkWFWTHI2N_cjs.deleteTableRecordsPlugin; }
|
|
2337
2439
|
});
|
|
2338
2440
|
Object.defineProperty(exports, "disposeSdk", {
|
|
2339
2441
|
enumerable: true,
|
|
2340
|
-
get: function () { return
|
|
2442
|
+
get: function () { return chunkWFWTHI2N_cjs.disposeSdk; }
|
|
2341
2443
|
});
|
|
2342
2444
|
Object.defineProperty(exports, "durableRunIdResolver", {
|
|
2343
2445
|
enumerable: true,
|
|
2344
|
-
get: function () { return
|
|
2446
|
+
get: function () { return chunkWFWTHI2N_cjs.durableRunIdResolver; }
|
|
2345
2447
|
});
|
|
2346
2448
|
Object.defineProperty(exports, "eventEmissionHookPlugin", {
|
|
2347
2449
|
enumerable: true,
|
|
2348
|
-
get: function () { return
|
|
2450
|
+
get: function () { return chunkWFWTHI2N_cjs.eventEmissionHookPlugin; }
|
|
2349
2451
|
});
|
|
2350
2452
|
Object.defineProperty(exports, "eventEmissionPlugin", {
|
|
2351
2453
|
enumerable: true,
|
|
2352
|
-
get: function () { return
|
|
2454
|
+
get: function () { return chunkWFWTHI2N_cjs.eventEmissionPlugin; }
|
|
2353
2455
|
});
|
|
2354
2456
|
Object.defineProperty(exports, "eventEmissionPluginRef", {
|
|
2355
2457
|
enumerable: true,
|
|
2356
|
-
get: function () { return
|
|
2458
|
+
get: function () { return chunkWFWTHI2N_cjs.eventEmissionPluginRef; }
|
|
2357
2459
|
});
|
|
2358
2460
|
Object.defineProperty(exports, "fetchPlugin", {
|
|
2359
2461
|
enumerable: true,
|
|
2360
|
-
get: function () { return
|
|
2462
|
+
get: function () { return chunkWFWTHI2N_cjs.fetchPlugin; }
|
|
2361
2463
|
});
|
|
2362
2464
|
Object.defineProperty(exports, "findFirstConnectionPlugin", {
|
|
2363
2465
|
enumerable: true,
|
|
2364
|
-
get: function () { return
|
|
2466
|
+
get: function () { return chunkWFWTHI2N_cjs.findFirstConnectionPlugin; }
|
|
2365
2467
|
});
|
|
2366
2468
|
Object.defineProperty(exports, "findManifestEntry", {
|
|
2367
2469
|
enumerable: true,
|
|
2368
|
-
get: function () { return
|
|
2470
|
+
get: function () { return chunkWFWTHI2N_cjs.findManifestEntry; }
|
|
2369
2471
|
});
|
|
2370
2472
|
Object.defineProperty(exports, "findUniqueConnectionPlugin", {
|
|
2371
2473
|
enumerable: true,
|
|
2372
|
-
get: function () { return
|
|
2474
|
+
get: function () { return chunkWFWTHI2N_cjs.findUniqueConnectionPlugin; }
|
|
2373
2475
|
});
|
|
2374
2476
|
Object.defineProperty(exports, "formatErrorMessage", {
|
|
2375
2477
|
enumerable: true,
|
|
2376
|
-
get: function () { return
|
|
2478
|
+
get: function () { return chunkWFWTHI2N_cjs.formatErrorMessage; }
|
|
2377
2479
|
});
|
|
2378
2480
|
Object.defineProperty(exports, "fromFunctionPlugin", {
|
|
2379
2481
|
enumerable: true,
|
|
2380
|
-
get: function () { return
|
|
2482
|
+
get: function () { return chunkWFWTHI2N_cjs.fromFunctionPlugin; }
|
|
2381
2483
|
});
|
|
2382
2484
|
Object.defineProperty(exports, "generateEventId", {
|
|
2383
2485
|
enumerable: true,
|
|
2384
|
-
get: function () { return
|
|
2486
|
+
get: function () { return chunkWFWTHI2N_cjs.generateEventId; }
|
|
2385
2487
|
});
|
|
2386
2488
|
Object.defineProperty(exports, "getActionInputFieldsSchemaPlugin", {
|
|
2387
2489
|
enumerable: true,
|
|
2388
|
-
get: function () { return
|
|
2490
|
+
get: function () { return chunkWFWTHI2N_cjs.getActionInputFieldsSchemaPlugin; }
|
|
2389
2491
|
});
|
|
2390
2492
|
Object.defineProperty(exports, "getActionPlugin", {
|
|
2391
2493
|
enumerable: true,
|
|
2392
|
-
get: function () { return
|
|
2494
|
+
get: function () { return chunkWFWTHI2N_cjs.getActionPlugin; }
|
|
2393
2495
|
});
|
|
2394
2496
|
Object.defineProperty(exports, "getAgent", {
|
|
2395
2497
|
enumerable: true,
|
|
2396
|
-
get: function () { return
|
|
2498
|
+
get: function () { return chunkWFWTHI2N_cjs.getAgent; }
|
|
2397
2499
|
});
|
|
2398
2500
|
Object.defineProperty(exports, "getAppPlugin", {
|
|
2399
2501
|
enumerable: true,
|
|
2400
|
-
get: function () { return
|
|
2502
|
+
get: function () { return chunkWFWTHI2N_cjs.getAppPlugin; }
|
|
2401
2503
|
});
|
|
2402
2504
|
Object.defineProperty(exports, "getBaseUrlFromCredentials", {
|
|
2403
2505
|
enumerable: true,
|
|
2404
|
-
get: function () { return
|
|
2506
|
+
get: function () { return chunkWFWTHI2N_cjs.getBaseUrlFromCredentials; }
|
|
2405
2507
|
});
|
|
2406
2508
|
Object.defineProperty(exports, "getCallerContext", {
|
|
2407
2509
|
enumerable: true,
|
|
2408
|
-
get: function () { return
|
|
2510
|
+
get: function () { return chunkWFWTHI2N_cjs.getCallerContext; }
|
|
2409
2511
|
});
|
|
2410
2512
|
Object.defineProperty(exports, "getCiPlatform", {
|
|
2411
2513
|
enumerable: true,
|
|
2412
|
-
get: function () { return
|
|
2514
|
+
get: function () { return chunkWFWTHI2N_cjs.getCiPlatform; }
|
|
2413
2515
|
});
|
|
2414
2516
|
Object.defineProperty(exports, "getClientIdFromCredentials", {
|
|
2415
2517
|
enumerable: true,
|
|
2416
|
-
get: function () { return
|
|
2518
|
+
get: function () { return chunkWFWTHI2N_cjs.getClientIdFromCredentials; }
|
|
2417
2519
|
});
|
|
2418
2520
|
Object.defineProperty(exports, "getConnectionPlugin", {
|
|
2419
2521
|
enumerable: true,
|
|
2420
|
-
get: function () { return
|
|
2522
|
+
get: function () { return chunkWFWTHI2N_cjs.getConnectionPlugin; }
|
|
2421
2523
|
});
|
|
2422
2524
|
Object.defineProperty(exports, "getContext", {
|
|
2423
2525
|
enumerable: true,
|
|
2424
|
-
get: function () { return
|
|
2526
|
+
get: function () { return chunkWFWTHI2N_cjs.getContext; }
|
|
2425
2527
|
});
|
|
2426
2528
|
Object.defineProperty(exports, "getCoreErrorCause", {
|
|
2427
2529
|
enumerable: true,
|
|
2428
|
-
get: function () { return
|
|
2530
|
+
get: function () { return chunkWFWTHI2N_cjs.getCoreErrorCause; }
|
|
2429
2531
|
});
|
|
2430
2532
|
Object.defineProperty(exports, "getCoreErrorCode", {
|
|
2431
2533
|
enumerable: true,
|
|
2432
|
-
get: function () { return
|
|
2534
|
+
get: function () { return chunkWFWTHI2N_cjs.getCoreErrorCode; }
|
|
2433
2535
|
});
|
|
2434
2536
|
Object.defineProperty(exports, "getCpuTime", {
|
|
2435
2537
|
enumerable: true,
|
|
2436
|
-
get: function () { return
|
|
2538
|
+
get: function () { return chunkWFWTHI2N_cjs.getCpuTime; }
|
|
2437
2539
|
});
|
|
2438
2540
|
Object.defineProperty(exports, "getCurrentTimestamp", {
|
|
2439
2541
|
enumerable: true,
|
|
2440
|
-
get: function () { return
|
|
2542
|
+
get: function () { return chunkWFWTHI2N_cjs.getCurrentTimestamp; }
|
|
2441
2543
|
});
|
|
2442
2544
|
Object.defineProperty(exports, "getMemoryUsage", {
|
|
2443
2545
|
enumerable: true,
|
|
2444
|
-
get: function () { return
|
|
2546
|
+
get: function () { return chunkWFWTHI2N_cjs.getMemoryUsage; }
|
|
2445
2547
|
});
|
|
2446
2548
|
Object.defineProperty(exports, "getOrCreateApiClient", {
|
|
2447
2549
|
enumerable: true,
|
|
2448
|
-
get: function () { return
|
|
2550
|
+
get: function () { return chunkWFWTHI2N_cjs.getOrCreateApiClient; }
|
|
2449
2551
|
});
|
|
2450
2552
|
Object.defineProperty(exports, "getOsInfo", {
|
|
2451
2553
|
enumerable: true,
|
|
2452
|
-
get: function () { return
|
|
2554
|
+
get: function () { return chunkWFWTHI2N_cjs.getOsInfo; }
|
|
2453
2555
|
});
|
|
2454
2556
|
Object.defineProperty(exports, "getPlatformVersions", {
|
|
2455
2557
|
enumerable: true,
|
|
2456
|
-
get: function () { return
|
|
2558
|
+
get: function () { return chunkWFWTHI2N_cjs.getPlatformVersions; }
|
|
2457
2559
|
});
|
|
2458
2560
|
Object.defineProperty(exports, "getPreferredManifestEntryKey", {
|
|
2459
2561
|
enumerable: true,
|
|
2460
|
-
get: function () { return
|
|
2562
|
+
get: function () { return chunkWFWTHI2N_cjs.getPreferredManifestEntryKey; }
|
|
2461
2563
|
});
|
|
2462
2564
|
Object.defineProperty(exports, "getProfilePlugin", {
|
|
2463
2565
|
enumerable: true,
|
|
2464
|
-
get: function () { return
|
|
2566
|
+
get: function () { return chunkWFWTHI2N_cjs.getProfilePlugin; }
|
|
2465
2567
|
});
|
|
2466
2568
|
Object.defineProperty(exports, "getRegistryPlugin", {
|
|
2467
2569
|
enumerable: true,
|
|
2468
|
-
get: function () { return
|
|
2570
|
+
get: function () { return chunkWFWTHI2N_cjs.getRegistryPlugin; }
|
|
2469
2571
|
});
|
|
2470
2572
|
Object.defineProperty(exports, "getReleaseId", {
|
|
2471
2573
|
enumerable: true,
|
|
2472
|
-
get: function () { return
|
|
2574
|
+
get: function () { return chunkWFWTHI2N_cjs.getReleaseId; }
|
|
2473
2575
|
});
|
|
2474
2576
|
Object.defineProperty(exports, "getTablePlugin", {
|
|
2475
2577
|
enumerable: true,
|
|
2476
|
-
get: function () { return
|
|
2578
|
+
get: function () { return chunkWFWTHI2N_cjs.getTablePlugin; }
|
|
2477
2579
|
});
|
|
2478
2580
|
Object.defineProperty(exports, "getTableRecordPlugin", {
|
|
2479
2581
|
enumerable: true,
|
|
2480
|
-
get: function () { return
|
|
2582
|
+
get: function () { return chunkWFWTHI2N_cjs.getTableRecordPlugin; }
|
|
2481
2583
|
});
|
|
2482
2584
|
Object.defineProperty(exports, "getTokenFromCliLogin", {
|
|
2483
2585
|
enumerable: true,
|
|
2484
|
-
get: function () { return
|
|
2586
|
+
get: function () { return chunkWFWTHI2N_cjs.getTokenFromCliLogin; }
|
|
2485
2587
|
});
|
|
2486
2588
|
Object.defineProperty(exports, "getTtyContext", {
|
|
2487
2589
|
enumerable: true,
|
|
2488
|
-
get: function () { return
|
|
2590
|
+
get: function () { return chunkWFWTHI2N_cjs.getTtyContext; }
|
|
2489
2591
|
});
|
|
2490
2592
|
Object.defineProperty(exports, "getZapierApprovalMode", {
|
|
2491
2593
|
enumerable: true,
|
|
2492
|
-
get: function () { return
|
|
2594
|
+
get: function () { return chunkWFWTHI2N_cjs.getZapierApprovalMode; }
|
|
2493
2595
|
});
|
|
2494
2596
|
Object.defineProperty(exports, "getZapierDefaultApprovalMode", {
|
|
2495
2597
|
enumerable: true,
|
|
2496
|
-
get: function () { return
|
|
2598
|
+
get: function () { return chunkWFWTHI2N_cjs.getZapierDefaultApprovalMode; }
|
|
2497
2599
|
});
|
|
2498
2600
|
Object.defineProperty(exports, "getZapierOpenAutoModeApprovalsInBrowser", {
|
|
2499
2601
|
enumerable: true,
|
|
2500
|
-
get: function () { return
|
|
2602
|
+
get: function () { return chunkWFWTHI2N_cjs.getZapierOpenAutoModeApprovalsInBrowser; }
|
|
2501
2603
|
});
|
|
2502
2604
|
Object.defineProperty(exports, "getZapierSdkService", {
|
|
2503
2605
|
enumerable: true,
|
|
2504
|
-
get: function () { return
|
|
2606
|
+
get: function () { return chunkWFWTHI2N_cjs.getZapierSdkService; }
|
|
2505
2607
|
});
|
|
2506
2608
|
Object.defineProperty(exports, "injectCliLogin", {
|
|
2507
2609
|
enumerable: true,
|
|
2508
|
-
get: function () { return
|
|
2610
|
+
get: function () { return chunkWFWTHI2N_cjs.injectCliLogin; }
|
|
2509
2611
|
});
|
|
2510
2612
|
Object.defineProperty(exports, "inputFieldKeyResolver", {
|
|
2511
2613
|
enumerable: true,
|
|
2512
|
-
get: function () { return
|
|
2614
|
+
get: function () { return chunkWFWTHI2N_cjs.inputFieldKeyResolver; }
|
|
2513
2615
|
});
|
|
2514
2616
|
Object.defineProperty(exports, "inputsAllOptionalResolver", {
|
|
2515
2617
|
enumerable: true,
|
|
2516
|
-
get: function () { return
|
|
2618
|
+
get: function () { return chunkWFWTHI2N_cjs.inputsAllOptionalResolver; }
|
|
2517
2619
|
});
|
|
2518
2620
|
Object.defineProperty(exports, "inputsResolver", {
|
|
2519
2621
|
enumerable: true,
|
|
2520
|
-
get: function () { return
|
|
2622
|
+
get: function () { return chunkWFWTHI2N_cjs.inputsResolver; }
|
|
2521
2623
|
});
|
|
2522
2624
|
Object.defineProperty(exports, "invalidateCachedToken", {
|
|
2523
2625
|
enumerable: true,
|
|
2524
|
-
get: function () { return
|
|
2626
|
+
get: function () { return chunkWFWTHI2N_cjs.invalidateCachedToken; }
|
|
2525
2627
|
});
|
|
2526
2628
|
Object.defineProperty(exports, "invalidateCredentialsToken", {
|
|
2527
2629
|
enumerable: true,
|
|
2528
|
-
get: function () { return
|
|
2630
|
+
get: function () { return chunkWFWTHI2N_cjs.invalidateCredentialsToken; }
|
|
2529
2631
|
});
|
|
2530
2632
|
Object.defineProperty(exports, "isCi", {
|
|
2531
2633
|
enumerable: true,
|
|
2532
|
-
get: function () { return
|
|
2634
|
+
get: function () { return chunkWFWTHI2N_cjs.isCi; }
|
|
2533
2635
|
});
|
|
2534
2636
|
Object.defineProperty(exports, "isCliLoginAvailable", {
|
|
2535
2637
|
enumerable: true,
|
|
2536
|
-
get: function () { return
|
|
2638
|
+
get: function () { return chunkWFWTHI2N_cjs.isCliLoginAvailable; }
|
|
2537
2639
|
});
|
|
2538
2640
|
Object.defineProperty(exports, "isClientCredentials", {
|
|
2539
2641
|
enumerable: true,
|
|
2540
|
-
get: function () { return
|
|
2642
|
+
get: function () { return chunkWFWTHI2N_cjs.isClientCredentials; }
|
|
2541
2643
|
});
|
|
2542
2644
|
Object.defineProperty(exports, "isCoreCancelledSignal", {
|
|
2543
2645
|
enumerable: true,
|
|
2544
|
-
get: function () { return
|
|
2646
|
+
get: function () { return chunkWFWTHI2N_cjs.isCoreCancelledSignal; }
|
|
2545
2647
|
});
|
|
2546
2648
|
Object.defineProperty(exports, "isCoreError", {
|
|
2547
2649
|
enumerable: true,
|
|
2548
|
-
get: function () { return
|
|
2650
|
+
get: function () { return chunkWFWTHI2N_cjs.isCoreError; }
|
|
2549
2651
|
});
|
|
2550
2652
|
Object.defineProperty(exports, "isCoreSignal", {
|
|
2551
2653
|
enumerable: true,
|
|
2552
|
-
get: function () { return
|
|
2654
|
+
get: function () { return chunkWFWTHI2N_cjs.isCoreSignal; }
|
|
2553
2655
|
});
|
|
2554
2656
|
Object.defineProperty(exports, "isCredentialsFunction", {
|
|
2555
2657
|
enumerable: true,
|
|
2556
|
-
get: function () { return
|
|
2658
|
+
get: function () { return chunkWFWTHI2N_cjs.isCredentialsFunction; }
|
|
2557
2659
|
});
|
|
2558
2660
|
Object.defineProperty(exports, "isCredentialsObject", {
|
|
2559
2661
|
enumerable: true,
|
|
2560
|
-
get: function () { return
|
|
2662
|
+
get: function () { return chunkWFWTHI2N_cjs.isCredentialsObject; }
|
|
2561
2663
|
});
|
|
2562
2664
|
Object.defineProperty(exports, "isPermanentHttpError", {
|
|
2563
2665
|
enumerable: true,
|
|
2564
|
-
get: function () { return
|
|
2666
|
+
get: function () { return chunkWFWTHI2N_cjs.isPermanentHttpError; }
|
|
2565
2667
|
});
|
|
2566
2668
|
Object.defineProperty(exports, "isPkceCredentials", {
|
|
2567
2669
|
enumerable: true,
|
|
2568
|
-
get: function () { return
|
|
2670
|
+
get: function () { return chunkWFWTHI2N_cjs.isPkceCredentials; }
|
|
2569
2671
|
});
|
|
2570
2672
|
Object.defineProperty(exports, "isPositional", {
|
|
2571
2673
|
enumerable: true,
|
|
2572
|
-
get: function () { return
|
|
2674
|
+
get: function () { return chunkWFWTHI2N_cjs.isPositional; }
|
|
2573
2675
|
});
|
|
2574
2676
|
Object.defineProperty(exports, "isZapierAbortDrainSignal", {
|
|
2575
2677
|
enumerable: true,
|
|
2576
|
-
get: function () { return
|
|
2678
|
+
get: function () { return chunkWFWTHI2N_cjs.isZapierAbortDrainSignal; }
|
|
2577
2679
|
});
|
|
2578
2680
|
Object.defineProperty(exports, "isZapierActionError", {
|
|
2579
2681
|
enumerable: true,
|
|
2580
|
-
get: function () { return
|
|
2682
|
+
get: function () { return chunkWFWTHI2N_cjs.isZapierActionError; }
|
|
2581
2683
|
});
|
|
2582
2684
|
Object.defineProperty(exports, "isZapierAppNotFoundError", {
|
|
2583
2685
|
enumerable: true,
|
|
2584
|
-
get: function () { return
|
|
2686
|
+
get: function () { return chunkWFWTHI2N_cjs.isZapierAppNotFoundError; }
|
|
2585
2687
|
});
|
|
2586
2688
|
Object.defineProperty(exports, "isZapierApprovalError", {
|
|
2587
2689
|
enumerable: true,
|
|
2588
|
-
get: function () { return
|
|
2690
|
+
get: function () { return chunkWFWTHI2N_cjs.isZapierApprovalError; }
|
|
2589
2691
|
});
|
|
2590
2692
|
Object.defineProperty(exports, "isZapierAuthenticationError", {
|
|
2591
2693
|
enumerable: true,
|
|
2592
|
-
get: function () { return
|
|
2694
|
+
get: function () { return chunkWFWTHI2N_cjs.isZapierAuthenticationError; }
|
|
2593
2695
|
});
|
|
2594
2696
|
Object.defineProperty(exports, "isZapierBundleError", {
|
|
2595
2697
|
enumerable: true,
|
|
2596
|
-
get: function () { return
|
|
2698
|
+
get: function () { return chunkWFWTHI2N_cjs.isZapierBundleError; }
|
|
2597
2699
|
});
|
|
2598
2700
|
Object.defineProperty(exports, "isZapierConflictError", {
|
|
2599
2701
|
enumerable: true,
|
|
2600
|
-
get: function () { return
|
|
2702
|
+
get: function () { return chunkWFWTHI2N_cjs.isZapierConflictError; }
|
|
2601
2703
|
});
|
|
2602
2704
|
Object.defineProperty(exports, "isZapierError", {
|
|
2603
2705
|
enumerable: true,
|
|
2604
|
-
get: function () { return
|
|
2706
|
+
get: function () { return chunkWFWTHI2N_cjs.isZapierError; }
|
|
2605
2707
|
});
|
|
2606
2708
|
Object.defineProperty(exports, "isZapierNotFoundError", {
|
|
2607
2709
|
enumerable: true,
|
|
2608
|
-
get: function () { return
|
|
2710
|
+
get: function () { return chunkWFWTHI2N_cjs.isZapierNotFoundError; }
|
|
2609
2711
|
});
|
|
2610
2712
|
Object.defineProperty(exports, "isZapierRateLimitError", {
|
|
2611
2713
|
enumerable: true,
|
|
2612
|
-
get: function () { return
|
|
2714
|
+
get: function () { return chunkWFWTHI2N_cjs.isZapierRateLimitError; }
|
|
2613
2715
|
});
|
|
2614
2716
|
Object.defineProperty(exports, "isZapierReleaseTriggerMessageSignal", {
|
|
2615
2717
|
enumerable: true,
|
|
2616
|
-
get: function () { return
|
|
2718
|
+
get: function () { return chunkWFWTHI2N_cjs.isZapierReleaseTriggerMessageSignal; }
|
|
2617
2719
|
});
|
|
2618
2720
|
Object.defineProperty(exports, "isZapierResourceNotFoundError", {
|
|
2619
2721
|
enumerable: true,
|
|
2620
|
-
get: function () { return
|
|
2722
|
+
get: function () { return chunkWFWTHI2N_cjs.isZapierResourceNotFoundError; }
|
|
2621
2723
|
});
|
|
2622
2724
|
Object.defineProperty(exports, "isZapierSignal", {
|
|
2623
2725
|
enumerable: true,
|
|
2624
|
-
get: function () { return
|
|
2726
|
+
get: function () { return chunkWFWTHI2N_cjs.isZapierSignal; }
|
|
2625
2727
|
});
|
|
2626
2728
|
Object.defineProperty(exports, "isZapierTimeoutError", {
|
|
2627
2729
|
enumerable: true,
|
|
2628
|
-
get: function () { return
|
|
2730
|
+
get: function () { return chunkWFWTHI2N_cjs.isZapierTimeoutError; }
|
|
2629
2731
|
});
|
|
2630
2732
|
Object.defineProperty(exports, "isZapierValidationError", {
|
|
2631
2733
|
enumerable: true,
|
|
2632
|
-
get: function () { return
|
|
2734
|
+
get: function () { return chunkWFWTHI2N_cjs.isZapierValidationError; }
|
|
2633
2735
|
});
|
|
2634
2736
|
Object.defineProperty(exports, "listActionInputFieldChoicesPlugin", {
|
|
2635
2737
|
enumerable: true,
|
|
2636
|
-
get: function () { return
|
|
2738
|
+
get: function () { return chunkWFWTHI2N_cjs.listActionInputFieldChoicesPlugin; }
|
|
2637
2739
|
});
|
|
2638
2740
|
Object.defineProperty(exports, "listActionInputFieldsPlugin", {
|
|
2639
2741
|
enumerable: true,
|
|
2640
|
-
get: function () { return
|
|
2742
|
+
get: function () { return chunkWFWTHI2N_cjs.listActionInputFieldsPlugin; }
|
|
2641
2743
|
});
|
|
2642
2744
|
Object.defineProperty(exports, "listActionsPlugin", {
|
|
2643
2745
|
enumerable: true,
|
|
2644
|
-
get: function () { return
|
|
2746
|
+
get: function () { return chunkWFWTHI2N_cjs.listActionsPlugin; }
|
|
2645
2747
|
});
|
|
2646
2748
|
Object.defineProperty(exports, "listAppsPlugin", {
|
|
2647
2749
|
enumerable: true,
|
|
2648
|
-
get: function () { return
|
|
2750
|
+
get: function () { return chunkWFWTHI2N_cjs.listAppsPlugin; }
|
|
2649
2751
|
});
|
|
2650
2752
|
Object.defineProperty(exports, "listClientCredentialsPlugin", {
|
|
2651
2753
|
enumerable: true,
|
|
2652
|
-
get: function () { return
|
|
2754
|
+
get: function () { return chunkWFWTHI2N_cjs.listClientCredentialsPlugin; }
|
|
2653
2755
|
});
|
|
2654
2756
|
Object.defineProperty(exports, "listConnectionsPlugin", {
|
|
2655
2757
|
enumerable: true,
|
|
2656
|
-
get: function () { return
|
|
2758
|
+
get: function () { return chunkWFWTHI2N_cjs.listConnectionsPlugin; }
|
|
2657
2759
|
});
|
|
2658
2760
|
Object.defineProperty(exports, "listTableFieldsPlugin", {
|
|
2659
2761
|
enumerable: true,
|
|
2660
|
-
get: function () { return
|
|
2762
|
+
get: function () { return chunkWFWTHI2N_cjs.listTableFieldsPlugin; }
|
|
2661
2763
|
});
|
|
2662
2764
|
Object.defineProperty(exports, "listTableRecordsPlugin", {
|
|
2663
2765
|
enumerable: true,
|
|
2664
|
-
get: function () { return
|
|
2766
|
+
get: function () { return chunkWFWTHI2N_cjs.listTableRecordsPlugin; }
|
|
2665
2767
|
});
|
|
2666
2768
|
Object.defineProperty(exports, "listTablesPlugin", {
|
|
2667
2769
|
enumerable: true,
|
|
2668
|
-
get: function () { return
|
|
2770
|
+
get: function () { return chunkWFWTHI2N_cjs.listTablesPlugin; }
|
|
2669
2771
|
});
|
|
2670
2772
|
Object.defineProperty(exports, "logDeprecation", {
|
|
2671
2773
|
enumerable: true,
|
|
2672
|
-
get: function () { return
|
|
2774
|
+
get: function () { return chunkWFWTHI2N_cjs.logDeprecation; }
|
|
2673
2775
|
});
|
|
2674
2776
|
Object.defineProperty(exports, "manifestPlugin", {
|
|
2675
2777
|
enumerable: true,
|
|
2676
|
-
get: function () { return
|
|
2778
|
+
get: function () { return chunkWFWTHI2N_cjs.manifestPlugin; }
|
|
2677
2779
|
});
|
|
2678
2780
|
Object.defineProperty(exports, "manifestPluginRef", {
|
|
2679
2781
|
enumerable: true,
|
|
2680
|
-
get: function () { return
|
|
2782
|
+
get: function () { return chunkWFWTHI2N_cjs.manifestPluginRef; }
|
|
2681
2783
|
});
|
|
2682
2784
|
Object.defineProperty(exports, "omitExports", {
|
|
2683
2785
|
enumerable: true,
|
|
2684
|
-
get: function () { return
|
|
2786
|
+
get: function () { return chunkWFWTHI2N_cjs.omitExports; }
|
|
2685
2787
|
});
|
|
2686
2788
|
Object.defineProperty(exports, "operationAnnotatorPlugin", {
|
|
2687
2789
|
enumerable: true,
|
|
2688
|
-
get: function () { return
|
|
2790
|
+
get: function () { return chunkWFWTHI2N_cjs.operationAnnotatorPlugin; }
|
|
2689
2791
|
});
|
|
2690
2792
|
Object.defineProperty(exports, "parseConcurrencyEnvVar", {
|
|
2691
2793
|
enumerable: true,
|
|
2692
|
-
get: function () { return
|
|
2794
|
+
get: function () { return chunkWFWTHI2N_cjs.parseConcurrencyEnvVar; }
|
|
2693
2795
|
});
|
|
2694
2796
|
Object.defineProperty(exports, "readManifestFromFile", {
|
|
2695
2797
|
enumerable: true,
|
|
2696
|
-
get: function () { return
|
|
2798
|
+
get: function () { return chunkWFWTHI2N_cjs.readManifestFromFile; }
|
|
2697
2799
|
});
|
|
2698
2800
|
Object.defineProperty(exports, "registryPlugin", {
|
|
2699
2801
|
enumerable: true,
|
|
2700
|
-
get: function () { return
|
|
2802
|
+
get: function () { return chunkWFWTHI2N_cjs.registryPlugin; }
|
|
2701
2803
|
});
|
|
2702
2804
|
Object.defineProperty(exports, "requestPlugin", {
|
|
2703
2805
|
enumerable: true,
|
|
2704
|
-
get: function () { return
|
|
2806
|
+
get: function () { return chunkWFWTHI2N_cjs.requestPlugin; }
|
|
2705
2807
|
});
|
|
2706
2808
|
Object.defineProperty(exports, "resetDeprecationWarnings", {
|
|
2707
2809
|
enumerable: true,
|
|
2708
|
-
get: function () { return
|
|
2810
|
+
get: function () { return chunkWFWTHI2N_cjs.resetDeprecationWarnings; }
|
|
2709
2811
|
});
|
|
2710
2812
|
Object.defineProperty(exports, "resolveAuth", {
|
|
2711
2813
|
enumerable: true,
|
|
2712
|
-
get: function () { return
|
|
2814
|
+
get: function () { return chunkWFWTHI2N_cjs.resolveAuth; }
|
|
2713
2815
|
});
|
|
2714
2816
|
Object.defineProperty(exports, "resolveAuthToken", {
|
|
2715
2817
|
enumerable: true,
|
|
2716
|
-
get: function () { return
|
|
2818
|
+
get: function () { return chunkWFWTHI2N_cjs.resolveAuthToken; }
|
|
2717
2819
|
});
|
|
2718
2820
|
Object.defineProperty(exports, "resolveCredentials", {
|
|
2719
2821
|
enumerable: true,
|
|
2720
|
-
get: function () { return
|
|
2822
|
+
get: function () { return chunkWFWTHI2N_cjs.resolveCredentials; }
|
|
2721
2823
|
});
|
|
2722
2824
|
Object.defineProperty(exports, "resolveCredentialsFromEnv", {
|
|
2723
2825
|
enumerable: true,
|
|
2724
|
-
get: function () { return
|
|
2826
|
+
get: function () { return chunkWFWTHI2N_cjs.resolveCredentialsFromEnv; }
|
|
2725
2827
|
});
|
|
2726
2828
|
Object.defineProperty(exports, "resolveCredentialsPlugin", {
|
|
2727
2829
|
enumerable: true,
|
|
2728
|
-
get: function () { return
|
|
2830
|
+
get: function () { return chunkWFWTHI2N_cjs.resolveCredentialsPlugin; }
|
|
2729
2831
|
});
|
|
2730
2832
|
Object.defineProperty(exports, "resolveCredentialsPluginRef", {
|
|
2731
2833
|
enumerable: true,
|
|
2732
|
-
get: function () { return
|
|
2834
|
+
get: function () { return chunkWFWTHI2N_cjs.resolveCredentialsPluginRef; }
|
|
2733
2835
|
});
|
|
2734
2836
|
Object.defineProperty(exports, "resolvePlugin", {
|
|
2735
2837
|
enumerable: true,
|
|
2736
|
-
get: function () { return
|
|
2838
|
+
get: function () { return chunkWFWTHI2N_cjs.resolvePlugin; }
|
|
2737
2839
|
});
|
|
2738
2840
|
Object.defineProperty(exports, "runActionPlugin", {
|
|
2739
2841
|
enumerable: true,
|
|
2740
|
-
get: function () { return
|
|
2842
|
+
get: function () { return chunkWFWTHI2N_cjs.runActionPlugin; }
|
|
2741
2843
|
});
|
|
2742
2844
|
Object.defineProperty(exports, "runInMethodScope", {
|
|
2743
2845
|
enumerable: true,
|
|
2744
|
-
get: function () { return
|
|
2846
|
+
get: function () { return chunkWFWTHI2N_cjs.runInMethodScope; }
|
|
2745
2847
|
});
|
|
2746
2848
|
Object.defineProperty(exports, "runWithCallerContext", {
|
|
2747
2849
|
enumerable: true,
|
|
2748
|
-
get: function () { return
|
|
2850
|
+
get: function () { return chunkWFWTHI2N_cjs.runWithCallerContext; }
|
|
2749
2851
|
});
|
|
2750
2852
|
Object.defineProperty(exports, "runWithTelemetryContext", {
|
|
2751
2853
|
enumerable: true,
|
|
2752
|
-
get: function () { return
|
|
2854
|
+
get: function () { return chunkWFWTHI2N_cjs.runWithTelemetryContext; }
|
|
2753
2855
|
});
|
|
2754
2856
|
Object.defineProperty(exports, "sdkOptionsPluginRef", {
|
|
2755
2857
|
enumerable: true,
|
|
2756
|
-
get: function () { return
|
|
2858
|
+
get: function () { return chunkWFWTHI2N_cjs.sdkOptionsPluginRef; }
|
|
2757
2859
|
});
|
|
2758
2860
|
Object.defineProperty(exports, "selectExports", {
|
|
2759
2861
|
enumerable: true,
|
|
2760
|
-
get: function () { return
|
|
2862
|
+
get: function () { return chunkWFWTHI2N_cjs.selectExports; }
|
|
2761
2863
|
});
|
|
2762
2864
|
Object.defineProperty(exports, "tableFieldIdsResolver", {
|
|
2763
2865
|
enumerable: true,
|
|
2764
|
-
get: function () { return
|
|
2866
|
+
get: function () { return chunkWFWTHI2N_cjs.tableFieldIdsResolver; }
|
|
2765
2867
|
});
|
|
2766
2868
|
Object.defineProperty(exports, "tableFieldsResolver", {
|
|
2767
2869
|
enumerable: true,
|
|
2768
|
-
get: function () { return
|
|
2870
|
+
get: function () { return chunkWFWTHI2N_cjs.tableFieldsResolver; }
|
|
2769
2871
|
});
|
|
2770
2872
|
Object.defineProperty(exports, "tableFiltersResolver", {
|
|
2771
2873
|
enumerable: true,
|
|
2772
|
-
get: function () { return
|
|
2874
|
+
get: function () { return chunkWFWTHI2N_cjs.tableFiltersResolver; }
|
|
2773
2875
|
});
|
|
2774
2876
|
Object.defineProperty(exports, "tableIdResolver", {
|
|
2775
2877
|
enumerable: true,
|
|
2776
|
-
get: function () { return
|
|
2878
|
+
get: function () { return chunkWFWTHI2N_cjs.tableIdResolver; }
|
|
2777
2879
|
});
|
|
2778
2880
|
Object.defineProperty(exports, "tableNameResolver", {
|
|
2779
2881
|
enumerable: true,
|
|
2780
|
-
get: function () { return
|
|
2882
|
+
get: function () { return chunkWFWTHI2N_cjs.tableNameResolver; }
|
|
2781
2883
|
});
|
|
2782
2884
|
Object.defineProperty(exports, "tableRecordIdResolver", {
|
|
2783
2885
|
enumerable: true,
|
|
2784
|
-
get: function () { return
|
|
2886
|
+
get: function () { return chunkWFWTHI2N_cjs.tableRecordIdResolver; }
|
|
2785
2887
|
});
|
|
2786
2888
|
Object.defineProperty(exports, "tableRecordIdsResolver", {
|
|
2787
2889
|
enumerable: true,
|
|
2788
|
-
get: function () { return
|
|
2890
|
+
get: function () { return chunkWFWTHI2N_cjs.tableRecordIdsResolver; }
|
|
2789
2891
|
});
|
|
2790
2892
|
Object.defineProperty(exports, "tableRecordsResolver", {
|
|
2791
2893
|
enumerable: true,
|
|
2792
|
-
get: function () { return
|
|
2894
|
+
get: function () { return chunkWFWTHI2N_cjs.tableRecordsResolver; }
|
|
2793
2895
|
});
|
|
2794
2896
|
Object.defineProperty(exports, "tableSortResolver", {
|
|
2795
2897
|
enumerable: true,
|
|
2796
|
-
get: function () { return
|
|
2898
|
+
get: function () { return chunkWFWTHI2N_cjs.tableSortResolver; }
|
|
2797
2899
|
});
|
|
2798
2900
|
Object.defineProperty(exports, "tableUpdateRecordsResolver", {
|
|
2799
2901
|
enumerable: true,
|
|
2800
|
-
get: function () { return
|
|
2902
|
+
get: function () { return chunkWFWTHI2N_cjs.tableUpdateRecordsResolver; }
|
|
2801
2903
|
});
|
|
2802
2904
|
Object.defineProperty(exports, "toSnakeCase", {
|
|
2803
2905
|
enumerable: true,
|
|
2804
|
-
get: function () { return
|
|
2906
|
+
get: function () { return chunkWFWTHI2N_cjs.toSnakeCase; }
|
|
2805
2907
|
});
|
|
2806
2908
|
Object.defineProperty(exports, "toTitleCase", {
|
|
2807
2909
|
enumerable: true,
|
|
2808
|
-
get: function () { return
|
|
2910
|
+
get: function () { return chunkWFWTHI2N_cjs.toTitleCase; }
|
|
2809
2911
|
});
|
|
2810
2912
|
Object.defineProperty(exports, "triggerInboxResolver", {
|
|
2811
2913
|
enumerable: true,
|
|
2812
|
-
get: function () { return
|
|
2914
|
+
get: function () { return chunkWFWTHI2N_cjs.triggerInboxResolver; }
|
|
2813
2915
|
});
|
|
2814
2916
|
Object.defineProperty(exports, "triggerMessagesResolver", {
|
|
2815
2917
|
enumerable: true,
|
|
2816
|
-
get: function () { return
|
|
2918
|
+
get: function () { return chunkWFWTHI2N_cjs.triggerMessagesResolver; }
|
|
2817
2919
|
});
|
|
2818
2920
|
Object.defineProperty(exports, "updateTableRecordsPlugin", {
|
|
2819
2921
|
enumerable: true,
|
|
2820
|
-
get: function () { return
|
|
2922
|
+
get: function () { return chunkWFWTHI2N_cjs.updateTableRecordsPlugin; }
|
|
2821
2923
|
});
|
|
2822
2924
|
Object.defineProperty(exports, "workflowDraftIdResolver", {
|
|
2823
2925
|
enumerable: true,
|
|
2824
|
-
get: function () { return
|
|
2926
|
+
get: function () { return chunkWFWTHI2N_cjs.workflowDraftIdResolver; }
|
|
2825
2927
|
});
|
|
2826
2928
|
Object.defineProperty(exports, "workflowIdResolver", {
|
|
2827
2929
|
enumerable: true,
|
|
2828
|
-
get: function () { return
|
|
2930
|
+
get: function () { return chunkWFWTHI2N_cjs.workflowIdResolver; }
|
|
2829
2931
|
});
|
|
2830
2932
|
Object.defineProperty(exports, "workflowRunIdResolver", {
|
|
2831
2933
|
enumerable: true,
|
|
2832
|
-
get: function () { return
|
|
2934
|
+
get: function () { return chunkWFWTHI2N_cjs.workflowRunIdResolver; }
|
|
2833
2935
|
});
|
|
2834
2936
|
Object.defineProperty(exports, "workflowVersionIdResolver", {
|
|
2835
2937
|
enumerable: true,
|
|
2836
|
-
get: function () { return
|
|
2938
|
+
get: function () { return chunkWFWTHI2N_cjs.workflowVersionIdResolver; }
|
|
2837
2939
|
});
|
|
2838
2940
|
Object.defineProperty(exports, "zapierAdaptError", {
|
|
2839
2941
|
enumerable: true,
|
|
2840
|
-
get: function () { return
|
|
2942
|
+
get: function () { return chunkWFWTHI2N_cjs.zapierAdaptError; }
|
|
2841
2943
|
});
|
|
2842
2944
|
Object.defineProperty(exports, "zapierCoreOptions", {
|
|
2843
2945
|
enumerable: true,
|
|
2844
|
-
get: function () { return
|
|
2946
|
+
get: function () { return chunkWFWTHI2N_cjs.zapierCoreOptions; }
|
|
2845
2947
|
});
|
|
2846
2948
|
Object.defineProperty(exports, "zapierSdkPlugin", {
|
|
2847
2949
|
enumerable: true,
|
|
2848
|
-
get: function () { return
|
|
2950
|
+
get: function () { return chunkWFWTHI2N_cjs.zapierSdkPlugin; }
|
|
2849
2951
|
});
|
|
2850
2952
|
exports.createZapierSdk = createZapierSdk;
|
|
2851
2953
|
exports.zapierExperimentalSdkPlugin = zapierExperimentalSdkPlugin;
|