@zapier/zapier-sdk 0.88.1 → 0.90.0

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