@zapier/zapier-sdk 0.90.0 → 0.91.1

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