@zapier/zapier-sdk 0.99.0 → 0.101.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 chunkBUAAO3AY_cjs = require('./chunk-BUAAO3AY.cjs');
3
+ var chunkEOGYMKVF_cjs = require('./chunk-EOGYMKVF.cjs');
4
4
  require('./chunk-OBGZSXTJ.cjs');
5
5
  var zod = require('zod');
6
6
 
@@ -8,6 +8,7 @@ var codeSubstrateDefaults = {
8
8
  categories: ["code-workflow"],
9
9
  experimental: true
10
10
  };
11
+ var CODE_SUBSTRATE_ANALYZER_API = "/code-substrate-analyzer";
11
12
  var CODE_SUBSTRATE_RUNNER_API = "/code-substrate-runner/api/v0";
12
13
  var CODE_SUBSTRATE_WORKFLOWS_API = "/code-substrate-workflows/api/v0";
13
14
  var JsonPayloadSchema = zod.z.preprocess((val) => {
@@ -50,7 +51,7 @@ function toWireConnections(connections) {
50
51
  for (const [alias, entry] of Object.entries(connections)) {
51
52
  const connectionId = entry.connectionId ?? entry.connection_id;
52
53
  if (connectionId === void 0) {
53
- throw new chunkBUAAO3AY_cjs.ZapierValidationError(
54
+ throw new chunkEOGYMKVF_cjs.ZapierValidationError(
54
55
  `connections["${alias}"] is missing connectionId`
55
56
  );
56
57
  }
@@ -77,7 +78,7 @@ var TriggerConfigSchema = zod.z.object({
77
78
  function toWireTrigger(trigger) {
78
79
  const selectedApi = trigger.selectedApi ?? trigger.selected_api;
79
80
  if (selectedApi === void 0) {
80
- throw new chunkBUAAO3AY_cjs.ZapierValidationError("trigger is missing selectedApi");
81
+ throw new chunkEOGYMKVF_cjs.ZapierValidationError("trigger is missing selectedApi");
81
82
  }
82
83
  const wire = {
83
84
  selected_api: selectedApi,
@@ -98,7 +99,7 @@ function toWireAppVersions(appVersions) {
98
99
  for (const [key, entry] of Object.entries(appVersions)) {
99
100
  const implementationName = entry.implementationName ?? entry.implementation_name;
100
101
  if (implementationName === void 0) {
101
- throw new chunkBUAAO3AY_cjs.ZapierValidationError(
102
+ throw new chunkEOGYMKVF_cjs.ZapierValidationError(
102
103
  `appVersions["${key}"] is missing implementationName`
103
104
  );
104
105
  }
@@ -262,10 +263,10 @@ var ListWorkflowsApiResponseSchema = zod.z.object({
262
263
  });
263
264
 
264
265
  // src/plugins/codeSubstrate/listWorkflows/index.ts
265
- var listWorkflowsPlugin = chunkBUAAO3AY_cjs.defineMethod({
266
+ var listWorkflowsPlugin = chunkEOGYMKVF_cjs.defineMethod({
266
267
  ...codeSubstrateDefaults,
267
268
  name: "listWorkflows",
268
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
269
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
269
270
  type: "list",
270
271
  itemType: "Workflow",
271
272
  inputSchema: ListWorkflowsOptionsSchema,
@@ -273,7 +274,7 @@ var listWorkflowsPlugin = chunkBUAAO3AY_cjs.defineMethod({
273
274
  skipOutputValidation: true,
274
275
  // The handler already returns a clean `{ data, nextCursor }` page, so the
275
276
  // standard list output (no `adaptPage`) applies.
276
- output: { type: "list", defaultPageSize: chunkBUAAO3AY_cjs.DEFAULT_PAGE_SIZE },
277
+ output: { type: "list", defaultPageSize: chunkEOGYMKVF_cjs.DEFAULT_PAGE_SIZE },
277
278
  run: async ({ imports, input }) => {
278
279
  const api = imports.api;
279
280
  const searchParams = {};
@@ -344,16 +345,16 @@ var GetWorkflowResponseSchema = zod.z.object({
344
345
  });
345
346
 
346
347
  // src/plugins/codeSubstrate/getWorkflow/index.ts
347
- var getWorkflowPlugin = chunkBUAAO3AY_cjs.defineMethod({
348
+ var getWorkflowPlugin = chunkEOGYMKVF_cjs.defineMethod({
348
349
  ...codeSubstrateDefaults,
349
350
  name: "getWorkflow",
350
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
351
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
351
352
  itemType: "Workflow",
352
353
  inputSchema: GetWorkflowOptionsSchema,
353
354
  outputSchema: GetWorkflowResponseSchema,
354
355
  skipOutputValidation: true,
355
356
  output: "item",
356
- resolvers: { workflow: chunkBUAAO3AY_cjs.workflowIdResolver },
357
+ resolvers: { workflow: chunkEOGYMKVF_cjs.workflowIdResolver },
357
358
  run: async ({ imports, input }) => {
358
359
  const api = imports.api;
359
360
  const raw = await api.get(
@@ -395,10 +396,10 @@ var CreateWorkflowResponseSchema = zod.z.object({
395
396
  });
396
397
 
397
398
  // src/plugins/codeSubstrate/createWorkflow/index.ts
398
- var createWorkflowPlugin = chunkBUAAO3AY_cjs.defineMethod({
399
+ var createWorkflowPlugin = chunkEOGYMKVF_cjs.defineMethod({
399
400
  ...codeSubstrateDefaults,
400
401
  name: "createWorkflow",
401
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
402
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
402
403
  type: "create",
403
404
  itemType: "Workflow",
404
405
  inputSchema: CreateWorkflowOptionsSchema,
@@ -425,6 +426,111 @@ var createWorkflowPlugin = chunkBUAAO3AY_cjs.defineMethod({
425
426
  return { data: CreateWorkflowResponseSchema.parse(raw) };
426
427
  }
427
428
  });
429
+ var ImportWorkflowOptionsSchema = zod.z.object({
430
+ zap: zod.z.string().min(1).max(128).describe(
431
+ "ID of the Zap to import. Must be owned by the requesting user. Recorded on the created workflow as source_zap_id."
432
+ ),
433
+ name: zod.z.string().optional().describe(
434
+ `Name for the created workflow. Defaults to a kebab-cased form of the Zap's title, or "imported-workflow" when the Zap has no title.`
435
+ ),
436
+ private: zod.z.boolean().optional().describe(
437
+ "Restrict the created workflow to the creating user. Defaults to false, which makes it account-visible."
438
+ )
439
+ }).describe(
440
+ "Convert an existing Zap into a durable workflow. Transforms the Zap's latest published version (falling back to its draft only when the Zap has never been published) and puts the resulting source in an open draft. The workflow is created disabled with no published version, so publish the draft to make it live. The original Zap is untouched and keeps running."
441
+ );
442
+ var TranslationIssueSchema = zod.z.object({
443
+ line: zod.z.number().int().describe(
444
+ "1-based line in the generated source the issue relates to, or 0 when not line-specific."
445
+ ),
446
+ column: zod.z.number().int().describe("1-based column, or 0 when not column-specific."),
447
+ node_kind: zod.z.string().describe(
448
+ 'Category of the issue, used to group and message them, e.g. "invalid-connection-id", "DelayStep", "app-version-conflict".'
449
+ ),
450
+ step_name: zod.z.string().optional().describe("ZDL step id or name the issue originated from, when known."),
451
+ message: zod.z.string().describe("Human-readable description of the issue."),
452
+ blocking: zod.z.boolean().describe(
453
+ "Whether the issue must be resolved before the draft can be published. Computed server-side, so callers do not re-derive it. A blocking issue does not prevent the draft being created."
454
+ )
455
+ });
456
+ var ImportedWorkflowSchema = zod.z.object({
457
+ id: zod.z.string().describe("Workflow ID (UUID)"),
458
+ name: zod.z.string().describe("Workflow name"),
459
+ description: zod.z.string().nullable().optional().describe("Optional workflow description (null if unset)"),
460
+ trigger_url: WorkflowTriggerUrlSchema,
461
+ enabled: zod.z.boolean().describe(
462
+ "Whether the workflow accepts triggers. An import always lands disabled."
463
+ ),
464
+ disabled_reason: WorkflowDisabledReasonSchema.nullable().optional().describe("Why the workflow is off, when system-disabled."),
465
+ is_private: zod.z.boolean().describe(
466
+ "Whether the workflow is private to the creating user. False means account-visible."
467
+ ),
468
+ source_zap_id: zod.z.string().nullable().optional().describe("The Zap this workflow was imported from."),
469
+ created_by_user_id: zod.z.string(),
470
+ updated_by_user_id: zod.z.string().nullable().optional(),
471
+ current_version_id: zod.z.string().nullable().optional().describe("Null on a fresh import, which has no published version yet."),
472
+ triggers: zod.z.array(WorkflowTriggerSchema).describe("Empty on a fresh import, which has no published version yet."),
473
+ created_at: zod.z.string(),
474
+ updated_at: zod.z.string().optional()
475
+ });
476
+ var ImportWorkflowResponseSchema = zod.z.object({
477
+ workflow: ImportedWorkflowSchema.describe(
478
+ "The created workflow. Disabled, with no published version, and source_zap_id set to the imported Zap."
479
+ ),
480
+ draft: WorkflowDraftSchema.describe(
481
+ "The open draft holding the transformed source."
482
+ ),
483
+ issues: zod.z.array(TranslationIssueSchema).describe(
484
+ "Blocking and non-blocking translation issues from the transform, passed through unchanged. Blocking issues do not prevent draft creation; they must be resolved before the draft will publish."
485
+ )
486
+ });
487
+
488
+ // src/plugins/codeSubstrate/importWorkflow/index.ts
489
+ var importWorkflowPlugin = chunkEOGYMKVF_cjs.defineMethod({
490
+ ...codeSubstrateDefaults,
491
+ name: "importWorkflow",
492
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
493
+ type: "create",
494
+ itemType: "Workflow",
495
+ // The response is the composite `{ workflow, draft, issues }`, not the bare
496
+ // `WorkflowItem` the docs generator derives from itemType.
497
+ returnType: "ImportWorkflowResponse",
498
+ inputSchema: ImportWorkflowOptionsSchema,
499
+ outputSchema: ImportWorkflowResponseSchema,
500
+ skipOutputValidation: true,
501
+ output: "item",
502
+ run: async ({ imports, input }) => {
503
+ const api = imports.api;
504
+ const body = { zap_id: input.zap };
505
+ if (input.name !== void 0) {
506
+ body.name = input.name;
507
+ }
508
+ if (input.private !== void 0) {
509
+ body.is_private = input.private;
510
+ }
511
+ const raw = await api.post(
512
+ `${CODE_SUBSTRATE_WORKFLOWS_API}/workflows/import`,
513
+ body,
514
+ {
515
+ authRequired: true,
516
+ // Import is owner-gated upstream: the endpoint refuses a Zap the
517
+ // requesting user does not own. A bare 403 tells the caller nothing
518
+ // about which gate they hit or what to do, so name both.
519
+ customErrorHandler: ({ status, data }) => {
520
+ if (status === 403) {
521
+ const detail = chunkEOGYMKVF_cjs.extractErrorDetail(data);
522
+ return new chunkEOGYMKVF_cjs.ZapierApiError(
523
+ `${detail ?? "Zap import forbidden"} \u2014 only Zaps owned by the requesting user can be imported. Check the Zap ID belongs to this user, or ask its owner to run the import. Retrying will not help.`,
524
+ { statusCode: status }
525
+ );
526
+ }
527
+ return void 0;
528
+ }
529
+ }
530
+ );
531
+ return { data: ImportWorkflowResponseSchema.parse(raw) };
532
+ }
533
+ });
428
534
  var UpdateWorkflowOptionsSchema = zod.z.object({
429
535
  workflow: zod.z.string().uuid().describe("Durable workflow ID"),
430
536
  name: zod.z.string().min(1).optional().describe("New name for the workflow"),
@@ -447,17 +553,17 @@ var UpdateWorkflowResponseSchema = zod.z.object({
447
553
  });
448
554
 
449
555
  // src/plugins/codeSubstrate/updateWorkflow/index.ts
450
- var updateWorkflowPlugin = chunkBUAAO3AY_cjs.defineMethod({
556
+ var updateWorkflowPlugin = chunkEOGYMKVF_cjs.defineMethod({
451
557
  ...codeSubstrateDefaults,
452
558
  name: "updateWorkflow",
453
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
559
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
454
560
  type: "update",
455
561
  itemType: "Workflow",
456
562
  inputSchema: UpdateWorkflowOptionsSchema,
457
563
  outputSchema: UpdateWorkflowResponseSchema,
458
564
  skipOutputValidation: true,
459
565
  output: "item",
460
- resolvers: { workflow: chunkBUAAO3AY_cjs.workflowIdResolver },
566
+ resolvers: { workflow: chunkEOGYMKVF_cjs.workflowIdResolver },
461
567
  run: async ({ imports, input }) => {
462
568
  const api = imports.api;
463
569
  const body = {};
@@ -487,17 +593,17 @@ var EnableWorkflowResponseSchema = zod.z.object({
487
593
  });
488
594
 
489
595
  // src/plugins/codeSubstrate/enableWorkflow/index.ts
490
- var enableWorkflowPlugin = chunkBUAAO3AY_cjs.defineMethod({
596
+ var enableWorkflowPlugin = chunkEOGYMKVF_cjs.defineMethod({
491
597
  ...codeSubstrateDefaults,
492
598
  name: "enableWorkflow",
493
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
599
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
494
600
  type: "update",
495
601
  itemType: "Workflow",
496
602
  inputSchema: EnableWorkflowOptionsSchema,
497
603
  outputSchema: EnableWorkflowResponseSchema,
498
604
  skipOutputValidation: true,
499
605
  output: "item",
500
- resolvers: { workflow: chunkBUAAO3AY_cjs.workflowIdResolver },
606
+ resolvers: { workflow: chunkEOGYMKVF_cjs.workflowIdResolver },
501
607
  run: async ({ imports, input }) => {
502
608
  const api = imports.api;
503
609
  const raw = await api.post(
@@ -522,17 +628,17 @@ var DisableWorkflowResponseSchema = zod.z.object({
522
628
  });
523
629
 
524
630
  // src/plugins/codeSubstrate/disableWorkflow/index.ts
525
- var disableWorkflowPlugin = chunkBUAAO3AY_cjs.defineMethod({
631
+ var disableWorkflowPlugin = chunkEOGYMKVF_cjs.defineMethod({
526
632
  ...codeSubstrateDefaults,
527
633
  name: "disableWorkflow",
528
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
634
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
529
635
  type: "update",
530
636
  itemType: "Workflow",
531
637
  inputSchema: DisableWorkflowOptionsSchema,
532
638
  outputSchema: DisableWorkflowResponseSchema,
533
639
  skipOutputValidation: true,
534
640
  output: "item",
535
- resolvers: { workflow: chunkBUAAO3AY_cjs.workflowIdResolver },
641
+ resolvers: { workflow: chunkEOGYMKVF_cjs.workflowIdResolver },
536
642
  run: async ({ imports, input }) => {
537
643
  const api = imports.api;
538
644
  const raw = await api.post(
@@ -556,10 +662,10 @@ var DeleteWorkflowResponseSchema = zod.z.object({
556
662
  });
557
663
 
558
664
  // src/plugins/codeSubstrate/deleteWorkflow/index.ts
559
- var deleteWorkflowPlugin = chunkBUAAO3AY_cjs.defineMethod({
665
+ var deleteWorkflowPlugin = chunkEOGYMKVF_cjs.defineMethod({
560
666
  ...codeSubstrateDefaults,
561
667
  name: "deleteWorkflow",
562
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
668
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
563
669
  type: "delete",
564
670
  itemType: "Workflow",
565
671
  confirm: "delete",
@@ -567,7 +673,7 @@ var deleteWorkflowPlugin = chunkBUAAO3AY_cjs.defineMethod({
567
673
  outputSchema: DeleteWorkflowResponseSchema,
568
674
  skipOutputValidation: true,
569
675
  output: "raw",
570
- resolvers: { workflow: chunkBUAAO3AY_cjs.workflowIdResolver },
676
+ resolvers: { workflow: chunkEOGYMKVF_cjs.workflowIdResolver },
571
677
  run: async ({ imports, input }) => {
572
678
  const api = imports.api;
573
679
  await api.delete(
@@ -581,7 +687,7 @@ var deleteWorkflowPlugin = chunkBUAAO3AY_cjs.defineMethod({
581
687
  return { data: { id: input.workflow } };
582
688
  }
583
689
  });
584
- var RunStatusSchema = chunkBUAAO3AY_cjs.openEnum(
690
+ var RunStatusSchema = chunkEOGYMKVF_cjs.openEnum(
585
691
  ["initialized", "started", "finished", "failed", "cancelled"],
586
692
  "Run lifecycle status. `finished` / `failed` / `cancelled` are terminal."
587
693
  );
@@ -628,10 +734,10 @@ var ListDurableRunsApiResponseSchema = zod.z.object({
628
734
  });
629
735
 
630
736
  // src/plugins/codeSubstrate/listDurableRuns/index.ts
631
- var listDurableRunsPlugin = chunkBUAAO3AY_cjs.defineMethod({
737
+ var listDurableRunsPlugin = chunkEOGYMKVF_cjs.defineMethod({
632
738
  ...codeSubstrateDefaults,
633
739
  name: "listDurableRuns",
634
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
740
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
635
741
  type: "list",
636
742
  itemType: "DurableRun",
637
743
  inputSchema: ListDurableRunsOptionsSchema,
@@ -639,7 +745,7 @@ var listDurableRunsPlugin = chunkBUAAO3AY_cjs.defineMethod({
639
745
  skipOutputValidation: true,
640
746
  // The handler already returns a clean `{ data, nextCursor }` page, so the
641
747
  // standard list output (no `adaptPage`) applies.
642
- output: { type: "list", defaultPageSize: chunkBUAAO3AY_cjs.DEFAULT_PAGE_SIZE },
748
+ output: { type: "list", defaultPageSize: chunkEOGYMKVF_cjs.DEFAULT_PAGE_SIZE },
643
749
  run: async ({ imports, input }) => {
644
750
  const api = imports.api;
645
751
  const searchParams = {};
@@ -660,11 +766,11 @@ var listDurableRunsPlugin = chunkBUAAO3AY_cjs.defineMethod({
660
766
  };
661
767
  }
662
768
  });
663
- var OperationTypeSchema = chunkBUAAO3AY_cjs.openEnum(
769
+ var OperationTypeSchema = chunkEOGYMKVF_cjs.openEnum(
664
770
  ["step", "wait", "callback"],
665
771
  "Operation kind: `step` is a journaled function call; `wait` is a time-based suspension; `callback` is a wait on an external callback."
666
772
  );
667
- var OperationStatusSchema = chunkBUAAO3AY_cjs.openEnum(
773
+ var OperationStatusSchema = chunkEOGYMKVF_cjs.openEnum(
668
774
  ["pending", "completed", "failed", "exhausted"],
669
775
  "Operation lifecycle status. `exhausted` means retries were exceeded."
670
776
  );
@@ -693,7 +799,7 @@ var OperationSchema = zod.z.object({
693
799
  completed_at: zod.z.string().optional().describe("When the operation reached a terminal state (ISO-8601)"),
694
800
  created_at: zod.z.string().describe("When the operation was created (ISO-8601)")
695
801
  });
696
- var ExecutionStatusSchema = chunkBUAAO3AY_cjs.openEnum(
802
+ var ExecutionStatusSchema = chunkEOGYMKVF_cjs.openEnum(
697
803
  ["running", "waiting", "completed", "failed"],
698
804
  "Execution lifecycle status. `waiting` means blocked on a wait or callback operation."
699
805
  );
@@ -750,16 +856,16 @@ var GetDurableRunResponseSchema = zod.z.object({
750
856
  });
751
857
 
752
858
  // src/plugins/codeSubstrate/getDurableRun/index.ts
753
- var getDurableRunPlugin = chunkBUAAO3AY_cjs.defineMethod({
859
+ var getDurableRunPlugin = chunkEOGYMKVF_cjs.defineMethod({
754
860
  ...codeSubstrateDefaults,
755
861
  name: "getDurableRun",
756
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
862
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
757
863
  itemType: "DurableRun",
758
864
  inputSchema: GetDurableRunOptionsSchema,
759
865
  outputSchema: GetDurableRunResponseSchema,
760
866
  skipOutputValidation: true,
761
867
  output: "item",
762
- resolvers: { run: chunkBUAAO3AY_cjs.durableRunIdResolver },
868
+ resolvers: { run: chunkEOGYMKVF_cjs.durableRunIdResolver },
763
869
  run: async ({ imports, input }) => {
764
870
  const api = imports.api;
765
871
  const raw = await api.get(
@@ -830,16 +936,16 @@ var RunDurableResponseSchema = zod.z.object({
830
936
  });
831
937
 
832
938
  // src/resolvers/sourceFiles.ts
833
- var sourceFilesResolver = chunkBUAAO3AY_cjs.defineResolver({
939
+ var sourceFilesResolver = chunkEOGYMKVF_cjs.defineResolver({
834
940
  type: "object",
835
941
  additionalKeys: {
836
942
  minEntries: 1,
837
- keys: chunkBUAAO3AY_cjs.defineResolver({
943
+ keys: chunkEOGYMKVF_cjs.defineResolver({
838
944
  type: "static",
839
945
  inputType: "text",
840
946
  placeholder: "filename (e.g. index.ts)"
841
947
  }),
842
- values: chunkBUAAO3AY_cjs.defineResolver({
948
+ values: chunkEOGYMKVF_cjs.defineResolver({
843
949
  type: "static",
844
950
  inputType: "text",
845
951
  placeholder: "file contents"
@@ -850,10 +956,10 @@ var sourceFilesResolver = chunkBUAAO3AY_cjs.defineResolver({
850
956
  });
851
957
 
852
958
  // src/plugins/codeSubstrate/runDurable/index.ts
853
- var runDurablePlugin = chunkBUAAO3AY_cjs.defineMethod({
959
+ var runDurablePlugin = chunkEOGYMKVF_cjs.defineMethod({
854
960
  ...codeSubstrateDefaults,
855
961
  name: "runDurable",
856
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
962
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
857
963
  type: "create",
858
964
  itemType: "DurableRun",
859
965
  inputSchema: RunDurableOptionsSchema,
@@ -907,17 +1013,17 @@ var CancelDurableRunResponseSchema = zod.z.object({
907
1013
  });
908
1014
 
909
1015
  // src/plugins/codeSubstrate/cancelDurableRun/index.ts
910
- var cancelDurableRunPlugin = chunkBUAAO3AY_cjs.defineMethod({
1016
+ var cancelDurableRunPlugin = chunkEOGYMKVF_cjs.defineMethod({
911
1017
  ...codeSubstrateDefaults,
912
1018
  name: "cancelDurableRun",
913
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
1019
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
914
1020
  type: "update",
915
1021
  itemType: "DurableRun",
916
1022
  inputSchema: CancelDurableRunOptionsSchema,
917
1023
  outputSchema: CancelDurableRunResponseSchema,
918
1024
  skipOutputValidation: true,
919
1025
  output: "item",
920
- resolvers: { run: chunkBUAAO3AY_cjs.durableRunIdResolver },
1026
+ resolvers: { run: chunkEOGYMKVF_cjs.durableRunIdResolver },
921
1027
  run: async ({ imports, input }) => {
922
1028
  const api = imports.api;
923
1029
  await api.post(
@@ -1027,17 +1133,17 @@ function describeOpenDraft(draft) {
1027
1133
  const label = draft.slug ? `${draft.slug} (id: ${draft.id})` : draft.id;
1028
1134
  return draft.last_edited_at ? ` \u2022 ${label}, last edited ${draft.last_edited_at}` : ` \u2022 ${label}`;
1029
1135
  }
1030
- var publishWorkflowVersionPlugin = chunkBUAAO3AY_cjs.defineMethod({
1136
+ var publishWorkflowVersionPlugin = chunkEOGYMKVF_cjs.defineMethod({
1031
1137
  ...codeSubstrateDefaults,
1032
1138
  name: "publishWorkflowVersion",
1033
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
1139
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
1034
1140
  type: "create",
1035
1141
  itemType: "WorkflowVersion",
1036
1142
  inputSchema: PublishWorkflowVersionOptionsSchema,
1037
1143
  outputSchema: PublishWorkflowVersionResponseSchema,
1038
1144
  skipOutputValidation: true,
1039
1145
  output: "item",
1040
- resolvers: { workflow: chunkBUAAO3AY_cjs.workflowIdResolver, sourceFiles: sourceFilesResolver },
1146
+ resolvers: { workflow: chunkEOGYMKVF_cjs.workflowIdResolver, sourceFiles: sourceFilesResolver },
1041
1147
  run: async ({ imports, input }) => {
1042
1148
  const api = imports.api;
1043
1149
  const sourceFiles = "sourceFiles" in input ? input.sourceFiles : input.source_files;
@@ -1091,13 +1197,13 @@ var publishWorkflowVersionPlugin = chunkBUAAO3AY_cjs.defineMethod({
1091
1197
  if (status !== 409) return void 0;
1092
1198
  const conflict = extractOpenDraftConflict(data);
1093
1199
  if (!conflict) {
1094
- return new chunkBUAAO3AY_cjs.ZapierConflictError(
1095
- chunkBUAAO3AY_cjs.extractErrorDetail(data) ?? "Workflow version publish conflict.",
1200
+ return new chunkEOGYMKVF_cjs.ZapierConflictError(
1201
+ chunkEOGYMKVF_cjs.extractErrorDetail(data) ?? "Workflow version publish conflict.",
1096
1202
  { statusCode: status, resourceType: "workflow" }
1097
1203
  );
1098
1204
  }
1099
1205
  const detail = conflict.detail ?? "Cannot publish over open draft(s).";
1100
- return new chunkBUAAO3AY_cjs.ZapierConflictError(
1206
+ return new chunkEOGYMKVF_cjs.ZapierConflictError(
1101
1207
  [
1102
1208
  `${detail} Blocking draft(s):`,
1103
1209
  ...conflict.openDrafts.map(describeOpenDraft),
@@ -1149,10 +1255,10 @@ var ListWorkflowVersionsApiResponseSchema = zod.z.object({
1149
1255
  });
1150
1256
 
1151
1257
  // src/plugins/codeSubstrate/listWorkflowVersions/index.ts
1152
- var listWorkflowVersionsPlugin = chunkBUAAO3AY_cjs.defineMethod({
1258
+ var listWorkflowVersionsPlugin = chunkEOGYMKVF_cjs.defineMethod({
1153
1259
  ...codeSubstrateDefaults,
1154
1260
  name: "listWorkflowVersions",
1155
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
1261
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
1156
1262
  type: "list",
1157
1263
  itemType: "WorkflowVersion",
1158
1264
  inputSchema: ListWorkflowVersionsOptionsSchema,
@@ -1160,8 +1266,8 @@ var listWorkflowVersionsPlugin = chunkBUAAO3AY_cjs.defineMethod({
1160
1266
  skipOutputValidation: true,
1161
1267
  // The handler already returns a clean `{ data, nextCursor }` page, so the
1162
1268
  // standard list output (no `adaptPage`) applies.
1163
- output: { type: "list", defaultPageSize: chunkBUAAO3AY_cjs.DEFAULT_PAGE_SIZE },
1164
- resolvers: { workflow: chunkBUAAO3AY_cjs.workflowIdResolver },
1269
+ output: { type: "list", defaultPageSize: chunkEOGYMKVF_cjs.DEFAULT_PAGE_SIZE },
1270
+ resolvers: { workflow: chunkEOGYMKVF_cjs.workflowIdResolver },
1165
1271
  run: async ({ imports, input }) => {
1166
1272
  const api = imports.api;
1167
1273
  const searchParams = {};
@@ -1193,18 +1299,18 @@ var GetWorkflowVersionOptionsSchema = zod.z.object({
1193
1299
  var GetWorkflowVersionResponseSchema = WorkflowVersionSchema;
1194
1300
 
1195
1301
  // src/plugins/codeSubstrate/getWorkflowVersion/index.ts
1196
- var getWorkflowVersionPlugin = chunkBUAAO3AY_cjs.defineMethod({
1302
+ var getWorkflowVersionPlugin = chunkEOGYMKVF_cjs.defineMethod({
1197
1303
  ...codeSubstrateDefaults,
1198
1304
  name: "getWorkflowVersion",
1199
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
1305
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
1200
1306
  itemType: "WorkflowVersion",
1201
1307
  inputSchema: GetWorkflowVersionOptionsSchema,
1202
1308
  outputSchema: GetWorkflowVersionResponseSchema,
1203
1309
  skipOutputValidation: true,
1204
1310
  output: "item",
1205
1311
  resolvers: {
1206
- workflow: chunkBUAAO3AY_cjs.workflowIdResolver,
1207
- version: chunkBUAAO3AY_cjs.workflowVersionIdResolver
1312
+ workflow: chunkEOGYMKVF_cjs.workflowIdResolver,
1313
+ version: chunkEOGYMKVF_cjs.workflowVersionIdResolver
1208
1314
  },
1209
1315
  run: async ({ imports, input }) => {
1210
1316
  const api = imports.api;
@@ -1257,10 +1363,10 @@ var ListWorkflowDraftsApiResponseSchema = zod.z.object({
1257
1363
  });
1258
1364
 
1259
1365
  // src/plugins/codeSubstrate/listWorkflowDrafts/index.ts
1260
- var listWorkflowDraftsPlugin = chunkBUAAO3AY_cjs.defineMethod({
1366
+ var listWorkflowDraftsPlugin = chunkEOGYMKVF_cjs.defineMethod({
1261
1367
  ...codeSubstrateDefaults,
1262
1368
  name: "listWorkflowDrafts",
1263
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
1369
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
1264
1370
  type: "list",
1265
1371
  itemType: "WorkflowDraft",
1266
1372
  inputSchema: ListWorkflowDraftsOptionsSchema,
@@ -1268,8 +1374,8 @@ var listWorkflowDraftsPlugin = chunkBUAAO3AY_cjs.defineMethod({
1268
1374
  skipOutputValidation: true,
1269
1375
  // The handler already returns a clean `{ data, nextCursor }` page, so the
1270
1376
  // standard list output (no `adaptPage`) applies.
1271
- output: { type: "list", defaultPageSize: chunkBUAAO3AY_cjs.DEFAULT_PAGE_SIZE },
1272
- resolvers: { workflow: chunkBUAAO3AY_cjs.workflowIdResolver },
1377
+ output: { type: "list", defaultPageSize: chunkEOGYMKVF_cjs.DEFAULT_PAGE_SIZE },
1378
+ resolvers: { workflow: chunkEOGYMKVF_cjs.workflowIdResolver },
1273
1379
  run: async ({ imports, input }) => {
1274
1380
  const api = imports.api;
1275
1381
  const searchParams = {};
@@ -1307,18 +1413,18 @@ var GetWorkflowDraftOptionsSchema = zod.z.object({
1307
1413
  var GetWorkflowDraftResponseSchema = WorkflowDraftSchema;
1308
1414
 
1309
1415
  // src/plugins/codeSubstrate/getWorkflowDraft/index.ts
1310
- var getWorkflowDraftPlugin = chunkBUAAO3AY_cjs.defineMethod({
1416
+ var getWorkflowDraftPlugin = chunkEOGYMKVF_cjs.defineMethod({
1311
1417
  ...codeSubstrateDefaults,
1312
1418
  name: "getWorkflowDraft",
1313
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
1419
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
1314
1420
  itemType: "WorkflowDraft",
1315
1421
  inputSchema: GetWorkflowDraftOptionsSchema,
1316
1422
  outputSchema: GetWorkflowDraftResponseSchema,
1317
1423
  skipOutputValidation: true,
1318
1424
  output: "item",
1319
1425
  resolvers: {
1320
- workflow: chunkBUAAO3AY_cjs.workflowIdResolver,
1321
- draft: chunkBUAAO3AY_cjs.workflowDraftIdResolver
1426
+ workflow: chunkEOGYMKVF_cjs.workflowIdResolver,
1427
+ draft: chunkEOGYMKVF_cjs.workflowDraftIdResolver
1322
1428
  },
1323
1429
  run: async ({ imports, input }) => {
1324
1430
  const api = imports.api;
@@ -1343,17 +1449,17 @@ var CreateWorkflowDraftOptionsSchema = zod.z.object({
1343
1449
  var CreateWorkflowDraftResponseSchema = WorkflowDraftSchema;
1344
1450
 
1345
1451
  // src/plugins/codeSubstrate/createWorkflowDraft/index.ts
1346
- var createWorkflowDraftPlugin = chunkBUAAO3AY_cjs.defineMethod({
1452
+ var createWorkflowDraftPlugin = chunkEOGYMKVF_cjs.defineMethod({
1347
1453
  ...codeSubstrateDefaults,
1348
1454
  name: "createWorkflowDraft",
1349
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
1455
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
1350
1456
  type: "create",
1351
1457
  itemType: "WorkflowDraft",
1352
1458
  inputSchema: CreateWorkflowDraftOptionsSchema,
1353
1459
  outputSchema: CreateWorkflowDraftResponseSchema,
1354
1460
  skipOutputValidation: true,
1355
1461
  output: "item",
1356
- resolvers: { workflow: chunkBUAAO3AY_cjs.workflowIdResolver },
1462
+ resolvers: { workflow: chunkEOGYMKVF_cjs.workflowIdResolver },
1357
1463
  run: async ({ imports, input }) => {
1358
1464
  const api = imports.api;
1359
1465
  const body = {};
@@ -1401,10 +1507,10 @@ var UpdateWorkflowDraftOptionsSchema = zod.z.object({
1401
1507
  var UpdateWorkflowDraftResponseSchema = WorkflowDraftSchema;
1402
1508
 
1403
1509
  // src/plugins/codeSubstrate/updateWorkflowDraft/index.ts
1404
- var updateWorkflowDraftPlugin = chunkBUAAO3AY_cjs.defineMethod({
1510
+ var updateWorkflowDraftPlugin = chunkEOGYMKVF_cjs.defineMethod({
1405
1511
  ...codeSubstrateDefaults,
1406
1512
  name: "updateWorkflowDraft",
1407
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
1513
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
1408
1514
  type: "update",
1409
1515
  itemType: "WorkflowDraft",
1410
1516
  inputSchema: UpdateWorkflowDraftOptionsSchema,
@@ -1412,8 +1518,8 @@ var updateWorkflowDraftPlugin = chunkBUAAO3AY_cjs.defineMethod({
1412
1518
  skipOutputValidation: true,
1413
1519
  output: "item",
1414
1520
  resolvers: {
1415
- workflow: chunkBUAAO3AY_cjs.workflowIdResolver,
1416
- draft: chunkBUAAO3AY_cjs.workflowDraftIdResolver,
1521
+ workflow: chunkEOGYMKVF_cjs.workflowIdResolver,
1522
+ draft: chunkEOGYMKVF_cjs.workflowDraftIdResolver,
1417
1523
  sourceFiles: sourceFilesResolver
1418
1524
  },
1419
1525
  run: async ({ imports, input }) => {
@@ -1458,8 +1564,8 @@ var updateWorkflowDraftPlugin = chunkBUAAO3AY_cjs.defineMethod({
1458
1564
  // re-read the draft, and retry instead of blind-overwriting.
1459
1565
  customErrorHandler: ({ status, data }) => {
1460
1566
  if (status === 409) {
1461
- const detail = chunkBUAAO3AY_cjs.extractErrorDetail(data);
1462
- return new chunkBUAAO3AY_cjs.ZapierConflictError(
1567
+ const detail = chunkEOGYMKVF_cjs.extractErrorDetail(data);
1568
+ return new chunkEOGYMKVF_cjs.ZapierConflictError(
1463
1569
  `${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.`,
1464
1570
  { statusCode: status, resourceType: "workflow-draft" }
1465
1571
  );
@@ -1480,10 +1586,10 @@ var DiscardWorkflowDraftOptionsSchema = zod.z.object({
1480
1586
  var DiscardWorkflowDraftResponseSchema = WorkflowDraftSchema;
1481
1587
 
1482
1588
  // src/plugins/codeSubstrate/discardWorkflowDraft/index.ts
1483
- var discardWorkflowDraftPlugin = chunkBUAAO3AY_cjs.defineMethod({
1589
+ var discardWorkflowDraftPlugin = chunkEOGYMKVF_cjs.defineMethod({
1484
1590
  ...codeSubstrateDefaults,
1485
1591
  name: "discardWorkflowDraft",
1486
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
1592
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
1487
1593
  type: "delete",
1488
1594
  itemType: "WorkflowDraft",
1489
1595
  // Soft delete returns the discarded draft, not the `{ success: boolean }`
@@ -1497,8 +1603,8 @@ var discardWorkflowDraftPlugin = chunkBUAAO3AY_cjs.defineMethod({
1497
1603
  skipOutputValidation: true,
1498
1604
  output: "item",
1499
1605
  resolvers: {
1500
- workflow: chunkBUAAO3AY_cjs.workflowIdResolver,
1501
- draft: chunkBUAAO3AY_cjs.workflowDraftIdResolver
1606
+ workflow: chunkEOGYMKVF_cjs.workflowIdResolver,
1607
+ draft: chunkEOGYMKVF_cjs.workflowDraftIdResolver
1502
1608
  },
1503
1609
  run: async ({ imports, input }) => {
1504
1610
  const api = imports.api;
@@ -1538,10 +1644,10 @@ var PublishWorkflowDraftResponseSchema = zod.z.object({
1538
1644
  });
1539
1645
 
1540
1646
  // src/plugins/codeSubstrate/publishWorkflowDraft/index.ts
1541
- var publishWorkflowDraftPlugin = chunkBUAAO3AY_cjs.defineMethod({
1647
+ var publishWorkflowDraftPlugin = chunkEOGYMKVF_cjs.defineMethod({
1542
1648
  ...codeSubstrateDefaults,
1543
1649
  name: "publishWorkflowDraft",
1544
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
1650
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
1545
1651
  type: "create",
1546
1652
  itemType: "WorkflowVersion",
1547
1653
  // The response is the composite `{ draft, version }`, not the bare
@@ -1552,8 +1658,8 @@ var publishWorkflowDraftPlugin = chunkBUAAO3AY_cjs.defineMethod({
1552
1658
  skipOutputValidation: true,
1553
1659
  output: "item",
1554
1660
  resolvers: {
1555
- workflow: chunkBUAAO3AY_cjs.workflowIdResolver,
1556
- draft: chunkBUAAO3AY_cjs.workflowDraftIdResolver
1661
+ workflow: chunkEOGYMKVF_cjs.workflowIdResolver,
1662
+ draft: chunkEOGYMKVF_cjs.workflowDraftIdResolver
1557
1663
  },
1558
1664
  run: async ({ imports, input }) => {
1559
1665
  const api = imports.api;
@@ -1586,15 +1692,15 @@ var publishWorkflowDraftPlugin = chunkBUAAO3AY_cjs.defineMethod({
1586
1692
  // to ZapierValidationError via the client's default handling.
1587
1693
  customErrorHandler: ({ status, data }) => {
1588
1694
  if (status === 409) {
1589
- const detail = chunkBUAAO3AY_cjs.extractErrorDetail(data);
1590
- return new chunkBUAAO3AY_cjs.ZapierConflictError(
1695
+ const detail = chunkEOGYMKVF_cjs.extractErrorDetail(data);
1696
+ return new chunkEOGYMKVF_cjs.ZapierConflictError(
1591
1697
  `${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.`,
1592
1698
  { statusCode: status, resourceType: "workflow-draft" }
1593
1699
  );
1594
1700
  }
1595
1701
  if (status === 503) {
1596
- const detail = chunkBUAAO3AY_cjs.extractErrorDetail(data);
1597
- return new chunkBUAAO3AY_cjs.ZapierApiError(
1702
+ const detail = chunkEOGYMKVF_cjs.extractErrorDetail(data);
1703
+ return new chunkEOGYMKVF_cjs.ZapierApiError(
1598
1704
  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.",
1599
1705
  { statusCode: status }
1600
1706
  );
@@ -1652,10 +1758,10 @@ var ListWorkflowRunsApiResponseSchema = zod.z.object({
1652
1758
  });
1653
1759
 
1654
1760
  // src/plugins/codeSubstrate/listWorkflowRuns/index.ts
1655
- var listWorkflowRunsPlugin = chunkBUAAO3AY_cjs.defineMethod({
1761
+ var listWorkflowRunsPlugin = chunkEOGYMKVF_cjs.defineMethod({
1656
1762
  ...codeSubstrateDefaults,
1657
1763
  name: "listWorkflowRuns",
1658
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
1764
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
1659
1765
  type: "list",
1660
1766
  itemType: "WorkflowRun",
1661
1767
  inputSchema: ListWorkflowRunsOptionsSchema,
@@ -1663,8 +1769,8 @@ var listWorkflowRunsPlugin = chunkBUAAO3AY_cjs.defineMethod({
1663
1769
  skipOutputValidation: true,
1664
1770
  // The handler already returns a clean `{ data, nextCursor }` page, so the
1665
1771
  // standard list output (no `adaptPage`) applies.
1666
- output: { type: "list", defaultPageSize: chunkBUAAO3AY_cjs.DEFAULT_PAGE_SIZE },
1667
- resolvers: { workflow: chunkBUAAO3AY_cjs.workflowIdResolver },
1772
+ output: { type: "list", defaultPageSize: chunkEOGYMKVF_cjs.DEFAULT_PAGE_SIZE },
1773
+ resolvers: { workflow: chunkEOGYMKVF_cjs.workflowIdResolver },
1668
1774
  run: async ({ imports, input }) => {
1669
1775
  const api = imports.api;
1670
1776
  const searchParams = {};
@@ -1717,18 +1823,18 @@ var GetWorkflowRunResponseSchema = zod.z.object({
1717
1823
  });
1718
1824
 
1719
1825
  // src/plugins/codeSubstrate/getWorkflowRun/index.ts
1720
- var getWorkflowRunPlugin = chunkBUAAO3AY_cjs.defineMethod({
1826
+ var getWorkflowRunPlugin = chunkEOGYMKVF_cjs.defineMethod({
1721
1827
  ...codeSubstrateDefaults,
1722
1828
  name: "getWorkflowRun",
1723
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
1829
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
1724
1830
  itemType: "WorkflowRun",
1725
1831
  inputSchema: GetWorkflowRunOptionsSchema,
1726
1832
  outputSchema: GetWorkflowRunResponseSchema,
1727
1833
  skipOutputValidation: true,
1728
1834
  output: "item",
1729
1835
  resolvers: {
1730
- workflow: chunkBUAAO3AY_cjs.workflowIdResolver,
1731
- run: chunkBUAAO3AY_cjs.workflowRunIdResolver
1836
+ workflow: chunkEOGYMKVF_cjs.workflowIdResolver,
1837
+ run: chunkEOGYMKVF_cjs.workflowRunIdResolver
1732
1838
  },
1733
1839
  run: async ({ imports, input }) => {
1734
1840
  const api = imports.api;
@@ -1762,10 +1868,10 @@ var GetTriggerRunResponseSchema = zod.z.object({
1762
1868
  });
1763
1869
 
1764
1870
  // src/plugins/codeSubstrate/getTriggerRun/index.ts
1765
- var getTriggerRunPlugin = chunkBUAAO3AY_cjs.defineMethod({
1871
+ var getTriggerRunPlugin = chunkEOGYMKVF_cjs.defineMethod({
1766
1872
  ...codeSubstrateDefaults,
1767
1873
  name: "getTriggerRun",
1768
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
1874
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
1769
1875
  itemType: "WorkflowRun",
1770
1876
  inputSchema: GetTriggerRunOptionsSchema,
1771
1877
  outputSchema: GetTriggerRunResponseSchema,
@@ -1805,17 +1911,17 @@ var TriggerWorkflowResponseSchema = zod.z.object({
1805
1911
  });
1806
1912
 
1807
1913
  // src/plugins/codeSubstrate/triggerWorkflow/index.ts
1808
- var triggerWorkflowPlugin = chunkBUAAO3AY_cjs.defineMethod({
1914
+ var triggerWorkflowPlugin = chunkEOGYMKVF_cjs.defineMethod({
1809
1915
  ...codeSubstrateDefaults,
1810
1916
  name: "triggerWorkflow",
1811
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
1917
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
1812
1918
  type: "create",
1813
1919
  itemType: "WorkflowRun",
1814
1920
  inputSchema: TriggerWorkflowOptionsSchema,
1815
1921
  outputSchema: TriggerWorkflowResponseSchema,
1816
1922
  skipOutputValidation: true,
1817
1923
  output: "item",
1818
- resolvers: { workflow: chunkBUAAO3AY_cjs.workflowIdResolver },
1924
+ resolvers: { workflow: chunkEOGYMKVF_cjs.workflowIdResolver },
1819
1925
  run: async ({ imports, input }) => {
1820
1926
  const api = imports.api;
1821
1927
  const rawWorkflow = await api.get(
@@ -1829,7 +1935,7 @@ var triggerWorkflowPlugin = chunkBUAAO3AY_cjs.defineMethod({
1829
1935
  const segments = new URL(workflow.trigger_url).pathname.split("/");
1830
1936
  const triggerToken = segments[segments.length - 1];
1831
1937
  if (!triggerToken) {
1832
- throw new chunkBUAAO3AY_cjs.ZapierApiError(
1938
+ throw new chunkEOGYMKVF_cjs.ZapierApiError(
1833
1939
  `Workflow ${input.workflow} returned a malformed trigger_url`,
1834
1940
  { statusCode: 0, response: workflow.trigger_url }
1835
1941
  );
@@ -1845,6 +1951,91 @@ var triggerWorkflowPlugin = chunkBUAAO3AY_cjs.defineMethod({
1845
1951
  return { data: TriggerWorkflowResponseSchema.parse(raw) };
1846
1952
  }
1847
1953
  });
1954
+ var MAX_SOURCE_FILES_COUNT = 50;
1955
+ var MAX_SOURCE_FILE_LENGTH = 2e5;
1956
+ var DEFAULT_ENTRYPOINT_FILE = "/workflow.ts";
1957
+ var EXAMPLE_SOURCE_FILES = {
1958
+ [DEFAULT_ENTRYPOINT_FILE]: 'import { defineDurable } from "@zapier/zapier-durable"; export default defineDurable("hello-world", async (ctx, input) => { return ctx.step("greet", async () => "Hello, world!"); });'
1959
+ };
1960
+ var WorkflowValidationSourceFilesSchema = zod.z.record(
1961
+ zod.z.string().regex(/^\//, "source file paths must start with /"),
1962
+ zod.z.string().max(MAX_SOURCE_FILE_LENGTH)
1963
+ ).refine((files) => Object.keys(files).length > 0, {
1964
+ message: "sourceFiles must contain at least one file"
1965
+ }).refine((files) => Object.keys(files).length <= MAX_SOURCE_FILES_COUNT, {
1966
+ message: `sourceFiles must contain at most ${MAX_SOURCE_FILES_COUNT} files`
1967
+ }).describe("Exact TypeScript sources keyed by absolute logical path.").meta({ example: EXAMPLE_SOURCE_FILES });
1968
+ var ValidateWorkflowOptionsSchema = zod.z.object({
1969
+ sourceFiles: WorkflowValidationSourceFilesSchema,
1970
+ entrypointFile: zod.z.string().regex(/^\//, "entrypointFile must start with /").optional().describe(
1971
+ "Absolute logical path of the entry file in sourceFiles. Defaults to /workflow.ts."
1972
+ )
1973
+ }).refine(
1974
+ ({ sourceFiles, entrypointFile }) => (entrypointFile ?? DEFAULT_ENTRYPOINT_FILE) in sourceFiles,
1975
+ {
1976
+ path: ["entrypointFile"],
1977
+ message: "entrypointFile must identify a file in sourceFiles"
1978
+ }
1979
+ ).describe(
1980
+ "Validate durable workflow source without publishing it. Returns source diagnostics; issue kinds are extensible and may be unfamiliar to the client."
1981
+ );
1982
+ var WorkflowValidationSourceLocationSchema = zod.z.object({
1983
+ file_id: zod.z.string().describe("Source file containing the diagnostic."),
1984
+ start_line: zod.z.number().int().positive().describe("Inclusive 1-based start line."),
1985
+ start_column: zod.z.number().int().positive().describe("Inclusive 1-based start column."),
1986
+ end_line: zod.z.number().int().positive().describe("Inclusive 1-based end line."),
1987
+ end_column: zod.z.number().int().positive().describe("Inclusive 1-based end column.")
1988
+ }).describe("1-based source coordinates within a single sourceFiles entry.");
1989
+ var WorkflowValidationIssueSchema = zod.z.object({
1990
+ kind: zod.z.string().describe(
1991
+ "Extensible diagnostic category; clients must accept unfamiliar values."
1992
+ ),
1993
+ message: zod.z.string().describe("Safe human-readable explanation."),
1994
+ // Unlike `kind`, severity is a closed vocabulary on the analyzer side: a
1995
+ // new value requires a new API version, and every issue carries one, so
1996
+ // callers can rank findings without a missing-severity branch.
1997
+ severity: zod.z.enum(["error", "warning", "info", "hint"]).describe("Diagnostic severity."),
1998
+ suggestion: zod.z.string().optional().describe("Actionable fix hint."),
1999
+ source: WorkflowValidationSourceLocationSchema.optional().describe(
2000
+ "Affected source location."
2001
+ ),
2002
+ source_excerpt: zod.z.string().optional().describe(
2003
+ "Source text the diagnostic was raised against, truncated to 240 characters."
2004
+ ),
2005
+ syntax_kind: zod.z.string().optional().describe(
2006
+ "TypeScript AST node kind the diagnostic was raised against (e.g. `CallExpression`)."
2007
+ )
2008
+ });
2009
+ var ValidateWorkflowResponseSchema = zod.z.object({
2010
+ issues: zod.z.array(WorkflowValidationIssueSchema).describe("Source diagnostics, or an empty array when validation passes.")
2011
+ });
2012
+
2013
+ // src/plugins/codeSubstrate/validateWorkflow/index.ts
2014
+ var validateWorkflowPlugin = chunkEOGYMKVF_cjs.defineMethod({
2015
+ ...codeSubstrateDefaults,
2016
+ name: "validateWorkflow",
2017
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
2018
+ itemType: "WorkflowValidation",
2019
+ inputSchema: ValidateWorkflowOptionsSchema,
2020
+ outputSchema: ValidateWorkflowResponseSchema,
2021
+ skipOutputValidation: true,
2022
+ output: "item",
2023
+ resolvers: { sourceFiles: sourceFilesResolver },
2024
+ run: async ({ imports, input }) => {
2025
+ const body = {
2026
+ source_files: input.sourceFiles
2027
+ };
2028
+ if (input.entrypointFile !== void 0) {
2029
+ body.entrypoint_file = input.entrypointFile;
2030
+ }
2031
+ const raw = await imports.api.post(
2032
+ `${CODE_SUBSTRATE_ANALYZER_API}/validations`,
2033
+ body,
2034
+ { authRequired: true }
2035
+ );
2036
+ return { data: ValidateWorkflowResponseSchema.parse(raw) };
2037
+ }
2038
+ });
1848
2039
 
1849
2040
  // src/plugins/humanInput/shared.ts
1850
2041
  var humanInputDefaults = {
@@ -1870,7 +2061,7 @@ function handleFormsAccessError({
1870
2061
  if (status !== 403 || firstErrorDetail(data) !== FORMS_ACCESS_DENIED_DETAIL) {
1871
2062
  return void 0;
1872
2063
  }
1873
- return new chunkBUAAO3AY_cjs.ZapierConfigurationError(
2064
+ return new chunkEOGYMKVF_cjs.ZapierConfigurationError(
1874
2065
  `${FORMS_ACCESS_DENIED_DETAIL} Request access through Zapier support at https://zapier.com/app/get-help.`,
1875
2066
  { statusCode: status }
1876
2067
  );
@@ -1948,7 +2139,7 @@ function assertUniqueKeys(keys, fields) {
1948
2139
  const label = fields[index]?.label ?? "";
1949
2140
  const previous = seen.get(key);
1950
2141
  if (previous !== void 0) {
1951
- throw new chunkBUAAO3AY_cjs.ZapierValidationError(
2142
+ throw new chunkEOGYMKVF_cjs.ZapierValidationError(
1952
2143
  `Fields "${previous}" and "${label}" both derive the submission key "${key}". Give them labels that differ by more than punctuation or casing.`,
1953
2144
  { details: { key, labels: [previous, label] } }
1954
2145
  );
@@ -2151,10 +2342,10 @@ var CreateFormSchema = zod.z.object({
2151
2342
  }).describe(CreateFormDescription);
2152
2343
 
2153
2344
  // src/plugins/humanInput/createForm/index.ts
2154
- var createFormPlugin = chunkBUAAO3AY_cjs.defineMethod({
2345
+ var createFormPlugin = chunkEOGYMKVF_cjs.defineMethod({
2155
2346
  ...humanInputDefaults,
2156
2347
  name: "createForm",
2157
- imports: [chunkBUAAO3AY_cjs.apiPluginRef],
2348
+ imports: [chunkEOGYMKVF_cjs.apiPluginRef],
2158
2349
  type: "create",
2159
2350
  itemType: "Form",
2160
2351
  inputSchema: CreateFormSchema,
@@ -2182,17 +2373,18 @@ var createFormPlugin = chunkBUAAO3AY_cjs.defineMethod({
2182
2373
  });
2183
2374
 
2184
2375
  // src/experimental.ts
2185
- var zapierExperimentalSdkPlugin = chunkBUAAO3AY_cjs.definePlugin({
2376
+ var zapierExperimentalSdkPlugin = chunkEOGYMKVF_cjs.definePlugin({
2186
2377
  namespace: "zapier",
2187
2378
  name: "experimental-sdk",
2188
2379
  exports: [
2189
- chunkBUAAO3AY_cjs.zapierSdkPlugin,
2380
+ chunkEOGYMKVF_cjs.zapierSdkPlugin,
2190
2381
  // Code substrate (experimental). `list*` plugins are exported before their
2191
2382
  // `get*` / mutation siblings because per-row resolvers reach the listing
2192
2383
  // methods.
2193
2384
  listWorkflowsPlugin,
2194
2385
  getWorkflowPlugin,
2195
2386
  createWorkflowPlugin,
2387
+ importWorkflowPlugin,
2196
2388
  updateWorkflowPlugin,
2197
2389
  enableWorkflowPlugin,
2198
2390
  disableWorkflowPlugin,
@@ -2214,1127 +2406,1128 @@ var zapierExperimentalSdkPlugin = chunkBUAAO3AY_cjs.definePlugin({
2214
2406
  cancelDurableRunPlugin,
2215
2407
  triggerWorkflowPlugin,
2216
2408
  getTriggerRunPlugin,
2409
+ validateWorkflowPlugin,
2217
2410
  // Human input (experimental). Routed through the Public API Gateway
2218
2411
  // rather than the sdkapi proxy — see the `/forms` entry in api/client.ts.
2219
2412
  createFormPlugin
2220
2413
  ]
2221
2414
  });
2222
2415
  function createZapierSdk(options = {}) {
2223
- return chunkBUAAO3AY_cjs.createSdk(zapierExperimentalSdkPlugin, {
2416
+ return chunkEOGYMKVF_cjs.createSdk(zapierExperimentalSdkPlugin, {
2224
2417
  configuration: {
2225
- [chunkBUAAO3AY_cjs.SDK_OPTIONS_ID]: options,
2226
- [chunkBUAAO3AY_cjs.CORE_OPTIONS_ID]: chunkBUAAO3AY_cjs.zapierCoreOptions
2418
+ [chunkEOGYMKVF_cjs.SDK_OPTIONS_ID]: options,
2419
+ [chunkEOGYMKVF_cjs.CORE_OPTIONS_ID]: chunkEOGYMKVF_cjs.zapierCoreOptions
2227
2420
  }
2228
2421
  });
2229
2422
  }
2230
2423
 
2231
2424
  Object.defineProperty(exports, "ACTION_RUNS_PATH", {
2232
2425
  enumerable: true,
2233
- get: function () { return chunkBUAAO3AY_cjs.ACTION_RUNS_PATH; }
2426
+ get: function () { return chunkEOGYMKVF_cjs.ACTION_RUNS_PATH; }
2234
2427
  });
2235
2428
  Object.defineProperty(exports, "API_ID", {
2236
2429
  enumerable: true,
2237
- get: function () { return chunkBUAAO3AY_cjs.API_ID; }
2430
+ get: function () { return chunkEOGYMKVF_cjs.API_ID; }
2238
2431
  });
2239
2432
  Object.defineProperty(exports, "ActionKeyPropertySchema", {
2240
2433
  enumerable: true,
2241
- get: function () { return chunkBUAAO3AY_cjs.ActionKeyPropertySchema; }
2434
+ get: function () { return chunkEOGYMKVF_cjs.ActionKeyPropertySchema; }
2242
2435
  });
2243
2436
  Object.defineProperty(exports, "ActionPropertySchema", {
2244
2437
  enumerable: true,
2245
- get: function () { return chunkBUAAO3AY_cjs.ActionPropertySchema; }
2438
+ get: function () { return chunkEOGYMKVF_cjs.ActionPropertySchema; }
2246
2439
  });
2247
2440
  Object.defineProperty(exports, "ActionTimeoutMillisecondsPropertySchema", {
2248
2441
  enumerable: true,
2249
- get: function () { return chunkBUAAO3AY_cjs.ActionTimeoutMillisecondsPropertySchema; }
2442
+ get: function () { return chunkEOGYMKVF_cjs.ActionTimeoutMillisecondsPropertySchema; }
2250
2443
  });
2251
2444
  Object.defineProperty(exports, "ActionTimeoutSecondsPropertySchema", {
2252
2445
  enumerable: true,
2253
- get: function () { return chunkBUAAO3AY_cjs.ActionTimeoutSecondsPropertySchema; }
2446
+ get: function () { return chunkEOGYMKVF_cjs.ActionTimeoutSecondsPropertySchema; }
2254
2447
  });
2255
2448
  Object.defineProperty(exports, "ActionTypePropertySchema", {
2256
2449
  enumerable: true,
2257
- get: function () { return chunkBUAAO3AY_cjs.ActionTypePropertySchema; }
2450
+ get: function () { return chunkEOGYMKVF_cjs.ActionTypePropertySchema; }
2258
2451
  });
2259
2452
  Object.defineProperty(exports, "AppKeyPropertySchema", {
2260
2453
  enumerable: true,
2261
- get: function () { return chunkBUAAO3AY_cjs.AppKeyPropertySchema; }
2454
+ get: function () { return chunkEOGYMKVF_cjs.AppKeyPropertySchema; }
2262
2455
  });
2263
2456
  Object.defineProperty(exports, "AppPropertySchema", {
2264
2457
  enumerable: true,
2265
- get: function () { return chunkBUAAO3AY_cjs.AppPropertySchema; }
2458
+ get: function () { return chunkEOGYMKVF_cjs.AppPropertySchema; }
2266
2459
  });
2267
2460
  Object.defineProperty(exports, "AppsPropertySchema", {
2268
2461
  enumerable: true,
2269
- get: function () { return chunkBUAAO3AY_cjs.AppsPropertySchema; }
2462
+ get: function () { return chunkEOGYMKVF_cjs.AppsPropertySchema; }
2270
2463
  });
2271
2464
  Object.defineProperty(exports, "AuthMechanism", {
2272
2465
  enumerable: true,
2273
- get: function () { return chunkBUAAO3AY_cjs.AuthMechanism; }
2466
+ get: function () { return chunkEOGYMKVF_cjs.AuthMechanism; }
2274
2467
  });
2275
2468
  Object.defineProperty(exports, "AuthenticationIdPropertySchema", {
2276
2469
  enumerable: true,
2277
- get: function () { return chunkBUAAO3AY_cjs.AuthenticationIdPropertySchema; }
2470
+ get: function () { return chunkEOGYMKVF_cjs.AuthenticationIdPropertySchema; }
2278
2471
  });
2279
2472
  Object.defineProperty(exports, "BaseSdkOptionsSchema", {
2280
2473
  enumerable: true,
2281
- get: function () { return chunkBUAAO3AY_cjs.BaseSdkOptionsSchema; }
2474
+ get: function () { return chunkEOGYMKVF_cjs.BaseSdkOptionsSchema; }
2282
2475
  });
2283
2476
  Object.defineProperty(exports, "CONNECTIONS_ID", {
2284
2477
  enumerable: true,
2285
- get: function () { return chunkBUAAO3AY_cjs.CONNECTIONS_ID; }
2478
+ get: function () { return chunkEOGYMKVF_cjs.CONNECTIONS_ID; }
2286
2479
  });
2287
2480
  Object.defineProperty(exports, "CONTEXT", {
2288
2481
  enumerable: true,
2289
- get: function () { return chunkBUAAO3AY_cjs.CONTEXT; }
2482
+ get: function () { return chunkEOGYMKVF_cjs.CONTEXT; }
2290
2483
  });
2291
2484
  Object.defineProperty(exports, "CONTEXT_CACHE_MAX_SIZE", {
2292
2485
  enumerable: true,
2293
- get: function () { return chunkBUAAO3AY_cjs.CONTEXT_CACHE_MAX_SIZE; }
2486
+ get: function () { return chunkEOGYMKVF_cjs.CONTEXT_CACHE_MAX_SIZE; }
2294
2487
  });
2295
2488
  Object.defineProperty(exports, "CONTEXT_CACHE_TTL_MILLISECONDS", {
2296
2489
  enumerable: true,
2297
- get: function () { return chunkBUAAO3AY_cjs.CONTEXT_CACHE_TTL_MILLISECONDS; }
2490
+ get: function () { return chunkEOGYMKVF_cjs.CONTEXT_CACHE_TTL_MILLISECONDS; }
2298
2491
  });
2299
2492
  Object.defineProperty(exports, "CORE_ERROR_SYMBOL", {
2300
2493
  enumerable: true,
2301
- get: function () { return chunkBUAAO3AY_cjs.CORE_ERROR_SYMBOL; }
2494
+ get: function () { return chunkEOGYMKVF_cjs.CORE_ERROR_SYMBOL; }
2302
2495
  });
2303
2496
  Object.defineProperty(exports, "CORE_OPTIONS_ID", {
2304
2497
  enumerable: true,
2305
- get: function () { return chunkBUAAO3AY_cjs.CORE_OPTIONS_ID; }
2498
+ get: function () { return chunkEOGYMKVF_cjs.CORE_OPTIONS_ID; }
2306
2499
  });
2307
2500
  Object.defineProperty(exports, "CORE_SIGNAL_SYMBOL", {
2308
2501
  enumerable: true,
2309
- get: function () { return chunkBUAAO3AY_cjs.CORE_SIGNAL_SYMBOL; }
2502
+ get: function () { return chunkEOGYMKVF_cjs.CORE_SIGNAL_SYMBOL; }
2310
2503
  });
2311
2504
  Object.defineProperty(exports, "ClientCredentialsObjectSchema", {
2312
2505
  enumerable: true,
2313
- get: function () { return chunkBUAAO3AY_cjs.ClientCredentialsObjectSchema; }
2506
+ get: function () { return chunkEOGYMKVF_cjs.ClientCredentialsObjectSchema; }
2314
2507
  });
2315
2508
  Object.defineProperty(exports, "ConnectionEntrySchema", {
2316
2509
  enumerable: true,
2317
- get: function () { return chunkBUAAO3AY_cjs.ConnectionEntrySchema; }
2510
+ get: function () { return chunkEOGYMKVF_cjs.ConnectionEntrySchema; }
2318
2511
  });
2319
2512
  Object.defineProperty(exports, "ConnectionIdPropertySchema", {
2320
2513
  enumerable: true,
2321
- get: function () { return chunkBUAAO3AY_cjs.ConnectionIdPropertySchema; }
2514
+ get: function () { return chunkEOGYMKVF_cjs.ConnectionIdPropertySchema; }
2322
2515
  });
2323
2516
  Object.defineProperty(exports, "ConnectionPropertySchema", {
2324
2517
  enumerable: true,
2325
- get: function () { return chunkBUAAO3AY_cjs.ConnectionPropertySchema; }
2518
+ get: function () { return chunkEOGYMKVF_cjs.ConnectionPropertySchema; }
2326
2519
  });
2327
2520
  Object.defineProperty(exports, "ConnectionsMapSchema", {
2328
2521
  enumerable: true,
2329
- get: function () { return chunkBUAAO3AY_cjs.ConnectionsMapSchema; }
2522
+ get: function () { return chunkEOGYMKVF_cjs.ConnectionsMapSchema; }
2330
2523
  });
2331
2524
  Object.defineProperty(exports, "ConnectionsPropertySchema", {
2332
2525
  enumerable: true,
2333
- get: function () { return chunkBUAAO3AY_cjs.ConnectionsPropertySchema; }
2526
+ get: function () { return chunkEOGYMKVF_cjs.ConnectionsPropertySchema; }
2334
2527
  });
2335
2528
  Object.defineProperty(exports, "CoreCancelledSignal", {
2336
2529
  enumerable: true,
2337
- get: function () { return chunkBUAAO3AY_cjs.CoreCancelledSignal; }
2530
+ get: function () { return chunkEOGYMKVF_cjs.CoreCancelledSignal; }
2338
2531
  });
2339
2532
  Object.defineProperty(exports, "CoreDisposeError", {
2340
2533
  enumerable: true,
2341
- get: function () { return chunkBUAAO3AY_cjs.CoreDisposeError; }
2534
+ get: function () { return chunkEOGYMKVF_cjs.CoreDisposeError; }
2342
2535
  });
2343
2536
  Object.defineProperty(exports, "CoreErrorCode", {
2344
2537
  enumerable: true,
2345
- get: function () { return chunkBUAAO3AY_cjs.CoreErrorCode; }
2538
+ get: function () { return chunkEOGYMKVF_cjs.CoreErrorCode; }
2346
2539
  });
2347
2540
  Object.defineProperty(exports, "CoreSignal", {
2348
2541
  enumerable: true,
2349
- get: function () { return chunkBUAAO3AY_cjs.CoreSignal; }
2542
+ get: function () { return chunkEOGYMKVF_cjs.CoreSignal; }
2350
2543
  });
2351
2544
  Object.defineProperty(exports, "CredentialsFunctionSchema", {
2352
2545
  enumerable: true,
2353
- get: function () { return chunkBUAAO3AY_cjs.CredentialsFunctionSchema; }
2546
+ get: function () { return chunkEOGYMKVF_cjs.CredentialsFunctionSchema; }
2354
2547
  });
2355
2548
  Object.defineProperty(exports, "CredentialsObjectSchema", {
2356
2549
  enumerable: true,
2357
- get: function () { return chunkBUAAO3AY_cjs.CredentialsObjectSchema; }
2550
+ get: function () { return chunkEOGYMKVF_cjs.CredentialsObjectSchema; }
2358
2551
  });
2359
2552
  Object.defineProperty(exports, "CredentialsSchema", {
2360
2553
  enumerable: true,
2361
- get: function () { return chunkBUAAO3AY_cjs.CredentialsSchema; }
2554
+ get: function () { return chunkEOGYMKVF_cjs.CredentialsSchema; }
2362
2555
  });
2363
2556
  Object.defineProperty(exports, "DEFAULT_ACTION_TIMEOUT_MILLISECONDS", {
2364
2557
  enumerable: true,
2365
- get: function () { return chunkBUAAO3AY_cjs.DEFAULT_ACTION_TIMEOUT_MILLISECONDS; }
2558
+ get: function () { return chunkEOGYMKVF_cjs.DEFAULT_ACTION_TIMEOUT_MILLISECONDS; }
2366
2559
  });
2367
2560
  Object.defineProperty(exports, "DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS", {
2368
2561
  enumerable: true,
2369
- get: function () { return chunkBUAAO3AY_cjs.DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS; }
2562
+ get: function () { return chunkEOGYMKVF_cjs.DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS; }
2370
2563
  });
2371
2564
  Object.defineProperty(exports, "DEFAULT_CONFIG_PATH", {
2372
2565
  enumerable: true,
2373
- get: function () { return chunkBUAAO3AY_cjs.DEFAULT_CONFIG_PATH; }
2566
+ get: function () { return chunkEOGYMKVF_cjs.DEFAULT_CONFIG_PATH; }
2374
2567
  });
2375
2568
  Object.defineProperty(exports, "DEFAULT_MAX_APPROVAL_RETRIES", {
2376
2569
  enumerable: true,
2377
- get: function () { return chunkBUAAO3AY_cjs.DEFAULT_MAX_APPROVAL_RETRIES; }
2570
+ get: function () { return chunkEOGYMKVF_cjs.DEFAULT_MAX_APPROVAL_RETRIES; }
2378
2571
  });
2379
2572
  Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
2380
2573
  enumerable: true,
2381
- get: function () { return chunkBUAAO3AY_cjs.DEFAULT_PAGE_SIZE; }
2574
+ get: function () { return chunkEOGYMKVF_cjs.DEFAULT_PAGE_SIZE; }
2382
2575
  });
2383
2576
  Object.defineProperty(exports, "DEPRECATION_NOTICE_EVENT", {
2384
2577
  enumerable: true,
2385
- get: function () { return chunkBUAAO3AY_cjs.DEPRECATION_NOTICE_EVENT; }
2578
+ get: function () { return chunkEOGYMKVF_cjs.DEPRECATION_NOTICE_EVENT; }
2386
2579
  });
2387
2580
  Object.defineProperty(exports, "DebugPropertySchema", {
2388
2581
  enumerable: true,
2389
- get: function () { return chunkBUAAO3AY_cjs.DebugPropertySchema; }
2582
+ get: function () { return chunkEOGYMKVF_cjs.DebugPropertySchema; }
2390
2583
  });
2391
2584
  Object.defineProperty(exports, "DrainTriggerInboxSchema", {
2392
2585
  enumerable: true,
2393
- get: function () { return chunkBUAAO3AY_cjs.DrainTriggerInboxSchema; }
2586
+ get: function () { return chunkEOGYMKVF_cjs.DrainTriggerInboxSchema; }
2394
2587
  });
2395
2588
  Object.defineProperty(exports, "EVENT_EMISSION_ID", {
2396
2589
  enumerable: true,
2397
- get: function () { return chunkBUAAO3AY_cjs.EVENT_EMISSION_ID; }
2590
+ get: function () { return chunkEOGYMKVF_cjs.EVENT_EMISSION_ID; }
2398
2591
  });
2399
2592
  Object.defineProperty(exports, "FieldsPropertySchema", {
2400
2593
  enumerable: true,
2401
- get: function () { return chunkBUAAO3AY_cjs.FieldsPropertySchema; }
2594
+ get: function () { return chunkEOGYMKVF_cjs.FieldsPropertySchema; }
2402
2595
  });
2403
2596
  Object.defineProperty(exports, "InputFieldPropertySchema", {
2404
2597
  enumerable: true,
2405
- get: function () { return chunkBUAAO3AY_cjs.InputFieldPropertySchema; }
2598
+ get: function () { return chunkEOGYMKVF_cjs.InputFieldPropertySchema; }
2406
2599
  });
2407
2600
  Object.defineProperty(exports, "InputsPropertySchema", {
2408
2601
  enumerable: true,
2409
- get: function () { return chunkBUAAO3AY_cjs.InputsPropertySchema; }
2602
+ get: function () { return chunkEOGYMKVF_cjs.InputsPropertySchema; }
2410
2603
  });
2411
2604
  Object.defineProperty(exports, "LeaseLimitPropertySchema", {
2412
2605
  enumerable: true,
2413
- get: function () { return chunkBUAAO3AY_cjs.LeaseLimitPropertySchema; }
2606
+ get: function () { return chunkEOGYMKVF_cjs.LeaseLimitPropertySchema; }
2414
2607
  });
2415
2608
  Object.defineProperty(exports, "LeasePropertySchema", {
2416
2609
  enumerable: true,
2417
- get: function () { return chunkBUAAO3AY_cjs.LeasePropertySchema; }
2610
+ get: function () { return chunkEOGYMKVF_cjs.LeasePropertySchema; }
2418
2611
  });
2419
2612
  Object.defineProperty(exports, "LeaseSecondsPropertySchema", {
2420
2613
  enumerable: true,
2421
- get: function () { return chunkBUAAO3AY_cjs.LeaseSecondsPropertySchema; }
2614
+ get: function () { return chunkEOGYMKVF_cjs.LeaseSecondsPropertySchema; }
2422
2615
  });
2423
2616
  Object.defineProperty(exports, "LimitPropertySchema", {
2424
2617
  enumerable: true,
2425
- get: function () { return chunkBUAAO3AY_cjs.LimitPropertySchema; }
2618
+ get: function () { return chunkEOGYMKVF_cjs.LimitPropertySchema; }
2426
2619
  });
2427
2620
  Object.defineProperty(exports, "MANIFEST_ID", {
2428
2621
  enumerable: true,
2429
- get: function () { return chunkBUAAO3AY_cjs.MANIFEST_ID; }
2622
+ get: function () { return chunkEOGYMKVF_cjs.MANIFEST_ID; }
2430
2623
  });
2431
2624
  Object.defineProperty(exports, "MAX_CONCURRENCY_LIMIT", {
2432
2625
  enumerable: true,
2433
- get: function () { return chunkBUAAO3AY_cjs.MAX_CONCURRENCY_LIMIT; }
2626
+ get: function () { return chunkEOGYMKVF_cjs.MAX_CONCURRENCY_LIMIT; }
2434
2627
  });
2435
2628
  Object.defineProperty(exports, "MAX_PAGE_LIMIT", {
2436
2629
  enumerable: true,
2437
- get: function () { return chunkBUAAO3AY_cjs.MAX_PAGE_LIMIT; }
2630
+ get: function () { return chunkEOGYMKVF_cjs.MAX_PAGE_LIMIT; }
2438
2631
  });
2439
2632
  Object.defineProperty(exports, "OffsetPropertySchema", {
2440
2633
  enumerable: true,
2441
- get: function () { return chunkBUAAO3AY_cjs.OffsetPropertySchema; }
2634
+ get: function () { return chunkEOGYMKVF_cjs.OffsetPropertySchema; }
2442
2635
  });
2443
2636
  Object.defineProperty(exports, "OutputPropertySchema", {
2444
2637
  enumerable: true,
2445
- get: function () { return chunkBUAAO3AY_cjs.OutputPropertySchema; }
2638
+ get: function () { return chunkEOGYMKVF_cjs.OutputPropertySchema; }
2446
2639
  });
2447
2640
  Object.defineProperty(exports, "ParamsPropertySchema", {
2448
2641
  enumerable: true,
2449
- get: function () { return chunkBUAAO3AY_cjs.ParamsPropertySchema; }
2642
+ get: function () { return chunkEOGYMKVF_cjs.ParamsPropertySchema; }
2450
2643
  });
2451
2644
  Object.defineProperty(exports, "PkceCredentialsObjectSchema", {
2452
2645
  enumerable: true,
2453
- get: function () { return chunkBUAAO3AY_cjs.PkceCredentialsObjectSchema; }
2646
+ get: function () { return chunkEOGYMKVF_cjs.PkceCredentialsObjectSchema; }
2454
2647
  });
2455
2648
  Object.defineProperty(exports, "RESOLVE_CREDENTIALS_ID", {
2456
2649
  enumerable: true,
2457
- get: function () { return chunkBUAAO3AY_cjs.RESOLVE_CREDENTIALS_ID; }
2650
+ get: function () { return chunkEOGYMKVF_cjs.RESOLVE_CREDENTIALS_ID; }
2458
2651
  });
2459
2652
  Object.defineProperty(exports, "RecordPropertySchema", {
2460
2653
  enumerable: true,
2461
- get: function () { return chunkBUAAO3AY_cjs.RecordPropertySchema; }
2654
+ get: function () { return chunkEOGYMKVF_cjs.RecordPropertySchema; }
2462
2655
  });
2463
2656
  Object.defineProperty(exports, "RecordsPropertySchema", {
2464
2657
  enumerable: true,
2465
- get: function () { return chunkBUAAO3AY_cjs.RecordsPropertySchema; }
2658
+ get: function () { return chunkEOGYMKVF_cjs.RecordsPropertySchema; }
2466
2659
  });
2467
2660
  Object.defineProperty(exports, "RelayFetchSchema", {
2468
2661
  enumerable: true,
2469
- get: function () { return chunkBUAAO3AY_cjs.RelayFetchSchema; }
2662
+ get: function () { return chunkEOGYMKVF_cjs.RelayFetchSchema; }
2470
2663
  });
2471
2664
  Object.defineProperty(exports, "RelayRequestSchema", {
2472
2665
  enumerable: true,
2473
- get: function () { return chunkBUAAO3AY_cjs.RelayRequestSchema; }
2666
+ get: function () { return chunkEOGYMKVF_cjs.RelayRequestSchema; }
2474
2667
  });
2475
2668
  Object.defineProperty(exports, "ResolvedCredentialsSchema", {
2476
2669
  enumerable: true,
2477
- get: function () { return chunkBUAAO3AY_cjs.ResolvedCredentialsSchema; }
2670
+ get: function () { return chunkEOGYMKVF_cjs.ResolvedCredentialsSchema; }
2478
2671
  });
2479
2672
  Object.defineProperty(exports, "SDK_OPTIONS_ID", {
2480
2673
  enumerable: true,
2481
- get: function () { return chunkBUAAO3AY_cjs.SDK_OPTIONS_ID; }
2674
+ get: function () { return chunkEOGYMKVF_cjs.SDK_OPTIONS_ID; }
2482
2675
  });
2483
2676
  Object.defineProperty(exports, "TablePropertySchema", {
2484
2677
  enumerable: true,
2485
- get: function () { return chunkBUAAO3AY_cjs.TablePropertySchema; }
2678
+ get: function () { return chunkEOGYMKVF_cjs.TablePropertySchema; }
2486
2679
  });
2487
2680
  Object.defineProperty(exports, "TablesPropertySchema", {
2488
2681
  enumerable: true,
2489
- get: function () { return chunkBUAAO3AY_cjs.TablesPropertySchema; }
2682
+ get: function () { return chunkEOGYMKVF_cjs.TablesPropertySchema; }
2490
2683
  });
2491
2684
  Object.defineProperty(exports, "TriggerInboxKeyPropertySchema", {
2492
2685
  enumerable: true,
2493
- get: function () { return chunkBUAAO3AY_cjs.TriggerInboxKeyPropertySchema; }
2686
+ get: function () { return chunkEOGYMKVF_cjs.TriggerInboxKeyPropertySchema; }
2494
2687
  });
2495
2688
  Object.defineProperty(exports, "TriggerInboxNamePropertySchema", {
2496
2689
  enumerable: true,
2497
- get: function () { return chunkBUAAO3AY_cjs.TriggerInboxNamePropertySchema; }
2690
+ get: function () { return chunkEOGYMKVF_cjs.TriggerInboxNamePropertySchema; }
2498
2691
  });
2499
2692
  Object.defineProperty(exports, "TriggerInboxPropertySchema", {
2500
2693
  enumerable: true,
2501
- get: function () { return chunkBUAAO3AY_cjs.TriggerInboxPropertySchema; }
2694
+ get: function () { return chunkEOGYMKVF_cjs.TriggerInboxPropertySchema; }
2502
2695
  });
2503
2696
  Object.defineProperty(exports, "WatchTriggerInboxSchema", {
2504
2697
  enumerable: true,
2505
- get: function () { return chunkBUAAO3AY_cjs.WatchTriggerInboxSchema; }
2698
+ get: function () { return chunkEOGYMKVF_cjs.WatchTriggerInboxSchema; }
2506
2699
  });
2507
2700
  Object.defineProperty(exports, "ZAPIER_BASE_URL", {
2508
2701
  enumerable: true,
2509
- get: function () { return chunkBUAAO3AY_cjs.ZAPIER_BASE_URL; }
2702
+ get: function () { return chunkEOGYMKVF_cjs.ZAPIER_BASE_URL; }
2510
2703
  });
2511
2704
  Object.defineProperty(exports, "ZAPIER_MAX_CONCURRENT_REQUESTS", {
2512
2705
  enumerable: true,
2513
- get: function () { return chunkBUAAO3AY_cjs.ZAPIER_MAX_CONCURRENT_REQUESTS; }
2706
+ get: function () { return chunkEOGYMKVF_cjs.ZAPIER_MAX_CONCURRENT_REQUESTS; }
2514
2707
  });
2515
2708
  Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRIES", {
2516
2709
  enumerable: true,
2517
- get: function () { return chunkBUAAO3AY_cjs.ZAPIER_MAX_NETWORK_RETRIES; }
2710
+ get: function () { return chunkEOGYMKVF_cjs.ZAPIER_MAX_NETWORK_RETRIES; }
2518
2711
  });
2519
2712
  Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS", {
2520
2713
  enumerable: true,
2521
- get: function () { return chunkBUAAO3AY_cjs.ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS; }
2714
+ get: function () { return chunkEOGYMKVF_cjs.ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS; }
2522
2715
  });
2523
2716
  Object.defineProperty(exports, "ZapierAbortDrainSignal", {
2524
2717
  enumerable: true,
2525
- get: function () { return chunkBUAAO3AY_cjs.ZapierAbortDrainSignal; }
2718
+ get: function () { return chunkEOGYMKVF_cjs.ZapierAbortDrainSignal; }
2526
2719
  });
2527
2720
  Object.defineProperty(exports, "ZapierActionError", {
2528
2721
  enumerable: true,
2529
- get: function () { return chunkBUAAO3AY_cjs.ZapierActionError; }
2722
+ get: function () { return chunkEOGYMKVF_cjs.ZapierActionError; }
2530
2723
  });
2531
2724
  Object.defineProperty(exports, "ZapierApiError", {
2532
2725
  enumerable: true,
2533
- get: function () { return chunkBUAAO3AY_cjs.ZapierApiError; }
2726
+ get: function () { return chunkEOGYMKVF_cjs.ZapierApiError; }
2534
2727
  });
2535
2728
  Object.defineProperty(exports, "ZapierAppNotFoundError", {
2536
2729
  enumerable: true,
2537
- get: function () { return chunkBUAAO3AY_cjs.ZapierAppNotFoundError; }
2730
+ get: function () { return chunkEOGYMKVF_cjs.ZapierAppNotFoundError; }
2538
2731
  });
2539
2732
  Object.defineProperty(exports, "ZapierApprovalError", {
2540
2733
  enumerable: true,
2541
- get: function () { return chunkBUAAO3AY_cjs.ZapierApprovalError; }
2734
+ get: function () { return chunkEOGYMKVF_cjs.ZapierApprovalError; }
2542
2735
  });
2543
2736
  Object.defineProperty(exports, "ZapierAuthenticationError", {
2544
2737
  enumerable: true,
2545
- get: function () { return chunkBUAAO3AY_cjs.ZapierAuthenticationError; }
2738
+ get: function () { return chunkEOGYMKVF_cjs.ZapierAuthenticationError; }
2546
2739
  });
2547
2740
  Object.defineProperty(exports, "ZapierBundleError", {
2548
2741
  enumerable: true,
2549
- get: function () { return chunkBUAAO3AY_cjs.ZapierBundleError; }
2742
+ get: function () { return chunkEOGYMKVF_cjs.ZapierBundleError; }
2550
2743
  });
2551
2744
  Object.defineProperty(exports, "ZapierConfigurationError", {
2552
2745
  enumerable: true,
2553
- get: function () { return chunkBUAAO3AY_cjs.ZapierConfigurationError; }
2746
+ get: function () { return chunkEOGYMKVF_cjs.ZapierConfigurationError; }
2554
2747
  });
2555
2748
  Object.defineProperty(exports, "ZapierConflictError", {
2556
2749
  enumerable: true,
2557
- get: function () { return chunkBUAAO3AY_cjs.ZapierConflictError; }
2750
+ get: function () { return chunkEOGYMKVF_cjs.ZapierConflictError; }
2558
2751
  });
2559
2752
  Object.defineProperty(exports, "ZapierError", {
2560
2753
  enumerable: true,
2561
- get: function () { return chunkBUAAO3AY_cjs.ZapierError; }
2754
+ get: function () { return chunkEOGYMKVF_cjs.ZapierError; }
2562
2755
  });
2563
2756
  Object.defineProperty(exports, "ZapierNotFoundError", {
2564
2757
  enumerable: true,
2565
- get: function () { return chunkBUAAO3AY_cjs.ZapierNotFoundError; }
2758
+ get: function () { return chunkEOGYMKVF_cjs.ZapierNotFoundError; }
2566
2759
  });
2567
2760
  Object.defineProperty(exports, "ZapierRateLimitError", {
2568
2761
  enumerable: true,
2569
- get: function () { return chunkBUAAO3AY_cjs.ZapierRateLimitError; }
2762
+ get: function () { return chunkEOGYMKVF_cjs.ZapierRateLimitError; }
2570
2763
  });
2571
2764
  Object.defineProperty(exports, "ZapierRelayError", {
2572
2765
  enumerable: true,
2573
- get: function () { return chunkBUAAO3AY_cjs.ZapierRelayError; }
2766
+ get: function () { return chunkEOGYMKVF_cjs.ZapierRelayError; }
2574
2767
  });
2575
2768
  Object.defineProperty(exports, "ZapierReleaseTriggerMessageSignal", {
2576
2769
  enumerable: true,
2577
- get: function () { return chunkBUAAO3AY_cjs.ZapierReleaseTriggerMessageSignal; }
2770
+ get: function () { return chunkEOGYMKVF_cjs.ZapierReleaseTriggerMessageSignal; }
2578
2771
  });
2579
2772
  Object.defineProperty(exports, "ZapierResourceNotFoundError", {
2580
2773
  enumerable: true,
2581
- get: function () { return chunkBUAAO3AY_cjs.ZapierResourceNotFoundError; }
2774
+ get: function () { return chunkEOGYMKVF_cjs.ZapierResourceNotFoundError; }
2582
2775
  });
2583
2776
  Object.defineProperty(exports, "ZapierSignal", {
2584
2777
  enumerable: true,
2585
- get: function () { return chunkBUAAO3AY_cjs.ZapierSignal; }
2778
+ get: function () { return chunkEOGYMKVF_cjs.ZapierSignal; }
2586
2779
  });
2587
2780
  Object.defineProperty(exports, "ZapierTimeoutError", {
2588
2781
  enumerable: true,
2589
- get: function () { return chunkBUAAO3AY_cjs.ZapierTimeoutError; }
2782
+ get: function () { return chunkEOGYMKVF_cjs.ZapierTimeoutError; }
2590
2783
  });
2591
2784
  Object.defineProperty(exports, "ZapierUnknownError", {
2592
2785
  enumerable: true,
2593
- get: function () { return chunkBUAAO3AY_cjs.ZapierUnknownError; }
2786
+ get: function () { return chunkEOGYMKVF_cjs.ZapierUnknownError; }
2594
2787
  });
2595
2788
  Object.defineProperty(exports, "ZapierValidationError", {
2596
2789
  enumerable: true,
2597
- get: function () { return chunkBUAAO3AY_cjs.ZapierValidationError; }
2790
+ get: function () { return chunkEOGYMKVF_cjs.ZapierValidationError; }
2598
2791
  });
2599
2792
  Object.defineProperty(exports, "actionKeyResolver", {
2600
2793
  enumerable: true,
2601
- get: function () { return chunkBUAAO3AY_cjs.actionKeyResolver; }
2794
+ get: function () { return chunkEOGYMKVF_cjs.actionKeyResolver; }
2602
2795
  });
2603
2796
  Object.defineProperty(exports, "actionTypeResolver", {
2604
2797
  enumerable: true,
2605
- get: function () { return chunkBUAAO3AY_cjs.actionTypeResolver; }
2798
+ get: function () { return chunkEOGYMKVF_cjs.actionTypeResolver; }
2606
2799
  });
2607
2800
  Object.defineProperty(exports, "addPlugin", {
2608
2801
  enumerable: true,
2609
- get: function () { return chunkBUAAO3AY_cjs.addPlugin; }
2802
+ get: function () { return chunkEOGYMKVF_cjs.addPlugin; }
2610
2803
  });
2611
2804
  Object.defineProperty(exports, "apiPlugin", {
2612
2805
  enumerable: true,
2613
- get: function () { return chunkBUAAO3AY_cjs.apiPlugin; }
2806
+ get: function () { return chunkEOGYMKVF_cjs.apiPlugin; }
2614
2807
  });
2615
2808
  Object.defineProperty(exports, "apiPluginRef", {
2616
2809
  enumerable: true,
2617
- get: function () { return chunkBUAAO3AY_cjs.apiPluginRef; }
2810
+ get: function () { return chunkEOGYMKVF_cjs.apiPluginRef; }
2618
2811
  });
2619
2812
  Object.defineProperty(exports, "appKeyResolver", {
2620
2813
  enumerable: true,
2621
- get: function () { return chunkBUAAO3AY_cjs.appKeyResolver; }
2814
+ get: function () { return chunkEOGYMKVF_cjs.appKeyResolver; }
2622
2815
  });
2623
2816
  Object.defineProperty(exports, "appsPlugin", {
2624
2817
  enumerable: true,
2625
- get: function () { return chunkBUAAO3AY_cjs.appsPlugin; }
2818
+ get: function () { return chunkEOGYMKVF_cjs.appsPlugin; }
2626
2819
  });
2627
2820
  Object.defineProperty(exports, "batch", {
2628
2821
  enumerable: true,
2629
- get: function () { return chunkBUAAO3AY_cjs.batch; }
2822
+ get: function () { return chunkEOGYMKVF_cjs.batch; }
2630
2823
  });
2631
2824
  Object.defineProperty(exports, "buildApplicationLifecycleEvent", {
2632
2825
  enumerable: true,
2633
- get: function () { return chunkBUAAO3AY_cjs.buildApplicationLifecycleEvent; }
2826
+ get: function () { return chunkEOGYMKVF_cjs.buildApplicationLifecycleEvent; }
2634
2827
  });
2635
2828
  Object.defineProperty(exports, "buildCapabilityMessage", {
2636
2829
  enumerable: true,
2637
- get: function () { return chunkBUAAO3AY_cjs.buildCapabilityMessage; }
2830
+ get: function () { return chunkEOGYMKVF_cjs.buildCapabilityMessage; }
2638
2831
  });
2639
2832
  Object.defineProperty(exports, "buildErrorEvent", {
2640
2833
  enumerable: true,
2641
- get: function () { return chunkBUAAO3AY_cjs.buildErrorEvent; }
2834
+ get: function () { return chunkEOGYMKVF_cjs.buildErrorEvent; }
2642
2835
  });
2643
2836
  Object.defineProperty(exports, "buildErrorEventWithContext", {
2644
2837
  enumerable: true,
2645
- get: function () { return chunkBUAAO3AY_cjs.buildErrorEventWithContext; }
2838
+ get: function () { return chunkEOGYMKVF_cjs.buildErrorEventWithContext; }
2646
2839
  });
2647
2840
  Object.defineProperty(exports, "buildMethodCalledEvent", {
2648
2841
  enumerable: true,
2649
- get: function () { return chunkBUAAO3AY_cjs.buildMethodCalledEvent; }
2842
+ get: function () { return chunkEOGYMKVF_cjs.buildMethodCalledEvent; }
2650
2843
  });
2651
2844
  Object.defineProperty(exports, "cleanupEventListeners", {
2652
2845
  enumerable: true,
2653
- get: function () { return chunkBUAAO3AY_cjs.cleanupEventListeners; }
2846
+ get: function () { return chunkEOGYMKVF_cjs.cleanupEventListeners; }
2654
2847
  });
2655
2848
  Object.defineProperty(exports, "clearTokenCache", {
2656
2849
  enumerable: true,
2657
- get: function () { return chunkBUAAO3AY_cjs.clearTokenCache; }
2850
+ get: function () { return chunkEOGYMKVF_cjs.clearTokenCache; }
2658
2851
  });
2659
2852
  Object.defineProperty(exports, "clientCredentialsNameResolver", {
2660
2853
  enumerable: true,
2661
- get: function () { return chunkBUAAO3AY_cjs.clientCredentialsNameResolver; }
2854
+ get: function () { return chunkEOGYMKVF_cjs.clientCredentialsNameResolver; }
2662
2855
  });
2663
2856
  Object.defineProperty(exports, "clientIdResolver", {
2664
2857
  enumerable: true,
2665
- get: function () { return chunkBUAAO3AY_cjs.clientIdResolver; }
2858
+ get: function () { return chunkEOGYMKVF_cjs.clientIdResolver; }
2666
2859
  });
2667
2860
  Object.defineProperty(exports, "composePlugins", {
2668
2861
  enumerable: true,
2669
- get: function () { return chunkBUAAO3AY_cjs.composePlugins; }
2862
+ get: function () { return chunkEOGYMKVF_cjs.composePlugins; }
2670
2863
  });
2671
2864
  Object.defineProperty(exports, "connectionIdGenericResolver", {
2672
2865
  enumerable: true,
2673
- get: function () { return chunkBUAAO3AY_cjs.connectionIdGenericResolver; }
2866
+ get: function () { return chunkEOGYMKVF_cjs.connectionIdGenericResolver; }
2674
2867
  });
2675
2868
  Object.defineProperty(exports, "connectionIdResolver", {
2676
2869
  enumerable: true,
2677
- get: function () { return chunkBUAAO3AY_cjs.connectionIdResolver; }
2870
+ get: function () { return chunkEOGYMKVF_cjs.connectionIdResolver; }
2678
2871
  });
2679
2872
  Object.defineProperty(exports, "connectionsPlugin", {
2680
2873
  enumerable: true,
2681
- get: function () { return chunkBUAAO3AY_cjs.connectionsPlugin; }
2874
+ get: function () { return chunkEOGYMKVF_cjs.connectionsPlugin; }
2682
2875
  });
2683
2876
  Object.defineProperty(exports, "connectionsPluginRef", {
2684
2877
  enumerable: true,
2685
- get: function () { return chunkBUAAO3AY_cjs.connectionsPluginRef; }
2878
+ get: function () { return chunkEOGYMKVF_cjs.connectionsPluginRef; }
2686
2879
  });
2687
2880
  Object.defineProperty(exports, "createActionRunPlugin", {
2688
2881
  enumerable: true,
2689
- get: function () { return chunkBUAAO3AY_cjs.createActionRunPlugin; }
2882
+ get: function () { return chunkEOGYMKVF_cjs.createActionRunPlugin; }
2690
2883
  });
2691
2884
  Object.defineProperty(exports, "createBaseEvent", {
2692
2885
  enumerable: true,
2693
- get: function () { return chunkBUAAO3AY_cjs.createBaseEvent; }
2886
+ get: function () { return chunkEOGYMKVF_cjs.createBaseEvent; }
2694
2887
  });
2695
2888
  Object.defineProperty(exports, "createClientCredentialsPlugin", {
2696
2889
  enumerable: true,
2697
- get: function () { return chunkBUAAO3AY_cjs.createClientCredentialsPlugin; }
2890
+ get: function () { return chunkEOGYMKVF_cjs.createClientCredentialsPlugin; }
2698
2891
  });
2699
2892
  Object.defineProperty(exports, "createController", {
2700
2893
  enumerable: true,
2701
- get: function () { return chunkBUAAO3AY_cjs.createController; }
2894
+ get: function () { return chunkEOGYMKVF_cjs.createController; }
2702
2895
  });
2703
2896
  Object.defineProperty(exports, "createCorePlugin", {
2704
2897
  enumerable: true,
2705
- get: function () { return chunkBUAAO3AY_cjs.createCorePlugin; }
2898
+ get: function () { return chunkEOGYMKVF_cjs.createCorePlugin; }
2706
2899
  });
2707
2900
  Object.defineProperty(exports, "createFunction", {
2708
2901
  enumerable: true,
2709
- get: function () { return chunkBUAAO3AY_cjs.createFunction; }
2902
+ get: function () { return chunkEOGYMKVF_cjs.createFunction; }
2710
2903
  });
2711
2904
  Object.defineProperty(exports, "createMemoryCache", {
2712
2905
  enumerable: true,
2713
- get: function () { return chunkBUAAO3AY_cjs.createMemoryCache; }
2906
+ get: function () { return chunkEOGYMKVF_cjs.createMemoryCache; }
2714
2907
  });
2715
2908
  Object.defineProperty(exports, "createPaginatedFunction", {
2716
2909
  enumerable: true,
2717
- get: function () { return chunkBUAAO3AY_cjs.createPaginatedFunction; }
2910
+ get: function () { return chunkEOGYMKVF_cjs.createPaginatedFunction; }
2718
2911
  });
2719
2912
  Object.defineProperty(exports, "createPaginatedPluginMethod", {
2720
2913
  enumerable: true,
2721
- get: function () { return chunkBUAAO3AY_cjs.createPaginatedPluginMethod; }
2914
+ get: function () { return chunkEOGYMKVF_cjs.createPaginatedPluginMethod; }
2722
2915
  });
2723
2916
  Object.defineProperty(exports, "createPluginMethod", {
2724
2917
  enumerable: true,
2725
- get: function () { return chunkBUAAO3AY_cjs.createPluginMethod; }
2918
+ get: function () { return chunkEOGYMKVF_cjs.createPluginMethod; }
2726
2919
  });
2727
2920
  Object.defineProperty(exports, "createPluginStack", {
2728
2921
  enumerable: true,
2729
- get: function () { return chunkBUAAO3AY_cjs.createPluginStack; }
2922
+ get: function () { return chunkEOGYMKVF_cjs.createPluginStack; }
2730
2923
  });
2731
2924
  Object.defineProperty(exports, "createSdk", {
2732
2925
  enumerable: true,
2733
- get: function () { return chunkBUAAO3AY_cjs.createSdk; }
2926
+ get: function () { return chunkEOGYMKVF_cjs.createSdk; }
2734
2927
  });
2735
2928
  Object.defineProperty(exports, "createTableFieldsPlugin", {
2736
2929
  enumerable: true,
2737
- get: function () { return chunkBUAAO3AY_cjs.createTableFieldsPlugin; }
2930
+ get: function () { return chunkEOGYMKVF_cjs.createTableFieldsPlugin; }
2738
2931
  });
2739
2932
  Object.defineProperty(exports, "createTablePlugin", {
2740
2933
  enumerable: true,
2741
- get: function () { return chunkBUAAO3AY_cjs.createTablePlugin; }
2934
+ get: function () { return chunkEOGYMKVF_cjs.createTablePlugin; }
2742
2935
  });
2743
2936
  Object.defineProperty(exports, "createTableRecordsPlugin", {
2744
2937
  enumerable: true,
2745
- get: function () { return chunkBUAAO3AY_cjs.createTableRecordsPlugin; }
2938
+ get: function () { return chunkEOGYMKVF_cjs.createTableRecordsPlugin; }
2746
2939
  });
2747
2940
  Object.defineProperty(exports, "createZapierApi", {
2748
2941
  enumerable: true,
2749
- get: function () { return chunkBUAAO3AY_cjs.createZapierApi; }
2942
+ get: function () { return chunkEOGYMKVF_cjs.createZapierApi; }
2750
2943
  });
2751
2944
  Object.defineProperty(exports, "createZapierSdkWithoutRegistry", {
2752
2945
  enumerable: true,
2753
- get: function () { return chunkBUAAO3AY_cjs.createZapierSdkWithoutRegistry; }
2946
+ get: function () { return chunkEOGYMKVF_cjs.createZapierSdkWithoutRegistry; }
2754
2947
  });
2755
2948
  Object.defineProperty(exports, "declareMethod", {
2756
2949
  enumerable: true,
2757
- get: function () { return chunkBUAAO3AY_cjs.declareMethod; }
2950
+ get: function () { return chunkEOGYMKVF_cjs.declareMethod; }
2758
2951
  });
2759
2952
  Object.defineProperty(exports, "declareOptionalProperty", {
2760
2953
  enumerable: true,
2761
- get: function () { return chunkBUAAO3AY_cjs.declareOptionalProperty; }
2954
+ get: function () { return chunkEOGYMKVF_cjs.declareOptionalProperty; }
2762
2955
  });
2763
2956
  Object.defineProperty(exports, "declarePlugin", {
2764
2957
  enumerable: true,
2765
- get: function () { return chunkBUAAO3AY_cjs.declarePlugin; }
2958
+ get: function () { return chunkEOGYMKVF_cjs.declarePlugin; }
2766
2959
  });
2767
2960
  Object.defineProperty(exports, "declareProperty", {
2768
2961
  enumerable: true,
2769
- get: function () { return chunkBUAAO3AY_cjs.declareProperty; }
2962
+ get: function () { return chunkEOGYMKVF_cjs.declareProperty; }
2770
2963
  });
2771
2964
  Object.defineProperty(exports, "defineFormatter", {
2772
2965
  enumerable: true,
2773
- get: function () { return chunkBUAAO3AY_cjs.defineFormatter; }
2966
+ get: function () { return chunkEOGYMKVF_cjs.defineFormatter; }
2774
2967
  });
2775
2968
  Object.defineProperty(exports, "defineLegacyMerge", {
2776
2969
  enumerable: true,
2777
- get: function () { return chunkBUAAO3AY_cjs.defineLegacyMerge; }
2970
+ get: function () { return chunkEOGYMKVF_cjs.defineLegacyMerge; }
2778
2971
  });
2779
2972
  Object.defineProperty(exports, "defineMethod", {
2780
2973
  enumerable: true,
2781
- get: function () { return chunkBUAAO3AY_cjs.defineMethod; }
2974
+ get: function () { return chunkEOGYMKVF_cjs.defineMethod; }
2782
2975
  });
2783
2976
  Object.defineProperty(exports, "defineMethodOverride", {
2784
2977
  enumerable: true,
2785
- get: function () { return chunkBUAAO3AY_cjs.defineMethodOverride; }
2978
+ get: function () { return chunkEOGYMKVF_cjs.defineMethodOverride; }
2786
2979
  });
2787
2980
  Object.defineProperty(exports, "defineOverride", {
2788
2981
  enumerable: true,
2789
- get: function () { return chunkBUAAO3AY_cjs.defineOverride; }
2982
+ get: function () { return chunkEOGYMKVF_cjs.defineOverride; }
2790
2983
  });
2791
2984
  Object.defineProperty(exports, "definePlugin", {
2792
2985
  enumerable: true,
2793
- get: function () { return chunkBUAAO3AY_cjs.definePlugin; }
2986
+ get: function () { return chunkEOGYMKVF_cjs.definePlugin; }
2794
2987
  });
2795
2988
  Object.defineProperty(exports, "defineProperty", {
2796
2989
  enumerable: true,
2797
- get: function () { return chunkBUAAO3AY_cjs.defineProperty; }
2990
+ get: function () { return chunkEOGYMKVF_cjs.defineProperty; }
2798
2991
  });
2799
2992
  Object.defineProperty(exports, "defineResolver", {
2800
2993
  enumerable: true,
2801
- get: function () { return chunkBUAAO3AY_cjs.defineResolver; }
2994
+ get: function () { return chunkEOGYMKVF_cjs.defineResolver; }
2802
2995
  });
2803
2996
  Object.defineProperty(exports, "deleteClientCredentialsPlugin", {
2804
2997
  enumerable: true,
2805
- get: function () { return chunkBUAAO3AY_cjs.deleteClientCredentialsPlugin; }
2998
+ get: function () { return chunkEOGYMKVF_cjs.deleteClientCredentialsPlugin; }
2806
2999
  });
2807
3000
  Object.defineProperty(exports, "deleteTableFieldsPlugin", {
2808
3001
  enumerable: true,
2809
- get: function () { return chunkBUAAO3AY_cjs.deleteTableFieldsPlugin; }
3002
+ get: function () { return chunkEOGYMKVF_cjs.deleteTableFieldsPlugin; }
2810
3003
  });
2811
3004
  Object.defineProperty(exports, "deleteTablePlugin", {
2812
3005
  enumerable: true,
2813
- get: function () { return chunkBUAAO3AY_cjs.deleteTablePlugin; }
3006
+ get: function () { return chunkEOGYMKVF_cjs.deleteTablePlugin; }
2814
3007
  });
2815
3008
  Object.defineProperty(exports, "deleteTableRecordsPlugin", {
2816
3009
  enumerable: true,
2817
- get: function () { return chunkBUAAO3AY_cjs.deleteTableRecordsPlugin; }
3010
+ get: function () { return chunkEOGYMKVF_cjs.deleteTableRecordsPlugin; }
2818
3011
  });
2819
3012
  Object.defineProperty(exports, "disposeSdk", {
2820
3013
  enumerable: true,
2821
- get: function () { return chunkBUAAO3AY_cjs.disposeSdk; }
3014
+ get: function () { return chunkEOGYMKVF_cjs.disposeSdk; }
2822
3015
  });
2823
3016
  Object.defineProperty(exports, "durableRunIdResolver", {
2824
3017
  enumerable: true,
2825
- get: function () { return chunkBUAAO3AY_cjs.durableRunIdResolver; }
3018
+ get: function () { return chunkEOGYMKVF_cjs.durableRunIdResolver; }
2826
3019
  });
2827
3020
  Object.defineProperty(exports, "eventEmissionHookPlugin", {
2828
3021
  enumerable: true,
2829
- get: function () { return chunkBUAAO3AY_cjs.eventEmissionHookPlugin; }
3022
+ get: function () { return chunkEOGYMKVF_cjs.eventEmissionHookPlugin; }
2830
3023
  });
2831
3024
  Object.defineProperty(exports, "eventEmissionPlugin", {
2832
3025
  enumerable: true,
2833
- get: function () { return chunkBUAAO3AY_cjs.eventEmissionPlugin; }
3026
+ get: function () { return chunkEOGYMKVF_cjs.eventEmissionPlugin; }
2834
3027
  });
2835
3028
  Object.defineProperty(exports, "eventEmissionPluginRef", {
2836
3029
  enumerable: true,
2837
- get: function () { return chunkBUAAO3AY_cjs.eventEmissionPluginRef; }
3030
+ get: function () { return chunkEOGYMKVF_cjs.eventEmissionPluginRef; }
2838
3031
  });
2839
3032
  Object.defineProperty(exports, "fetchPlugin", {
2840
3033
  enumerable: true,
2841
- get: function () { return chunkBUAAO3AY_cjs.fetchPlugin; }
3034
+ get: function () { return chunkEOGYMKVF_cjs.fetchPlugin; }
2842
3035
  });
2843
3036
  Object.defineProperty(exports, "findFirstConnectionPlugin", {
2844
3037
  enumerable: true,
2845
- get: function () { return chunkBUAAO3AY_cjs.findFirstConnectionPlugin; }
3038
+ get: function () { return chunkEOGYMKVF_cjs.findFirstConnectionPlugin; }
2846
3039
  });
2847
3040
  Object.defineProperty(exports, "findManifestEntry", {
2848
3041
  enumerable: true,
2849
- get: function () { return chunkBUAAO3AY_cjs.findManifestEntry; }
3042
+ get: function () { return chunkEOGYMKVF_cjs.findManifestEntry; }
2850
3043
  });
2851
3044
  Object.defineProperty(exports, "findUniqueConnectionPlugin", {
2852
3045
  enumerable: true,
2853
- get: function () { return chunkBUAAO3AY_cjs.findUniqueConnectionPlugin; }
3046
+ get: function () { return chunkEOGYMKVF_cjs.findUniqueConnectionPlugin; }
2854
3047
  });
2855
3048
  Object.defineProperty(exports, "formatErrorMessage", {
2856
3049
  enumerable: true,
2857
- get: function () { return chunkBUAAO3AY_cjs.formatErrorMessage; }
3050
+ get: function () { return chunkEOGYMKVF_cjs.formatErrorMessage; }
2858
3051
  });
2859
3052
  Object.defineProperty(exports, "fromFunctionPlugin", {
2860
3053
  enumerable: true,
2861
- get: function () { return chunkBUAAO3AY_cjs.fromFunctionPlugin; }
3054
+ get: function () { return chunkEOGYMKVF_cjs.fromFunctionPlugin; }
2862
3055
  });
2863
3056
  Object.defineProperty(exports, "generateEventId", {
2864
3057
  enumerable: true,
2865
- get: function () { return chunkBUAAO3AY_cjs.generateEventId; }
3058
+ get: function () { return chunkEOGYMKVF_cjs.generateEventId; }
2866
3059
  });
2867
3060
  Object.defineProperty(exports, "getActionInputFieldsSchemaPlugin", {
2868
3061
  enumerable: true,
2869
- get: function () { return chunkBUAAO3AY_cjs.getActionInputFieldsSchemaPlugin; }
3062
+ get: function () { return chunkEOGYMKVF_cjs.getActionInputFieldsSchemaPlugin; }
2870
3063
  });
2871
3064
  Object.defineProperty(exports, "getActionPlugin", {
2872
3065
  enumerable: true,
2873
- get: function () { return chunkBUAAO3AY_cjs.getActionPlugin; }
3066
+ get: function () { return chunkEOGYMKVF_cjs.getActionPlugin; }
2874
3067
  });
2875
3068
  Object.defineProperty(exports, "getActionRunPlugin", {
2876
3069
  enumerable: true,
2877
- get: function () { return chunkBUAAO3AY_cjs.getActionRunPlugin; }
3070
+ get: function () { return chunkEOGYMKVF_cjs.getActionRunPlugin; }
2878
3071
  });
2879
3072
  Object.defineProperty(exports, "getAgent", {
2880
3073
  enumerable: true,
2881
- get: function () { return chunkBUAAO3AY_cjs.getAgent; }
3074
+ get: function () { return chunkEOGYMKVF_cjs.getAgent; }
2882
3075
  });
2883
3076
  Object.defineProperty(exports, "getAppPlugin", {
2884
3077
  enumerable: true,
2885
- get: function () { return chunkBUAAO3AY_cjs.getAppPlugin; }
3078
+ get: function () { return chunkEOGYMKVF_cjs.getAppPlugin; }
2886
3079
  });
2887
3080
  Object.defineProperty(exports, "getBaseUrlFromCredentials", {
2888
3081
  enumerable: true,
2889
- get: function () { return chunkBUAAO3AY_cjs.getBaseUrlFromCredentials; }
3082
+ get: function () { return chunkEOGYMKVF_cjs.getBaseUrlFromCredentials; }
2890
3083
  });
2891
3084
  Object.defineProperty(exports, "getCallerContext", {
2892
3085
  enumerable: true,
2893
- get: function () { return chunkBUAAO3AY_cjs.getCallerContext; }
3086
+ get: function () { return chunkEOGYMKVF_cjs.getCallerContext; }
2894
3087
  });
2895
3088
  Object.defineProperty(exports, "getCiPlatform", {
2896
3089
  enumerable: true,
2897
- get: function () { return chunkBUAAO3AY_cjs.getCiPlatform; }
3090
+ get: function () { return chunkEOGYMKVF_cjs.getCiPlatform; }
2898
3091
  });
2899
3092
  Object.defineProperty(exports, "getClientIdFromCredentials", {
2900
3093
  enumerable: true,
2901
- get: function () { return chunkBUAAO3AY_cjs.getClientIdFromCredentials; }
3094
+ get: function () { return chunkEOGYMKVF_cjs.getClientIdFromCredentials; }
2902
3095
  });
2903
3096
  Object.defineProperty(exports, "getConnectionPlugin", {
2904
3097
  enumerable: true,
2905
- get: function () { return chunkBUAAO3AY_cjs.getConnectionPlugin; }
3098
+ get: function () { return chunkEOGYMKVF_cjs.getConnectionPlugin; }
2906
3099
  });
2907
3100
  Object.defineProperty(exports, "getContext", {
2908
3101
  enumerable: true,
2909
- get: function () { return chunkBUAAO3AY_cjs.getContext; }
3102
+ get: function () { return chunkEOGYMKVF_cjs.getContext; }
2910
3103
  });
2911
3104
  Object.defineProperty(exports, "getCoreErrorCause", {
2912
3105
  enumerable: true,
2913
- get: function () { return chunkBUAAO3AY_cjs.getCoreErrorCause; }
3106
+ get: function () { return chunkEOGYMKVF_cjs.getCoreErrorCause; }
2914
3107
  });
2915
3108
  Object.defineProperty(exports, "getCoreErrorCode", {
2916
3109
  enumerable: true,
2917
- get: function () { return chunkBUAAO3AY_cjs.getCoreErrorCode; }
3110
+ get: function () { return chunkEOGYMKVF_cjs.getCoreErrorCode; }
2918
3111
  });
2919
3112
  Object.defineProperty(exports, "getCpuTime", {
2920
3113
  enumerable: true,
2921
- get: function () { return chunkBUAAO3AY_cjs.getCpuTime; }
3114
+ get: function () { return chunkEOGYMKVF_cjs.getCpuTime; }
2922
3115
  });
2923
3116
  Object.defineProperty(exports, "getCurrentTimestamp", {
2924
3117
  enumerable: true,
2925
- get: function () { return chunkBUAAO3AY_cjs.getCurrentTimestamp; }
3118
+ get: function () { return chunkEOGYMKVF_cjs.getCurrentTimestamp; }
2926
3119
  });
2927
3120
  Object.defineProperty(exports, "getMemoryUsage", {
2928
3121
  enumerable: true,
2929
- get: function () { return chunkBUAAO3AY_cjs.getMemoryUsage; }
3122
+ get: function () { return chunkEOGYMKVF_cjs.getMemoryUsage; }
2930
3123
  });
2931
3124
  Object.defineProperty(exports, "getNegatable", {
2932
3125
  enumerable: true,
2933
- get: function () { return chunkBUAAO3AY_cjs.getNegatable; }
3126
+ get: function () { return chunkEOGYMKVF_cjs.getNegatable; }
2934
3127
  });
2935
3128
  Object.defineProperty(exports, "getOrCreateApiClient", {
2936
3129
  enumerable: true,
2937
- get: function () { return chunkBUAAO3AY_cjs.getOrCreateApiClient; }
3130
+ get: function () { return chunkEOGYMKVF_cjs.getOrCreateApiClient; }
2938
3131
  });
2939
3132
  Object.defineProperty(exports, "getOsInfo", {
2940
3133
  enumerable: true,
2941
- get: function () { return chunkBUAAO3AY_cjs.getOsInfo; }
3134
+ get: function () { return chunkEOGYMKVF_cjs.getOsInfo; }
2942
3135
  });
2943
3136
  Object.defineProperty(exports, "getPlatformVersions", {
2944
3137
  enumerable: true,
2945
- get: function () { return chunkBUAAO3AY_cjs.getPlatformVersions; }
3138
+ get: function () { return chunkEOGYMKVF_cjs.getPlatformVersions; }
2946
3139
  });
2947
3140
  Object.defineProperty(exports, "getPreferredManifestEntryKey", {
2948
3141
  enumerable: true,
2949
- get: function () { return chunkBUAAO3AY_cjs.getPreferredManifestEntryKey; }
3142
+ get: function () { return chunkEOGYMKVF_cjs.getPreferredManifestEntryKey; }
2950
3143
  });
2951
3144
  Object.defineProperty(exports, "getProfilePlugin", {
2952
3145
  enumerable: true,
2953
- get: function () { return chunkBUAAO3AY_cjs.getProfilePlugin; }
3146
+ get: function () { return chunkEOGYMKVF_cjs.getProfilePlugin; }
2954
3147
  });
2955
3148
  Object.defineProperty(exports, "getRegistryPlugin", {
2956
3149
  enumerable: true,
2957
- get: function () { return chunkBUAAO3AY_cjs.getRegistryPlugin; }
3150
+ get: function () { return chunkEOGYMKVF_cjs.getRegistryPlugin; }
2958
3151
  });
2959
3152
  Object.defineProperty(exports, "getReleaseId", {
2960
3153
  enumerable: true,
2961
- get: function () { return chunkBUAAO3AY_cjs.getReleaseId; }
3154
+ get: function () { return chunkEOGYMKVF_cjs.getReleaseId; }
2962
3155
  });
2963
3156
  Object.defineProperty(exports, "getTablePlugin", {
2964
3157
  enumerable: true,
2965
- get: function () { return chunkBUAAO3AY_cjs.getTablePlugin; }
3158
+ get: function () { return chunkEOGYMKVF_cjs.getTablePlugin; }
2966
3159
  });
2967
3160
  Object.defineProperty(exports, "getTableRecordPlugin", {
2968
3161
  enumerable: true,
2969
- get: function () { return chunkBUAAO3AY_cjs.getTableRecordPlugin; }
3162
+ get: function () { return chunkEOGYMKVF_cjs.getTableRecordPlugin; }
2970
3163
  });
2971
3164
  Object.defineProperty(exports, "getTokenFromCliLogin", {
2972
3165
  enumerable: true,
2973
- get: function () { return chunkBUAAO3AY_cjs.getTokenFromCliLogin; }
3166
+ get: function () { return chunkEOGYMKVF_cjs.getTokenFromCliLogin; }
2974
3167
  });
2975
3168
  Object.defineProperty(exports, "getTtyContext", {
2976
3169
  enumerable: true,
2977
- get: function () { return chunkBUAAO3AY_cjs.getTtyContext; }
3170
+ get: function () { return chunkEOGYMKVF_cjs.getTtyContext; }
2978
3171
  });
2979
3172
  Object.defineProperty(exports, "getZapierApprovalMode", {
2980
3173
  enumerable: true,
2981
- get: function () { return chunkBUAAO3AY_cjs.getZapierApprovalMode; }
3174
+ get: function () { return chunkEOGYMKVF_cjs.getZapierApprovalMode; }
2982
3175
  });
2983
3176
  Object.defineProperty(exports, "getZapierDefaultApprovalMode", {
2984
3177
  enumerable: true,
2985
- get: function () { return chunkBUAAO3AY_cjs.getZapierDefaultApprovalMode; }
3178
+ get: function () { return chunkEOGYMKVF_cjs.getZapierDefaultApprovalMode; }
2986
3179
  });
2987
3180
  Object.defineProperty(exports, "getZapierOpenAutoModeApprovalsInBrowser", {
2988
3181
  enumerable: true,
2989
- get: function () { return chunkBUAAO3AY_cjs.getZapierOpenAutoModeApprovalsInBrowser; }
3182
+ get: function () { return chunkEOGYMKVF_cjs.getZapierOpenAutoModeApprovalsInBrowser; }
2990
3183
  });
2991
3184
  Object.defineProperty(exports, "getZapierSdkService", {
2992
3185
  enumerable: true,
2993
- get: function () { return chunkBUAAO3AY_cjs.getZapierSdkService; }
3186
+ get: function () { return chunkEOGYMKVF_cjs.getZapierSdkService; }
2994
3187
  });
2995
3188
  Object.defineProperty(exports, "injectCliLogin", {
2996
3189
  enumerable: true,
2997
- get: function () { return chunkBUAAO3AY_cjs.injectCliLogin; }
3190
+ get: function () { return chunkEOGYMKVF_cjs.injectCliLogin; }
2998
3191
  });
2999
3192
  Object.defineProperty(exports, "inputFieldKeyResolver", {
3000
3193
  enumerable: true,
3001
- get: function () { return chunkBUAAO3AY_cjs.inputFieldKeyResolver; }
3194
+ get: function () { return chunkEOGYMKVF_cjs.inputFieldKeyResolver; }
3002
3195
  });
3003
3196
  Object.defineProperty(exports, "inputsAllOptionalResolver", {
3004
3197
  enumerable: true,
3005
- get: function () { return chunkBUAAO3AY_cjs.inputsAllOptionalResolver; }
3198
+ get: function () { return chunkEOGYMKVF_cjs.inputsAllOptionalResolver; }
3006
3199
  });
3007
3200
  Object.defineProperty(exports, "inputsResolver", {
3008
3201
  enumerable: true,
3009
- get: function () { return chunkBUAAO3AY_cjs.inputsResolver; }
3202
+ get: function () { return chunkEOGYMKVF_cjs.inputsResolver; }
3010
3203
  });
3011
3204
  Object.defineProperty(exports, "invalidateCachedToken", {
3012
3205
  enumerable: true,
3013
- get: function () { return chunkBUAAO3AY_cjs.invalidateCachedToken; }
3206
+ get: function () { return chunkEOGYMKVF_cjs.invalidateCachedToken; }
3014
3207
  });
3015
3208
  Object.defineProperty(exports, "invalidateCredentialsToken", {
3016
3209
  enumerable: true,
3017
- get: function () { return chunkBUAAO3AY_cjs.invalidateCredentialsToken; }
3210
+ get: function () { return chunkEOGYMKVF_cjs.invalidateCredentialsToken; }
3018
3211
  });
3019
3212
  Object.defineProperty(exports, "isCi", {
3020
3213
  enumerable: true,
3021
- get: function () { return chunkBUAAO3AY_cjs.isCi; }
3214
+ get: function () { return chunkEOGYMKVF_cjs.isCi; }
3022
3215
  });
3023
3216
  Object.defineProperty(exports, "isCliLoginAvailable", {
3024
3217
  enumerable: true,
3025
- get: function () { return chunkBUAAO3AY_cjs.isCliLoginAvailable; }
3218
+ get: function () { return chunkEOGYMKVF_cjs.isCliLoginAvailable; }
3026
3219
  });
3027
3220
  Object.defineProperty(exports, "isClientCredentials", {
3028
3221
  enumerable: true,
3029
- get: function () { return chunkBUAAO3AY_cjs.isClientCredentials; }
3222
+ get: function () { return chunkEOGYMKVF_cjs.isClientCredentials; }
3030
3223
  });
3031
3224
  Object.defineProperty(exports, "isCoreCancelledSignal", {
3032
3225
  enumerable: true,
3033
- get: function () { return chunkBUAAO3AY_cjs.isCoreCancelledSignal; }
3226
+ get: function () { return chunkEOGYMKVF_cjs.isCoreCancelledSignal; }
3034
3227
  });
3035
3228
  Object.defineProperty(exports, "isCoreError", {
3036
3229
  enumerable: true,
3037
- get: function () { return chunkBUAAO3AY_cjs.isCoreError; }
3230
+ get: function () { return chunkEOGYMKVF_cjs.isCoreError; }
3038
3231
  });
3039
3232
  Object.defineProperty(exports, "isCoreSignal", {
3040
3233
  enumerable: true,
3041
- get: function () { return chunkBUAAO3AY_cjs.isCoreSignal; }
3234
+ get: function () { return chunkEOGYMKVF_cjs.isCoreSignal; }
3042
3235
  });
3043
3236
  Object.defineProperty(exports, "isCredentialsFunction", {
3044
3237
  enumerable: true,
3045
- get: function () { return chunkBUAAO3AY_cjs.isCredentialsFunction; }
3238
+ get: function () { return chunkEOGYMKVF_cjs.isCredentialsFunction; }
3046
3239
  });
3047
3240
  Object.defineProperty(exports, "isCredentialsObject", {
3048
3241
  enumerable: true,
3049
- get: function () { return chunkBUAAO3AY_cjs.isCredentialsObject; }
3242
+ get: function () { return chunkEOGYMKVF_cjs.isCredentialsObject; }
3050
3243
  });
3051
3244
  Object.defineProperty(exports, "isPermanentHttpError", {
3052
3245
  enumerable: true,
3053
- get: function () { return chunkBUAAO3AY_cjs.isPermanentHttpError; }
3246
+ get: function () { return chunkEOGYMKVF_cjs.isPermanentHttpError; }
3054
3247
  });
3055
3248
  Object.defineProperty(exports, "isPkceCredentials", {
3056
3249
  enumerable: true,
3057
- get: function () { return chunkBUAAO3AY_cjs.isPkceCredentials; }
3250
+ get: function () { return chunkEOGYMKVF_cjs.isPkceCredentials; }
3058
3251
  });
3059
3252
  Object.defineProperty(exports, "isPositional", {
3060
3253
  enumerable: true,
3061
- get: function () { return chunkBUAAO3AY_cjs.isPositional; }
3254
+ get: function () { return chunkEOGYMKVF_cjs.isPositional; }
3062
3255
  });
3063
3256
  Object.defineProperty(exports, "isZapierAbortDrainSignal", {
3064
3257
  enumerable: true,
3065
- get: function () { return chunkBUAAO3AY_cjs.isZapierAbortDrainSignal; }
3258
+ get: function () { return chunkEOGYMKVF_cjs.isZapierAbortDrainSignal; }
3066
3259
  });
3067
3260
  Object.defineProperty(exports, "isZapierActionError", {
3068
3261
  enumerable: true,
3069
- get: function () { return chunkBUAAO3AY_cjs.isZapierActionError; }
3262
+ get: function () { return chunkEOGYMKVF_cjs.isZapierActionError; }
3070
3263
  });
3071
3264
  Object.defineProperty(exports, "isZapierAppNotFoundError", {
3072
3265
  enumerable: true,
3073
- get: function () { return chunkBUAAO3AY_cjs.isZapierAppNotFoundError; }
3266
+ get: function () { return chunkEOGYMKVF_cjs.isZapierAppNotFoundError; }
3074
3267
  });
3075
3268
  Object.defineProperty(exports, "isZapierApprovalError", {
3076
3269
  enumerable: true,
3077
- get: function () { return chunkBUAAO3AY_cjs.isZapierApprovalError; }
3270
+ get: function () { return chunkEOGYMKVF_cjs.isZapierApprovalError; }
3078
3271
  });
3079
3272
  Object.defineProperty(exports, "isZapierAuthenticationError", {
3080
3273
  enumerable: true,
3081
- get: function () { return chunkBUAAO3AY_cjs.isZapierAuthenticationError; }
3274
+ get: function () { return chunkEOGYMKVF_cjs.isZapierAuthenticationError; }
3082
3275
  });
3083
3276
  Object.defineProperty(exports, "isZapierBundleError", {
3084
3277
  enumerable: true,
3085
- get: function () { return chunkBUAAO3AY_cjs.isZapierBundleError; }
3278
+ get: function () { return chunkEOGYMKVF_cjs.isZapierBundleError; }
3086
3279
  });
3087
3280
  Object.defineProperty(exports, "isZapierConflictError", {
3088
3281
  enumerable: true,
3089
- get: function () { return chunkBUAAO3AY_cjs.isZapierConflictError; }
3282
+ get: function () { return chunkEOGYMKVF_cjs.isZapierConflictError; }
3090
3283
  });
3091
3284
  Object.defineProperty(exports, "isZapierError", {
3092
3285
  enumerable: true,
3093
- get: function () { return chunkBUAAO3AY_cjs.isZapierError; }
3286
+ get: function () { return chunkEOGYMKVF_cjs.isZapierError; }
3094
3287
  });
3095
3288
  Object.defineProperty(exports, "isZapierNotFoundError", {
3096
3289
  enumerable: true,
3097
- get: function () { return chunkBUAAO3AY_cjs.isZapierNotFoundError; }
3290
+ get: function () { return chunkEOGYMKVF_cjs.isZapierNotFoundError; }
3098
3291
  });
3099
3292
  Object.defineProperty(exports, "isZapierRateLimitError", {
3100
3293
  enumerable: true,
3101
- get: function () { return chunkBUAAO3AY_cjs.isZapierRateLimitError; }
3294
+ get: function () { return chunkEOGYMKVF_cjs.isZapierRateLimitError; }
3102
3295
  });
3103
3296
  Object.defineProperty(exports, "isZapierReleaseTriggerMessageSignal", {
3104
3297
  enumerable: true,
3105
- get: function () { return chunkBUAAO3AY_cjs.isZapierReleaseTriggerMessageSignal; }
3298
+ get: function () { return chunkEOGYMKVF_cjs.isZapierReleaseTriggerMessageSignal; }
3106
3299
  });
3107
3300
  Object.defineProperty(exports, "isZapierResourceNotFoundError", {
3108
3301
  enumerable: true,
3109
- get: function () { return chunkBUAAO3AY_cjs.isZapierResourceNotFoundError; }
3302
+ get: function () { return chunkEOGYMKVF_cjs.isZapierResourceNotFoundError; }
3110
3303
  });
3111
3304
  Object.defineProperty(exports, "isZapierSignal", {
3112
3305
  enumerable: true,
3113
- get: function () { return chunkBUAAO3AY_cjs.isZapierSignal; }
3306
+ get: function () { return chunkEOGYMKVF_cjs.isZapierSignal; }
3114
3307
  });
3115
3308
  Object.defineProperty(exports, "isZapierTimeoutError", {
3116
3309
  enumerable: true,
3117
- get: function () { return chunkBUAAO3AY_cjs.isZapierTimeoutError; }
3310
+ get: function () { return chunkEOGYMKVF_cjs.isZapierTimeoutError; }
3118
3311
  });
3119
3312
  Object.defineProperty(exports, "isZapierValidationError", {
3120
3313
  enumerable: true,
3121
- get: function () { return chunkBUAAO3AY_cjs.isZapierValidationError; }
3314
+ get: function () { return chunkEOGYMKVF_cjs.isZapierValidationError; }
3122
3315
  });
3123
3316
  Object.defineProperty(exports, "listActionInputFieldChoicesPlugin", {
3124
3317
  enumerable: true,
3125
- get: function () { return chunkBUAAO3AY_cjs.listActionInputFieldChoicesPlugin; }
3318
+ get: function () { return chunkEOGYMKVF_cjs.listActionInputFieldChoicesPlugin; }
3126
3319
  });
3127
3320
  Object.defineProperty(exports, "listActionInputFieldsPlugin", {
3128
3321
  enumerable: true,
3129
- get: function () { return chunkBUAAO3AY_cjs.listActionInputFieldsPlugin; }
3322
+ get: function () { return chunkEOGYMKVF_cjs.listActionInputFieldsPlugin; }
3130
3323
  });
3131
3324
  Object.defineProperty(exports, "listActionsPlugin", {
3132
3325
  enumerable: true,
3133
- get: function () { return chunkBUAAO3AY_cjs.listActionsPlugin; }
3326
+ get: function () { return chunkEOGYMKVF_cjs.listActionsPlugin; }
3134
3327
  });
3135
3328
  Object.defineProperty(exports, "listAppsPlugin", {
3136
3329
  enumerable: true,
3137
- get: function () { return chunkBUAAO3AY_cjs.listAppsPlugin; }
3330
+ get: function () { return chunkEOGYMKVF_cjs.listAppsPlugin; }
3138
3331
  });
3139
3332
  Object.defineProperty(exports, "listClientCredentialsPlugin", {
3140
3333
  enumerable: true,
3141
- get: function () { return chunkBUAAO3AY_cjs.listClientCredentialsPlugin; }
3334
+ get: function () { return chunkEOGYMKVF_cjs.listClientCredentialsPlugin; }
3142
3335
  });
3143
3336
  Object.defineProperty(exports, "listConnectionsPlugin", {
3144
3337
  enumerable: true,
3145
- get: function () { return chunkBUAAO3AY_cjs.listConnectionsPlugin; }
3338
+ get: function () { return chunkEOGYMKVF_cjs.listConnectionsPlugin; }
3146
3339
  });
3147
3340
  Object.defineProperty(exports, "listTableFieldsPlugin", {
3148
3341
  enumerable: true,
3149
- get: function () { return chunkBUAAO3AY_cjs.listTableFieldsPlugin; }
3342
+ get: function () { return chunkEOGYMKVF_cjs.listTableFieldsPlugin; }
3150
3343
  });
3151
3344
  Object.defineProperty(exports, "listTableRecordsPlugin", {
3152
3345
  enumerable: true,
3153
- get: function () { return chunkBUAAO3AY_cjs.listTableRecordsPlugin; }
3346
+ get: function () { return chunkEOGYMKVF_cjs.listTableRecordsPlugin; }
3154
3347
  });
3155
3348
  Object.defineProperty(exports, "listTablesPlugin", {
3156
3349
  enumerable: true,
3157
- get: function () { return chunkBUAAO3AY_cjs.listTablesPlugin; }
3350
+ get: function () { return chunkEOGYMKVF_cjs.listTablesPlugin; }
3158
3351
  });
3159
3352
  Object.defineProperty(exports, "logDeprecation", {
3160
3353
  enumerable: true,
3161
- get: function () { return chunkBUAAO3AY_cjs.logDeprecation; }
3354
+ get: function () { return chunkEOGYMKVF_cjs.logDeprecation; }
3162
3355
  });
3163
3356
  Object.defineProperty(exports, "manifestPlugin", {
3164
3357
  enumerable: true,
3165
- get: function () { return chunkBUAAO3AY_cjs.manifestPlugin; }
3358
+ get: function () { return chunkEOGYMKVF_cjs.manifestPlugin; }
3166
3359
  });
3167
3360
  Object.defineProperty(exports, "manifestPluginRef", {
3168
3361
  enumerable: true,
3169
- get: function () { return chunkBUAAO3AY_cjs.manifestPluginRef; }
3362
+ get: function () { return chunkEOGYMKVF_cjs.manifestPluginRef; }
3170
3363
  });
3171
3364
  Object.defineProperty(exports, "omitExports", {
3172
3365
  enumerable: true,
3173
- get: function () { return chunkBUAAO3AY_cjs.omitExports; }
3366
+ get: function () { return chunkEOGYMKVF_cjs.omitExports; }
3174
3367
  });
3175
3368
  Object.defineProperty(exports, "operationAnnotatorPlugin", {
3176
3369
  enumerable: true,
3177
- get: function () { return chunkBUAAO3AY_cjs.operationAnnotatorPlugin; }
3370
+ get: function () { return chunkEOGYMKVF_cjs.operationAnnotatorPlugin; }
3178
3371
  });
3179
3372
  Object.defineProperty(exports, "parseConcurrencyEnvVar", {
3180
3373
  enumerable: true,
3181
- get: function () { return chunkBUAAO3AY_cjs.parseConcurrencyEnvVar; }
3374
+ get: function () { return chunkEOGYMKVF_cjs.parseConcurrencyEnvVar; }
3182
3375
  });
3183
3376
  Object.defineProperty(exports, "readManifestFromFile", {
3184
3377
  enumerable: true,
3185
- get: function () { return chunkBUAAO3AY_cjs.readManifestFromFile; }
3378
+ get: function () { return chunkEOGYMKVF_cjs.readManifestFromFile; }
3186
3379
  });
3187
3380
  Object.defineProperty(exports, "registryPlugin", {
3188
3381
  enumerable: true,
3189
- get: function () { return chunkBUAAO3AY_cjs.registryPlugin; }
3382
+ get: function () { return chunkEOGYMKVF_cjs.registryPlugin; }
3190
3383
  });
3191
3384
  Object.defineProperty(exports, "requestPlugin", {
3192
3385
  enumerable: true,
3193
- get: function () { return chunkBUAAO3AY_cjs.requestPlugin; }
3386
+ get: function () { return chunkEOGYMKVF_cjs.requestPlugin; }
3194
3387
  });
3195
3388
  Object.defineProperty(exports, "resetDeprecationWarnings", {
3196
3389
  enumerable: true,
3197
- get: function () { return chunkBUAAO3AY_cjs.resetDeprecationWarnings; }
3390
+ get: function () { return chunkEOGYMKVF_cjs.resetDeprecationWarnings; }
3198
3391
  });
3199
3392
  Object.defineProperty(exports, "resolveAuth", {
3200
3393
  enumerable: true,
3201
- get: function () { return chunkBUAAO3AY_cjs.resolveAuth; }
3394
+ get: function () { return chunkEOGYMKVF_cjs.resolveAuth; }
3202
3395
  });
3203
3396
  Object.defineProperty(exports, "resolveAuthToken", {
3204
3397
  enumerable: true,
3205
- get: function () { return chunkBUAAO3AY_cjs.resolveAuthToken; }
3398
+ get: function () { return chunkEOGYMKVF_cjs.resolveAuthToken; }
3206
3399
  });
3207
3400
  Object.defineProperty(exports, "resolveCredentials", {
3208
3401
  enumerable: true,
3209
- get: function () { return chunkBUAAO3AY_cjs.resolveCredentials; }
3402
+ get: function () { return chunkEOGYMKVF_cjs.resolveCredentials; }
3210
3403
  });
3211
3404
  Object.defineProperty(exports, "resolveCredentialsFromEnv", {
3212
3405
  enumerable: true,
3213
- get: function () { return chunkBUAAO3AY_cjs.resolveCredentialsFromEnv; }
3406
+ get: function () { return chunkEOGYMKVF_cjs.resolveCredentialsFromEnv; }
3214
3407
  });
3215
3408
  Object.defineProperty(exports, "resolveCredentialsPlugin", {
3216
3409
  enumerable: true,
3217
- get: function () { return chunkBUAAO3AY_cjs.resolveCredentialsPlugin; }
3410
+ get: function () { return chunkEOGYMKVF_cjs.resolveCredentialsPlugin; }
3218
3411
  });
3219
3412
  Object.defineProperty(exports, "resolveCredentialsPluginRef", {
3220
3413
  enumerable: true,
3221
- get: function () { return chunkBUAAO3AY_cjs.resolveCredentialsPluginRef; }
3414
+ get: function () { return chunkEOGYMKVF_cjs.resolveCredentialsPluginRef; }
3222
3415
  });
3223
3416
  Object.defineProperty(exports, "resolvePlugin", {
3224
3417
  enumerable: true,
3225
- get: function () { return chunkBUAAO3AY_cjs.resolvePlugin; }
3418
+ get: function () { return chunkEOGYMKVF_cjs.resolvePlugin; }
3226
3419
  });
3227
3420
  Object.defineProperty(exports, "runActionPlugin", {
3228
3421
  enumerable: true,
3229
- get: function () { return chunkBUAAO3AY_cjs.runActionPlugin; }
3422
+ get: function () { return chunkEOGYMKVF_cjs.runActionPlugin; }
3230
3423
  });
3231
3424
  Object.defineProperty(exports, "runInMethodScope", {
3232
3425
  enumerable: true,
3233
- get: function () { return chunkBUAAO3AY_cjs.runInMethodScope; }
3426
+ get: function () { return chunkEOGYMKVF_cjs.runInMethodScope; }
3234
3427
  });
3235
3428
  Object.defineProperty(exports, "runWithCallerContext", {
3236
3429
  enumerable: true,
3237
- get: function () { return chunkBUAAO3AY_cjs.runWithCallerContext; }
3430
+ get: function () { return chunkEOGYMKVF_cjs.runWithCallerContext; }
3238
3431
  });
3239
3432
  Object.defineProperty(exports, "runWithTelemetryContext", {
3240
3433
  enumerable: true,
3241
- get: function () { return chunkBUAAO3AY_cjs.runWithTelemetryContext; }
3434
+ get: function () { return chunkEOGYMKVF_cjs.runWithTelemetryContext; }
3242
3435
  });
3243
3436
  Object.defineProperty(exports, "sdkOptionsPluginRef", {
3244
3437
  enumerable: true,
3245
- get: function () { return chunkBUAAO3AY_cjs.sdkOptionsPluginRef; }
3438
+ get: function () { return chunkEOGYMKVF_cjs.sdkOptionsPluginRef; }
3246
3439
  });
3247
3440
  Object.defineProperty(exports, "selectExports", {
3248
3441
  enumerable: true,
3249
- get: function () { return chunkBUAAO3AY_cjs.selectExports; }
3442
+ get: function () { return chunkEOGYMKVF_cjs.selectExports; }
3250
3443
  });
3251
3444
  Object.defineProperty(exports, "tableFieldIdsResolver", {
3252
3445
  enumerable: true,
3253
- get: function () { return chunkBUAAO3AY_cjs.tableFieldIdsResolver; }
3446
+ get: function () { return chunkEOGYMKVF_cjs.tableFieldIdsResolver; }
3254
3447
  });
3255
3448
  Object.defineProperty(exports, "tableFieldsResolver", {
3256
3449
  enumerable: true,
3257
- get: function () { return chunkBUAAO3AY_cjs.tableFieldsResolver; }
3450
+ get: function () { return chunkEOGYMKVF_cjs.tableFieldsResolver; }
3258
3451
  });
3259
3452
  Object.defineProperty(exports, "tableFiltersResolver", {
3260
3453
  enumerable: true,
3261
- get: function () { return chunkBUAAO3AY_cjs.tableFiltersResolver; }
3454
+ get: function () { return chunkEOGYMKVF_cjs.tableFiltersResolver; }
3262
3455
  });
3263
3456
  Object.defineProperty(exports, "tableIdResolver", {
3264
3457
  enumerable: true,
3265
- get: function () { return chunkBUAAO3AY_cjs.tableIdResolver; }
3458
+ get: function () { return chunkEOGYMKVF_cjs.tableIdResolver; }
3266
3459
  });
3267
3460
  Object.defineProperty(exports, "tableNameResolver", {
3268
3461
  enumerable: true,
3269
- get: function () { return chunkBUAAO3AY_cjs.tableNameResolver; }
3462
+ get: function () { return chunkEOGYMKVF_cjs.tableNameResolver; }
3270
3463
  });
3271
3464
  Object.defineProperty(exports, "tableRecordIdResolver", {
3272
3465
  enumerable: true,
3273
- get: function () { return chunkBUAAO3AY_cjs.tableRecordIdResolver; }
3466
+ get: function () { return chunkEOGYMKVF_cjs.tableRecordIdResolver; }
3274
3467
  });
3275
3468
  Object.defineProperty(exports, "tableRecordIdsResolver", {
3276
3469
  enumerable: true,
3277
- get: function () { return chunkBUAAO3AY_cjs.tableRecordIdsResolver; }
3470
+ get: function () { return chunkEOGYMKVF_cjs.tableRecordIdsResolver; }
3278
3471
  });
3279
3472
  Object.defineProperty(exports, "tableRecordsResolver", {
3280
3473
  enumerable: true,
3281
- get: function () { return chunkBUAAO3AY_cjs.tableRecordsResolver; }
3474
+ get: function () { return chunkEOGYMKVF_cjs.tableRecordsResolver; }
3282
3475
  });
3283
3476
  Object.defineProperty(exports, "tableSortResolver", {
3284
3477
  enumerable: true,
3285
- get: function () { return chunkBUAAO3AY_cjs.tableSortResolver; }
3478
+ get: function () { return chunkEOGYMKVF_cjs.tableSortResolver; }
3286
3479
  });
3287
3480
  Object.defineProperty(exports, "tableUpdateRecordsResolver", {
3288
3481
  enumerable: true,
3289
- get: function () { return chunkBUAAO3AY_cjs.tableUpdateRecordsResolver; }
3482
+ get: function () { return chunkEOGYMKVF_cjs.tableUpdateRecordsResolver; }
3290
3483
  });
3291
3484
  Object.defineProperty(exports, "toSnakeCase", {
3292
3485
  enumerable: true,
3293
- get: function () { return chunkBUAAO3AY_cjs.toSnakeCase; }
3486
+ get: function () { return chunkEOGYMKVF_cjs.toSnakeCase; }
3294
3487
  });
3295
3488
  Object.defineProperty(exports, "toTitleCase", {
3296
3489
  enumerable: true,
3297
- get: function () { return chunkBUAAO3AY_cjs.toTitleCase; }
3490
+ get: function () { return chunkEOGYMKVF_cjs.toTitleCase; }
3298
3491
  });
3299
3492
  Object.defineProperty(exports, "triggerInboxResolver", {
3300
3493
  enumerable: true,
3301
- get: function () { return chunkBUAAO3AY_cjs.triggerInboxResolver; }
3494
+ get: function () { return chunkEOGYMKVF_cjs.triggerInboxResolver; }
3302
3495
  });
3303
3496
  Object.defineProperty(exports, "triggerMessagesResolver", {
3304
3497
  enumerable: true,
3305
- get: function () { return chunkBUAAO3AY_cjs.triggerMessagesResolver; }
3498
+ get: function () { return chunkEOGYMKVF_cjs.triggerMessagesResolver; }
3306
3499
  });
3307
3500
  Object.defineProperty(exports, "updateTableRecordsPlugin", {
3308
3501
  enumerable: true,
3309
- get: function () { return chunkBUAAO3AY_cjs.updateTableRecordsPlugin; }
3502
+ get: function () { return chunkEOGYMKVF_cjs.updateTableRecordsPlugin; }
3310
3503
  });
3311
3504
  Object.defineProperty(exports, "workflowDraftIdResolver", {
3312
3505
  enumerable: true,
3313
- get: function () { return chunkBUAAO3AY_cjs.workflowDraftIdResolver; }
3506
+ get: function () { return chunkEOGYMKVF_cjs.workflowDraftIdResolver; }
3314
3507
  });
3315
3508
  Object.defineProperty(exports, "workflowIdResolver", {
3316
3509
  enumerable: true,
3317
- get: function () { return chunkBUAAO3AY_cjs.workflowIdResolver; }
3510
+ get: function () { return chunkEOGYMKVF_cjs.workflowIdResolver; }
3318
3511
  });
3319
3512
  Object.defineProperty(exports, "workflowRunIdResolver", {
3320
3513
  enumerable: true,
3321
- get: function () { return chunkBUAAO3AY_cjs.workflowRunIdResolver; }
3514
+ get: function () { return chunkEOGYMKVF_cjs.workflowRunIdResolver; }
3322
3515
  });
3323
3516
  Object.defineProperty(exports, "workflowVersionIdResolver", {
3324
3517
  enumerable: true,
3325
- get: function () { return chunkBUAAO3AY_cjs.workflowVersionIdResolver; }
3518
+ get: function () { return chunkEOGYMKVF_cjs.workflowVersionIdResolver; }
3326
3519
  });
3327
3520
  Object.defineProperty(exports, "zapierAdaptError", {
3328
3521
  enumerable: true,
3329
- get: function () { return chunkBUAAO3AY_cjs.zapierAdaptError; }
3522
+ get: function () { return chunkEOGYMKVF_cjs.zapierAdaptError; }
3330
3523
  });
3331
3524
  Object.defineProperty(exports, "zapierCoreOptions", {
3332
3525
  enumerable: true,
3333
- get: function () { return chunkBUAAO3AY_cjs.zapierCoreOptions; }
3526
+ get: function () { return chunkEOGYMKVF_cjs.zapierCoreOptions; }
3334
3527
  });
3335
3528
  Object.defineProperty(exports, "zapierSdkPlugin", {
3336
3529
  enumerable: true,
3337
- get: function () { return chunkBUAAO3AY_cjs.zapierSdkPlugin; }
3530
+ get: function () { return chunkEOGYMKVF_cjs.zapierSdkPlugin; }
3338
3531
  });
3339
3532
  exports.createZapierSdk = createZapierSdk;
3340
3533
  exports.zapierExperimentalSdkPlugin = zapierExperimentalSdkPlugin;