@zapier/zapier-sdk 0.96.0 → 0.97.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkMGWFLOHA_cjs = require('./chunk-MGWFLOHA.cjs');
3
+ var chunkH24FJYFA_cjs = require('./chunk-H24FJYFA.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 chunkMGWFLOHA_cjs.ZapierValidationError(
53
+ throw new chunkH24FJYFA_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 chunkMGWFLOHA_cjs.ZapierValidationError("trigger is missing selectedApi");
80
+ throw new chunkH24FJYFA_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 chunkMGWFLOHA_cjs.ZapierValidationError(
101
+ throw new chunkH24FJYFA_cjs.ZapierValidationError(
102
102
  `appVersions["${key}"] is missing implementationName`
103
103
  );
104
104
  }
@@ -262,10 +262,10 @@ var ListWorkflowsApiResponseSchema = zod.z.object({
262
262
  });
263
263
 
264
264
  // src/plugins/codeSubstrate/listWorkflows/index.ts
265
- var listWorkflowsPlugin = chunkMGWFLOHA_cjs.defineMethod({
265
+ var listWorkflowsPlugin = chunkH24FJYFA_cjs.defineMethod({
266
266
  ...codeSubstrateDefaults,
267
267
  name: "listWorkflows",
268
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
268
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
269
269
  type: "list",
270
270
  itemType: "Workflow",
271
271
  inputSchema: ListWorkflowsOptionsSchema,
@@ -273,7 +273,7 @@ var listWorkflowsPlugin = chunkMGWFLOHA_cjs.defineMethod({
273
273
  skipOutputValidation: true,
274
274
  // The handler already returns a clean `{ data, nextCursor }` page, so the
275
275
  // standard list output (no `adaptPage`) applies.
276
- output: { type: "list", defaultPageSize: chunkMGWFLOHA_cjs.DEFAULT_PAGE_SIZE },
276
+ output: { type: "list", defaultPageSize: chunkH24FJYFA_cjs.DEFAULT_PAGE_SIZE },
277
277
  run: async ({ imports, input }) => {
278
278
  const api = imports.api;
279
279
  const searchParams = {};
@@ -344,16 +344,16 @@ var GetWorkflowResponseSchema = zod.z.object({
344
344
  });
345
345
 
346
346
  // src/plugins/codeSubstrate/getWorkflow/index.ts
347
- var getWorkflowPlugin = chunkMGWFLOHA_cjs.defineMethod({
347
+ var getWorkflowPlugin = chunkH24FJYFA_cjs.defineMethod({
348
348
  ...codeSubstrateDefaults,
349
349
  name: "getWorkflow",
350
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
350
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
351
351
  itemType: "Workflow",
352
352
  inputSchema: GetWorkflowOptionsSchema,
353
353
  outputSchema: GetWorkflowResponseSchema,
354
354
  skipOutputValidation: true,
355
355
  output: "item",
356
- resolvers: { workflow: chunkMGWFLOHA_cjs.workflowIdResolver },
356
+ resolvers: { workflow: chunkH24FJYFA_cjs.workflowIdResolver },
357
357
  run: async ({ imports, input }) => {
358
358
  const api = imports.api;
359
359
  const raw = await api.get(
@@ -395,10 +395,10 @@ var CreateWorkflowResponseSchema = zod.z.object({
395
395
  });
396
396
 
397
397
  // src/plugins/codeSubstrate/createWorkflow/index.ts
398
- var createWorkflowPlugin = chunkMGWFLOHA_cjs.defineMethod({
398
+ var createWorkflowPlugin = chunkH24FJYFA_cjs.defineMethod({
399
399
  ...codeSubstrateDefaults,
400
400
  name: "createWorkflow",
401
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
401
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
402
402
  type: "create",
403
403
  itemType: "Workflow",
404
404
  inputSchema: CreateWorkflowOptionsSchema,
@@ -447,17 +447,17 @@ var UpdateWorkflowResponseSchema = zod.z.object({
447
447
  });
448
448
 
449
449
  // src/plugins/codeSubstrate/updateWorkflow/index.ts
450
- var updateWorkflowPlugin = chunkMGWFLOHA_cjs.defineMethod({
450
+ var updateWorkflowPlugin = chunkH24FJYFA_cjs.defineMethod({
451
451
  ...codeSubstrateDefaults,
452
452
  name: "updateWorkflow",
453
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
453
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
454
454
  type: "update",
455
455
  itemType: "Workflow",
456
456
  inputSchema: UpdateWorkflowOptionsSchema,
457
457
  outputSchema: UpdateWorkflowResponseSchema,
458
458
  skipOutputValidation: true,
459
459
  output: "item",
460
- resolvers: { workflow: chunkMGWFLOHA_cjs.workflowIdResolver },
460
+ resolvers: { workflow: chunkH24FJYFA_cjs.workflowIdResolver },
461
461
  run: async ({ imports, input }) => {
462
462
  const api = imports.api;
463
463
  const body = {};
@@ -487,17 +487,17 @@ var EnableWorkflowResponseSchema = zod.z.object({
487
487
  });
488
488
 
489
489
  // src/plugins/codeSubstrate/enableWorkflow/index.ts
490
- var enableWorkflowPlugin = chunkMGWFLOHA_cjs.defineMethod({
490
+ var enableWorkflowPlugin = chunkH24FJYFA_cjs.defineMethod({
491
491
  ...codeSubstrateDefaults,
492
492
  name: "enableWorkflow",
493
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
493
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
494
494
  type: "update",
495
495
  itemType: "Workflow",
496
496
  inputSchema: EnableWorkflowOptionsSchema,
497
497
  outputSchema: EnableWorkflowResponseSchema,
498
498
  skipOutputValidation: true,
499
499
  output: "item",
500
- resolvers: { workflow: chunkMGWFLOHA_cjs.workflowIdResolver },
500
+ resolvers: { workflow: chunkH24FJYFA_cjs.workflowIdResolver },
501
501
  run: async ({ imports, input }) => {
502
502
  const api = imports.api;
503
503
  const raw = await api.post(
@@ -522,17 +522,17 @@ var DisableWorkflowResponseSchema = zod.z.object({
522
522
  });
523
523
 
524
524
  // src/plugins/codeSubstrate/disableWorkflow/index.ts
525
- var disableWorkflowPlugin = chunkMGWFLOHA_cjs.defineMethod({
525
+ var disableWorkflowPlugin = chunkH24FJYFA_cjs.defineMethod({
526
526
  ...codeSubstrateDefaults,
527
527
  name: "disableWorkflow",
528
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
528
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
529
529
  type: "update",
530
530
  itemType: "Workflow",
531
531
  inputSchema: DisableWorkflowOptionsSchema,
532
532
  outputSchema: DisableWorkflowResponseSchema,
533
533
  skipOutputValidation: true,
534
534
  output: "item",
535
- resolvers: { workflow: chunkMGWFLOHA_cjs.workflowIdResolver },
535
+ resolvers: { workflow: chunkH24FJYFA_cjs.workflowIdResolver },
536
536
  run: async ({ imports, input }) => {
537
537
  const api = imports.api;
538
538
  const raw = await api.post(
@@ -556,10 +556,10 @@ var DeleteWorkflowResponseSchema = zod.z.object({
556
556
  });
557
557
 
558
558
  // src/plugins/codeSubstrate/deleteWorkflow/index.ts
559
- var deleteWorkflowPlugin = chunkMGWFLOHA_cjs.defineMethod({
559
+ var deleteWorkflowPlugin = chunkH24FJYFA_cjs.defineMethod({
560
560
  ...codeSubstrateDefaults,
561
561
  name: "deleteWorkflow",
562
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
562
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
563
563
  type: "delete",
564
564
  itemType: "Workflow",
565
565
  confirm: "delete",
@@ -567,7 +567,7 @@ var deleteWorkflowPlugin = chunkMGWFLOHA_cjs.defineMethod({
567
567
  outputSchema: DeleteWorkflowResponseSchema,
568
568
  skipOutputValidation: true,
569
569
  output: "raw",
570
- resolvers: { workflow: chunkMGWFLOHA_cjs.workflowIdResolver },
570
+ resolvers: { workflow: chunkH24FJYFA_cjs.workflowIdResolver },
571
571
  run: async ({ imports, input }) => {
572
572
  const api = imports.api;
573
573
  await api.delete(
@@ -581,7 +581,7 @@ var deleteWorkflowPlugin = chunkMGWFLOHA_cjs.defineMethod({
581
581
  return { data: { id: input.workflow } };
582
582
  }
583
583
  });
584
- var RunStatusSchema = chunkMGWFLOHA_cjs.openEnum(
584
+ var RunStatusSchema = chunkH24FJYFA_cjs.openEnum(
585
585
  ["initialized", "started", "finished", "failed", "cancelled"],
586
586
  "Run lifecycle status. `finished` / `failed` / `cancelled` are terminal."
587
587
  );
@@ -628,10 +628,10 @@ var ListDurableRunsApiResponseSchema = zod.z.object({
628
628
  });
629
629
 
630
630
  // src/plugins/codeSubstrate/listDurableRuns/index.ts
631
- var listDurableRunsPlugin = chunkMGWFLOHA_cjs.defineMethod({
631
+ var listDurableRunsPlugin = chunkH24FJYFA_cjs.defineMethod({
632
632
  ...codeSubstrateDefaults,
633
633
  name: "listDurableRuns",
634
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
634
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
635
635
  type: "list",
636
636
  itemType: "DurableRun",
637
637
  inputSchema: ListDurableRunsOptionsSchema,
@@ -639,7 +639,7 @@ var listDurableRunsPlugin = chunkMGWFLOHA_cjs.defineMethod({
639
639
  skipOutputValidation: true,
640
640
  // The handler already returns a clean `{ data, nextCursor }` page, so the
641
641
  // standard list output (no `adaptPage`) applies.
642
- output: { type: "list", defaultPageSize: chunkMGWFLOHA_cjs.DEFAULT_PAGE_SIZE },
642
+ output: { type: "list", defaultPageSize: chunkH24FJYFA_cjs.DEFAULT_PAGE_SIZE },
643
643
  run: async ({ imports, input }) => {
644
644
  const api = imports.api;
645
645
  const searchParams = {};
@@ -660,11 +660,11 @@ var listDurableRunsPlugin = chunkMGWFLOHA_cjs.defineMethod({
660
660
  };
661
661
  }
662
662
  });
663
- var OperationTypeSchema = chunkMGWFLOHA_cjs.openEnum(
663
+ var OperationTypeSchema = chunkH24FJYFA_cjs.openEnum(
664
664
  ["step", "wait", "callback"],
665
665
  "Operation kind: `step` is a journaled function call; `wait` is a time-based suspension; `callback` is a wait on an external callback."
666
666
  );
667
- var OperationStatusSchema = chunkMGWFLOHA_cjs.openEnum(
667
+ var OperationStatusSchema = chunkH24FJYFA_cjs.openEnum(
668
668
  ["pending", "completed", "failed", "exhausted"],
669
669
  "Operation lifecycle status. `exhausted` means retries were exceeded."
670
670
  );
@@ -693,7 +693,7 @@ var OperationSchema = zod.z.object({
693
693
  completed_at: zod.z.string().optional().describe("When the operation reached a terminal state (ISO-8601)"),
694
694
  created_at: zod.z.string().describe("When the operation was created (ISO-8601)")
695
695
  });
696
- var ExecutionStatusSchema = chunkMGWFLOHA_cjs.openEnum(
696
+ var ExecutionStatusSchema = chunkH24FJYFA_cjs.openEnum(
697
697
  ["running", "waiting", "completed", "failed"],
698
698
  "Execution lifecycle status. `waiting` means blocked on a wait or callback operation."
699
699
  );
@@ -750,16 +750,16 @@ var GetDurableRunResponseSchema = zod.z.object({
750
750
  });
751
751
 
752
752
  // src/plugins/codeSubstrate/getDurableRun/index.ts
753
- var getDurableRunPlugin = chunkMGWFLOHA_cjs.defineMethod({
753
+ var getDurableRunPlugin = chunkH24FJYFA_cjs.defineMethod({
754
754
  ...codeSubstrateDefaults,
755
755
  name: "getDurableRun",
756
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
756
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
757
757
  itemType: "DurableRun",
758
758
  inputSchema: GetDurableRunOptionsSchema,
759
759
  outputSchema: GetDurableRunResponseSchema,
760
760
  skipOutputValidation: true,
761
761
  output: "item",
762
- resolvers: { run: chunkMGWFLOHA_cjs.durableRunIdResolver },
762
+ resolvers: { run: chunkH24FJYFA_cjs.durableRunIdResolver },
763
763
  run: async ({ imports, input }) => {
764
764
  const api = imports.api;
765
765
  const raw = await api.get(
@@ -830,16 +830,16 @@ var RunDurableResponseSchema = zod.z.object({
830
830
  });
831
831
 
832
832
  // src/resolvers/sourceFiles.ts
833
- var sourceFilesResolver = chunkMGWFLOHA_cjs.defineResolver({
833
+ var sourceFilesResolver = chunkH24FJYFA_cjs.defineResolver({
834
834
  type: "object",
835
835
  additionalKeys: {
836
836
  minEntries: 1,
837
- keys: chunkMGWFLOHA_cjs.defineResolver({
837
+ keys: chunkH24FJYFA_cjs.defineResolver({
838
838
  type: "static",
839
839
  inputType: "text",
840
840
  placeholder: "filename (e.g. index.ts)"
841
841
  }),
842
- values: chunkMGWFLOHA_cjs.defineResolver({
842
+ values: chunkH24FJYFA_cjs.defineResolver({
843
843
  type: "static",
844
844
  inputType: "text",
845
845
  placeholder: "file contents"
@@ -850,10 +850,10 @@ var sourceFilesResolver = chunkMGWFLOHA_cjs.defineResolver({
850
850
  });
851
851
 
852
852
  // src/plugins/codeSubstrate/runDurable/index.ts
853
- var runDurablePlugin = chunkMGWFLOHA_cjs.defineMethod({
853
+ var runDurablePlugin = chunkH24FJYFA_cjs.defineMethod({
854
854
  ...codeSubstrateDefaults,
855
855
  name: "runDurable",
856
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
856
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
857
857
  type: "create",
858
858
  itemType: "DurableRun",
859
859
  inputSchema: RunDurableOptionsSchema,
@@ -907,17 +907,17 @@ var CancelDurableRunResponseSchema = zod.z.object({
907
907
  });
908
908
 
909
909
  // src/plugins/codeSubstrate/cancelDurableRun/index.ts
910
- var cancelDurableRunPlugin = chunkMGWFLOHA_cjs.defineMethod({
910
+ var cancelDurableRunPlugin = chunkH24FJYFA_cjs.defineMethod({
911
911
  ...codeSubstrateDefaults,
912
912
  name: "cancelDurableRun",
913
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
913
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
914
914
  type: "update",
915
915
  itemType: "DurableRun",
916
916
  inputSchema: CancelDurableRunOptionsSchema,
917
917
  outputSchema: CancelDurableRunResponseSchema,
918
918
  skipOutputValidation: true,
919
919
  output: "item",
920
- resolvers: { run: chunkMGWFLOHA_cjs.durableRunIdResolver },
920
+ resolvers: { run: chunkH24FJYFA_cjs.durableRunIdResolver },
921
921
  run: async ({ imports, input }) => {
922
922
  const api = imports.api;
923
923
  await api.post(
@@ -1027,17 +1027,17 @@ function describeOpenDraft(draft) {
1027
1027
  const label = draft.slug ? `${draft.slug} (id: ${draft.id})` : draft.id;
1028
1028
  return draft.last_edited_at ? ` \u2022 ${label}, last edited ${draft.last_edited_at}` : ` \u2022 ${label}`;
1029
1029
  }
1030
- var publishWorkflowVersionPlugin = chunkMGWFLOHA_cjs.defineMethod({
1030
+ var publishWorkflowVersionPlugin = chunkH24FJYFA_cjs.defineMethod({
1031
1031
  ...codeSubstrateDefaults,
1032
1032
  name: "publishWorkflowVersion",
1033
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
1033
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
1034
1034
  type: "create",
1035
1035
  itemType: "WorkflowVersion",
1036
1036
  inputSchema: PublishWorkflowVersionOptionsSchema,
1037
1037
  outputSchema: PublishWorkflowVersionResponseSchema,
1038
1038
  skipOutputValidation: true,
1039
1039
  output: "item",
1040
- resolvers: { workflow: chunkMGWFLOHA_cjs.workflowIdResolver, sourceFiles: sourceFilesResolver },
1040
+ resolvers: { workflow: chunkH24FJYFA_cjs.workflowIdResolver, sourceFiles: sourceFilesResolver },
1041
1041
  run: async ({ imports, input }) => {
1042
1042
  const api = imports.api;
1043
1043
  const sourceFiles = "sourceFiles" in input ? input.sourceFiles : input.source_files;
@@ -1091,13 +1091,13 @@ var publishWorkflowVersionPlugin = chunkMGWFLOHA_cjs.defineMethod({
1091
1091
  if (status !== 409) return void 0;
1092
1092
  const conflict = extractOpenDraftConflict(data);
1093
1093
  if (!conflict) {
1094
- return new chunkMGWFLOHA_cjs.ZapierConflictError(
1095
- chunkMGWFLOHA_cjs.extractErrorDetail(data) ?? "Workflow version publish conflict.",
1094
+ return new chunkH24FJYFA_cjs.ZapierConflictError(
1095
+ chunkH24FJYFA_cjs.extractErrorDetail(data) ?? "Workflow version publish conflict.",
1096
1096
  { statusCode: status, resourceType: "workflow" }
1097
1097
  );
1098
1098
  }
1099
1099
  const detail = conflict.detail ?? "Cannot publish over open draft(s).";
1100
- return new chunkMGWFLOHA_cjs.ZapierConflictError(
1100
+ return new chunkH24FJYFA_cjs.ZapierConflictError(
1101
1101
  [
1102
1102
  `${detail} Blocking draft(s):`,
1103
1103
  ...conflict.openDrafts.map(describeOpenDraft),
@@ -1149,10 +1149,10 @@ var ListWorkflowVersionsApiResponseSchema = zod.z.object({
1149
1149
  });
1150
1150
 
1151
1151
  // src/plugins/codeSubstrate/listWorkflowVersions/index.ts
1152
- var listWorkflowVersionsPlugin = chunkMGWFLOHA_cjs.defineMethod({
1152
+ var listWorkflowVersionsPlugin = chunkH24FJYFA_cjs.defineMethod({
1153
1153
  ...codeSubstrateDefaults,
1154
1154
  name: "listWorkflowVersions",
1155
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
1155
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
1156
1156
  type: "list",
1157
1157
  itemType: "WorkflowVersion",
1158
1158
  inputSchema: ListWorkflowVersionsOptionsSchema,
@@ -1160,8 +1160,8 @@ var listWorkflowVersionsPlugin = chunkMGWFLOHA_cjs.defineMethod({
1160
1160
  skipOutputValidation: true,
1161
1161
  // The handler already returns a clean `{ data, nextCursor }` page, so the
1162
1162
  // standard list output (no `adaptPage`) applies.
1163
- output: { type: "list", defaultPageSize: chunkMGWFLOHA_cjs.DEFAULT_PAGE_SIZE },
1164
- resolvers: { workflow: chunkMGWFLOHA_cjs.workflowIdResolver },
1163
+ output: { type: "list", defaultPageSize: chunkH24FJYFA_cjs.DEFAULT_PAGE_SIZE },
1164
+ resolvers: { workflow: chunkH24FJYFA_cjs.workflowIdResolver },
1165
1165
  run: async ({ imports, input }) => {
1166
1166
  const api = imports.api;
1167
1167
  const searchParams = {};
@@ -1193,18 +1193,18 @@ var GetWorkflowVersionOptionsSchema = zod.z.object({
1193
1193
  var GetWorkflowVersionResponseSchema = WorkflowVersionSchema;
1194
1194
 
1195
1195
  // src/plugins/codeSubstrate/getWorkflowVersion/index.ts
1196
- var getWorkflowVersionPlugin = chunkMGWFLOHA_cjs.defineMethod({
1196
+ var getWorkflowVersionPlugin = chunkH24FJYFA_cjs.defineMethod({
1197
1197
  ...codeSubstrateDefaults,
1198
1198
  name: "getWorkflowVersion",
1199
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
1199
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
1200
1200
  itemType: "WorkflowVersion",
1201
1201
  inputSchema: GetWorkflowVersionOptionsSchema,
1202
1202
  outputSchema: GetWorkflowVersionResponseSchema,
1203
1203
  skipOutputValidation: true,
1204
1204
  output: "item",
1205
1205
  resolvers: {
1206
- workflow: chunkMGWFLOHA_cjs.workflowIdResolver,
1207
- version: chunkMGWFLOHA_cjs.workflowVersionIdResolver
1206
+ workflow: chunkH24FJYFA_cjs.workflowIdResolver,
1207
+ version: chunkH24FJYFA_cjs.workflowVersionIdResolver
1208
1208
  },
1209
1209
  run: async ({ imports, input }) => {
1210
1210
  const api = imports.api;
@@ -1257,10 +1257,10 @@ var ListWorkflowDraftsApiResponseSchema = zod.z.object({
1257
1257
  });
1258
1258
 
1259
1259
  // src/plugins/codeSubstrate/listWorkflowDrafts/index.ts
1260
- var listWorkflowDraftsPlugin = chunkMGWFLOHA_cjs.defineMethod({
1260
+ var listWorkflowDraftsPlugin = chunkH24FJYFA_cjs.defineMethod({
1261
1261
  ...codeSubstrateDefaults,
1262
1262
  name: "listWorkflowDrafts",
1263
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
1263
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
1264
1264
  type: "list",
1265
1265
  itemType: "WorkflowDraft",
1266
1266
  inputSchema: ListWorkflowDraftsOptionsSchema,
@@ -1268,8 +1268,8 @@ var listWorkflowDraftsPlugin = chunkMGWFLOHA_cjs.defineMethod({
1268
1268
  skipOutputValidation: true,
1269
1269
  // The handler already returns a clean `{ data, nextCursor }` page, so the
1270
1270
  // standard list output (no `adaptPage`) applies.
1271
- output: { type: "list", defaultPageSize: chunkMGWFLOHA_cjs.DEFAULT_PAGE_SIZE },
1272
- resolvers: { workflow: chunkMGWFLOHA_cjs.workflowIdResolver },
1271
+ output: { type: "list", defaultPageSize: chunkH24FJYFA_cjs.DEFAULT_PAGE_SIZE },
1272
+ resolvers: { workflow: chunkH24FJYFA_cjs.workflowIdResolver },
1273
1273
  run: async ({ imports, input }) => {
1274
1274
  const api = imports.api;
1275
1275
  const searchParams = {};
@@ -1307,18 +1307,18 @@ var GetWorkflowDraftOptionsSchema = zod.z.object({
1307
1307
  var GetWorkflowDraftResponseSchema = WorkflowDraftSchema;
1308
1308
 
1309
1309
  // src/plugins/codeSubstrate/getWorkflowDraft/index.ts
1310
- var getWorkflowDraftPlugin = chunkMGWFLOHA_cjs.defineMethod({
1310
+ var getWorkflowDraftPlugin = chunkH24FJYFA_cjs.defineMethod({
1311
1311
  ...codeSubstrateDefaults,
1312
1312
  name: "getWorkflowDraft",
1313
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
1313
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
1314
1314
  itemType: "WorkflowDraft",
1315
1315
  inputSchema: GetWorkflowDraftOptionsSchema,
1316
1316
  outputSchema: GetWorkflowDraftResponseSchema,
1317
1317
  skipOutputValidation: true,
1318
1318
  output: "item",
1319
1319
  resolvers: {
1320
- workflow: chunkMGWFLOHA_cjs.workflowIdResolver,
1321
- draft: chunkMGWFLOHA_cjs.workflowDraftIdResolver
1320
+ workflow: chunkH24FJYFA_cjs.workflowIdResolver,
1321
+ draft: chunkH24FJYFA_cjs.workflowDraftIdResolver
1322
1322
  },
1323
1323
  run: async ({ imports, input }) => {
1324
1324
  const api = imports.api;
@@ -1343,17 +1343,17 @@ var CreateWorkflowDraftOptionsSchema = zod.z.object({
1343
1343
  var CreateWorkflowDraftResponseSchema = WorkflowDraftSchema;
1344
1344
 
1345
1345
  // src/plugins/codeSubstrate/createWorkflowDraft/index.ts
1346
- var createWorkflowDraftPlugin = chunkMGWFLOHA_cjs.defineMethod({
1346
+ var createWorkflowDraftPlugin = chunkH24FJYFA_cjs.defineMethod({
1347
1347
  ...codeSubstrateDefaults,
1348
1348
  name: "createWorkflowDraft",
1349
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
1349
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
1350
1350
  type: "create",
1351
1351
  itemType: "WorkflowDraft",
1352
1352
  inputSchema: CreateWorkflowDraftOptionsSchema,
1353
1353
  outputSchema: CreateWorkflowDraftResponseSchema,
1354
1354
  skipOutputValidation: true,
1355
1355
  output: "item",
1356
- resolvers: { workflow: chunkMGWFLOHA_cjs.workflowIdResolver },
1356
+ resolvers: { workflow: chunkH24FJYFA_cjs.workflowIdResolver },
1357
1357
  run: async ({ imports, input }) => {
1358
1358
  const api = imports.api;
1359
1359
  const body = {};
@@ -1371,6 +1371,7 @@ var createWorkflowDraftPlugin = chunkMGWFLOHA_cjs.defineMethod({
1371
1371
  return { data: CreateWorkflowDraftResponseSchema.parse(raw) };
1372
1372
  }
1373
1373
  });
1374
+ var TRIGGER_MANUAL_CONFLICT_MESSAGE2 = "Provide `trigger` or `manual: true`, not both \u2014 a trigger together with manual: true is a contradiction.";
1374
1375
  var UpdateWorkflowDraftOptionsSchema = zod.z.object({
1375
1376
  workflow: zod.z.string().uuid().describe("Durable workflow ID"),
1376
1377
  draft: zod.z.string().uuid().describe("Workflow draft ID"),
@@ -1383,22 +1384,27 @@ var UpdateWorkflowDraftOptionsSchema = zod.z.object({
1383
1384
  "Expected draft revision for optimistic concurrency. Pass the revision from the last read; the server rejects the save with a conflict if the draft has changed since. Omit to skip the check."
1384
1385
  ),
1385
1386
  trigger: TriggerConfigSchema.nullish().describe(
1386
- "Trigger configuration. Omit to leave the stored trigger unchanged, pass null to clear it, or pass an object to replace it."
1387
+ "Trigger configuration. Omit to leave the stored trigger unchanged, pass null to clear it, or pass an object to replace it; for an on-demand, triggerless workflow, clear this and pass `manual: true` instead."
1387
1388
  ),
1388
1389
  connections: zod.z.record(zod.z.string(), ConnectionBindingSchema).nullish().describe(
1389
1390
  "Map of connection aliases to Zapier connections used by the workflow. Pass `null` to clear an existing binding."
1390
1391
  ),
1391
1392
  appVersions: zod.z.record(zod.z.string(), AppVersionBindingSchema).nullish().describe(
1392
1393
  "Map of app keys to pinned app implementation/version used by the workflow. Pass `null` to clear an existing binding."
1394
+ ),
1395
+ manual: zod.z.boolean().optional().describe(
1396
+ "Declare this draft on-demand and triggerless. Pass `manual: true` only when omitting `trigger` (or clearing it with `trigger: null`); passing both is a contradiction the API rejects with a 400. Setting a `trigger` later clears a previously stored `manual: true`."
1393
1397
  )
1398
+ }).refine(({ trigger, manual }) => manual !== true || trigger == null, {
1399
+ message: TRIGGER_MANUAL_CONFLICT_MESSAGE2
1394
1400
  }).describe("Update (autosave) an open workflow draft");
1395
1401
  var UpdateWorkflowDraftResponseSchema = WorkflowDraftSchema;
1396
1402
 
1397
1403
  // src/plugins/codeSubstrate/updateWorkflowDraft/index.ts
1398
- var updateWorkflowDraftPlugin = chunkMGWFLOHA_cjs.defineMethod({
1404
+ var updateWorkflowDraftPlugin = chunkH24FJYFA_cjs.defineMethod({
1399
1405
  ...codeSubstrateDefaults,
1400
1406
  name: "updateWorkflowDraft",
1401
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
1407
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
1402
1408
  type: "update",
1403
1409
  itemType: "WorkflowDraft",
1404
1410
  inputSchema: UpdateWorkflowDraftOptionsSchema,
@@ -1406,8 +1412,8 @@ var updateWorkflowDraftPlugin = chunkMGWFLOHA_cjs.defineMethod({
1406
1412
  skipOutputValidation: true,
1407
1413
  output: "item",
1408
1414
  resolvers: {
1409
- workflow: chunkMGWFLOHA_cjs.workflowIdResolver,
1410
- draft: chunkMGWFLOHA_cjs.workflowDraftIdResolver,
1415
+ workflow: chunkH24FJYFA_cjs.workflowIdResolver,
1416
+ draft: chunkH24FJYFA_cjs.workflowDraftIdResolver,
1411
1417
  sourceFiles: sourceFilesResolver
1412
1418
  },
1413
1419
  run: async ({ imports, input }) => {
@@ -1437,6 +1443,9 @@ var updateWorkflowDraftPlugin = chunkMGWFLOHA_cjs.defineMethod({
1437
1443
  } else if (input.appVersions !== void 0) {
1438
1444
  body.app_versions = toWireAppVersions(input.appVersions);
1439
1445
  }
1446
+ if (input.manual !== void 0) {
1447
+ body.manual = input.manual;
1448
+ }
1440
1449
  const raw = await api.put(
1441
1450
  `${CODE_SUBSTRATE_WORKFLOWS_API}/workflows/${encodeURIComponent(input.workflow)}/drafts/${encodeURIComponent(input.draft)}`,
1442
1451
  body,
@@ -1449,8 +1458,8 @@ var updateWorkflowDraftPlugin = chunkMGWFLOHA_cjs.defineMethod({
1449
1458
  // re-read the draft, and retry instead of blind-overwriting.
1450
1459
  customErrorHandler: ({ status, data }) => {
1451
1460
  if (status === 409) {
1452
- const detail = chunkMGWFLOHA_cjs.extractErrorDetail(data);
1453
- return new chunkMGWFLOHA_cjs.ZapierConflictError(
1461
+ const detail = chunkH24FJYFA_cjs.extractErrorDetail(data);
1462
+ return new chunkH24FJYFA_cjs.ZapierConflictError(
1454
1463
  `${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.`,
1455
1464
  { statusCode: status, resourceType: "workflow-draft" }
1456
1465
  );
@@ -1471,10 +1480,10 @@ var DiscardWorkflowDraftOptionsSchema = zod.z.object({
1471
1480
  var DiscardWorkflowDraftResponseSchema = WorkflowDraftSchema;
1472
1481
 
1473
1482
  // src/plugins/codeSubstrate/discardWorkflowDraft/index.ts
1474
- var discardWorkflowDraftPlugin = chunkMGWFLOHA_cjs.defineMethod({
1483
+ var discardWorkflowDraftPlugin = chunkH24FJYFA_cjs.defineMethod({
1475
1484
  ...codeSubstrateDefaults,
1476
1485
  name: "discardWorkflowDraft",
1477
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
1486
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
1478
1487
  type: "delete",
1479
1488
  itemType: "WorkflowDraft",
1480
1489
  // Soft delete returns the discarded draft, not the `{ success: boolean }`
@@ -1488,8 +1497,8 @@ var discardWorkflowDraftPlugin = chunkMGWFLOHA_cjs.defineMethod({
1488
1497
  skipOutputValidation: true,
1489
1498
  output: "item",
1490
1499
  resolvers: {
1491
- workflow: chunkMGWFLOHA_cjs.workflowIdResolver,
1492
- draft: chunkMGWFLOHA_cjs.workflowDraftIdResolver
1500
+ workflow: chunkH24FJYFA_cjs.workflowIdResolver,
1501
+ draft: chunkH24FJYFA_cjs.workflowDraftIdResolver
1493
1502
  },
1494
1503
  run: async ({ imports, input }) => {
1495
1504
  const api = imports.api;
@@ -1512,6 +1521,9 @@ var PublishWorkflowDraftOptionsSchema = zod.z.object({
1512
1521
  ).meta({ negatable: "disabled" }),
1513
1522
  draftRevision: zod.z.number().int().min(0).optional().describe(
1514
1523
  "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."
1524
+ ),
1525
+ manual: zod.z.boolean().optional().describe(
1526
+ "Declare this publish on-demand and triggerless, overriding the draft's stored intent for this publish only. Pass `manual: true` only when the draft has no trigger configured; the API rejects a draft with a trigger published as `manual: true` as a contradiction (400)."
1515
1527
  )
1516
1528
  }).describe(
1517
1529
  "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."
@@ -1526,10 +1538,10 @@ var PublishWorkflowDraftResponseSchema = zod.z.object({
1526
1538
  });
1527
1539
 
1528
1540
  // src/plugins/codeSubstrate/publishWorkflowDraft/index.ts
1529
- var publishWorkflowDraftPlugin = chunkMGWFLOHA_cjs.defineMethod({
1541
+ var publishWorkflowDraftPlugin = chunkH24FJYFA_cjs.defineMethod({
1530
1542
  ...codeSubstrateDefaults,
1531
1543
  name: "publishWorkflowDraft",
1532
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
1544
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
1533
1545
  type: "create",
1534
1546
  itemType: "WorkflowVersion",
1535
1547
  // The response is the composite `{ draft, version }`, not the bare
@@ -1540,8 +1552,8 @@ var publishWorkflowDraftPlugin = chunkMGWFLOHA_cjs.defineMethod({
1540
1552
  skipOutputValidation: true,
1541
1553
  output: "item",
1542
1554
  resolvers: {
1543
- workflow: chunkMGWFLOHA_cjs.workflowIdResolver,
1544
- draft: chunkMGWFLOHA_cjs.workflowDraftIdResolver
1555
+ workflow: chunkH24FJYFA_cjs.workflowIdResolver,
1556
+ draft: chunkH24FJYFA_cjs.workflowDraftIdResolver
1545
1557
  },
1546
1558
  run: async ({ imports, input }) => {
1547
1559
  const api = imports.api;
@@ -1552,6 +1564,9 @@ var publishWorkflowDraftPlugin = chunkMGWFLOHA_cjs.defineMethod({
1552
1564
  if (input.draftRevision !== void 0) {
1553
1565
  body.draft_revision = input.draftRevision;
1554
1566
  }
1567
+ if (input.manual !== void 0) {
1568
+ body.manual = input.manual;
1569
+ }
1555
1570
  const raw = await api.post(
1556
1571
  `${CODE_SUBSTRATE_WORKFLOWS_API}/workflows/${encodeURIComponent(input.workflow)}/drafts/${encodeURIComponent(input.draft)}/publish`,
1557
1572
  body,
@@ -1571,15 +1586,15 @@ var publishWorkflowDraftPlugin = chunkMGWFLOHA_cjs.defineMethod({
1571
1586
  // to ZapierValidationError via the client's default handling.
1572
1587
  customErrorHandler: ({ status, data }) => {
1573
1588
  if (status === 409) {
1574
- const detail = chunkMGWFLOHA_cjs.extractErrorDetail(data);
1575
- return new chunkMGWFLOHA_cjs.ZapierConflictError(
1589
+ const detail = chunkH24FJYFA_cjs.extractErrorDetail(data);
1590
+ return new chunkH24FJYFA_cjs.ZapierConflictError(
1576
1591
  `${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.`,
1577
1592
  { statusCode: status, resourceType: "workflow-draft" }
1578
1593
  );
1579
1594
  }
1580
1595
  if (status === 503) {
1581
- const detail = chunkMGWFLOHA_cjs.extractErrorDetail(data);
1582
- return new chunkMGWFLOHA_cjs.ZapierApiError(
1596
+ const detail = chunkH24FJYFA_cjs.extractErrorDetail(data);
1597
+ return new chunkH24FJYFA_cjs.ZapierApiError(
1583
1598
  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.",
1584
1599
  { statusCode: status }
1585
1600
  );
@@ -1637,10 +1652,10 @@ var ListWorkflowRunsApiResponseSchema = zod.z.object({
1637
1652
  });
1638
1653
 
1639
1654
  // src/plugins/codeSubstrate/listWorkflowRuns/index.ts
1640
- var listWorkflowRunsPlugin = chunkMGWFLOHA_cjs.defineMethod({
1655
+ var listWorkflowRunsPlugin = chunkH24FJYFA_cjs.defineMethod({
1641
1656
  ...codeSubstrateDefaults,
1642
1657
  name: "listWorkflowRuns",
1643
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
1658
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
1644
1659
  type: "list",
1645
1660
  itemType: "WorkflowRun",
1646
1661
  inputSchema: ListWorkflowRunsOptionsSchema,
@@ -1648,8 +1663,8 @@ var listWorkflowRunsPlugin = chunkMGWFLOHA_cjs.defineMethod({
1648
1663
  skipOutputValidation: true,
1649
1664
  // The handler already returns a clean `{ data, nextCursor }` page, so the
1650
1665
  // standard list output (no `adaptPage`) applies.
1651
- output: { type: "list", defaultPageSize: chunkMGWFLOHA_cjs.DEFAULT_PAGE_SIZE },
1652
- resolvers: { workflow: chunkMGWFLOHA_cjs.workflowIdResolver },
1666
+ output: { type: "list", defaultPageSize: chunkH24FJYFA_cjs.DEFAULT_PAGE_SIZE },
1667
+ resolvers: { workflow: chunkH24FJYFA_cjs.workflowIdResolver },
1653
1668
  run: async ({ imports, input }) => {
1654
1669
  const api = imports.api;
1655
1670
  const searchParams = {};
@@ -1702,18 +1717,18 @@ var GetWorkflowRunResponseSchema = zod.z.object({
1702
1717
  });
1703
1718
 
1704
1719
  // src/plugins/codeSubstrate/getWorkflowRun/index.ts
1705
- var getWorkflowRunPlugin = chunkMGWFLOHA_cjs.defineMethod({
1720
+ var getWorkflowRunPlugin = chunkH24FJYFA_cjs.defineMethod({
1706
1721
  ...codeSubstrateDefaults,
1707
1722
  name: "getWorkflowRun",
1708
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
1723
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
1709
1724
  itemType: "WorkflowRun",
1710
1725
  inputSchema: GetWorkflowRunOptionsSchema,
1711
1726
  outputSchema: GetWorkflowRunResponseSchema,
1712
1727
  skipOutputValidation: true,
1713
1728
  output: "item",
1714
1729
  resolvers: {
1715
- workflow: chunkMGWFLOHA_cjs.workflowIdResolver,
1716
- run: chunkMGWFLOHA_cjs.workflowRunIdResolver
1730
+ workflow: chunkH24FJYFA_cjs.workflowIdResolver,
1731
+ run: chunkH24FJYFA_cjs.workflowRunIdResolver
1717
1732
  },
1718
1733
  run: async ({ imports, input }) => {
1719
1734
  const api = imports.api;
@@ -1747,10 +1762,10 @@ var GetTriggerRunResponseSchema = zod.z.object({
1747
1762
  });
1748
1763
 
1749
1764
  // src/plugins/codeSubstrate/getTriggerRun/index.ts
1750
- var getTriggerRunPlugin = chunkMGWFLOHA_cjs.defineMethod({
1765
+ var getTriggerRunPlugin = chunkH24FJYFA_cjs.defineMethod({
1751
1766
  ...codeSubstrateDefaults,
1752
1767
  name: "getTriggerRun",
1753
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
1768
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
1754
1769
  itemType: "WorkflowRun",
1755
1770
  inputSchema: GetTriggerRunOptionsSchema,
1756
1771
  outputSchema: GetTriggerRunResponseSchema,
@@ -1790,17 +1805,17 @@ var TriggerWorkflowResponseSchema = zod.z.object({
1790
1805
  });
1791
1806
 
1792
1807
  // src/plugins/codeSubstrate/triggerWorkflow/index.ts
1793
- var triggerWorkflowPlugin = chunkMGWFLOHA_cjs.defineMethod({
1808
+ var triggerWorkflowPlugin = chunkH24FJYFA_cjs.defineMethod({
1794
1809
  ...codeSubstrateDefaults,
1795
1810
  name: "triggerWorkflow",
1796
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
1811
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
1797
1812
  type: "create",
1798
1813
  itemType: "WorkflowRun",
1799
1814
  inputSchema: TriggerWorkflowOptionsSchema,
1800
1815
  outputSchema: TriggerWorkflowResponseSchema,
1801
1816
  skipOutputValidation: true,
1802
1817
  output: "item",
1803
- resolvers: { workflow: chunkMGWFLOHA_cjs.workflowIdResolver },
1818
+ resolvers: { workflow: chunkH24FJYFA_cjs.workflowIdResolver },
1804
1819
  run: async ({ imports, input }) => {
1805
1820
  const api = imports.api;
1806
1821
  const rawWorkflow = await api.get(
@@ -1814,7 +1829,7 @@ var triggerWorkflowPlugin = chunkMGWFLOHA_cjs.defineMethod({
1814
1829
  const segments = new URL(workflow.trigger_url).pathname.split("/");
1815
1830
  const triggerToken = segments[segments.length - 1];
1816
1831
  if (!triggerToken) {
1817
- throw new chunkMGWFLOHA_cjs.ZapierApiError(
1832
+ throw new chunkH24FJYFA_cjs.ZapierApiError(
1818
1833
  `Workflow ${input.workflow} returned a malformed trigger_url`,
1819
1834
  { statusCode: 0, response: workflow.trigger_url }
1820
1835
  );
@@ -1855,7 +1870,7 @@ function handleFormsAccessError({
1855
1870
  if (status !== 403 || firstErrorDetail(data) !== FORMS_ACCESS_DENIED_DETAIL) {
1856
1871
  return void 0;
1857
1872
  }
1858
- return new chunkMGWFLOHA_cjs.ZapierConfigurationError(
1873
+ return new chunkH24FJYFA_cjs.ZapierConfigurationError(
1859
1874
  `${FORMS_ACCESS_DENIED_DETAIL} Request access through Zapier support at https://zapier.com/app/get-help.`,
1860
1875
  { statusCode: status }
1861
1876
  );
@@ -1933,7 +1948,7 @@ function assertUniqueKeys(keys, fields) {
1933
1948
  const label = fields[index]?.label ?? "";
1934
1949
  const previous = seen.get(key);
1935
1950
  if (previous !== void 0) {
1936
- throw new chunkMGWFLOHA_cjs.ZapierValidationError(
1951
+ throw new chunkH24FJYFA_cjs.ZapierValidationError(
1937
1952
  `Fields "${previous}" and "${label}" both derive the submission key "${key}". Give them labels that differ by more than punctuation or casing.`,
1938
1953
  { details: { key, labels: [previous, label] } }
1939
1954
  );
@@ -2136,10 +2151,10 @@ var CreateFormSchema = zod.z.object({
2136
2151
  }).describe(CreateFormDescription);
2137
2152
 
2138
2153
  // src/plugins/humanInput/createForm/index.ts
2139
- var createFormPlugin = chunkMGWFLOHA_cjs.defineMethod({
2154
+ var createFormPlugin = chunkH24FJYFA_cjs.defineMethod({
2140
2155
  ...humanInputDefaults,
2141
2156
  name: "createForm",
2142
- imports: [chunkMGWFLOHA_cjs.apiPluginRef],
2157
+ imports: [chunkH24FJYFA_cjs.apiPluginRef],
2143
2158
  type: "create",
2144
2159
  itemType: "Form",
2145
2160
  inputSchema: CreateFormSchema,
@@ -2167,11 +2182,11 @@ var createFormPlugin = chunkMGWFLOHA_cjs.defineMethod({
2167
2182
  });
2168
2183
 
2169
2184
  // src/experimental.ts
2170
- var zapierExperimentalSdkPlugin = chunkMGWFLOHA_cjs.definePlugin({
2185
+ var zapierExperimentalSdkPlugin = chunkH24FJYFA_cjs.definePlugin({
2171
2186
  namespace: "zapier",
2172
2187
  name: "experimental-sdk",
2173
2188
  exports: [
2174
- chunkMGWFLOHA_cjs.zapierSdkPlugin,
2189
+ chunkH24FJYFA_cjs.zapierSdkPlugin,
2175
2190
  // Code substrate (experimental). `list*` plugins are exported before their
2176
2191
  // `get*` / mutation siblings because per-row resolvers reach the listing
2177
2192
  // methods.
@@ -2205,1117 +2220,1117 @@ var zapierExperimentalSdkPlugin = chunkMGWFLOHA_cjs.definePlugin({
2205
2220
  ]
2206
2221
  });
2207
2222
  function createZapierSdk(options = {}) {
2208
- return chunkMGWFLOHA_cjs.createSdk(zapierExperimentalSdkPlugin, {
2223
+ return chunkH24FJYFA_cjs.createSdk(zapierExperimentalSdkPlugin, {
2209
2224
  configuration: {
2210
- [chunkMGWFLOHA_cjs.SDK_OPTIONS_ID]: options,
2211
- [chunkMGWFLOHA_cjs.CORE_OPTIONS_ID]: chunkMGWFLOHA_cjs.zapierCoreOptions
2225
+ [chunkH24FJYFA_cjs.SDK_OPTIONS_ID]: options,
2226
+ [chunkH24FJYFA_cjs.CORE_OPTIONS_ID]: chunkH24FJYFA_cjs.zapierCoreOptions
2212
2227
  }
2213
2228
  });
2214
2229
  }
2215
2230
 
2216
2231
  Object.defineProperty(exports, "ACTION_RUNS_PATH", {
2217
2232
  enumerable: true,
2218
- get: function () { return chunkMGWFLOHA_cjs.ACTION_RUNS_PATH; }
2233
+ get: function () { return chunkH24FJYFA_cjs.ACTION_RUNS_PATH; }
2219
2234
  });
2220
2235
  Object.defineProperty(exports, "API_ID", {
2221
2236
  enumerable: true,
2222
- get: function () { return chunkMGWFLOHA_cjs.API_ID; }
2237
+ get: function () { return chunkH24FJYFA_cjs.API_ID; }
2223
2238
  });
2224
2239
  Object.defineProperty(exports, "ActionKeyPropertySchema", {
2225
2240
  enumerable: true,
2226
- get: function () { return chunkMGWFLOHA_cjs.ActionKeyPropertySchema; }
2241
+ get: function () { return chunkH24FJYFA_cjs.ActionKeyPropertySchema; }
2227
2242
  });
2228
2243
  Object.defineProperty(exports, "ActionPropertySchema", {
2229
2244
  enumerable: true,
2230
- get: function () { return chunkMGWFLOHA_cjs.ActionPropertySchema; }
2245
+ get: function () { return chunkH24FJYFA_cjs.ActionPropertySchema; }
2231
2246
  });
2232
2247
  Object.defineProperty(exports, "ActionTimeoutMillisecondsPropertySchema", {
2233
2248
  enumerable: true,
2234
- get: function () { return chunkMGWFLOHA_cjs.ActionTimeoutMillisecondsPropertySchema; }
2249
+ get: function () { return chunkH24FJYFA_cjs.ActionTimeoutMillisecondsPropertySchema; }
2235
2250
  });
2236
2251
  Object.defineProperty(exports, "ActionTimeoutSecondsPropertySchema", {
2237
2252
  enumerable: true,
2238
- get: function () { return chunkMGWFLOHA_cjs.ActionTimeoutSecondsPropertySchema; }
2253
+ get: function () { return chunkH24FJYFA_cjs.ActionTimeoutSecondsPropertySchema; }
2239
2254
  });
2240
2255
  Object.defineProperty(exports, "ActionTypePropertySchema", {
2241
2256
  enumerable: true,
2242
- get: function () { return chunkMGWFLOHA_cjs.ActionTypePropertySchema; }
2257
+ get: function () { return chunkH24FJYFA_cjs.ActionTypePropertySchema; }
2243
2258
  });
2244
2259
  Object.defineProperty(exports, "AppKeyPropertySchema", {
2245
2260
  enumerable: true,
2246
- get: function () { return chunkMGWFLOHA_cjs.AppKeyPropertySchema; }
2261
+ get: function () { return chunkH24FJYFA_cjs.AppKeyPropertySchema; }
2247
2262
  });
2248
2263
  Object.defineProperty(exports, "AppPropertySchema", {
2249
2264
  enumerable: true,
2250
- get: function () { return chunkMGWFLOHA_cjs.AppPropertySchema; }
2265
+ get: function () { return chunkH24FJYFA_cjs.AppPropertySchema; }
2251
2266
  });
2252
2267
  Object.defineProperty(exports, "AppsPropertySchema", {
2253
2268
  enumerable: true,
2254
- get: function () { return chunkMGWFLOHA_cjs.AppsPropertySchema; }
2269
+ get: function () { return chunkH24FJYFA_cjs.AppsPropertySchema; }
2255
2270
  });
2256
2271
  Object.defineProperty(exports, "AuthMechanism", {
2257
2272
  enumerable: true,
2258
- get: function () { return chunkMGWFLOHA_cjs.AuthMechanism; }
2273
+ get: function () { return chunkH24FJYFA_cjs.AuthMechanism; }
2259
2274
  });
2260
2275
  Object.defineProperty(exports, "AuthenticationIdPropertySchema", {
2261
2276
  enumerable: true,
2262
- get: function () { return chunkMGWFLOHA_cjs.AuthenticationIdPropertySchema; }
2277
+ get: function () { return chunkH24FJYFA_cjs.AuthenticationIdPropertySchema; }
2263
2278
  });
2264
2279
  Object.defineProperty(exports, "BaseSdkOptionsSchema", {
2265
2280
  enumerable: true,
2266
- get: function () { return chunkMGWFLOHA_cjs.BaseSdkOptionsSchema; }
2281
+ get: function () { return chunkH24FJYFA_cjs.BaseSdkOptionsSchema; }
2267
2282
  });
2268
2283
  Object.defineProperty(exports, "CONNECTIONS_ID", {
2269
2284
  enumerable: true,
2270
- get: function () { return chunkMGWFLOHA_cjs.CONNECTIONS_ID; }
2285
+ get: function () { return chunkH24FJYFA_cjs.CONNECTIONS_ID; }
2271
2286
  });
2272
2287
  Object.defineProperty(exports, "CONTEXT", {
2273
2288
  enumerable: true,
2274
- get: function () { return chunkMGWFLOHA_cjs.CONTEXT; }
2289
+ get: function () { return chunkH24FJYFA_cjs.CONTEXT; }
2275
2290
  });
2276
2291
  Object.defineProperty(exports, "CONTEXT_CACHE_MAX_SIZE", {
2277
2292
  enumerable: true,
2278
- get: function () { return chunkMGWFLOHA_cjs.CONTEXT_CACHE_MAX_SIZE; }
2293
+ get: function () { return chunkH24FJYFA_cjs.CONTEXT_CACHE_MAX_SIZE; }
2279
2294
  });
2280
2295
  Object.defineProperty(exports, "CONTEXT_CACHE_TTL_MILLISECONDS", {
2281
2296
  enumerable: true,
2282
- get: function () { return chunkMGWFLOHA_cjs.CONTEXT_CACHE_TTL_MILLISECONDS; }
2297
+ get: function () { return chunkH24FJYFA_cjs.CONTEXT_CACHE_TTL_MILLISECONDS; }
2283
2298
  });
2284
2299
  Object.defineProperty(exports, "CORE_ERROR_SYMBOL", {
2285
2300
  enumerable: true,
2286
- get: function () { return chunkMGWFLOHA_cjs.CORE_ERROR_SYMBOL; }
2301
+ get: function () { return chunkH24FJYFA_cjs.CORE_ERROR_SYMBOL; }
2287
2302
  });
2288
2303
  Object.defineProperty(exports, "CORE_OPTIONS_ID", {
2289
2304
  enumerable: true,
2290
- get: function () { return chunkMGWFLOHA_cjs.CORE_OPTIONS_ID; }
2305
+ get: function () { return chunkH24FJYFA_cjs.CORE_OPTIONS_ID; }
2291
2306
  });
2292
2307
  Object.defineProperty(exports, "CORE_SIGNAL_SYMBOL", {
2293
2308
  enumerable: true,
2294
- get: function () { return chunkMGWFLOHA_cjs.CORE_SIGNAL_SYMBOL; }
2309
+ get: function () { return chunkH24FJYFA_cjs.CORE_SIGNAL_SYMBOL; }
2295
2310
  });
2296
2311
  Object.defineProperty(exports, "ClientCredentialsObjectSchema", {
2297
2312
  enumerable: true,
2298
- get: function () { return chunkMGWFLOHA_cjs.ClientCredentialsObjectSchema; }
2313
+ get: function () { return chunkH24FJYFA_cjs.ClientCredentialsObjectSchema; }
2299
2314
  });
2300
2315
  Object.defineProperty(exports, "ConnectionEntrySchema", {
2301
2316
  enumerable: true,
2302
- get: function () { return chunkMGWFLOHA_cjs.ConnectionEntrySchema; }
2317
+ get: function () { return chunkH24FJYFA_cjs.ConnectionEntrySchema; }
2303
2318
  });
2304
2319
  Object.defineProperty(exports, "ConnectionIdPropertySchema", {
2305
2320
  enumerable: true,
2306
- get: function () { return chunkMGWFLOHA_cjs.ConnectionIdPropertySchema; }
2321
+ get: function () { return chunkH24FJYFA_cjs.ConnectionIdPropertySchema; }
2307
2322
  });
2308
2323
  Object.defineProperty(exports, "ConnectionPropertySchema", {
2309
2324
  enumerable: true,
2310
- get: function () { return chunkMGWFLOHA_cjs.ConnectionPropertySchema; }
2325
+ get: function () { return chunkH24FJYFA_cjs.ConnectionPropertySchema; }
2311
2326
  });
2312
2327
  Object.defineProperty(exports, "ConnectionsMapSchema", {
2313
2328
  enumerable: true,
2314
- get: function () { return chunkMGWFLOHA_cjs.ConnectionsMapSchema; }
2329
+ get: function () { return chunkH24FJYFA_cjs.ConnectionsMapSchema; }
2315
2330
  });
2316
2331
  Object.defineProperty(exports, "ConnectionsPropertySchema", {
2317
2332
  enumerable: true,
2318
- get: function () { return chunkMGWFLOHA_cjs.ConnectionsPropertySchema; }
2333
+ get: function () { return chunkH24FJYFA_cjs.ConnectionsPropertySchema; }
2319
2334
  });
2320
2335
  Object.defineProperty(exports, "CoreCancelledSignal", {
2321
2336
  enumerable: true,
2322
- get: function () { return chunkMGWFLOHA_cjs.CoreCancelledSignal; }
2337
+ get: function () { return chunkH24FJYFA_cjs.CoreCancelledSignal; }
2323
2338
  });
2324
2339
  Object.defineProperty(exports, "CoreDisposeError", {
2325
2340
  enumerable: true,
2326
- get: function () { return chunkMGWFLOHA_cjs.CoreDisposeError; }
2341
+ get: function () { return chunkH24FJYFA_cjs.CoreDisposeError; }
2327
2342
  });
2328
2343
  Object.defineProperty(exports, "CoreErrorCode", {
2329
2344
  enumerable: true,
2330
- get: function () { return chunkMGWFLOHA_cjs.CoreErrorCode; }
2345
+ get: function () { return chunkH24FJYFA_cjs.CoreErrorCode; }
2331
2346
  });
2332
2347
  Object.defineProperty(exports, "CoreSignal", {
2333
2348
  enumerable: true,
2334
- get: function () { return chunkMGWFLOHA_cjs.CoreSignal; }
2349
+ get: function () { return chunkH24FJYFA_cjs.CoreSignal; }
2335
2350
  });
2336
2351
  Object.defineProperty(exports, "CredentialsFunctionSchema", {
2337
2352
  enumerable: true,
2338
- get: function () { return chunkMGWFLOHA_cjs.CredentialsFunctionSchema; }
2353
+ get: function () { return chunkH24FJYFA_cjs.CredentialsFunctionSchema; }
2339
2354
  });
2340
2355
  Object.defineProperty(exports, "CredentialsObjectSchema", {
2341
2356
  enumerable: true,
2342
- get: function () { return chunkMGWFLOHA_cjs.CredentialsObjectSchema; }
2357
+ get: function () { return chunkH24FJYFA_cjs.CredentialsObjectSchema; }
2343
2358
  });
2344
2359
  Object.defineProperty(exports, "CredentialsSchema", {
2345
2360
  enumerable: true,
2346
- get: function () { return chunkMGWFLOHA_cjs.CredentialsSchema; }
2361
+ get: function () { return chunkH24FJYFA_cjs.CredentialsSchema; }
2347
2362
  });
2348
2363
  Object.defineProperty(exports, "DEFAULT_ACTION_TIMEOUT_MILLISECONDS", {
2349
2364
  enumerable: true,
2350
- get: function () { return chunkMGWFLOHA_cjs.DEFAULT_ACTION_TIMEOUT_MILLISECONDS; }
2365
+ get: function () { return chunkH24FJYFA_cjs.DEFAULT_ACTION_TIMEOUT_MILLISECONDS; }
2351
2366
  });
2352
2367
  Object.defineProperty(exports, "DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS", {
2353
2368
  enumerable: true,
2354
- get: function () { return chunkMGWFLOHA_cjs.DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS; }
2369
+ get: function () { return chunkH24FJYFA_cjs.DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS; }
2355
2370
  });
2356
2371
  Object.defineProperty(exports, "DEFAULT_CONFIG_PATH", {
2357
2372
  enumerable: true,
2358
- get: function () { return chunkMGWFLOHA_cjs.DEFAULT_CONFIG_PATH; }
2373
+ get: function () { return chunkH24FJYFA_cjs.DEFAULT_CONFIG_PATH; }
2359
2374
  });
2360
2375
  Object.defineProperty(exports, "DEFAULT_MAX_APPROVAL_RETRIES", {
2361
2376
  enumerable: true,
2362
- get: function () { return chunkMGWFLOHA_cjs.DEFAULT_MAX_APPROVAL_RETRIES; }
2377
+ get: function () { return chunkH24FJYFA_cjs.DEFAULT_MAX_APPROVAL_RETRIES; }
2363
2378
  });
2364
2379
  Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
2365
2380
  enumerable: true,
2366
- get: function () { return chunkMGWFLOHA_cjs.DEFAULT_PAGE_SIZE; }
2381
+ get: function () { return chunkH24FJYFA_cjs.DEFAULT_PAGE_SIZE; }
2367
2382
  });
2368
2383
  Object.defineProperty(exports, "DEPRECATION_NOTICE_EVENT", {
2369
2384
  enumerable: true,
2370
- get: function () { return chunkMGWFLOHA_cjs.DEPRECATION_NOTICE_EVENT; }
2385
+ get: function () { return chunkH24FJYFA_cjs.DEPRECATION_NOTICE_EVENT; }
2371
2386
  });
2372
2387
  Object.defineProperty(exports, "DebugPropertySchema", {
2373
2388
  enumerable: true,
2374
- get: function () { return chunkMGWFLOHA_cjs.DebugPropertySchema; }
2389
+ get: function () { return chunkH24FJYFA_cjs.DebugPropertySchema; }
2375
2390
  });
2376
2391
  Object.defineProperty(exports, "DrainTriggerInboxSchema", {
2377
2392
  enumerable: true,
2378
- get: function () { return chunkMGWFLOHA_cjs.DrainTriggerInboxSchema; }
2393
+ get: function () { return chunkH24FJYFA_cjs.DrainTriggerInboxSchema; }
2379
2394
  });
2380
2395
  Object.defineProperty(exports, "EVENT_EMISSION_ID", {
2381
2396
  enumerable: true,
2382
- get: function () { return chunkMGWFLOHA_cjs.EVENT_EMISSION_ID; }
2397
+ get: function () { return chunkH24FJYFA_cjs.EVENT_EMISSION_ID; }
2383
2398
  });
2384
2399
  Object.defineProperty(exports, "FieldsPropertySchema", {
2385
2400
  enumerable: true,
2386
- get: function () { return chunkMGWFLOHA_cjs.FieldsPropertySchema; }
2401
+ get: function () { return chunkH24FJYFA_cjs.FieldsPropertySchema; }
2387
2402
  });
2388
2403
  Object.defineProperty(exports, "InputFieldPropertySchema", {
2389
2404
  enumerable: true,
2390
- get: function () { return chunkMGWFLOHA_cjs.InputFieldPropertySchema; }
2405
+ get: function () { return chunkH24FJYFA_cjs.InputFieldPropertySchema; }
2391
2406
  });
2392
2407
  Object.defineProperty(exports, "InputsPropertySchema", {
2393
2408
  enumerable: true,
2394
- get: function () { return chunkMGWFLOHA_cjs.InputsPropertySchema; }
2409
+ get: function () { return chunkH24FJYFA_cjs.InputsPropertySchema; }
2395
2410
  });
2396
2411
  Object.defineProperty(exports, "LeaseLimitPropertySchema", {
2397
2412
  enumerable: true,
2398
- get: function () { return chunkMGWFLOHA_cjs.LeaseLimitPropertySchema; }
2413
+ get: function () { return chunkH24FJYFA_cjs.LeaseLimitPropertySchema; }
2399
2414
  });
2400
2415
  Object.defineProperty(exports, "LeasePropertySchema", {
2401
2416
  enumerable: true,
2402
- get: function () { return chunkMGWFLOHA_cjs.LeasePropertySchema; }
2417
+ get: function () { return chunkH24FJYFA_cjs.LeasePropertySchema; }
2403
2418
  });
2404
2419
  Object.defineProperty(exports, "LeaseSecondsPropertySchema", {
2405
2420
  enumerable: true,
2406
- get: function () { return chunkMGWFLOHA_cjs.LeaseSecondsPropertySchema; }
2421
+ get: function () { return chunkH24FJYFA_cjs.LeaseSecondsPropertySchema; }
2407
2422
  });
2408
2423
  Object.defineProperty(exports, "LimitPropertySchema", {
2409
2424
  enumerable: true,
2410
- get: function () { return chunkMGWFLOHA_cjs.LimitPropertySchema; }
2425
+ get: function () { return chunkH24FJYFA_cjs.LimitPropertySchema; }
2411
2426
  });
2412
2427
  Object.defineProperty(exports, "MANIFEST_ID", {
2413
2428
  enumerable: true,
2414
- get: function () { return chunkMGWFLOHA_cjs.MANIFEST_ID; }
2429
+ get: function () { return chunkH24FJYFA_cjs.MANIFEST_ID; }
2415
2430
  });
2416
2431
  Object.defineProperty(exports, "MAX_CONCURRENCY_LIMIT", {
2417
2432
  enumerable: true,
2418
- get: function () { return chunkMGWFLOHA_cjs.MAX_CONCURRENCY_LIMIT; }
2433
+ get: function () { return chunkH24FJYFA_cjs.MAX_CONCURRENCY_LIMIT; }
2419
2434
  });
2420
2435
  Object.defineProperty(exports, "MAX_PAGE_LIMIT", {
2421
2436
  enumerable: true,
2422
- get: function () { return chunkMGWFLOHA_cjs.MAX_PAGE_LIMIT; }
2437
+ get: function () { return chunkH24FJYFA_cjs.MAX_PAGE_LIMIT; }
2423
2438
  });
2424
2439
  Object.defineProperty(exports, "OffsetPropertySchema", {
2425
2440
  enumerable: true,
2426
- get: function () { return chunkMGWFLOHA_cjs.OffsetPropertySchema; }
2441
+ get: function () { return chunkH24FJYFA_cjs.OffsetPropertySchema; }
2427
2442
  });
2428
2443
  Object.defineProperty(exports, "OutputPropertySchema", {
2429
2444
  enumerable: true,
2430
- get: function () { return chunkMGWFLOHA_cjs.OutputPropertySchema; }
2445
+ get: function () { return chunkH24FJYFA_cjs.OutputPropertySchema; }
2431
2446
  });
2432
2447
  Object.defineProperty(exports, "ParamsPropertySchema", {
2433
2448
  enumerable: true,
2434
- get: function () { return chunkMGWFLOHA_cjs.ParamsPropertySchema; }
2449
+ get: function () { return chunkH24FJYFA_cjs.ParamsPropertySchema; }
2435
2450
  });
2436
2451
  Object.defineProperty(exports, "PkceCredentialsObjectSchema", {
2437
2452
  enumerable: true,
2438
- get: function () { return chunkMGWFLOHA_cjs.PkceCredentialsObjectSchema; }
2453
+ get: function () { return chunkH24FJYFA_cjs.PkceCredentialsObjectSchema; }
2439
2454
  });
2440
2455
  Object.defineProperty(exports, "RESOLVE_CREDENTIALS_ID", {
2441
2456
  enumerable: true,
2442
- get: function () { return chunkMGWFLOHA_cjs.RESOLVE_CREDENTIALS_ID; }
2457
+ get: function () { return chunkH24FJYFA_cjs.RESOLVE_CREDENTIALS_ID; }
2443
2458
  });
2444
2459
  Object.defineProperty(exports, "RecordPropertySchema", {
2445
2460
  enumerable: true,
2446
- get: function () { return chunkMGWFLOHA_cjs.RecordPropertySchema; }
2461
+ get: function () { return chunkH24FJYFA_cjs.RecordPropertySchema; }
2447
2462
  });
2448
2463
  Object.defineProperty(exports, "RecordsPropertySchema", {
2449
2464
  enumerable: true,
2450
- get: function () { return chunkMGWFLOHA_cjs.RecordsPropertySchema; }
2465
+ get: function () { return chunkH24FJYFA_cjs.RecordsPropertySchema; }
2451
2466
  });
2452
2467
  Object.defineProperty(exports, "RelayFetchSchema", {
2453
2468
  enumerable: true,
2454
- get: function () { return chunkMGWFLOHA_cjs.RelayFetchSchema; }
2469
+ get: function () { return chunkH24FJYFA_cjs.RelayFetchSchema; }
2455
2470
  });
2456
2471
  Object.defineProperty(exports, "RelayRequestSchema", {
2457
2472
  enumerable: true,
2458
- get: function () { return chunkMGWFLOHA_cjs.RelayRequestSchema; }
2473
+ get: function () { return chunkH24FJYFA_cjs.RelayRequestSchema; }
2459
2474
  });
2460
2475
  Object.defineProperty(exports, "ResolvedCredentialsSchema", {
2461
2476
  enumerable: true,
2462
- get: function () { return chunkMGWFLOHA_cjs.ResolvedCredentialsSchema; }
2477
+ get: function () { return chunkH24FJYFA_cjs.ResolvedCredentialsSchema; }
2463
2478
  });
2464
2479
  Object.defineProperty(exports, "SDK_OPTIONS_ID", {
2465
2480
  enumerable: true,
2466
- get: function () { return chunkMGWFLOHA_cjs.SDK_OPTIONS_ID; }
2481
+ get: function () { return chunkH24FJYFA_cjs.SDK_OPTIONS_ID; }
2467
2482
  });
2468
2483
  Object.defineProperty(exports, "TablePropertySchema", {
2469
2484
  enumerable: true,
2470
- get: function () { return chunkMGWFLOHA_cjs.TablePropertySchema; }
2485
+ get: function () { return chunkH24FJYFA_cjs.TablePropertySchema; }
2471
2486
  });
2472
2487
  Object.defineProperty(exports, "TablesPropertySchema", {
2473
2488
  enumerable: true,
2474
- get: function () { return chunkMGWFLOHA_cjs.TablesPropertySchema; }
2489
+ get: function () { return chunkH24FJYFA_cjs.TablesPropertySchema; }
2475
2490
  });
2476
2491
  Object.defineProperty(exports, "TriggerInboxKeyPropertySchema", {
2477
2492
  enumerable: true,
2478
- get: function () { return chunkMGWFLOHA_cjs.TriggerInboxKeyPropertySchema; }
2493
+ get: function () { return chunkH24FJYFA_cjs.TriggerInboxKeyPropertySchema; }
2479
2494
  });
2480
2495
  Object.defineProperty(exports, "TriggerInboxNamePropertySchema", {
2481
2496
  enumerable: true,
2482
- get: function () { return chunkMGWFLOHA_cjs.TriggerInboxNamePropertySchema; }
2497
+ get: function () { return chunkH24FJYFA_cjs.TriggerInboxNamePropertySchema; }
2483
2498
  });
2484
2499
  Object.defineProperty(exports, "TriggerInboxPropertySchema", {
2485
2500
  enumerable: true,
2486
- get: function () { return chunkMGWFLOHA_cjs.TriggerInboxPropertySchema; }
2501
+ get: function () { return chunkH24FJYFA_cjs.TriggerInboxPropertySchema; }
2487
2502
  });
2488
2503
  Object.defineProperty(exports, "WatchTriggerInboxSchema", {
2489
2504
  enumerable: true,
2490
- get: function () { return chunkMGWFLOHA_cjs.WatchTriggerInboxSchema; }
2505
+ get: function () { return chunkH24FJYFA_cjs.WatchTriggerInboxSchema; }
2491
2506
  });
2492
2507
  Object.defineProperty(exports, "ZAPIER_BASE_URL", {
2493
2508
  enumerable: true,
2494
- get: function () { return chunkMGWFLOHA_cjs.ZAPIER_BASE_URL; }
2509
+ get: function () { return chunkH24FJYFA_cjs.ZAPIER_BASE_URL; }
2495
2510
  });
2496
2511
  Object.defineProperty(exports, "ZAPIER_MAX_CONCURRENT_REQUESTS", {
2497
2512
  enumerable: true,
2498
- get: function () { return chunkMGWFLOHA_cjs.ZAPIER_MAX_CONCURRENT_REQUESTS; }
2513
+ get: function () { return chunkH24FJYFA_cjs.ZAPIER_MAX_CONCURRENT_REQUESTS; }
2499
2514
  });
2500
2515
  Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRIES", {
2501
2516
  enumerable: true,
2502
- get: function () { return chunkMGWFLOHA_cjs.ZAPIER_MAX_NETWORK_RETRIES; }
2517
+ get: function () { return chunkH24FJYFA_cjs.ZAPIER_MAX_NETWORK_RETRIES; }
2503
2518
  });
2504
2519
  Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS", {
2505
2520
  enumerable: true,
2506
- get: function () { return chunkMGWFLOHA_cjs.ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS; }
2521
+ get: function () { return chunkH24FJYFA_cjs.ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS; }
2507
2522
  });
2508
2523
  Object.defineProperty(exports, "ZapierAbortDrainSignal", {
2509
2524
  enumerable: true,
2510
- get: function () { return chunkMGWFLOHA_cjs.ZapierAbortDrainSignal; }
2525
+ get: function () { return chunkH24FJYFA_cjs.ZapierAbortDrainSignal; }
2511
2526
  });
2512
2527
  Object.defineProperty(exports, "ZapierActionError", {
2513
2528
  enumerable: true,
2514
- get: function () { return chunkMGWFLOHA_cjs.ZapierActionError; }
2529
+ get: function () { return chunkH24FJYFA_cjs.ZapierActionError; }
2515
2530
  });
2516
2531
  Object.defineProperty(exports, "ZapierApiError", {
2517
2532
  enumerable: true,
2518
- get: function () { return chunkMGWFLOHA_cjs.ZapierApiError; }
2533
+ get: function () { return chunkH24FJYFA_cjs.ZapierApiError; }
2519
2534
  });
2520
2535
  Object.defineProperty(exports, "ZapierAppNotFoundError", {
2521
2536
  enumerable: true,
2522
- get: function () { return chunkMGWFLOHA_cjs.ZapierAppNotFoundError; }
2537
+ get: function () { return chunkH24FJYFA_cjs.ZapierAppNotFoundError; }
2523
2538
  });
2524
2539
  Object.defineProperty(exports, "ZapierApprovalError", {
2525
2540
  enumerable: true,
2526
- get: function () { return chunkMGWFLOHA_cjs.ZapierApprovalError; }
2541
+ get: function () { return chunkH24FJYFA_cjs.ZapierApprovalError; }
2527
2542
  });
2528
2543
  Object.defineProperty(exports, "ZapierAuthenticationError", {
2529
2544
  enumerable: true,
2530
- get: function () { return chunkMGWFLOHA_cjs.ZapierAuthenticationError; }
2545
+ get: function () { return chunkH24FJYFA_cjs.ZapierAuthenticationError; }
2531
2546
  });
2532
2547
  Object.defineProperty(exports, "ZapierBundleError", {
2533
2548
  enumerable: true,
2534
- get: function () { return chunkMGWFLOHA_cjs.ZapierBundleError; }
2549
+ get: function () { return chunkH24FJYFA_cjs.ZapierBundleError; }
2535
2550
  });
2536
2551
  Object.defineProperty(exports, "ZapierConfigurationError", {
2537
2552
  enumerable: true,
2538
- get: function () { return chunkMGWFLOHA_cjs.ZapierConfigurationError; }
2553
+ get: function () { return chunkH24FJYFA_cjs.ZapierConfigurationError; }
2539
2554
  });
2540
2555
  Object.defineProperty(exports, "ZapierConflictError", {
2541
2556
  enumerable: true,
2542
- get: function () { return chunkMGWFLOHA_cjs.ZapierConflictError; }
2557
+ get: function () { return chunkH24FJYFA_cjs.ZapierConflictError; }
2543
2558
  });
2544
2559
  Object.defineProperty(exports, "ZapierError", {
2545
2560
  enumerable: true,
2546
- get: function () { return chunkMGWFLOHA_cjs.ZapierError; }
2561
+ get: function () { return chunkH24FJYFA_cjs.ZapierError; }
2547
2562
  });
2548
2563
  Object.defineProperty(exports, "ZapierNotFoundError", {
2549
2564
  enumerable: true,
2550
- get: function () { return chunkMGWFLOHA_cjs.ZapierNotFoundError; }
2565
+ get: function () { return chunkH24FJYFA_cjs.ZapierNotFoundError; }
2551
2566
  });
2552
2567
  Object.defineProperty(exports, "ZapierRateLimitError", {
2553
2568
  enumerable: true,
2554
- get: function () { return chunkMGWFLOHA_cjs.ZapierRateLimitError; }
2569
+ get: function () { return chunkH24FJYFA_cjs.ZapierRateLimitError; }
2555
2570
  });
2556
2571
  Object.defineProperty(exports, "ZapierRelayError", {
2557
2572
  enumerable: true,
2558
- get: function () { return chunkMGWFLOHA_cjs.ZapierRelayError; }
2573
+ get: function () { return chunkH24FJYFA_cjs.ZapierRelayError; }
2559
2574
  });
2560
2575
  Object.defineProperty(exports, "ZapierReleaseTriggerMessageSignal", {
2561
2576
  enumerable: true,
2562
- get: function () { return chunkMGWFLOHA_cjs.ZapierReleaseTriggerMessageSignal; }
2577
+ get: function () { return chunkH24FJYFA_cjs.ZapierReleaseTriggerMessageSignal; }
2563
2578
  });
2564
2579
  Object.defineProperty(exports, "ZapierResourceNotFoundError", {
2565
2580
  enumerable: true,
2566
- get: function () { return chunkMGWFLOHA_cjs.ZapierResourceNotFoundError; }
2581
+ get: function () { return chunkH24FJYFA_cjs.ZapierResourceNotFoundError; }
2567
2582
  });
2568
2583
  Object.defineProperty(exports, "ZapierSignal", {
2569
2584
  enumerable: true,
2570
- get: function () { return chunkMGWFLOHA_cjs.ZapierSignal; }
2585
+ get: function () { return chunkH24FJYFA_cjs.ZapierSignal; }
2571
2586
  });
2572
2587
  Object.defineProperty(exports, "ZapierTimeoutError", {
2573
2588
  enumerable: true,
2574
- get: function () { return chunkMGWFLOHA_cjs.ZapierTimeoutError; }
2589
+ get: function () { return chunkH24FJYFA_cjs.ZapierTimeoutError; }
2575
2590
  });
2576
2591
  Object.defineProperty(exports, "ZapierUnknownError", {
2577
2592
  enumerable: true,
2578
- get: function () { return chunkMGWFLOHA_cjs.ZapierUnknownError; }
2593
+ get: function () { return chunkH24FJYFA_cjs.ZapierUnknownError; }
2579
2594
  });
2580
2595
  Object.defineProperty(exports, "ZapierValidationError", {
2581
2596
  enumerable: true,
2582
- get: function () { return chunkMGWFLOHA_cjs.ZapierValidationError; }
2597
+ get: function () { return chunkH24FJYFA_cjs.ZapierValidationError; }
2583
2598
  });
2584
2599
  Object.defineProperty(exports, "actionKeyResolver", {
2585
2600
  enumerable: true,
2586
- get: function () { return chunkMGWFLOHA_cjs.actionKeyResolver; }
2601
+ get: function () { return chunkH24FJYFA_cjs.actionKeyResolver; }
2587
2602
  });
2588
2603
  Object.defineProperty(exports, "actionTypeResolver", {
2589
2604
  enumerable: true,
2590
- get: function () { return chunkMGWFLOHA_cjs.actionTypeResolver; }
2605
+ get: function () { return chunkH24FJYFA_cjs.actionTypeResolver; }
2591
2606
  });
2592
2607
  Object.defineProperty(exports, "addPlugin", {
2593
2608
  enumerable: true,
2594
- get: function () { return chunkMGWFLOHA_cjs.addPlugin; }
2609
+ get: function () { return chunkH24FJYFA_cjs.addPlugin; }
2595
2610
  });
2596
2611
  Object.defineProperty(exports, "apiPlugin", {
2597
2612
  enumerable: true,
2598
- get: function () { return chunkMGWFLOHA_cjs.apiPlugin; }
2613
+ get: function () { return chunkH24FJYFA_cjs.apiPlugin; }
2599
2614
  });
2600
2615
  Object.defineProperty(exports, "apiPluginRef", {
2601
2616
  enumerable: true,
2602
- get: function () { return chunkMGWFLOHA_cjs.apiPluginRef; }
2617
+ get: function () { return chunkH24FJYFA_cjs.apiPluginRef; }
2603
2618
  });
2604
2619
  Object.defineProperty(exports, "appKeyResolver", {
2605
2620
  enumerable: true,
2606
- get: function () { return chunkMGWFLOHA_cjs.appKeyResolver; }
2621
+ get: function () { return chunkH24FJYFA_cjs.appKeyResolver; }
2607
2622
  });
2608
2623
  Object.defineProperty(exports, "appsPlugin", {
2609
2624
  enumerable: true,
2610
- get: function () { return chunkMGWFLOHA_cjs.appsPlugin; }
2625
+ get: function () { return chunkH24FJYFA_cjs.appsPlugin; }
2611
2626
  });
2612
2627
  Object.defineProperty(exports, "batch", {
2613
2628
  enumerable: true,
2614
- get: function () { return chunkMGWFLOHA_cjs.batch; }
2629
+ get: function () { return chunkH24FJYFA_cjs.batch; }
2615
2630
  });
2616
2631
  Object.defineProperty(exports, "buildApplicationLifecycleEvent", {
2617
2632
  enumerable: true,
2618
- get: function () { return chunkMGWFLOHA_cjs.buildApplicationLifecycleEvent; }
2633
+ get: function () { return chunkH24FJYFA_cjs.buildApplicationLifecycleEvent; }
2619
2634
  });
2620
2635
  Object.defineProperty(exports, "buildCapabilityMessage", {
2621
2636
  enumerable: true,
2622
- get: function () { return chunkMGWFLOHA_cjs.buildCapabilityMessage; }
2637
+ get: function () { return chunkH24FJYFA_cjs.buildCapabilityMessage; }
2623
2638
  });
2624
2639
  Object.defineProperty(exports, "buildErrorEvent", {
2625
2640
  enumerable: true,
2626
- get: function () { return chunkMGWFLOHA_cjs.buildErrorEvent; }
2641
+ get: function () { return chunkH24FJYFA_cjs.buildErrorEvent; }
2627
2642
  });
2628
2643
  Object.defineProperty(exports, "buildErrorEventWithContext", {
2629
2644
  enumerable: true,
2630
- get: function () { return chunkMGWFLOHA_cjs.buildErrorEventWithContext; }
2645
+ get: function () { return chunkH24FJYFA_cjs.buildErrorEventWithContext; }
2631
2646
  });
2632
2647
  Object.defineProperty(exports, "buildMethodCalledEvent", {
2633
2648
  enumerable: true,
2634
- get: function () { return chunkMGWFLOHA_cjs.buildMethodCalledEvent; }
2649
+ get: function () { return chunkH24FJYFA_cjs.buildMethodCalledEvent; }
2635
2650
  });
2636
2651
  Object.defineProperty(exports, "cleanupEventListeners", {
2637
2652
  enumerable: true,
2638
- get: function () { return chunkMGWFLOHA_cjs.cleanupEventListeners; }
2653
+ get: function () { return chunkH24FJYFA_cjs.cleanupEventListeners; }
2639
2654
  });
2640
2655
  Object.defineProperty(exports, "clearTokenCache", {
2641
2656
  enumerable: true,
2642
- get: function () { return chunkMGWFLOHA_cjs.clearTokenCache; }
2657
+ get: function () { return chunkH24FJYFA_cjs.clearTokenCache; }
2643
2658
  });
2644
2659
  Object.defineProperty(exports, "clientCredentialsNameResolver", {
2645
2660
  enumerable: true,
2646
- get: function () { return chunkMGWFLOHA_cjs.clientCredentialsNameResolver; }
2661
+ get: function () { return chunkH24FJYFA_cjs.clientCredentialsNameResolver; }
2647
2662
  });
2648
2663
  Object.defineProperty(exports, "clientIdResolver", {
2649
2664
  enumerable: true,
2650
- get: function () { return chunkMGWFLOHA_cjs.clientIdResolver; }
2665
+ get: function () { return chunkH24FJYFA_cjs.clientIdResolver; }
2651
2666
  });
2652
2667
  Object.defineProperty(exports, "composePlugins", {
2653
2668
  enumerable: true,
2654
- get: function () { return chunkMGWFLOHA_cjs.composePlugins; }
2669
+ get: function () { return chunkH24FJYFA_cjs.composePlugins; }
2655
2670
  });
2656
2671
  Object.defineProperty(exports, "connectionIdGenericResolver", {
2657
2672
  enumerable: true,
2658
- get: function () { return chunkMGWFLOHA_cjs.connectionIdGenericResolver; }
2673
+ get: function () { return chunkH24FJYFA_cjs.connectionIdGenericResolver; }
2659
2674
  });
2660
2675
  Object.defineProperty(exports, "connectionIdResolver", {
2661
2676
  enumerable: true,
2662
- get: function () { return chunkMGWFLOHA_cjs.connectionIdResolver; }
2677
+ get: function () { return chunkH24FJYFA_cjs.connectionIdResolver; }
2663
2678
  });
2664
2679
  Object.defineProperty(exports, "connectionsPlugin", {
2665
2680
  enumerable: true,
2666
- get: function () { return chunkMGWFLOHA_cjs.connectionsPlugin; }
2681
+ get: function () { return chunkH24FJYFA_cjs.connectionsPlugin; }
2667
2682
  });
2668
2683
  Object.defineProperty(exports, "connectionsPluginRef", {
2669
2684
  enumerable: true,
2670
- get: function () { return chunkMGWFLOHA_cjs.connectionsPluginRef; }
2685
+ get: function () { return chunkH24FJYFA_cjs.connectionsPluginRef; }
2671
2686
  });
2672
2687
  Object.defineProperty(exports, "createActionRunPlugin", {
2673
2688
  enumerable: true,
2674
- get: function () { return chunkMGWFLOHA_cjs.createActionRunPlugin; }
2689
+ get: function () { return chunkH24FJYFA_cjs.createActionRunPlugin; }
2675
2690
  });
2676
2691
  Object.defineProperty(exports, "createBaseEvent", {
2677
2692
  enumerable: true,
2678
- get: function () { return chunkMGWFLOHA_cjs.createBaseEvent; }
2693
+ get: function () { return chunkH24FJYFA_cjs.createBaseEvent; }
2679
2694
  });
2680
2695
  Object.defineProperty(exports, "createClientCredentialsPlugin", {
2681
2696
  enumerable: true,
2682
- get: function () { return chunkMGWFLOHA_cjs.createClientCredentialsPlugin; }
2697
+ get: function () { return chunkH24FJYFA_cjs.createClientCredentialsPlugin; }
2683
2698
  });
2684
2699
  Object.defineProperty(exports, "createController", {
2685
2700
  enumerable: true,
2686
- get: function () { return chunkMGWFLOHA_cjs.createController; }
2701
+ get: function () { return chunkH24FJYFA_cjs.createController; }
2687
2702
  });
2688
2703
  Object.defineProperty(exports, "createCorePlugin", {
2689
2704
  enumerable: true,
2690
- get: function () { return chunkMGWFLOHA_cjs.createCorePlugin; }
2705
+ get: function () { return chunkH24FJYFA_cjs.createCorePlugin; }
2691
2706
  });
2692
2707
  Object.defineProperty(exports, "createFunction", {
2693
2708
  enumerable: true,
2694
- get: function () { return chunkMGWFLOHA_cjs.createFunction; }
2709
+ get: function () { return chunkH24FJYFA_cjs.createFunction; }
2695
2710
  });
2696
2711
  Object.defineProperty(exports, "createMemoryCache", {
2697
2712
  enumerable: true,
2698
- get: function () { return chunkMGWFLOHA_cjs.createMemoryCache; }
2713
+ get: function () { return chunkH24FJYFA_cjs.createMemoryCache; }
2699
2714
  });
2700
2715
  Object.defineProperty(exports, "createPaginatedFunction", {
2701
2716
  enumerable: true,
2702
- get: function () { return chunkMGWFLOHA_cjs.createPaginatedFunction; }
2717
+ get: function () { return chunkH24FJYFA_cjs.createPaginatedFunction; }
2703
2718
  });
2704
2719
  Object.defineProperty(exports, "createPaginatedPluginMethod", {
2705
2720
  enumerable: true,
2706
- get: function () { return chunkMGWFLOHA_cjs.createPaginatedPluginMethod; }
2721
+ get: function () { return chunkH24FJYFA_cjs.createPaginatedPluginMethod; }
2707
2722
  });
2708
2723
  Object.defineProperty(exports, "createPluginMethod", {
2709
2724
  enumerable: true,
2710
- get: function () { return chunkMGWFLOHA_cjs.createPluginMethod; }
2725
+ get: function () { return chunkH24FJYFA_cjs.createPluginMethod; }
2711
2726
  });
2712
2727
  Object.defineProperty(exports, "createPluginStack", {
2713
2728
  enumerable: true,
2714
- get: function () { return chunkMGWFLOHA_cjs.createPluginStack; }
2729
+ get: function () { return chunkH24FJYFA_cjs.createPluginStack; }
2715
2730
  });
2716
2731
  Object.defineProperty(exports, "createSdk", {
2717
2732
  enumerable: true,
2718
- get: function () { return chunkMGWFLOHA_cjs.createSdk; }
2733
+ get: function () { return chunkH24FJYFA_cjs.createSdk; }
2719
2734
  });
2720
2735
  Object.defineProperty(exports, "createTableFieldsPlugin", {
2721
2736
  enumerable: true,
2722
- get: function () { return chunkMGWFLOHA_cjs.createTableFieldsPlugin; }
2737
+ get: function () { return chunkH24FJYFA_cjs.createTableFieldsPlugin; }
2723
2738
  });
2724
2739
  Object.defineProperty(exports, "createTablePlugin", {
2725
2740
  enumerable: true,
2726
- get: function () { return chunkMGWFLOHA_cjs.createTablePlugin; }
2741
+ get: function () { return chunkH24FJYFA_cjs.createTablePlugin; }
2727
2742
  });
2728
2743
  Object.defineProperty(exports, "createTableRecordsPlugin", {
2729
2744
  enumerable: true,
2730
- get: function () { return chunkMGWFLOHA_cjs.createTableRecordsPlugin; }
2745
+ get: function () { return chunkH24FJYFA_cjs.createTableRecordsPlugin; }
2731
2746
  });
2732
2747
  Object.defineProperty(exports, "createZapierApi", {
2733
2748
  enumerable: true,
2734
- get: function () { return chunkMGWFLOHA_cjs.createZapierApi; }
2749
+ get: function () { return chunkH24FJYFA_cjs.createZapierApi; }
2735
2750
  });
2736
2751
  Object.defineProperty(exports, "createZapierSdkWithoutRegistry", {
2737
2752
  enumerable: true,
2738
- get: function () { return chunkMGWFLOHA_cjs.createZapierSdkWithoutRegistry; }
2753
+ get: function () { return chunkH24FJYFA_cjs.createZapierSdkWithoutRegistry; }
2739
2754
  });
2740
2755
  Object.defineProperty(exports, "declareMethod", {
2741
2756
  enumerable: true,
2742
- get: function () { return chunkMGWFLOHA_cjs.declareMethod; }
2757
+ get: function () { return chunkH24FJYFA_cjs.declareMethod; }
2743
2758
  });
2744
2759
  Object.defineProperty(exports, "declareOptionalProperty", {
2745
2760
  enumerable: true,
2746
- get: function () { return chunkMGWFLOHA_cjs.declareOptionalProperty; }
2761
+ get: function () { return chunkH24FJYFA_cjs.declareOptionalProperty; }
2747
2762
  });
2748
2763
  Object.defineProperty(exports, "declarePlugin", {
2749
2764
  enumerable: true,
2750
- get: function () { return chunkMGWFLOHA_cjs.declarePlugin; }
2765
+ get: function () { return chunkH24FJYFA_cjs.declarePlugin; }
2751
2766
  });
2752
2767
  Object.defineProperty(exports, "declareProperty", {
2753
2768
  enumerable: true,
2754
- get: function () { return chunkMGWFLOHA_cjs.declareProperty; }
2769
+ get: function () { return chunkH24FJYFA_cjs.declareProperty; }
2755
2770
  });
2756
2771
  Object.defineProperty(exports, "defineFormatter", {
2757
2772
  enumerable: true,
2758
- get: function () { return chunkMGWFLOHA_cjs.defineFormatter; }
2773
+ get: function () { return chunkH24FJYFA_cjs.defineFormatter; }
2759
2774
  });
2760
2775
  Object.defineProperty(exports, "defineLegacyMerge", {
2761
2776
  enumerable: true,
2762
- get: function () { return chunkMGWFLOHA_cjs.defineLegacyMerge; }
2777
+ get: function () { return chunkH24FJYFA_cjs.defineLegacyMerge; }
2763
2778
  });
2764
2779
  Object.defineProperty(exports, "defineMethod", {
2765
2780
  enumerable: true,
2766
- get: function () { return chunkMGWFLOHA_cjs.defineMethod; }
2781
+ get: function () { return chunkH24FJYFA_cjs.defineMethod; }
2767
2782
  });
2768
2783
  Object.defineProperty(exports, "defineMethodOverride", {
2769
2784
  enumerable: true,
2770
- get: function () { return chunkMGWFLOHA_cjs.defineMethodOverride; }
2785
+ get: function () { return chunkH24FJYFA_cjs.defineMethodOverride; }
2771
2786
  });
2772
2787
  Object.defineProperty(exports, "definePlugin", {
2773
2788
  enumerable: true,
2774
- get: function () { return chunkMGWFLOHA_cjs.definePlugin; }
2789
+ get: function () { return chunkH24FJYFA_cjs.definePlugin; }
2775
2790
  });
2776
2791
  Object.defineProperty(exports, "defineProperty", {
2777
2792
  enumerable: true,
2778
- get: function () { return chunkMGWFLOHA_cjs.defineProperty; }
2793
+ get: function () { return chunkH24FJYFA_cjs.defineProperty; }
2779
2794
  });
2780
2795
  Object.defineProperty(exports, "defineResolver", {
2781
2796
  enumerable: true,
2782
- get: function () { return chunkMGWFLOHA_cjs.defineResolver; }
2797
+ get: function () { return chunkH24FJYFA_cjs.defineResolver; }
2783
2798
  });
2784
2799
  Object.defineProperty(exports, "deleteClientCredentialsPlugin", {
2785
2800
  enumerable: true,
2786
- get: function () { return chunkMGWFLOHA_cjs.deleteClientCredentialsPlugin; }
2801
+ get: function () { return chunkH24FJYFA_cjs.deleteClientCredentialsPlugin; }
2787
2802
  });
2788
2803
  Object.defineProperty(exports, "deleteTableFieldsPlugin", {
2789
2804
  enumerable: true,
2790
- get: function () { return chunkMGWFLOHA_cjs.deleteTableFieldsPlugin; }
2805
+ get: function () { return chunkH24FJYFA_cjs.deleteTableFieldsPlugin; }
2791
2806
  });
2792
2807
  Object.defineProperty(exports, "deleteTablePlugin", {
2793
2808
  enumerable: true,
2794
- get: function () { return chunkMGWFLOHA_cjs.deleteTablePlugin; }
2809
+ get: function () { return chunkH24FJYFA_cjs.deleteTablePlugin; }
2795
2810
  });
2796
2811
  Object.defineProperty(exports, "deleteTableRecordsPlugin", {
2797
2812
  enumerable: true,
2798
- get: function () { return chunkMGWFLOHA_cjs.deleteTableRecordsPlugin; }
2813
+ get: function () { return chunkH24FJYFA_cjs.deleteTableRecordsPlugin; }
2799
2814
  });
2800
2815
  Object.defineProperty(exports, "disposeSdk", {
2801
2816
  enumerable: true,
2802
- get: function () { return chunkMGWFLOHA_cjs.disposeSdk; }
2817
+ get: function () { return chunkH24FJYFA_cjs.disposeSdk; }
2803
2818
  });
2804
2819
  Object.defineProperty(exports, "durableRunIdResolver", {
2805
2820
  enumerable: true,
2806
- get: function () { return chunkMGWFLOHA_cjs.durableRunIdResolver; }
2821
+ get: function () { return chunkH24FJYFA_cjs.durableRunIdResolver; }
2807
2822
  });
2808
2823
  Object.defineProperty(exports, "eventEmissionHookPlugin", {
2809
2824
  enumerable: true,
2810
- get: function () { return chunkMGWFLOHA_cjs.eventEmissionHookPlugin; }
2825
+ get: function () { return chunkH24FJYFA_cjs.eventEmissionHookPlugin; }
2811
2826
  });
2812
2827
  Object.defineProperty(exports, "eventEmissionPlugin", {
2813
2828
  enumerable: true,
2814
- get: function () { return chunkMGWFLOHA_cjs.eventEmissionPlugin; }
2829
+ get: function () { return chunkH24FJYFA_cjs.eventEmissionPlugin; }
2815
2830
  });
2816
2831
  Object.defineProperty(exports, "eventEmissionPluginRef", {
2817
2832
  enumerable: true,
2818
- get: function () { return chunkMGWFLOHA_cjs.eventEmissionPluginRef; }
2833
+ get: function () { return chunkH24FJYFA_cjs.eventEmissionPluginRef; }
2819
2834
  });
2820
2835
  Object.defineProperty(exports, "fetchPlugin", {
2821
2836
  enumerable: true,
2822
- get: function () { return chunkMGWFLOHA_cjs.fetchPlugin; }
2837
+ get: function () { return chunkH24FJYFA_cjs.fetchPlugin; }
2823
2838
  });
2824
2839
  Object.defineProperty(exports, "findFirstConnectionPlugin", {
2825
2840
  enumerable: true,
2826
- get: function () { return chunkMGWFLOHA_cjs.findFirstConnectionPlugin; }
2841
+ get: function () { return chunkH24FJYFA_cjs.findFirstConnectionPlugin; }
2827
2842
  });
2828
2843
  Object.defineProperty(exports, "findManifestEntry", {
2829
2844
  enumerable: true,
2830
- get: function () { return chunkMGWFLOHA_cjs.findManifestEntry; }
2845
+ get: function () { return chunkH24FJYFA_cjs.findManifestEntry; }
2831
2846
  });
2832
2847
  Object.defineProperty(exports, "findUniqueConnectionPlugin", {
2833
2848
  enumerable: true,
2834
- get: function () { return chunkMGWFLOHA_cjs.findUniqueConnectionPlugin; }
2849
+ get: function () { return chunkH24FJYFA_cjs.findUniqueConnectionPlugin; }
2835
2850
  });
2836
2851
  Object.defineProperty(exports, "formatErrorMessage", {
2837
2852
  enumerable: true,
2838
- get: function () { return chunkMGWFLOHA_cjs.formatErrorMessage; }
2853
+ get: function () { return chunkH24FJYFA_cjs.formatErrorMessage; }
2839
2854
  });
2840
2855
  Object.defineProperty(exports, "fromFunctionPlugin", {
2841
2856
  enumerable: true,
2842
- get: function () { return chunkMGWFLOHA_cjs.fromFunctionPlugin; }
2857
+ get: function () { return chunkH24FJYFA_cjs.fromFunctionPlugin; }
2843
2858
  });
2844
2859
  Object.defineProperty(exports, "generateEventId", {
2845
2860
  enumerable: true,
2846
- get: function () { return chunkMGWFLOHA_cjs.generateEventId; }
2861
+ get: function () { return chunkH24FJYFA_cjs.generateEventId; }
2847
2862
  });
2848
2863
  Object.defineProperty(exports, "getActionInputFieldsSchemaPlugin", {
2849
2864
  enumerable: true,
2850
- get: function () { return chunkMGWFLOHA_cjs.getActionInputFieldsSchemaPlugin; }
2865
+ get: function () { return chunkH24FJYFA_cjs.getActionInputFieldsSchemaPlugin; }
2851
2866
  });
2852
2867
  Object.defineProperty(exports, "getActionPlugin", {
2853
2868
  enumerable: true,
2854
- get: function () { return chunkMGWFLOHA_cjs.getActionPlugin; }
2869
+ get: function () { return chunkH24FJYFA_cjs.getActionPlugin; }
2855
2870
  });
2856
2871
  Object.defineProperty(exports, "getActionRunPlugin", {
2857
2872
  enumerable: true,
2858
- get: function () { return chunkMGWFLOHA_cjs.getActionRunPlugin; }
2873
+ get: function () { return chunkH24FJYFA_cjs.getActionRunPlugin; }
2859
2874
  });
2860
2875
  Object.defineProperty(exports, "getAgent", {
2861
2876
  enumerable: true,
2862
- get: function () { return chunkMGWFLOHA_cjs.getAgent; }
2877
+ get: function () { return chunkH24FJYFA_cjs.getAgent; }
2863
2878
  });
2864
2879
  Object.defineProperty(exports, "getAppPlugin", {
2865
2880
  enumerable: true,
2866
- get: function () { return chunkMGWFLOHA_cjs.getAppPlugin; }
2881
+ get: function () { return chunkH24FJYFA_cjs.getAppPlugin; }
2867
2882
  });
2868
2883
  Object.defineProperty(exports, "getBaseUrlFromCredentials", {
2869
2884
  enumerable: true,
2870
- get: function () { return chunkMGWFLOHA_cjs.getBaseUrlFromCredentials; }
2885
+ get: function () { return chunkH24FJYFA_cjs.getBaseUrlFromCredentials; }
2871
2886
  });
2872
2887
  Object.defineProperty(exports, "getCallerContext", {
2873
2888
  enumerable: true,
2874
- get: function () { return chunkMGWFLOHA_cjs.getCallerContext; }
2889
+ get: function () { return chunkH24FJYFA_cjs.getCallerContext; }
2875
2890
  });
2876
2891
  Object.defineProperty(exports, "getCiPlatform", {
2877
2892
  enumerable: true,
2878
- get: function () { return chunkMGWFLOHA_cjs.getCiPlatform; }
2893
+ get: function () { return chunkH24FJYFA_cjs.getCiPlatform; }
2879
2894
  });
2880
2895
  Object.defineProperty(exports, "getClientIdFromCredentials", {
2881
2896
  enumerable: true,
2882
- get: function () { return chunkMGWFLOHA_cjs.getClientIdFromCredentials; }
2897
+ get: function () { return chunkH24FJYFA_cjs.getClientIdFromCredentials; }
2883
2898
  });
2884
2899
  Object.defineProperty(exports, "getConnectionPlugin", {
2885
2900
  enumerable: true,
2886
- get: function () { return chunkMGWFLOHA_cjs.getConnectionPlugin; }
2901
+ get: function () { return chunkH24FJYFA_cjs.getConnectionPlugin; }
2887
2902
  });
2888
2903
  Object.defineProperty(exports, "getContext", {
2889
2904
  enumerable: true,
2890
- get: function () { return chunkMGWFLOHA_cjs.getContext; }
2905
+ get: function () { return chunkH24FJYFA_cjs.getContext; }
2891
2906
  });
2892
2907
  Object.defineProperty(exports, "getCoreErrorCause", {
2893
2908
  enumerable: true,
2894
- get: function () { return chunkMGWFLOHA_cjs.getCoreErrorCause; }
2909
+ get: function () { return chunkH24FJYFA_cjs.getCoreErrorCause; }
2895
2910
  });
2896
2911
  Object.defineProperty(exports, "getCoreErrorCode", {
2897
2912
  enumerable: true,
2898
- get: function () { return chunkMGWFLOHA_cjs.getCoreErrorCode; }
2913
+ get: function () { return chunkH24FJYFA_cjs.getCoreErrorCode; }
2899
2914
  });
2900
2915
  Object.defineProperty(exports, "getCpuTime", {
2901
2916
  enumerable: true,
2902
- get: function () { return chunkMGWFLOHA_cjs.getCpuTime; }
2917
+ get: function () { return chunkH24FJYFA_cjs.getCpuTime; }
2903
2918
  });
2904
2919
  Object.defineProperty(exports, "getCurrentTimestamp", {
2905
2920
  enumerable: true,
2906
- get: function () { return chunkMGWFLOHA_cjs.getCurrentTimestamp; }
2921
+ get: function () { return chunkH24FJYFA_cjs.getCurrentTimestamp; }
2907
2922
  });
2908
2923
  Object.defineProperty(exports, "getMemoryUsage", {
2909
2924
  enumerable: true,
2910
- get: function () { return chunkMGWFLOHA_cjs.getMemoryUsage; }
2925
+ get: function () { return chunkH24FJYFA_cjs.getMemoryUsage; }
2911
2926
  });
2912
2927
  Object.defineProperty(exports, "getNegatable", {
2913
2928
  enumerable: true,
2914
- get: function () { return chunkMGWFLOHA_cjs.getNegatable; }
2929
+ get: function () { return chunkH24FJYFA_cjs.getNegatable; }
2915
2930
  });
2916
2931
  Object.defineProperty(exports, "getOrCreateApiClient", {
2917
2932
  enumerable: true,
2918
- get: function () { return chunkMGWFLOHA_cjs.getOrCreateApiClient; }
2933
+ get: function () { return chunkH24FJYFA_cjs.getOrCreateApiClient; }
2919
2934
  });
2920
2935
  Object.defineProperty(exports, "getOsInfo", {
2921
2936
  enumerable: true,
2922
- get: function () { return chunkMGWFLOHA_cjs.getOsInfo; }
2937
+ get: function () { return chunkH24FJYFA_cjs.getOsInfo; }
2923
2938
  });
2924
2939
  Object.defineProperty(exports, "getPlatformVersions", {
2925
2940
  enumerable: true,
2926
- get: function () { return chunkMGWFLOHA_cjs.getPlatformVersions; }
2941
+ get: function () { return chunkH24FJYFA_cjs.getPlatformVersions; }
2927
2942
  });
2928
2943
  Object.defineProperty(exports, "getPreferredManifestEntryKey", {
2929
2944
  enumerable: true,
2930
- get: function () { return chunkMGWFLOHA_cjs.getPreferredManifestEntryKey; }
2945
+ get: function () { return chunkH24FJYFA_cjs.getPreferredManifestEntryKey; }
2931
2946
  });
2932
2947
  Object.defineProperty(exports, "getProfilePlugin", {
2933
2948
  enumerable: true,
2934
- get: function () { return chunkMGWFLOHA_cjs.getProfilePlugin; }
2949
+ get: function () { return chunkH24FJYFA_cjs.getProfilePlugin; }
2935
2950
  });
2936
2951
  Object.defineProperty(exports, "getRegistryPlugin", {
2937
2952
  enumerable: true,
2938
- get: function () { return chunkMGWFLOHA_cjs.getRegistryPlugin; }
2953
+ get: function () { return chunkH24FJYFA_cjs.getRegistryPlugin; }
2939
2954
  });
2940
2955
  Object.defineProperty(exports, "getReleaseId", {
2941
2956
  enumerable: true,
2942
- get: function () { return chunkMGWFLOHA_cjs.getReleaseId; }
2957
+ get: function () { return chunkH24FJYFA_cjs.getReleaseId; }
2943
2958
  });
2944
2959
  Object.defineProperty(exports, "getTablePlugin", {
2945
2960
  enumerable: true,
2946
- get: function () { return chunkMGWFLOHA_cjs.getTablePlugin; }
2961
+ get: function () { return chunkH24FJYFA_cjs.getTablePlugin; }
2947
2962
  });
2948
2963
  Object.defineProperty(exports, "getTableRecordPlugin", {
2949
2964
  enumerable: true,
2950
- get: function () { return chunkMGWFLOHA_cjs.getTableRecordPlugin; }
2965
+ get: function () { return chunkH24FJYFA_cjs.getTableRecordPlugin; }
2951
2966
  });
2952
2967
  Object.defineProperty(exports, "getTokenFromCliLogin", {
2953
2968
  enumerable: true,
2954
- get: function () { return chunkMGWFLOHA_cjs.getTokenFromCliLogin; }
2969
+ get: function () { return chunkH24FJYFA_cjs.getTokenFromCliLogin; }
2955
2970
  });
2956
2971
  Object.defineProperty(exports, "getTtyContext", {
2957
2972
  enumerable: true,
2958
- get: function () { return chunkMGWFLOHA_cjs.getTtyContext; }
2973
+ get: function () { return chunkH24FJYFA_cjs.getTtyContext; }
2959
2974
  });
2960
2975
  Object.defineProperty(exports, "getZapierApprovalMode", {
2961
2976
  enumerable: true,
2962
- get: function () { return chunkMGWFLOHA_cjs.getZapierApprovalMode; }
2977
+ get: function () { return chunkH24FJYFA_cjs.getZapierApprovalMode; }
2963
2978
  });
2964
2979
  Object.defineProperty(exports, "getZapierDefaultApprovalMode", {
2965
2980
  enumerable: true,
2966
- get: function () { return chunkMGWFLOHA_cjs.getZapierDefaultApprovalMode; }
2981
+ get: function () { return chunkH24FJYFA_cjs.getZapierDefaultApprovalMode; }
2967
2982
  });
2968
2983
  Object.defineProperty(exports, "getZapierOpenAutoModeApprovalsInBrowser", {
2969
2984
  enumerable: true,
2970
- get: function () { return chunkMGWFLOHA_cjs.getZapierOpenAutoModeApprovalsInBrowser; }
2985
+ get: function () { return chunkH24FJYFA_cjs.getZapierOpenAutoModeApprovalsInBrowser; }
2971
2986
  });
2972
2987
  Object.defineProperty(exports, "getZapierSdkService", {
2973
2988
  enumerable: true,
2974
- get: function () { return chunkMGWFLOHA_cjs.getZapierSdkService; }
2989
+ get: function () { return chunkH24FJYFA_cjs.getZapierSdkService; }
2975
2990
  });
2976
2991
  Object.defineProperty(exports, "injectCliLogin", {
2977
2992
  enumerable: true,
2978
- get: function () { return chunkMGWFLOHA_cjs.injectCliLogin; }
2993
+ get: function () { return chunkH24FJYFA_cjs.injectCliLogin; }
2979
2994
  });
2980
2995
  Object.defineProperty(exports, "inputFieldKeyResolver", {
2981
2996
  enumerable: true,
2982
- get: function () { return chunkMGWFLOHA_cjs.inputFieldKeyResolver; }
2997
+ get: function () { return chunkH24FJYFA_cjs.inputFieldKeyResolver; }
2983
2998
  });
2984
2999
  Object.defineProperty(exports, "inputsAllOptionalResolver", {
2985
3000
  enumerable: true,
2986
- get: function () { return chunkMGWFLOHA_cjs.inputsAllOptionalResolver; }
3001
+ get: function () { return chunkH24FJYFA_cjs.inputsAllOptionalResolver; }
2987
3002
  });
2988
3003
  Object.defineProperty(exports, "inputsResolver", {
2989
3004
  enumerable: true,
2990
- get: function () { return chunkMGWFLOHA_cjs.inputsResolver; }
3005
+ get: function () { return chunkH24FJYFA_cjs.inputsResolver; }
2991
3006
  });
2992
3007
  Object.defineProperty(exports, "invalidateCachedToken", {
2993
3008
  enumerable: true,
2994
- get: function () { return chunkMGWFLOHA_cjs.invalidateCachedToken; }
3009
+ get: function () { return chunkH24FJYFA_cjs.invalidateCachedToken; }
2995
3010
  });
2996
3011
  Object.defineProperty(exports, "invalidateCredentialsToken", {
2997
3012
  enumerable: true,
2998
- get: function () { return chunkMGWFLOHA_cjs.invalidateCredentialsToken; }
3013
+ get: function () { return chunkH24FJYFA_cjs.invalidateCredentialsToken; }
2999
3014
  });
3000
3015
  Object.defineProperty(exports, "isCi", {
3001
3016
  enumerable: true,
3002
- get: function () { return chunkMGWFLOHA_cjs.isCi; }
3017
+ get: function () { return chunkH24FJYFA_cjs.isCi; }
3003
3018
  });
3004
3019
  Object.defineProperty(exports, "isCliLoginAvailable", {
3005
3020
  enumerable: true,
3006
- get: function () { return chunkMGWFLOHA_cjs.isCliLoginAvailable; }
3021
+ get: function () { return chunkH24FJYFA_cjs.isCliLoginAvailable; }
3007
3022
  });
3008
3023
  Object.defineProperty(exports, "isClientCredentials", {
3009
3024
  enumerable: true,
3010
- get: function () { return chunkMGWFLOHA_cjs.isClientCredentials; }
3025
+ get: function () { return chunkH24FJYFA_cjs.isClientCredentials; }
3011
3026
  });
3012
3027
  Object.defineProperty(exports, "isCoreCancelledSignal", {
3013
3028
  enumerable: true,
3014
- get: function () { return chunkMGWFLOHA_cjs.isCoreCancelledSignal; }
3029
+ get: function () { return chunkH24FJYFA_cjs.isCoreCancelledSignal; }
3015
3030
  });
3016
3031
  Object.defineProperty(exports, "isCoreError", {
3017
3032
  enumerable: true,
3018
- get: function () { return chunkMGWFLOHA_cjs.isCoreError; }
3033
+ get: function () { return chunkH24FJYFA_cjs.isCoreError; }
3019
3034
  });
3020
3035
  Object.defineProperty(exports, "isCoreSignal", {
3021
3036
  enumerable: true,
3022
- get: function () { return chunkMGWFLOHA_cjs.isCoreSignal; }
3037
+ get: function () { return chunkH24FJYFA_cjs.isCoreSignal; }
3023
3038
  });
3024
3039
  Object.defineProperty(exports, "isCredentialsFunction", {
3025
3040
  enumerable: true,
3026
- get: function () { return chunkMGWFLOHA_cjs.isCredentialsFunction; }
3041
+ get: function () { return chunkH24FJYFA_cjs.isCredentialsFunction; }
3027
3042
  });
3028
3043
  Object.defineProperty(exports, "isCredentialsObject", {
3029
3044
  enumerable: true,
3030
- get: function () { return chunkMGWFLOHA_cjs.isCredentialsObject; }
3045
+ get: function () { return chunkH24FJYFA_cjs.isCredentialsObject; }
3031
3046
  });
3032
3047
  Object.defineProperty(exports, "isPermanentHttpError", {
3033
3048
  enumerable: true,
3034
- get: function () { return chunkMGWFLOHA_cjs.isPermanentHttpError; }
3049
+ get: function () { return chunkH24FJYFA_cjs.isPermanentHttpError; }
3035
3050
  });
3036
3051
  Object.defineProperty(exports, "isPkceCredentials", {
3037
3052
  enumerable: true,
3038
- get: function () { return chunkMGWFLOHA_cjs.isPkceCredentials; }
3053
+ get: function () { return chunkH24FJYFA_cjs.isPkceCredentials; }
3039
3054
  });
3040
3055
  Object.defineProperty(exports, "isPositional", {
3041
3056
  enumerable: true,
3042
- get: function () { return chunkMGWFLOHA_cjs.isPositional; }
3057
+ get: function () { return chunkH24FJYFA_cjs.isPositional; }
3043
3058
  });
3044
3059
  Object.defineProperty(exports, "isZapierAbortDrainSignal", {
3045
3060
  enumerable: true,
3046
- get: function () { return chunkMGWFLOHA_cjs.isZapierAbortDrainSignal; }
3061
+ get: function () { return chunkH24FJYFA_cjs.isZapierAbortDrainSignal; }
3047
3062
  });
3048
3063
  Object.defineProperty(exports, "isZapierActionError", {
3049
3064
  enumerable: true,
3050
- get: function () { return chunkMGWFLOHA_cjs.isZapierActionError; }
3065
+ get: function () { return chunkH24FJYFA_cjs.isZapierActionError; }
3051
3066
  });
3052
3067
  Object.defineProperty(exports, "isZapierAppNotFoundError", {
3053
3068
  enumerable: true,
3054
- get: function () { return chunkMGWFLOHA_cjs.isZapierAppNotFoundError; }
3069
+ get: function () { return chunkH24FJYFA_cjs.isZapierAppNotFoundError; }
3055
3070
  });
3056
3071
  Object.defineProperty(exports, "isZapierApprovalError", {
3057
3072
  enumerable: true,
3058
- get: function () { return chunkMGWFLOHA_cjs.isZapierApprovalError; }
3073
+ get: function () { return chunkH24FJYFA_cjs.isZapierApprovalError; }
3059
3074
  });
3060
3075
  Object.defineProperty(exports, "isZapierAuthenticationError", {
3061
3076
  enumerable: true,
3062
- get: function () { return chunkMGWFLOHA_cjs.isZapierAuthenticationError; }
3077
+ get: function () { return chunkH24FJYFA_cjs.isZapierAuthenticationError; }
3063
3078
  });
3064
3079
  Object.defineProperty(exports, "isZapierBundleError", {
3065
3080
  enumerable: true,
3066
- get: function () { return chunkMGWFLOHA_cjs.isZapierBundleError; }
3081
+ get: function () { return chunkH24FJYFA_cjs.isZapierBundleError; }
3067
3082
  });
3068
3083
  Object.defineProperty(exports, "isZapierConflictError", {
3069
3084
  enumerable: true,
3070
- get: function () { return chunkMGWFLOHA_cjs.isZapierConflictError; }
3085
+ get: function () { return chunkH24FJYFA_cjs.isZapierConflictError; }
3071
3086
  });
3072
3087
  Object.defineProperty(exports, "isZapierError", {
3073
3088
  enumerable: true,
3074
- get: function () { return chunkMGWFLOHA_cjs.isZapierError; }
3089
+ get: function () { return chunkH24FJYFA_cjs.isZapierError; }
3075
3090
  });
3076
3091
  Object.defineProperty(exports, "isZapierNotFoundError", {
3077
3092
  enumerable: true,
3078
- get: function () { return chunkMGWFLOHA_cjs.isZapierNotFoundError; }
3093
+ get: function () { return chunkH24FJYFA_cjs.isZapierNotFoundError; }
3079
3094
  });
3080
3095
  Object.defineProperty(exports, "isZapierRateLimitError", {
3081
3096
  enumerable: true,
3082
- get: function () { return chunkMGWFLOHA_cjs.isZapierRateLimitError; }
3097
+ get: function () { return chunkH24FJYFA_cjs.isZapierRateLimitError; }
3083
3098
  });
3084
3099
  Object.defineProperty(exports, "isZapierReleaseTriggerMessageSignal", {
3085
3100
  enumerable: true,
3086
- get: function () { return chunkMGWFLOHA_cjs.isZapierReleaseTriggerMessageSignal; }
3101
+ get: function () { return chunkH24FJYFA_cjs.isZapierReleaseTriggerMessageSignal; }
3087
3102
  });
3088
3103
  Object.defineProperty(exports, "isZapierResourceNotFoundError", {
3089
3104
  enumerable: true,
3090
- get: function () { return chunkMGWFLOHA_cjs.isZapierResourceNotFoundError; }
3105
+ get: function () { return chunkH24FJYFA_cjs.isZapierResourceNotFoundError; }
3091
3106
  });
3092
3107
  Object.defineProperty(exports, "isZapierSignal", {
3093
3108
  enumerable: true,
3094
- get: function () { return chunkMGWFLOHA_cjs.isZapierSignal; }
3109
+ get: function () { return chunkH24FJYFA_cjs.isZapierSignal; }
3095
3110
  });
3096
3111
  Object.defineProperty(exports, "isZapierTimeoutError", {
3097
3112
  enumerable: true,
3098
- get: function () { return chunkMGWFLOHA_cjs.isZapierTimeoutError; }
3113
+ get: function () { return chunkH24FJYFA_cjs.isZapierTimeoutError; }
3099
3114
  });
3100
3115
  Object.defineProperty(exports, "isZapierValidationError", {
3101
3116
  enumerable: true,
3102
- get: function () { return chunkMGWFLOHA_cjs.isZapierValidationError; }
3117
+ get: function () { return chunkH24FJYFA_cjs.isZapierValidationError; }
3103
3118
  });
3104
3119
  Object.defineProperty(exports, "listActionInputFieldChoicesPlugin", {
3105
3120
  enumerable: true,
3106
- get: function () { return chunkMGWFLOHA_cjs.listActionInputFieldChoicesPlugin; }
3121
+ get: function () { return chunkH24FJYFA_cjs.listActionInputFieldChoicesPlugin; }
3107
3122
  });
3108
3123
  Object.defineProperty(exports, "listActionInputFieldsPlugin", {
3109
3124
  enumerable: true,
3110
- get: function () { return chunkMGWFLOHA_cjs.listActionInputFieldsPlugin; }
3125
+ get: function () { return chunkH24FJYFA_cjs.listActionInputFieldsPlugin; }
3111
3126
  });
3112
3127
  Object.defineProperty(exports, "listActionsPlugin", {
3113
3128
  enumerable: true,
3114
- get: function () { return chunkMGWFLOHA_cjs.listActionsPlugin; }
3129
+ get: function () { return chunkH24FJYFA_cjs.listActionsPlugin; }
3115
3130
  });
3116
3131
  Object.defineProperty(exports, "listAppsPlugin", {
3117
3132
  enumerable: true,
3118
- get: function () { return chunkMGWFLOHA_cjs.listAppsPlugin; }
3133
+ get: function () { return chunkH24FJYFA_cjs.listAppsPlugin; }
3119
3134
  });
3120
3135
  Object.defineProperty(exports, "listClientCredentialsPlugin", {
3121
3136
  enumerable: true,
3122
- get: function () { return chunkMGWFLOHA_cjs.listClientCredentialsPlugin; }
3137
+ get: function () { return chunkH24FJYFA_cjs.listClientCredentialsPlugin; }
3123
3138
  });
3124
3139
  Object.defineProperty(exports, "listConnectionsPlugin", {
3125
3140
  enumerable: true,
3126
- get: function () { return chunkMGWFLOHA_cjs.listConnectionsPlugin; }
3141
+ get: function () { return chunkH24FJYFA_cjs.listConnectionsPlugin; }
3127
3142
  });
3128
3143
  Object.defineProperty(exports, "listTableFieldsPlugin", {
3129
3144
  enumerable: true,
3130
- get: function () { return chunkMGWFLOHA_cjs.listTableFieldsPlugin; }
3145
+ get: function () { return chunkH24FJYFA_cjs.listTableFieldsPlugin; }
3131
3146
  });
3132
3147
  Object.defineProperty(exports, "listTableRecordsPlugin", {
3133
3148
  enumerable: true,
3134
- get: function () { return chunkMGWFLOHA_cjs.listTableRecordsPlugin; }
3149
+ get: function () { return chunkH24FJYFA_cjs.listTableRecordsPlugin; }
3135
3150
  });
3136
3151
  Object.defineProperty(exports, "listTablesPlugin", {
3137
3152
  enumerable: true,
3138
- get: function () { return chunkMGWFLOHA_cjs.listTablesPlugin; }
3153
+ get: function () { return chunkH24FJYFA_cjs.listTablesPlugin; }
3139
3154
  });
3140
3155
  Object.defineProperty(exports, "logDeprecation", {
3141
3156
  enumerable: true,
3142
- get: function () { return chunkMGWFLOHA_cjs.logDeprecation; }
3157
+ get: function () { return chunkH24FJYFA_cjs.logDeprecation; }
3143
3158
  });
3144
3159
  Object.defineProperty(exports, "manifestPlugin", {
3145
3160
  enumerable: true,
3146
- get: function () { return chunkMGWFLOHA_cjs.manifestPlugin; }
3161
+ get: function () { return chunkH24FJYFA_cjs.manifestPlugin; }
3147
3162
  });
3148
3163
  Object.defineProperty(exports, "manifestPluginRef", {
3149
3164
  enumerable: true,
3150
- get: function () { return chunkMGWFLOHA_cjs.manifestPluginRef; }
3165
+ get: function () { return chunkH24FJYFA_cjs.manifestPluginRef; }
3151
3166
  });
3152
3167
  Object.defineProperty(exports, "omitExports", {
3153
3168
  enumerable: true,
3154
- get: function () { return chunkMGWFLOHA_cjs.omitExports; }
3169
+ get: function () { return chunkH24FJYFA_cjs.omitExports; }
3155
3170
  });
3156
3171
  Object.defineProperty(exports, "operationAnnotatorPlugin", {
3157
3172
  enumerable: true,
3158
- get: function () { return chunkMGWFLOHA_cjs.operationAnnotatorPlugin; }
3173
+ get: function () { return chunkH24FJYFA_cjs.operationAnnotatorPlugin; }
3159
3174
  });
3160
3175
  Object.defineProperty(exports, "parseConcurrencyEnvVar", {
3161
3176
  enumerable: true,
3162
- get: function () { return chunkMGWFLOHA_cjs.parseConcurrencyEnvVar; }
3177
+ get: function () { return chunkH24FJYFA_cjs.parseConcurrencyEnvVar; }
3163
3178
  });
3164
3179
  Object.defineProperty(exports, "readManifestFromFile", {
3165
3180
  enumerable: true,
3166
- get: function () { return chunkMGWFLOHA_cjs.readManifestFromFile; }
3181
+ get: function () { return chunkH24FJYFA_cjs.readManifestFromFile; }
3167
3182
  });
3168
3183
  Object.defineProperty(exports, "registryPlugin", {
3169
3184
  enumerable: true,
3170
- get: function () { return chunkMGWFLOHA_cjs.registryPlugin; }
3185
+ get: function () { return chunkH24FJYFA_cjs.registryPlugin; }
3171
3186
  });
3172
3187
  Object.defineProperty(exports, "requestPlugin", {
3173
3188
  enumerable: true,
3174
- get: function () { return chunkMGWFLOHA_cjs.requestPlugin; }
3189
+ get: function () { return chunkH24FJYFA_cjs.requestPlugin; }
3175
3190
  });
3176
3191
  Object.defineProperty(exports, "resetDeprecationWarnings", {
3177
3192
  enumerable: true,
3178
- get: function () { return chunkMGWFLOHA_cjs.resetDeprecationWarnings; }
3193
+ get: function () { return chunkH24FJYFA_cjs.resetDeprecationWarnings; }
3179
3194
  });
3180
3195
  Object.defineProperty(exports, "resolveAuth", {
3181
3196
  enumerable: true,
3182
- get: function () { return chunkMGWFLOHA_cjs.resolveAuth; }
3197
+ get: function () { return chunkH24FJYFA_cjs.resolveAuth; }
3183
3198
  });
3184
3199
  Object.defineProperty(exports, "resolveAuthToken", {
3185
3200
  enumerable: true,
3186
- get: function () { return chunkMGWFLOHA_cjs.resolveAuthToken; }
3201
+ get: function () { return chunkH24FJYFA_cjs.resolveAuthToken; }
3187
3202
  });
3188
3203
  Object.defineProperty(exports, "resolveCredentials", {
3189
3204
  enumerable: true,
3190
- get: function () { return chunkMGWFLOHA_cjs.resolveCredentials; }
3205
+ get: function () { return chunkH24FJYFA_cjs.resolveCredentials; }
3191
3206
  });
3192
3207
  Object.defineProperty(exports, "resolveCredentialsFromEnv", {
3193
3208
  enumerable: true,
3194
- get: function () { return chunkMGWFLOHA_cjs.resolveCredentialsFromEnv; }
3209
+ get: function () { return chunkH24FJYFA_cjs.resolveCredentialsFromEnv; }
3195
3210
  });
3196
3211
  Object.defineProperty(exports, "resolveCredentialsPlugin", {
3197
3212
  enumerable: true,
3198
- get: function () { return chunkMGWFLOHA_cjs.resolveCredentialsPlugin; }
3213
+ get: function () { return chunkH24FJYFA_cjs.resolveCredentialsPlugin; }
3199
3214
  });
3200
3215
  Object.defineProperty(exports, "resolveCredentialsPluginRef", {
3201
3216
  enumerable: true,
3202
- get: function () { return chunkMGWFLOHA_cjs.resolveCredentialsPluginRef; }
3217
+ get: function () { return chunkH24FJYFA_cjs.resolveCredentialsPluginRef; }
3203
3218
  });
3204
3219
  Object.defineProperty(exports, "resolvePlugin", {
3205
3220
  enumerable: true,
3206
- get: function () { return chunkMGWFLOHA_cjs.resolvePlugin; }
3221
+ get: function () { return chunkH24FJYFA_cjs.resolvePlugin; }
3207
3222
  });
3208
3223
  Object.defineProperty(exports, "runActionPlugin", {
3209
3224
  enumerable: true,
3210
- get: function () { return chunkMGWFLOHA_cjs.runActionPlugin; }
3225
+ get: function () { return chunkH24FJYFA_cjs.runActionPlugin; }
3211
3226
  });
3212
3227
  Object.defineProperty(exports, "runInMethodScope", {
3213
3228
  enumerable: true,
3214
- get: function () { return chunkMGWFLOHA_cjs.runInMethodScope; }
3229
+ get: function () { return chunkH24FJYFA_cjs.runInMethodScope; }
3215
3230
  });
3216
3231
  Object.defineProperty(exports, "runWithCallerContext", {
3217
3232
  enumerable: true,
3218
- get: function () { return chunkMGWFLOHA_cjs.runWithCallerContext; }
3233
+ get: function () { return chunkH24FJYFA_cjs.runWithCallerContext; }
3219
3234
  });
3220
3235
  Object.defineProperty(exports, "runWithTelemetryContext", {
3221
3236
  enumerable: true,
3222
- get: function () { return chunkMGWFLOHA_cjs.runWithTelemetryContext; }
3237
+ get: function () { return chunkH24FJYFA_cjs.runWithTelemetryContext; }
3223
3238
  });
3224
3239
  Object.defineProperty(exports, "sdkOptionsPluginRef", {
3225
3240
  enumerable: true,
3226
- get: function () { return chunkMGWFLOHA_cjs.sdkOptionsPluginRef; }
3241
+ get: function () { return chunkH24FJYFA_cjs.sdkOptionsPluginRef; }
3227
3242
  });
3228
3243
  Object.defineProperty(exports, "selectExports", {
3229
3244
  enumerable: true,
3230
- get: function () { return chunkMGWFLOHA_cjs.selectExports; }
3245
+ get: function () { return chunkH24FJYFA_cjs.selectExports; }
3231
3246
  });
3232
3247
  Object.defineProperty(exports, "tableFieldIdsResolver", {
3233
3248
  enumerable: true,
3234
- get: function () { return chunkMGWFLOHA_cjs.tableFieldIdsResolver; }
3249
+ get: function () { return chunkH24FJYFA_cjs.tableFieldIdsResolver; }
3235
3250
  });
3236
3251
  Object.defineProperty(exports, "tableFieldsResolver", {
3237
3252
  enumerable: true,
3238
- get: function () { return chunkMGWFLOHA_cjs.tableFieldsResolver; }
3253
+ get: function () { return chunkH24FJYFA_cjs.tableFieldsResolver; }
3239
3254
  });
3240
3255
  Object.defineProperty(exports, "tableFiltersResolver", {
3241
3256
  enumerable: true,
3242
- get: function () { return chunkMGWFLOHA_cjs.tableFiltersResolver; }
3257
+ get: function () { return chunkH24FJYFA_cjs.tableFiltersResolver; }
3243
3258
  });
3244
3259
  Object.defineProperty(exports, "tableIdResolver", {
3245
3260
  enumerable: true,
3246
- get: function () { return chunkMGWFLOHA_cjs.tableIdResolver; }
3261
+ get: function () { return chunkH24FJYFA_cjs.tableIdResolver; }
3247
3262
  });
3248
3263
  Object.defineProperty(exports, "tableNameResolver", {
3249
3264
  enumerable: true,
3250
- get: function () { return chunkMGWFLOHA_cjs.tableNameResolver; }
3265
+ get: function () { return chunkH24FJYFA_cjs.tableNameResolver; }
3251
3266
  });
3252
3267
  Object.defineProperty(exports, "tableRecordIdResolver", {
3253
3268
  enumerable: true,
3254
- get: function () { return chunkMGWFLOHA_cjs.tableRecordIdResolver; }
3269
+ get: function () { return chunkH24FJYFA_cjs.tableRecordIdResolver; }
3255
3270
  });
3256
3271
  Object.defineProperty(exports, "tableRecordIdsResolver", {
3257
3272
  enumerable: true,
3258
- get: function () { return chunkMGWFLOHA_cjs.tableRecordIdsResolver; }
3273
+ get: function () { return chunkH24FJYFA_cjs.tableRecordIdsResolver; }
3259
3274
  });
3260
3275
  Object.defineProperty(exports, "tableRecordsResolver", {
3261
3276
  enumerable: true,
3262
- get: function () { return chunkMGWFLOHA_cjs.tableRecordsResolver; }
3277
+ get: function () { return chunkH24FJYFA_cjs.tableRecordsResolver; }
3263
3278
  });
3264
3279
  Object.defineProperty(exports, "tableSortResolver", {
3265
3280
  enumerable: true,
3266
- get: function () { return chunkMGWFLOHA_cjs.tableSortResolver; }
3281
+ get: function () { return chunkH24FJYFA_cjs.tableSortResolver; }
3267
3282
  });
3268
3283
  Object.defineProperty(exports, "tableUpdateRecordsResolver", {
3269
3284
  enumerable: true,
3270
- get: function () { return chunkMGWFLOHA_cjs.tableUpdateRecordsResolver; }
3285
+ get: function () { return chunkH24FJYFA_cjs.tableUpdateRecordsResolver; }
3271
3286
  });
3272
3287
  Object.defineProperty(exports, "toSnakeCase", {
3273
3288
  enumerable: true,
3274
- get: function () { return chunkMGWFLOHA_cjs.toSnakeCase; }
3289
+ get: function () { return chunkH24FJYFA_cjs.toSnakeCase; }
3275
3290
  });
3276
3291
  Object.defineProperty(exports, "toTitleCase", {
3277
3292
  enumerable: true,
3278
- get: function () { return chunkMGWFLOHA_cjs.toTitleCase; }
3293
+ get: function () { return chunkH24FJYFA_cjs.toTitleCase; }
3279
3294
  });
3280
3295
  Object.defineProperty(exports, "triggerInboxResolver", {
3281
3296
  enumerable: true,
3282
- get: function () { return chunkMGWFLOHA_cjs.triggerInboxResolver; }
3297
+ get: function () { return chunkH24FJYFA_cjs.triggerInboxResolver; }
3283
3298
  });
3284
3299
  Object.defineProperty(exports, "triggerMessagesResolver", {
3285
3300
  enumerable: true,
3286
- get: function () { return chunkMGWFLOHA_cjs.triggerMessagesResolver; }
3301
+ get: function () { return chunkH24FJYFA_cjs.triggerMessagesResolver; }
3287
3302
  });
3288
3303
  Object.defineProperty(exports, "updateTableRecordsPlugin", {
3289
3304
  enumerable: true,
3290
- get: function () { return chunkMGWFLOHA_cjs.updateTableRecordsPlugin; }
3305
+ get: function () { return chunkH24FJYFA_cjs.updateTableRecordsPlugin; }
3291
3306
  });
3292
3307
  Object.defineProperty(exports, "workflowDraftIdResolver", {
3293
3308
  enumerable: true,
3294
- get: function () { return chunkMGWFLOHA_cjs.workflowDraftIdResolver; }
3309
+ get: function () { return chunkH24FJYFA_cjs.workflowDraftIdResolver; }
3295
3310
  });
3296
3311
  Object.defineProperty(exports, "workflowIdResolver", {
3297
3312
  enumerable: true,
3298
- get: function () { return chunkMGWFLOHA_cjs.workflowIdResolver; }
3313
+ get: function () { return chunkH24FJYFA_cjs.workflowIdResolver; }
3299
3314
  });
3300
3315
  Object.defineProperty(exports, "workflowRunIdResolver", {
3301
3316
  enumerable: true,
3302
- get: function () { return chunkMGWFLOHA_cjs.workflowRunIdResolver; }
3317
+ get: function () { return chunkH24FJYFA_cjs.workflowRunIdResolver; }
3303
3318
  });
3304
3319
  Object.defineProperty(exports, "workflowVersionIdResolver", {
3305
3320
  enumerable: true,
3306
- get: function () { return chunkMGWFLOHA_cjs.workflowVersionIdResolver; }
3321
+ get: function () { return chunkH24FJYFA_cjs.workflowVersionIdResolver; }
3307
3322
  });
3308
3323
  Object.defineProperty(exports, "zapierAdaptError", {
3309
3324
  enumerable: true,
3310
- get: function () { return chunkMGWFLOHA_cjs.zapierAdaptError; }
3325
+ get: function () { return chunkH24FJYFA_cjs.zapierAdaptError; }
3311
3326
  });
3312
3327
  Object.defineProperty(exports, "zapierCoreOptions", {
3313
3328
  enumerable: true,
3314
- get: function () { return chunkMGWFLOHA_cjs.zapierCoreOptions; }
3329
+ get: function () { return chunkH24FJYFA_cjs.zapierCoreOptions; }
3315
3330
  });
3316
3331
  Object.defineProperty(exports, "zapierSdkPlugin", {
3317
3332
  enumerable: true,
3318
- get: function () { return chunkMGWFLOHA_cjs.zapierSdkPlugin; }
3333
+ get: function () { return chunkH24FJYFA_cjs.zapierSdkPlugin; }
3319
3334
  });
3320
3335
  exports.createZapierSdk = createZapierSdk;
3321
3336
  exports.zapierExperimentalSdkPlugin = zapierExperimentalSdkPlugin;