@zapier/zapier-sdk 0.109.1 → 0.110.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 chunkNTUEFDSW_cjs = require('./chunk-NTUEFDSW.cjs');
3
+ var chunkIHWWBHBO_cjs = require('./chunk-IHWWBHBO.cjs');
4
4
  require('./chunk-OBGZSXTJ.cjs');
5
5
  var kitcore = require('@zapier/kitcore');
6
6
  var zod = require('zod');
@@ -52,7 +52,7 @@ function toWireConnections(connections) {
52
52
  for (const [alias, entry] of Object.entries(connections)) {
53
53
  const connectionId = entry.connectionId ?? entry.connection_id;
54
54
  if (connectionId === void 0) {
55
- throw new chunkNTUEFDSW_cjs.ZapierValidationError(
55
+ throw new chunkIHWWBHBO_cjs.ZapierValidationError(
56
56
  `connections["${alias}"] is missing connectionId`
57
57
  );
58
58
  }
@@ -79,7 +79,7 @@ var TriggerConfigSchema = zod.z.object({
79
79
  function toWireTrigger(trigger) {
80
80
  const selectedApi = trigger.selectedApi ?? trigger.selected_api;
81
81
  if (selectedApi === void 0) {
82
- throw new chunkNTUEFDSW_cjs.ZapierValidationError("trigger is missing selectedApi");
82
+ throw new chunkIHWWBHBO_cjs.ZapierValidationError("trigger is missing selectedApi");
83
83
  }
84
84
  const wire = {
85
85
  selected_api: selectedApi,
@@ -100,7 +100,7 @@ function toWireAppVersions(appVersions) {
100
100
  for (const [key, entry] of Object.entries(appVersions)) {
101
101
  const implementationName = entry.implementationName ?? entry.implementation_name;
102
102
  if (implementationName === void 0) {
103
- throw new chunkNTUEFDSW_cjs.ZapierValidationError(
103
+ throw new chunkIHWWBHBO_cjs.ZapierValidationError(
104
104
  `appVersions["${key}"] is missing implementationName`
105
105
  );
106
106
  }
@@ -269,7 +269,7 @@ var ListWorkflowsApiResponseSchema = zod.z.object({
269
269
  var listWorkflowsPlugin = kitcore.defineMethod({
270
270
  ...codeSubstrateDefaults,
271
271
  name: "listWorkflows",
272
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
272
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
273
273
  type: "list",
274
274
  itemType: "Workflow",
275
275
  inputSchema: ListWorkflowsOptionsSchema,
@@ -277,7 +277,7 @@ var listWorkflowsPlugin = kitcore.defineMethod({
277
277
  skipOutputValidation: true,
278
278
  // The handler already returns a clean `{ data, nextCursor }` page, so the
279
279
  // standard list output (no `adaptPage`) applies.
280
- output: { type: "list", defaultPageSize: chunkNTUEFDSW_cjs.DEFAULT_PAGE_SIZE },
280
+ output: { type: "list", defaultPageSize: chunkIHWWBHBO_cjs.DEFAULT_PAGE_SIZE },
281
281
  run: async ({ imports, input }) => {
282
282
  const api = imports.api;
283
283
  const searchParams = {};
@@ -352,13 +352,13 @@ var GetWorkflowResponseSchema = zod.z.object({
352
352
  var getWorkflowPlugin = kitcore.defineMethod({
353
353
  ...codeSubstrateDefaults,
354
354
  name: "getWorkflow",
355
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
355
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
356
356
  itemType: "Workflow",
357
357
  inputSchema: GetWorkflowOptionsSchema,
358
358
  outputSchema: GetWorkflowResponseSchema,
359
359
  skipOutputValidation: true,
360
360
  output: "item",
361
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
361
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
362
362
  run: async ({ imports, input }) => {
363
363
  const api = imports.api;
364
364
  const raw = await api.get(
@@ -404,7 +404,7 @@ var CreateWorkflowResponseSchema = zod.z.object({
404
404
  var createWorkflowPlugin = kitcore.defineMethod({
405
405
  ...codeSubstrateDefaults,
406
406
  name: "createWorkflow",
407
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
407
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
408
408
  type: "create",
409
409
  itemType: "Workflow",
410
410
  inputSchema: CreateWorkflowOptionsSchema,
@@ -495,7 +495,7 @@ var ImportWorkflowResponseSchema = zod.z.object({
495
495
  var importWorkflowPlugin = kitcore.defineMethod({
496
496
  ...codeSubstrateDefaults,
497
497
  name: "importWorkflow",
498
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
498
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
499
499
  type: "create",
500
500
  itemType: "Workflow",
501
501
  // The response is the composite `{ workflow, draft, issues }`, not the bare
@@ -524,8 +524,8 @@ var importWorkflowPlugin = kitcore.defineMethod({
524
524
  // about which gate they hit or what to do, so name both.
525
525
  customErrorHandler: ({ status, data }) => {
526
526
  if (status === 403) {
527
- const detail = chunkNTUEFDSW_cjs.extractErrorDetail(data);
528
- return new chunkNTUEFDSW_cjs.ZapierApiError(
527
+ const detail = chunkIHWWBHBO_cjs.extractErrorDetail(data);
528
+ return new chunkIHWWBHBO_cjs.ZapierApiError(
529
529
  `${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.`,
530
530
  { statusCode: status }
531
531
  );
@@ -563,14 +563,14 @@ var UpdateWorkflowResponseSchema = zod.z.object({
563
563
  var updateWorkflowPlugin = kitcore.defineMethod({
564
564
  ...codeSubstrateDefaults,
565
565
  name: "updateWorkflow",
566
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
566
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
567
567
  type: "update",
568
568
  itemType: "Workflow",
569
569
  inputSchema: UpdateWorkflowOptionsSchema,
570
570
  outputSchema: UpdateWorkflowResponseSchema,
571
571
  skipOutputValidation: true,
572
572
  output: "item",
573
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
573
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
574
574
  run: async ({ imports, input }) => {
575
575
  const api = imports.api;
576
576
  const body = {};
@@ -603,14 +603,14 @@ var EnableWorkflowResponseSchema = zod.z.object({
603
603
  var enableWorkflowPlugin = kitcore.defineMethod({
604
604
  ...codeSubstrateDefaults,
605
605
  name: "enableWorkflow",
606
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
606
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
607
607
  type: "update",
608
608
  itemType: "Workflow",
609
609
  inputSchema: EnableWorkflowOptionsSchema,
610
610
  outputSchema: EnableWorkflowResponseSchema,
611
611
  skipOutputValidation: true,
612
612
  output: "item",
613
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
613
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
614
614
  run: async ({ imports, input }) => {
615
615
  const api = imports.api;
616
616
  const raw = await api.post(
@@ -638,14 +638,14 @@ var DisableWorkflowResponseSchema = zod.z.object({
638
638
  var disableWorkflowPlugin = kitcore.defineMethod({
639
639
  ...codeSubstrateDefaults,
640
640
  name: "disableWorkflow",
641
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
641
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
642
642
  type: "update",
643
643
  itemType: "Workflow",
644
644
  inputSchema: DisableWorkflowOptionsSchema,
645
645
  outputSchema: DisableWorkflowResponseSchema,
646
646
  skipOutputValidation: true,
647
647
  output: "item",
648
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
648
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
649
649
  run: async ({ imports, input }) => {
650
650
  const api = imports.api;
651
651
  const raw = await api.post(
@@ -672,7 +672,7 @@ var DeleteWorkflowResponseSchema = zod.z.object({
672
672
  var deleteWorkflowPlugin = kitcore.defineMethod({
673
673
  ...codeSubstrateDefaults,
674
674
  name: "deleteWorkflow",
675
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
675
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
676
676
  type: "delete",
677
677
  itemType: "Workflow",
678
678
  confirm: "delete",
@@ -680,7 +680,7 @@ var deleteWorkflowPlugin = kitcore.defineMethod({
680
680
  outputSchema: DeleteWorkflowResponseSchema,
681
681
  skipOutputValidation: true,
682
682
  output: "raw",
683
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
683
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
684
684
  run: async ({ imports, input }) => {
685
685
  const api = imports.api;
686
686
  await api.delete(
@@ -744,7 +744,7 @@ var ListDurableRunsApiResponseSchema = zod.z.object({
744
744
  var listDurableRunsPlugin = kitcore.defineMethod({
745
745
  ...codeSubstrateDefaults,
746
746
  name: "listDurableRuns",
747
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
747
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
748
748
  type: "list",
749
749
  itemType: "DurableRun",
750
750
  inputSchema: ListDurableRunsOptionsSchema,
@@ -752,7 +752,7 @@ var listDurableRunsPlugin = kitcore.defineMethod({
752
752
  skipOutputValidation: true,
753
753
  // The handler already returns a clean `{ data, nextCursor }` page, so the
754
754
  // standard list output (no `adaptPage`) applies.
755
- output: { type: "list", defaultPageSize: chunkNTUEFDSW_cjs.DEFAULT_PAGE_SIZE },
755
+ output: { type: "list", defaultPageSize: chunkIHWWBHBO_cjs.DEFAULT_PAGE_SIZE },
756
756
  run: async ({ imports, input }) => {
757
757
  const api = imports.api;
758
758
  const searchParams = {};
@@ -866,13 +866,13 @@ var GetDurableRunResponseSchema = zod.z.object({
866
866
  var getDurableRunPlugin = kitcore.defineMethod({
867
867
  ...codeSubstrateDefaults,
868
868
  name: "getDurableRun",
869
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
869
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
870
870
  itemType: "DurableRun",
871
871
  inputSchema: GetDurableRunOptionsSchema,
872
872
  outputSchema: GetDurableRunResponseSchema,
873
873
  skipOutputValidation: true,
874
874
  output: "item",
875
- resolvers: { run: chunkNTUEFDSW_cjs.durableRunIdResolver },
875
+ resolvers: { run: chunkIHWWBHBO_cjs.durableRunIdResolver },
876
876
  run: async ({ imports, input }) => {
877
877
  const api = imports.api;
878
878
  const raw = await api.get(
@@ -966,7 +966,7 @@ var sourceFilesResolver = kitcore.defineResolver({
966
966
  var runDurablePlugin = kitcore.defineMethod({
967
967
  ...codeSubstrateDefaults,
968
968
  name: "runDurable",
969
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
969
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
970
970
  type: "create",
971
971
  itemType: "DurableRun",
972
972
  inputSchema: RunDurableOptionsSchema,
@@ -1023,14 +1023,14 @@ var CancelDurableRunResponseSchema = zod.z.object({
1023
1023
  var cancelDurableRunPlugin = kitcore.defineMethod({
1024
1024
  ...codeSubstrateDefaults,
1025
1025
  name: "cancelDurableRun",
1026
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1026
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1027
1027
  type: "update",
1028
1028
  itemType: "DurableRun",
1029
1029
  inputSchema: CancelDurableRunOptionsSchema,
1030
1030
  outputSchema: CancelDurableRunResponseSchema,
1031
1031
  skipOutputValidation: true,
1032
1032
  output: "item",
1033
- resolvers: { run: chunkNTUEFDSW_cjs.durableRunIdResolver },
1033
+ resolvers: { run: chunkIHWWBHBO_cjs.durableRunIdResolver },
1034
1034
  run: async ({ imports, input }) => {
1035
1035
  const api = imports.api;
1036
1036
  await api.post(
@@ -1145,14 +1145,14 @@ function describeOpenDraft(draft) {
1145
1145
  var publishWorkflowVersionPlugin = kitcore.defineMethod({
1146
1146
  ...codeSubstrateDefaults,
1147
1147
  name: "publishWorkflowVersion",
1148
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1148
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1149
1149
  type: "create",
1150
1150
  itemType: "WorkflowVersion",
1151
1151
  inputSchema: PublishWorkflowVersionOptionsSchema,
1152
1152
  outputSchema: PublishWorkflowVersionResponseSchema,
1153
1153
  skipOutputValidation: true,
1154
1154
  output: "item",
1155
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver, sourceFiles: sourceFilesResolver },
1155
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver, sourceFiles: sourceFilesResolver },
1156
1156
  run: async ({ imports, input }) => {
1157
1157
  const api = imports.api;
1158
1158
  const sourceFiles = "sourceFiles" in input ? input.sourceFiles : input.source_files;
@@ -1206,13 +1206,13 @@ var publishWorkflowVersionPlugin = kitcore.defineMethod({
1206
1206
  if (status !== 409) return void 0;
1207
1207
  const conflict = extractOpenDraftConflict(data);
1208
1208
  if (!conflict) {
1209
- return new chunkNTUEFDSW_cjs.ZapierConflictError(
1210
- chunkNTUEFDSW_cjs.extractErrorDetail(data) ?? "Workflow version publish conflict.",
1209
+ return new chunkIHWWBHBO_cjs.ZapierConflictError(
1210
+ chunkIHWWBHBO_cjs.extractErrorDetail(data) ?? "Workflow version publish conflict.",
1211
1211
  { statusCode: status, resourceType: "workflow" }
1212
1212
  );
1213
1213
  }
1214
1214
  const detail = conflict.detail ?? "Cannot publish over open draft(s).";
1215
- return new chunkNTUEFDSW_cjs.ZapierConflictError(
1215
+ return new chunkIHWWBHBO_cjs.ZapierConflictError(
1216
1216
  [
1217
1217
  `${detail} Blocking draft(s):`,
1218
1218
  ...conflict.openDrafts.map(describeOpenDraft),
@@ -1267,7 +1267,7 @@ var ListWorkflowVersionsApiResponseSchema = zod.z.object({
1267
1267
  var listWorkflowVersionsPlugin = kitcore.defineMethod({
1268
1268
  ...codeSubstrateDefaults,
1269
1269
  name: "listWorkflowVersions",
1270
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1270
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1271
1271
  type: "list",
1272
1272
  itemType: "WorkflowVersion",
1273
1273
  inputSchema: ListWorkflowVersionsOptionsSchema,
@@ -1275,8 +1275,8 @@ var listWorkflowVersionsPlugin = kitcore.defineMethod({
1275
1275
  skipOutputValidation: true,
1276
1276
  // The handler already returns a clean `{ data, nextCursor }` page, so the
1277
1277
  // standard list output (no `adaptPage`) applies.
1278
- output: { type: "list", defaultPageSize: chunkNTUEFDSW_cjs.DEFAULT_PAGE_SIZE },
1279
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
1278
+ output: { type: "list", defaultPageSize: chunkIHWWBHBO_cjs.DEFAULT_PAGE_SIZE },
1279
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
1280
1280
  run: async ({ imports, input }) => {
1281
1281
  const api = imports.api;
1282
1282
  const searchParams = {};
@@ -1311,15 +1311,15 @@ var GetWorkflowVersionResponseSchema = WorkflowVersionSchema;
1311
1311
  var getWorkflowVersionPlugin = kitcore.defineMethod({
1312
1312
  ...codeSubstrateDefaults,
1313
1313
  name: "getWorkflowVersion",
1314
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1314
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1315
1315
  itemType: "WorkflowVersion",
1316
1316
  inputSchema: GetWorkflowVersionOptionsSchema,
1317
1317
  outputSchema: GetWorkflowVersionResponseSchema,
1318
1318
  skipOutputValidation: true,
1319
1319
  output: "item",
1320
1320
  resolvers: {
1321
- workflow: chunkNTUEFDSW_cjs.workflowIdResolver,
1322
- version: chunkNTUEFDSW_cjs.workflowVersionIdResolver
1321
+ workflow: chunkIHWWBHBO_cjs.workflowIdResolver,
1322
+ version: chunkIHWWBHBO_cjs.workflowVersionIdResolver
1323
1323
  },
1324
1324
  run: async ({ imports, input }) => {
1325
1325
  const api = imports.api;
@@ -1377,7 +1377,7 @@ var ListWorkflowDraftsApiResponseSchema = zod.z.object({
1377
1377
  var listWorkflowDraftsPlugin = kitcore.defineMethod({
1378
1378
  ...codeSubstrateDefaults,
1379
1379
  name: "listWorkflowDrafts",
1380
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1380
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1381
1381
  type: "list",
1382
1382
  itemType: "WorkflowDraft",
1383
1383
  inputSchema: ListWorkflowDraftsOptionsSchema,
@@ -1385,8 +1385,8 @@ var listWorkflowDraftsPlugin = kitcore.defineMethod({
1385
1385
  skipOutputValidation: true,
1386
1386
  // The handler already returns a clean `{ data, nextCursor }` page, so the
1387
1387
  // standard list output (no `adaptPage`) applies.
1388
- output: { type: "list", defaultPageSize: chunkNTUEFDSW_cjs.DEFAULT_PAGE_SIZE },
1389
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
1388
+ output: { type: "list", defaultPageSize: chunkIHWWBHBO_cjs.DEFAULT_PAGE_SIZE },
1389
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
1390
1390
  run: async ({ imports, input }) => {
1391
1391
  const api = imports.api;
1392
1392
  const searchParams = {};
@@ -1427,15 +1427,15 @@ var GetWorkflowDraftResponseSchema = WorkflowDraftSchema;
1427
1427
  var getWorkflowDraftPlugin = kitcore.defineMethod({
1428
1428
  ...codeSubstrateDefaults,
1429
1429
  name: "getWorkflowDraft",
1430
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1430
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1431
1431
  itemType: "WorkflowDraft",
1432
1432
  inputSchema: GetWorkflowDraftOptionsSchema,
1433
1433
  outputSchema: GetWorkflowDraftResponseSchema,
1434
1434
  skipOutputValidation: true,
1435
1435
  output: "item",
1436
1436
  resolvers: {
1437
- workflow: chunkNTUEFDSW_cjs.workflowIdResolver,
1438
- draft: chunkNTUEFDSW_cjs.workflowDraftIdResolver
1437
+ workflow: chunkIHWWBHBO_cjs.workflowIdResolver,
1438
+ draft: chunkIHWWBHBO_cjs.workflowDraftIdResolver
1439
1439
  },
1440
1440
  run: async ({ imports, input }) => {
1441
1441
  const api = imports.api;
@@ -1463,14 +1463,14 @@ var CreateWorkflowDraftResponseSchema = WorkflowDraftSchema;
1463
1463
  var createWorkflowDraftPlugin = kitcore.defineMethod({
1464
1464
  ...codeSubstrateDefaults,
1465
1465
  name: "createWorkflowDraft",
1466
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1466
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1467
1467
  type: "create",
1468
1468
  itemType: "WorkflowDraft",
1469
1469
  inputSchema: CreateWorkflowDraftOptionsSchema,
1470
1470
  outputSchema: CreateWorkflowDraftResponseSchema,
1471
1471
  skipOutputValidation: true,
1472
1472
  output: "item",
1473
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
1473
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
1474
1474
  run: async ({ imports, input }) => {
1475
1475
  const api = imports.api;
1476
1476
  const body = {};
@@ -1523,7 +1523,7 @@ var UpdateWorkflowDraftResponseSchema = WorkflowDraftSchema;
1523
1523
  var updateWorkflowDraftPlugin = kitcore.defineMethod({
1524
1524
  ...codeSubstrateDefaults,
1525
1525
  name: "updateWorkflowDraft",
1526
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1526
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1527
1527
  type: "update",
1528
1528
  itemType: "WorkflowDraft",
1529
1529
  inputSchema: UpdateWorkflowDraftOptionsSchema,
@@ -1531,8 +1531,8 @@ var updateWorkflowDraftPlugin = kitcore.defineMethod({
1531
1531
  skipOutputValidation: true,
1532
1532
  output: "item",
1533
1533
  resolvers: {
1534
- workflow: chunkNTUEFDSW_cjs.workflowIdResolver,
1535
- draft: chunkNTUEFDSW_cjs.workflowDraftIdResolver,
1534
+ workflow: chunkIHWWBHBO_cjs.workflowIdResolver,
1535
+ draft: chunkIHWWBHBO_cjs.workflowDraftIdResolver,
1536
1536
  sourceFiles: sourceFilesResolver
1537
1537
  },
1538
1538
  run: async ({ imports, input }) => {
@@ -1577,8 +1577,8 @@ var updateWorkflowDraftPlugin = kitcore.defineMethod({
1577
1577
  // re-read the draft, and retry instead of blind-overwriting.
1578
1578
  customErrorHandler: ({ status, data }) => {
1579
1579
  if (status === 409) {
1580
- const detail = chunkNTUEFDSW_cjs.extractErrorDetail(data);
1581
- return new chunkNTUEFDSW_cjs.ZapierConflictError(
1580
+ const detail = chunkIHWWBHBO_cjs.extractErrorDetail(data);
1581
+ return new chunkIHWWBHBO_cjs.ZapierConflictError(
1582
1582
  `${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.`,
1583
1583
  { statusCode: status, resourceType: "workflow-draft" }
1584
1584
  );
@@ -1602,7 +1602,7 @@ var DiscardWorkflowDraftResponseSchema = WorkflowDraftSchema;
1602
1602
  var discardWorkflowDraftPlugin = kitcore.defineMethod({
1603
1603
  ...codeSubstrateDefaults,
1604
1604
  name: "discardWorkflowDraft",
1605
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1605
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1606
1606
  type: "delete",
1607
1607
  itemType: "WorkflowDraft",
1608
1608
  // Soft delete returns the discarded draft, not the `{ success: boolean }`
@@ -1616,8 +1616,8 @@ var discardWorkflowDraftPlugin = kitcore.defineMethod({
1616
1616
  skipOutputValidation: true,
1617
1617
  output: "item",
1618
1618
  resolvers: {
1619
- workflow: chunkNTUEFDSW_cjs.workflowIdResolver,
1620
- draft: chunkNTUEFDSW_cjs.workflowDraftIdResolver
1619
+ workflow: chunkIHWWBHBO_cjs.workflowIdResolver,
1620
+ draft: chunkIHWWBHBO_cjs.workflowDraftIdResolver
1621
1621
  },
1622
1622
  run: async ({ imports, input }) => {
1623
1623
  const api = imports.api;
@@ -1660,7 +1660,7 @@ var PublishWorkflowDraftResponseSchema = zod.z.object({
1660
1660
  var publishWorkflowDraftPlugin = kitcore.defineMethod({
1661
1661
  ...codeSubstrateDefaults,
1662
1662
  name: "publishWorkflowDraft",
1663
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1663
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1664
1664
  type: "create",
1665
1665
  itemType: "WorkflowVersion",
1666
1666
  // The response is the composite `{ draft, version }`, not the bare
@@ -1671,8 +1671,8 @@ var publishWorkflowDraftPlugin = kitcore.defineMethod({
1671
1671
  skipOutputValidation: true,
1672
1672
  output: "item",
1673
1673
  resolvers: {
1674
- workflow: chunkNTUEFDSW_cjs.workflowIdResolver,
1675
- draft: chunkNTUEFDSW_cjs.workflowDraftIdResolver
1674
+ workflow: chunkIHWWBHBO_cjs.workflowIdResolver,
1675
+ draft: chunkIHWWBHBO_cjs.workflowDraftIdResolver
1676
1676
  },
1677
1677
  run: async ({ imports, input }) => {
1678
1678
  const api = imports.api;
@@ -1705,15 +1705,15 @@ var publishWorkflowDraftPlugin = kitcore.defineMethod({
1705
1705
  // to ZapierValidationError via the client's default handling.
1706
1706
  customErrorHandler: ({ status, data }) => {
1707
1707
  if (status === 409) {
1708
- const detail = chunkNTUEFDSW_cjs.extractErrorDetail(data);
1709
- return new chunkNTUEFDSW_cjs.ZapierConflictError(
1708
+ const detail = chunkIHWWBHBO_cjs.extractErrorDetail(data);
1709
+ return new chunkIHWWBHBO_cjs.ZapierConflictError(
1710
1710
  `${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.`,
1711
1711
  { statusCode: status, resourceType: "workflow-draft" }
1712
1712
  );
1713
1713
  }
1714
1714
  if (status === 503) {
1715
- const detail = chunkNTUEFDSW_cjs.extractErrorDetail(data);
1716
- return new chunkNTUEFDSW_cjs.ZapierApiError(
1715
+ const detail = chunkIHWWBHBO_cjs.extractErrorDetail(data);
1716
+ return new chunkIHWWBHBO_cjs.ZapierApiError(
1717
1717
  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.",
1718
1718
  { statusCode: status }
1719
1719
  );
@@ -1731,32 +1731,45 @@ var WorkflowRunStatusSchema = zod.z.union([
1731
1731
  ]).describe(
1732
1732
  "Workflow run lifecycle status. `finished` / `failed` / `cancelled` are terminal."
1733
1733
  );
1734
- var WorkflowRunListItemSchema = zod.z.object({
1735
- id: zod.z.string().describe("Workflow run ID (UUID)"),
1736
- trigger_id: zod.z.string().nullable().describe(
1737
- "ID of the trigger that fired this run, if any. Null for runs created without a trigger."
1738
- ),
1734
+ var workflowRunListItemBase = zod.z.object({
1735
+ id: zod.z.string().describe("Workflow run ID (UUIDv7). Unique across live and draft runs."),
1739
1736
  durable_run_id: zod.z.string().nullable().describe(
1740
1737
  "Linked code-substrate-runner run ID. Null until the durable run is created."
1741
1738
  ),
1742
- workflow_version_id: zod.z.string().nullable().describe("Workflow version the run is bound to. Null in rare edge cases."),
1743
1739
  status: WorkflowRunStatusSchema,
1744
1740
  input: zod.z.unknown().describe("Input passed to the run"),
1745
- // `output` is intentionally omitted from list items: workflow-run lists no
1746
- // longer carry the (potentially large/externalized) output payload. Fetch a
1747
- // single run's output via `getWorkflowRun`. Use `status` to know when it's
1748
- // available (`finished`/`failed`).
1749
1741
  error: zod.z.unknown().nullable().describe("Error payload when status is `failed` (null otherwise)"),
1750
1742
  created_at: zod.z.string().describe("When the run was created (ISO-8601)"),
1751
1743
  updated_at: zod.z.string().describe("When the run was last updated (ISO-8601)")
1752
1744
  });
1745
+ var LiveWorkflowRunListItemSchema = workflowRunListItemBase.extend({
1746
+ kind: zod.z.literal("live").describe("A run of a published workflow version."),
1747
+ trigger_id: zod.z.string().nullable().describe(
1748
+ "ID of the trigger that fired this run. Null for runs created without a trigger."
1749
+ ),
1750
+ workflow_version_id: zod.z.string().nullable().describe("Workflow version the run is bound to. Null in rare edge cases.")
1751
+ });
1752
+ var DraftWorkflowRunListItemSchema = workflowRunListItemBase.extend({
1753
+ kind: zod.z.literal("draft").describe("A run launched from a workflow draft via `runWorkflowDraft`."),
1754
+ workflow_draft_id: zod.z.string().nullable().describe(
1755
+ "The draft this run was launched from. Null once that draft has been deleted (the run outlives its draft)."
1756
+ ),
1757
+ draft_revision: zod.z.number().int().describe("The draft's revision at the moment this run was created.")
1758
+ });
1759
+ var WorkflowRunListItemSchema = zod.z.discriminatedUnion("kind", [
1760
+ LiveWorkflowRunListItemSchema,
1761
+ DraftWorkflowRunListItemSchema
1762
+ ]);
1753
1763
  var ListWorkflowRunsOptionsSchema = zod.z.object({
1754
1764
  workflow: zod.z.string().uuid().describe("Durable workflow ID"),
1755
1765
  pageSize: zod.z.number().int().min(1).max(100).optional().describe("Number of runs per page (max 100)"),
1766
+ kind: zod.z.enum(["live", "draft"]).optional().describe(
1767
+ "Return only runs of this kind. Omit for both, interleaved by recency."
1768
+ ),
1756
1769
  cursor: zod.z.string().optional().describe("Pagination cursor"),
1757
1770
  maxItems: zod.z.number().int().min(1).optional().describe("Maximum total runs to return across all pages")
1758
1771
  }).describe(
1759
- "List workflow runs (triggered executions) for a specific deployed workflow, newest first"
1772
+ "List workflow runs for a specific workflow, newest first. Live runs (of published versions) and draft runs share the one list; pass `kind` to narrow it to one."
1760
1773
  );
1761
1774
  var ListWorkflowRunsApiResponseSchema = zod.z.object({
1762
1775
  results: zod.z.array(WorkflowRunListItemSchema),
@@ -1770,11 +1783,95 @@ var ListWorkflowRunsApiResponseSchema = zod.z.object({
1770
1783
  }).optional()
1771
1784
  });
1772
1785
 
1773
- // src/plugins/codeSubstrate/listWorkflowRuns/index.ts
1786
+ // src/plugins/codeSubstrate/runWorkflowDraft/schemas.ts
1787
+ var RunWorkflowDraftOptionsSchema = zod.z.object({
1788
+ workflow: zod.z.string().uuid().describe("Durable workflow ID"),
1789
+ draft: zod.z.string().uuid().describe("Workflow draft ID"),
1790
+ draftRevision: zod.z.number().int().min(0).describe(
1791
+ "The draft revision you intend to run, from the last read of the draft. The server rejects the run with a conflict if the draft has changed since. The upstream API treats this check as optional; the SDK requires it so a test run can never silently execute source the caller has already replaced."
1792
+ ),
1793
+ input: JsonPayloadSchema.optional().describe(
1794
+ "Input data passed to the workflow. Accepts any JSON value, or its JSON-string encoding. Omit for a workflow that takes no input."
1795
+ )
1796
+ }).describe(
1797
+ "Launch a draft test run: execute the draft's current source without publishing it. The draft's payload is snapshotted onto the run at creation, so later edits (or discarding the draft) never change what the run executed. Draft runs are free (not task-charged) and rate limited per user. The run is accepted asynchronously \u2014 it comes back `initialized`; follow it with `getWorkflowRun`, or list it via `listWorkflowRuns` with `kind: \"draft\"`."
1798
+ );
1799
+ var RunWorkflowDraftResponseSchema = zod.z.object({
1800
+ id: zod.z.string().describe("Workflow run ID (UUIDv7). Unique across live and draft runs."),
1801
+ kind: zod.z.literal("draft").describe("A run launched from a workflow draft."),
1802
+ workflow_id: zod.z.string().describe("The workflow this run belongs to"),
1803
+ durable_run_id: zod.z.string().nullable().describe(
1804
+ "Linked code-substrate-runner run ID. Usually still null in this response \u2014 the run is accepted and launched in the background."
1805
+ ),
1806
+ workflow_draft_id: zod.z.string().nullable().describe(
1807
+ "The draft this run was launched from. Becomes null once that draft is deleted \u2014 the run outlives its draft."
1808
+ ),
1809
+ draft_revision: zod.z.number().int().describe("The draft's revision at the moment this run was created."),
1810
+ status: WorkflowRunStatusSchema,
1811
+ input: zod.z.unknown().describe("Input passed to the run"),
1812
+ output: zod.z.unknown().nullable().describe("Return value, present when status is `finished`"),
1813
+ error: zod.z.unknown().nullable().describe("Error payload when status is `failed` (null otherwise)"),
1814
+ created_at: zod.z.string().describe("When the run was created (ISO-8601)"),
1815
+ updated_at: zod.z.string().describe("When the run was last updated (ISO-8601)")
1816
+ });
1817
+
1818
+ // src/plugins/codeSubstrate/runWorkflowDraft/index.ts
1819
+ var runWorkflowDraftPlugin = kitcore.defineMethod({
1820
+ ...codeSubstrateDefaults,
1821
+ name: "runWorkflowDraft",
1822
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1823
+ type: "create",
1824
+ itemType: "WorkflowRun",
1825
+ // The response is the draft variant of the run resource (`kind: "draft"`,
1826
+ // required `workflow_draft_id` / `draft_revision`), not the mixed-kind
1827
+ // `WorkflowRun` item the docs generator derives from itemType.
1828
+ returnType: "RunWorkflowDraftResponse",
1829
+ inputSchema: RunWorkflowDraftOptionsSchema,
1830
+ outputSchema: RunWorkflowDraftResponseSchema,
1831
+ skipOutputValidation: true,
1832
+ output: "item",
1833
+ resolvers: {
1834
+ workflow: chunkIHWWBHBO_cjs.workflowIdResolver,
1835
+ draft: chunkIHWWBHBO_cjs.workflowDraftIdResolver,
1836
+ draftRevision: chunkIHWWBHBO_cjs.workflowDraftRevisionResolver
1837
+ },
1838
+ run: async ({ imports, input }) => {
1839
+ const api = imports.api;
1840
+ const body = {
1841
+ draft_revision: input.draftRevision
1842
+ };
1843
+ if (input.input !== void 0) {
1844
+ body.input = input.input;
1845
+ }
1846
+ const raw = await api.post(
1847
+ `${CODE_SUBSTRATE_WORKFLOWS_API}/workflows/${encodeURIComponent(input.workflow)}/drafts/${encodeURIComponent(input.draft)}/runs`,
1848
+ body,
1849
+ {
1850
+ authRequired: true,
1851
+ resource: { type: "workflow-draft", id: input.draft },
1852
+ // 409 — the draft was edited concurrently (its draft_revision moved
1853
+ // past the caller's). Retryable after re-reading the draft. 429 (the
1854
+ // per-user draft-run rate limit) needs no handling here: the client
1855
+ // retries with backoff and then throws ZapierRateLimitError.
1856
+ customErrorHandler: ({ status, data }) => {
1857
+ if (status === 409) {
1858
+ const detail = chunkIHWWBHBO_cjs.extractErrorDetail(data);
1859
+ return new chunkIHWWBHBO_cjs.ZapierConflictError(
1860
+ `${detail ?? "Draft run conflict"} \u2014 the draft changed since it was last read. Re-read the draft to get the current draft_revision, then retry the run.`,
1861
+ { statusCode: status, resourceType: "workflow-draft" }
1862
+ );
1863
+ }
1864
+ return void 0;
1865
+ }
1866
+ }
1867
+ );
1868
+ return { data: RunWorkflowDraftResponseSchema.parse(raw) };
1869
+ }
1870
+ });
1774
1871
  var listWorkflowRunsPlugin = kitcore.defineMethod({
1775
1872
  ...codeSubstrateDefaults,
1776
1873
  name: "listWorkflowRuns",
1777
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1874
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1778
1875
  type: "list",
1779
1876
  itemType: "WorkflowRun",
1780
1877
  inputSchema: ListWorkflowRunsOptionsSchema,
@@ -1782,14 +1879,17 @@ var listWorkflowRunsPlugin = kitcore.defineMethod({
1782
1879
  skipOutputValidation: true,
1783
1880
  // The handler already returns a clean `{ data, nextCursor }` page, so the
1784
1881
  // standard list output (no `adaptPage`) applies.
1785
- output: { type: "list", defaultPageSize: chunkNTUEFDSW_cjs.DEFAULT_PAGE_SIZE },
1786
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
1882
+ output: { type: "list", defaultPageSize: chunkIHWWBHBO_cjs.DEFAULT_PAGE_SIZE },
1883
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
1787
1884
  run: async ({ imports, input }) => {
1788
1885
  const api = imports.api;
1789
1886
  const searchParams = {};
1790
1887
  if (input.pageSize !== void 0) {
1791
1888
  searchParams.limit = input.pageSize.toString();
1792
1889
  }
1890
+ if (input.kind !== void 0) {
1891
+ searchParams.kind = input.kind;
1892
+ }
1793
1893
  if (input.cursor) {
1794
1894
  searchParams.cursor = input.cursor;
1795
1895
  }
@@ -1818,15 +1918,14 @@ var GetWorkflowRunOptionsSchema = zod.z.object({
1818
1918
  ),
1819
1919
  run: zod.z.string().uuid().describe("Workflow run ID")
1820
1920
  }).describe(
1821
- "Get the current state of a workflow run (a triggered execution of a deployed workflow)"
1921
+ "Get the current state of a workflow run \u2014 a live run of a published workflow version, or a draft run launched via `runWorkflowDraft` (the `kind` field says which)"
1822
1922
  );
1823
- var GetWorkflowRunResponseSchema = zod.z.object({
1824
- id: zod.z.string().describe("Workflow run ID (UUID)"),
1825
- trigger_id: zod.z.string().nullable().describe("ID of the trigger that fired this run, if any"),
1923
+ var workflowRunBase = zod.z.object({
1924
+ id: zod.z.string().describe("Workflow run ID (UUIDv7). Unique across live and draft runs."),
1925
+ workflow_id: zod.z.string().describe("The workflow this run belongs to"),
1826
1926
  durable_run_id: zod.z.string().nullable().describe(
1827
1927
  "Linked code-substrate-runner run ID. Null until the durable run is created."
1828
1928
  ),
1829
- workflow_version_id: zod.z.string().nullable().describe("Workflow version the run is bound to"),
1830
1929
  status: WorkflowRunStatusSchema,
1831
1930
  input: zod.z.unknown().describe("Input passed to the run"),
1832
1931
  output: zod.z.unknown().nullable().describe("Return value, present when status is `finished`"),
@@ -1834,20 +1933,40 @@ var GetWorkflowRunResponseSchema = zod.z.object({
1834
1933
  created_at: zod.z.string().describe("When the run was created (ISO-8601)"),
1835
1934
  updated_at: zod.z.string().describe("When the run was last updated (ISO-8601)")
1836
1935
  });
1936
+ var LiveWorkflowRunSchema = workflowRunBase.extend({
1937
+ kind: zod.z.literal("live").describe("A run of a published workflow version."),
1938
+ trigger_id: zod.z.string().nullable().describe(
1939
+ "ID of the trigger that fired this run. Null for runs created without a trigger."
1940
+ ),
1941
+ workflow_version_id: zod.z.string().nullable().describe("Workflow version the run is bound to. Null in rare edge cases.")
1942
+ });
1943
+ var DraftWorkflowRunSchema = workflowRunBase.extend({
1944
+ kind: zod.z.literal("draft").describe("A run launched from a workflow draft via `runWorkflowDraft`."),
1945
+ workflow_draft_id: zod.z.string().nullable().describe(
1946
+ "The draft this run was launched from. Null once that draft has been deleted (the run outlives its draft)."
1947
+ ),
1948
+ draft_revision: zod.z.number().int().describe(
1949
+ "The draft's revision at the moment this run was created. Compare against the draft's current `draft_revision` to tell whether the run still reflects the draft as it now stands."
1950
+ )
1951
+ });
1952
+ var GetWorkflowRunResponseSchema = zod.z.discriminatedUnion("kind", [
1953
+ LiveWorkflowRunSchema,
1954
+ DraftWorkflowRunSchema
1955
+ ]);
1837
1956
 
1838
1957
  // src/plugins/codeSubstrate/getWorkflowRun/index.ts
1839
1958
  var getWorkflowRunPlugin = kitcore.defineMethod({
1840
1959
  ...codeSubstrateDefaults,
1841
1960
  name: "getWorkflowRun",
1842
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1961
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1843
1962
  itemType: "WorkflowRun",
1844
1963
  inputSchema: GetWorkflowRunOptionsSchema,
1845
1964
  outputSchema: GetWorkflowRunResponseSchema,
1846
1965
  skipOutputValidation: true,
1847
1966
  output: "item",
1848
1967
  resolvers: {
1849
- workflow: chunkNTUEFDSW_cjs.workflowIdResolver,
1850
- run: chunkNTUEFDSW_cjs.workflowRunIdResolver
1968
+ workflow: chunkIHWWBHBO_cjs.workflowIdResolver,
1969
+ run: chunkIHWWBHBO_cjs.workflowRunIdResolver
1851
1970
  },
1852
1971
  run: async ({ imports, input }) => {
1853
1972
  const api = imports.api;
@@ -1884,7 +2003,7 @@ var GetTriggerRunResponseSchema = zod.z.object({
1884
2003
  var getTriggerRunPlugin = kitcore.defineMethod({
1885
2004
  ...codeSubstrateDefaults,
1886
2005
  name: "getTriggerRun",
1887
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2006
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1888
2007
  itemType: "WorkflowRun",
1889
2008
  inputSchema: GetTriggerRunOptionsSchema,
1890
2009
  outputSchema: GetTriggerRunResponseSchema,
@@ -1927,14 +2046,14 @@ var TriggerWorkflowResponseSchema = zod.z.object({
1927
2046
  var triggerWorkflowPlugin = kitcore.defineMethod({
1928
2047
  ...codeSubstrateDefaults,
1929
2048
  name: "triggerWorkflow",
1930
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2049
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1931
2050
  type: "create",
1932
2051
  itemType: "WorkflowRun",
1933
2052
  inputSchema: TriggerWorkflowOptionsSchema,
1934
2053
  outputSchema: TriggerWorkflowResponseSchema,
1935
2054
  skipOutputValidation: true,
1936
2055
  output: "item",
1937
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
2056
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
1938
2057
  run: async ({ imports, input }) => {
1939
2058
  const api = imports.api;
1940
2059
  const rawWorkflow = await api.get(
@@ -1948,7 +2067,7 @@ var triggerWorkflowPlugin = kitcore.defineMethod({
1948
2067
  const segments = new URL(workflow.trigger_url).pathname.split("/");
1949
2068
  const triggerToken = segments[segments.length - 1];
1950
2069
  if (!triggerToken) {
1951
- throw new chunkNTUEFDSW_cjs.ZapierApiError(
2070
+ throw new chunkIHWWBHBO_cjs.ZapierApiError(
1952
2071
  `Workflow ${input.workflow} returned a malformed trigger_url`,
1953
2072
  { statusCode: 0, response: workflow.trigger_url }
1954
2073
  );
@@ -2027,7 +2146,7 @@ var ValidateWorkflowResponseSchema = zod.z.object({
2027
2146
  var validateWorkflowPlugin = kitcore.defineMethod({
2028
2147
  ...codeSubstrateDefaults,
2029
2148
  name: "validateWorkflow",
2030
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2149
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2031
2150
  itemType: "WorkflowValidation",
2032
2151
  inputSchema: ValidateWorkflowOptionsSchema,
2033
2152
  outputSchema: ValidateWorkflowResponseSchema,
@@ -2074,7 +2193,7 @@ function handleFormsAccessError({
2074
2193
  if (status !== 403 || firstErrorDetail(data) !== FORMS_ACCESS_DENIED_DETAIL) {
2075
2194
  return void 0;
2076
2195
  }
2077
- return new chunkNTUEFDSW_cjs.ZapierConfigurationError(
2196
+ return new chunkIHWWBHBO_cjs.ZapierConfigurationError(
2078
2197
  `${FORMS_ACCESS_DENIED_DETAIL} Request access through Zapier support at https://zapier.com/app/get-help.`,
2079
2198
  { statusCode: status }
2080
2199
  );
@@ -2152,7 +2271,7 @@ function assertUniqueKeys(keys, fields) {
2152
2271
  const label = fields[index]?.label ?? "";
2153
2272
  const previous = seen.get(key);
2154
2273
  if (previous !== void 0) {
2155
- throw new chunkNTUEFDSW_cjs.ZapierValidationError(
2274
+ throw new chunkIHWWBHBO_cjs.ZapierValidationError(
2156
2275
  `Fields "${previous}" and "${label}" both derive the submission key "${key}". Give them labels that differ by more than punctuation or casing.`,
2157
2276
  { details: { key, labels: [previous, label] } }
2158
2277
  );
@@ -2358,7 +2477,7 @@ var CreateFormSchema = zod.z.object({
2358
2477
  var createFormPlugin = kitcore.defineMethod({
2359
2478
  ...humanInputDefaults,
2360
2479
  name: "createForm",
2361
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2480
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2362
2481
  type: "create",
2363
2482
  itemType: "Form",
2364
2483
  inputSchema: CreateFormSchema,
@@ -2449,8 +2568,8 @@ var EnableAgenticManagementItemSchema = zod.z.object({
2449
2568
  var enableAgenticManagementPlugin = kitcore.defineMethod({
2450
2569
  ...agenticManagementDefaults,
2451
2570
  name: "enableAgenticManagement",
2452
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2453
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
2571
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2572
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
2454
2573
  type: "create",
2455
2574
  itemType: "AgenticManagementEnableResult",
2456
2575
  inputSchema: EnableAgenticManagementSchema,
@@ -2491,8 +2610,8 @@ var DisableAgenticManagementItemSchema = zod.z.object({
2491
2610
  var disableAgenticManagementPlugin = kitcore.defineMethod({
2492
2611
  ...agenticManagementDefaults,
2493
2612
  name: "disableAgenticManagement",
2494
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2495
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
2613
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2614
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
2496
2615
  type: "delete",
2497
2616
  confirm: "delete",
2498
2617
  itemType: "AgenticManagementDisableResult",
@@ -2537,8 +2656,8 @@ var GetAgenticManagementConfigItemSchema = zod.z.object({
2537
2656
  var getAgenticManagementConfigPlugin = kitcore.defineMethod({
2538
2657
  ...agenticManagementDefaults,
2539
2658
  name: "getAgenticManagementConfig",
2540
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2541
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
2659
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2660
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
2542
2661
  type: "item",
2543
2662
  itemType: "AgenticManagementConfig",
2544
2663
  inputSchema: GetAgenticManagementConfigSchema,
@@ -2584,8 +2703,8 @@ var UpdateAgenticManagementConfigItemSchema = zod.z.object({
2584
2703
  var updateAgenticManagementConfigPlugin = kitcore.defineMethod({
2585
2704
  ...agenticManagementDefaults,
2586
2705
  name: "updateAgenticManagementConfig",
2587
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2588
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
2706
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2707
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
2589
2708
  type: "update",
2590
2709
  itemType: "AgenticManagementConfig",
2591
2710
  inputSchema: UpdateAgenticManagementConfigSchema,
@@ -2622,8 +2741,8 @@ var GetAgenticManagementIntentSchema = zod.z.object({
2622
2741
  var getAgenticManagementIntentPlugin = kitcore.defineMethod({
2623
2742
  ...agenticManagementDefaults,
2624
2743
  name: "getAgenticManagementIntent",
2625
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2626
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
2744
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2745
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
2627
2746
  type: "item",
2628
2747
  itemType: "AgenticManagementIntent",
2629
2748
  inputSchema: GetAgenticManagementIntentSchema,
@@ -2666,8 +2785,8 @@ var UpdateAgenticManagementIntentSchema = zod.z.object({
2666
2785
  var updateAgenticManagementIntentPlugin = kitcore.defineMethod({
2667
2786
  ...agenticManagementDefaults,
2668
2787
  name: "updateAgenticManagementIntent",
2669
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2670
- resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
2788
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2789
+ resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
2671
2790
  type: "update",
2672
2791
  itemType: "AgenticManagementIntent",
2673
2792
  inputSchema: UpdateAgenticManagementIntentSchema,
@@ -2819,7 +2938,7 @@ var ReadVfsFileItemSchema = zod.z.object({
2819
2938
  var readVfsFilePlugin = kitcore.defineMethod({
2820
2939
  ...vfsDefaults,
2821
2940
  name: "readVfsFile",
2822
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2941
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2823
2942
  itemType: "VfsFile",
2824
2943
  inputSchema: ReadVfsFileSchema,
2825
2944
  outputSchema: ReadVfsFileItemSchema,
@@ -2878,7 +2997,7 @@ var WriteVfsFileItemSchema = FsWriteResultSchema;
2878
2997
  var writeVfsFilePlugin = kitcore.defineMethod({
2879
2998
  ...vfsDefaults,
2880
2999
  name: "writeVfsFile",
2881
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
3000
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2882
3001
  itemType: "VfsWriteResult",
2883
3002
  inputSchema: WriteVfsFileSchema,
2884
3003
  outputSchema: WriteVfsFileItemSchema,
@@ -2919,7 +3038,7 @@ var AppendVfsFileItemSchema = FsWriteResultSchema;
2919
3038
  var appendVfsFilePlugin = kitcore.defineMethod({
2920
3039
  ...vfsDefaults,
2921
3040
  name: "appendVfsFile",
2922
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
3041
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2923
3042
  itemType: "VfsWriteResult",
2924
3043
  inputSchema: AppendVfsFileSchema,
2925
3044
  outputSchema: AppendVfsFileItemSchema,
@@ -2960,7 +3079,7 @@ var CopyVfsFileItemSchema = FsWriteResultSchema;
2960
3079
  var copyVfsFilePlugin = kitcore.defineMethod({
2961
3080
  ...vfsDefaults,
2962
3081
  name: "copyVfsFile",
2963
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
3082
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2964
3083
  itemType: "VfsWriteResult",
2965
3084
  inputSchema: CopyVfsFileSchema,
2966
3085
  outputSchema: CopyVfsFileItemSchema,
@@ -2998,7 +3117,7 @@ var ListVfsDirectorySchema = zod.z.object({
2998
3117
  var listVfsDirectoryPlugin = kitcore.defineMethod({
2999
3118
  ...vfsDefaults,
3000
3119
  name: "listVfsDirectory",
3001
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
3120
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
3002
3121
  type: "list",
3003
3122
  itemType: "VfsDirectoryEntry",
3004
3123
  inputSchema: ListVfsDirectorySchema,
@@ -3041,7 +3160,7 @@ var CreateVfsDirectoryItemSchema = FsMkdirResultSchema;
3041
3160
  var createVfsDirectoryPlugin = kitcore.defineMethod({
3042
3161
  ...vfsDefaults,
3043
3162
  name: "createVfsDirectory",
3044
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
3163
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
3045
3164
  itemType: "VfsMkdirResult",
3046
3165
  inputSchema: CreateVfsDirectorySchema,
3047
3166
  outputSchema: CreateVfsDirectoryItemSchema,
@@ -3071,7 +3190,7 @@ var StatVfsPathItemSchema = FsDirectoryEntrySchema;
3071
3190
  var statVfsPathPlugin = kitcore.defineMethod({
3072
3191
  ...vfsDefaults,
3073
3192
  name: "statVfsPath",
3074
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
3193
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
3075
3194
  itemType: "VfsStat",
3076
3195
  inputSchema: StatVfsPathSchema,
3077
3196
  outputSchema: StatVfsPathItemSchema,
@@ -3102,7 +3221,7 @@ var DeleteVfsPathItemSchema = FsDeleteResultSchema;
3102
3221
  var deleteVfsPathPlugin = kitcore.defineMethod({
3103
3222
  ...vfsDefaults,
3104
3223
  name: "deleteVfsPath",
3105
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
3224
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
3106
3225
  type: "delete",
3107
3226
  itemType: "VfsDeleteResult",
3108
3227
  // `type: "delete"` defaults the documented return to `{ success: boolean }`,
@@ -3143,7 +3262,7 @@ var MoveVfsPathItemSchema = FsMoveResultSchema;
3143
3262
  var moveVfsPathPlugin = kitcore.defineMethod({
3144
3263
  ...vfsDefaults,
3145
3264
  name: "moveVfsPath",
3146
- imports: [chunkNTUEFDSW_cjs.apiPluginRef],
3265
+ imports: [chunkIHWWBHBO_cjs.apiPluginRef],
3147
3266
  itemType: "VfsMoveResult",
3148
3267
  inputSchema: MoveVfsPathSchema,
3149
3268
  outputSchema: MoveVfsPathItemSchema,
@@ -3166,7 +3285,7 @@ var zapierExperimentalSdkPlugin = kitcore.definePlugin({
3166
3285
  namespace: "zapier",
3167
3286
  name: "experimental-sdk",
3168
3287
  exports: [
3169
- chunkNTUEFDSW_cjs.zapierSdkPlugin,
3288
+ chunkIHWWBHBO_cjs.zapierSdkPlugin,
3170
3289
  // Code substrate (experimental). `list*` plugins are exported before their
3171
3290
  // `get*` / mutation siblings because per-row resolvers reach the listing
3172
3291
  // methods.
@@ -3187,6 +3306,7 @@ var zapierExperimentalSdkPlugin = kitcore.definePlugin({
3187
3306
  updateWorkflowDraftPlugin,
3188
3307
  discardWorkflowDraftPlugin,
3189
3308
  publishWorkflowDraftPlugin,
3309
+ runWorkflowDraftPlugin,
3190
3310
  listWorkflowRunsPlugin,
3191
3311
  getWorkflowRunPlugin,
3192
3312
  listDurableRunsPlugin,
@@ -3226,1127 +3346,1131 @@ var zapierExperimentalSdkPlugin = kitcore.definePlugin({
3226
3346
  function createZapierSdk(options = {}) {
3227
3347
  return kitcore.createSdk(zapierExperimentalSdkPlugin, {
3228
3348
  configuration: {
3229
- [chunkNTUEFDSW_cjs.SDK_OPTIONS_ID]: options,
3230
- [kitcore.CORE_OPTIONS_ID]: chunkNTUEFDSW_cjs.zapierCoreOptions
3349
+ [chunkIHWWBHBO_cjs.SDK_OPTIONS_ID]: options,
3350
+ [kitcore.CORE_OPTIONS_ID]: chunkIHWWBHBO_cjs.zapierCoreOptions
3231
3351
  }
3232
3352
  });
3233
3353
  }
3234
3354
 
3235
3355
  Object.defineProperty(exports, "ACTION_RUNS_PATH", {
3236
3356
  enumerable: true,
3237
- get: function () { return chunkNTUEFDSW_cjs.ACTION_RUNS_PATH; }
3357
+ get: function () { return chunkIHWWBHBO_cjs.ACTION_RUNS_PATH; }
3238
3358
  });
3239
3359
  Object.defineProperty(exports, "API_ID", {
3240
3360
  enumerable: true,
3241
- get: function () { return chunkNTUEFDSW_cjs.API_ID; }
3361
+ get: function () { return chunkIHWWBHBO_cjs.API_ID; }
3242
3362
  });
3243
3363
  Object.defineProperty(exports, "ActionKeyPropertySchema", {
3244
3364
  enumerable: true,
3245
- get: function () { return chunkNTUEFDSW_cjs.ActionKeyPropertySchema; }
3365
+ get: function () { return chunkIHWWBHBO_cjs.ActionKeyPropertySchema; }
3246
3366
  });
3247
3367
  Object.defineProperty(exports, "ActionPropertySchema", {
3248
3368
  enumerable: true,
3249
- get: function () { return chunkNTUEFDSW_cjs.ActionPropertySchema; }
3369
+ get: function () { return chunkIHWWBHBO_cjs.ActionPropertySchema; }
3250
3370
  });
3251
3371
  Object.defineProperty(exports, "ActionTimeoutMillisecondsPropertySchema", {
3252
3372
  enumerable: true,
3253
- get: function () { return chunkNTUEFDSW_cjs.ActionTimeoutMillisecondsPropertySchema; }
3373
+ get: function () { return chunkIHWWBHBO_cjs.ActionTimeoutMillisecondsPropertySchema; }
3254
3374
  });
3255
3375
  Object.defineProperty(exports, "ActionTimeoutSecondsPropertySchema", {
3256
3376
  enumerable: true,
3257
- get: function () { return chunkNTUEFDSW_cjs.ActionTimeoutSecondsPropertySchema; }
3377
+ get: function () { return chunkIHWWBHBO_cjs.ActionTimeoutSecondsPropertySchema; }
3258
3378
  });
3259
3379
  Object.defineProperty(exports, "ActionTypePropertySchema", {
3260
3380
  enumerable: true,
3261
- get: function () { return chunkNTUEFDSW_cjs.ActionTypePropertySchema; }
3381
+ get: function () { return chunkIHWWBHBO_cjs.ActionTypePropertySchema; }
3262
3382
  });
3263
3383
  Object.defineProperty(exports, "AppKeyPropertySchema", {
3264
3384
  enumerable: true,
3265
- get: function () { return chunkNTUEFDSW_cjs.AppKeyPropertySchema; }
3385
+ get: function () { return chunkIHWWBHBO_cjs.AppKeyPropertySchema; }
3266
3386
  });
3267
3387
  Object.defineProperty(exports, "AppPropertySchema", {
3268
3388
  enumerable: true,
3269
- get: function () { return chunkNTUEFDSW_cjs.AppPropertySchema; }
3389
+ get: function () { return chunkIHWWBHBO_cjs.AppPropertySchema; }
3270
3390
  });
3271
3391
  Object.defineProperty(exports, "AppsPropertySchema", {
3272
3392
  enumerable: true,
3273
- get: function () { return chunkNTUEFDSW_cjs.AppsPropertySchema; }
3393
+ get: function () { return chunkIHWWBHBO_cjs.AppsPropertySchema; }
3274
3394
  });
3275
3395
  Object.defineProperty(exports, "AuthMechanism", {
3276
3396
  enumerable: true,
3277
- get: function () { return chunkNTUEFDSW_cjs.AuthMechanism; }
3397
+ get: function () { return chunkIHWWBHBO_cjs.AuthMechanism; }
3278
3398
  });
3279
3399
  Object.defineProperty(exports, "AuthenticationIdPropertySchema", {
3280
3400
  enumerable: true,
3281
- get: function () { return chunkNTUEFDSW_cjs.AuthenticationIdPropertySchema; }
3401
+ get: function () { return chunkIHWWBHBO_cjs.AuthenticationIdPropertySchema; }
3282
3402
  });
3283
3403
  Object.defineProperty(exports, "BaseSdkOptionsSchema", {
3284
3404
  enumerable: true,
3285
- get: function () { return chunkNTUEFDSW_cjs.BaseSdkOptionsSchema; }
3405
+ get: function () { return chunkIHWWBHBO_cjs.BaseSdkOptionsSchema; }
3286
3406
  });
3287
3407
  Object.defineProperty(exports, "CONNECTIONS_ID", {
3288
3408
  enumerable: true,
3289
- get: function () { return chunkNTUEFDSW_cjs.CONNECTIONS_ID; }
3409
+ get: function () { return chunkIHWWBHBO_cjs.CONNECTIONS_ID; }
3290
3410
  });
3291
3411
  Object.defineProperty(exports, "CONTEXT", {
3292
3412
  enumerable: true,
3293
- get: function () { return chunkNTUEFDSW_cjs.CONTEXT; }
3413
+ get: function () { return chunkIHWWBHBO_cjs.CONTEXT; }
3294
3414
  });
3295
3415
  Object.defineProperty(exports, "CONTEXT_CACHE_MAX_SIZE", {
3296
3416
  enumerable: true,
3297
- get: function () { return chunkNTUEFDSW_cjs.CONTEXT_CACHE_MAX_SIZE; }
3417
+ get: function () { return chunkIHWWBHBO_cjs.CONTEXT_CACHE_MAX_SIZE; }
3298
3418
  });
3299
3419
  Object.defineProperty(exports, "CONTEXT_CACHE_TTL_MILLISECONDS", {
3300
3420
  enumerable: true,
3301
- get: function () { return chunkNTUEFDSW_cjs.CONTEXT_CACHE_TTL_MILLISECONDS; }
3421
+ get: function () { return chunkIHWWBHBO_cjs.CONTEXT_CACHE_TTL_MILLISECONDS; }
3302
3422
  });
3303
3423
  Object.defineProperty(exports, "CORE_ERROR_SYMBOL", {
3304
3424
  enumerable: true,
3305
- get: function () { return chunkNTUEFDSW_cjs.CORE_ERROR_SYMBOL; }
3425
+ get: function () { return chunkIHWWBHBO_cjs.CORE_ERROR_SYMBOL; }
3306
3426
  });
3307
3427
  Object.defineProperty(exports, "CORE_OPTIONS_ID", {
3308
3428
  enumerable: true,
3309
- get: function () { return chunkNTUEFDSW_cjs.CORE_OPTIONS_ID; }
3429
+ get: function () { return chunkIHWWBHBO_cjs.CORE_OPTIONS_ID; }
3310
3430
  });
3311
3431
  Object.defineProperty(exports, "CORE_SIGNAL_SYMBOL", {
3312
3432
  enumerable: true,
3313
- get: function () { return chunkNTUEFDSW_cjs.CORE_SIGNAL_SYMBOL; }
3433
+ get: function () { return chunkIHWWBHBO_cjs.CORE_SIGNAL_SYMBOL; }
3314
3434
  });
3315
3435
  Object.defineProperty(exports, "ClientCredentialsObjectSchema", {
3316
3436
  enumerable: true,
3317
- get: function () { return chunkNTUEFDSW_cjs.ClientCredentialsObjectSchema; }
3437
+ get: function () { return chunkIHWWBHBO_cjs.ClientCredentialsObjectSchema; }
3318
3438
  });
3319
3439
  Object.defineProperty(exports, "ConnectionEntrySchema", {
3320
3440
  enumerable: true,
3321
- get: function () { return chunkNTUEFDSW_cjs.ConnectionEntrySchema; }
3441
+ get: function () { return chunkIHWWBHBO_cjs.ConnectionEntrySchema; }
3322
3442
  });
3323
3443
  Object.defineProperty(exports, "ConnectionIdPropertySchema", {
3324
3444
  enumerable: true,
3325
- get: function () { return chunkNTUEFDSW_cjs.ConnectionIdPropertySchema; }
3445
+ get: function () { return chunkIHWWBHBO_cjs.ConnectionIdPropertySchema; }
3326
3446
  });
3327
3447
  Object.defineProperty(exports, "ConnectionPropertySchema", {
3328
3448
  enumerable: true,
3329
- get: function () { return chunkNTUEFDSW_cjs.ConnectionPropertySchema; }
3449
+ get: function () { return chunkIHWWBHBO_cjs.ConnectionPropertySchema; }
3330
3450
  });
3331
3451
  Object.defineProperty(exports, "ConnectionsMapSchema", {
3332
3452
  enumerable: true,
3333
- get: function () { return chunkNTUEFDSW_cjs.ConnectionsMapSchema; }
3453
+ get: function () { return chunkIHWWBHBO_cjs.ConnectionsMapSchema; }
3334
3454
  });
3335
3455
  Object.defineProperty(exports, "ConnectionsPropertySchema", {
3336
3456
  enumerable: true,
3337
- get: function () { return chunkNTUEFDSW_cjs.ConnectionsPropertySchema; }
3457
+ get: function () { return chunkIHWWBHBO_cjs.ConnectionsPropertySchema; }
3338
3458
  });
3339
3459
  Object.defineProperty(exports, "CoreCancelledSignal", {
3340
3460
  enumerable: true,
3341
- get: function () { return chunkNTUEFDSW_cjs.CoreCancelledSignal; }
3461
+ get: function () { return chunkIHWWBHBO_cjs.CoreCancelledSignal; }
3342
3462
  });
3343
3463
  Object.defineProperty(exports, "CoreDisposeError", {
3344
3464
  enumerable: true,
3345
- get: function () { return chunkNTUEFDSW_cjs.CoreDisposeError; }
3465
+ get: function () { return chunkIHWWBHBO_cjs.CoreDisposeError; }
3346
3466
  });
3347
3467
  Object.defineProperty(exports, "CoreErrorCode", {
3348
3468
  enumerable: true,
3349
- get: function () { return chunkNTUEFDSW_cjs.CoreErrorCode; }
3469
+ get: function () { return chunkIHWWBHBO_cjs.CoreErrorCode; }
3350
3470
  });
3351
3471
  Object.defineProperty(exports, "CoreSignal", {
3352
3472
  enumerable: true,
3353
- get: function () { return chunkNTUEFDSW_cjs.CoreSignal; }
3473
+ get: function () { return chunkIHWWBHBO_cjs.CoreSignal; }
3354
3474
  });
3355
3475
  Object.defineProperty(exports, "CredentialsFunctionSchema", {
3356
3476
  enumerable: true,
3357
- get: function () { return chunkNTUEFDSW_cjs.CredentialsFunctionSchema; }
3477
+ get: function () { return chunkIHWWBHBO_cjs.CredentialsFunctionSchema; }
3358
3478
  });
3359
3479
  Object.defineProperty(exports, "CredentialsObjectSchema", {
3360
3480
  enumerable: true,
3361
- get: function () { return chunkNTUEFDSW_cjs.CredentialsObjectSchema; }
3481
+ get: function () { return chunkIHWWBHBO_cjs.CredentialsObjectSchema; }
3362
3482
  });
3363
3483
  Object.defineProperty(exports, "CredentialsSchema", {
3364
3484
  enumerable: true,
3365
- get: function () { return chunkNTUEFDSW_cjs.CredentialsSchema; }
3485
+ get: function () { return chunkIHWWBHBO_cjs.CredentialsSchema; }
3366
3486
  });
3367
3487
  Object.defineProperty(exports, "DEFAULT_ACTION_TIMEOUT_MILLISECONDS", {
3368
3488
  enumerable: true,
3369
- get: function () { return chunkNTUEFDSW_cjs.DEFAULT_ACTION_TIMEOUT_MILLISECONDS; }
3489
+ get: function () { return chunkIHWWBHBO_cjs.DEFAULT_ACTION_TIMEOUT_MILLISECONDS; }
3370
3490
  });
3371
3491
  Object.defineProperty(exports, "DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS", {
3372
3492
  enumerable: true,
3373
- get: function () { return chunkNTUEFDSW_cjs.DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS; }
3493
+ get: function () { return chunkIHWWBHBO_cjs.DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS; }
3374
3494
  });
3375
3495
  Object.defineProperty(exports, "DEFAULT_CONFIG_PATH", {
3376
3496
  enumerable: true,
3377
- get: function () { return chunkNTUEFDSW_cjs.DEFAULT_CONFIG_PATH; }
3497
+ get: function () { return chunkIHWWBHBO_cjs.DEFAULT_CONFIG_PATH; }
3378
3498
  });
3379
3499
  Object.defineProperty(exports, "DEFAULT_MAX_APPROVAL_RETRIES", {
3380
3500
  enumerable: true,
3381
- get: function () { return chunkNTUEFDSW_cjs.DEFAULT_MAX_APPROVAL_RETRIES; }
3501
+ get: function () { return chunkIHWWBHBO_cjs.DEFAULT_MAX_APPROVAL_RETRIES; }
3382
3502
  });
3383
3503
  Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
3384
3504
  enumerable: true,
3385
- get: function () { return chunkNTUEFDSW_cjs.DEFAULT_PAGE_SIZE; }
3505
+ get: function () { return chunkIHWWBHBO_cjs.DEFAULT_PAGE_SIZE; }
3386
3506
  });
3387
3507
  Object.defineProperty(exports, "DEPRECATION_NOTICE_EVENT", {
3388
3508
  enumerable: true,
3389
- get: function () { return chunkNTUEFDSW_cjs.DEPRECATION_NOTICE_EVENT; }
3509
+ get: function () { return chunkIHWWBHBO_cjs.DEPRECATION_NOTICE_EVENT; }
3390
3510
  });
3391
3511
  Object.defineProperty(exports, "DebugPropertySchema", {
3392
3512
  enumerable: true,
3393
- get: function () { return chunkNTUEFDSW_cjs.DebugPropertySchema; }
3513
+ get: function () { return chunkIHWWBHBO_cjs.DebugPropertySchema; }
3394
3514
  });
3395
3515
  Object.defineProperty(exports, "DrainTriggerInboxSchema", {
3396
3516
  enumerable: true,
3397
- get: function () { return chunkNTUEFDSW_cjs.DrainTriggerInboxSchema; }
3517
+ get: function () { return chunkIHWWBHBO_cjs.DrainTriggerInboxSchema; }
3398
3518
  });
3399
3519
  Object.defineProperty(exports, "EVENT_EMISSION_ID", {
3400
3520
  enumerable: true,
3401
- get: function () { return chunkNTUEFDSW_cjs.EVENT_EMISSION_ID; }
3521
+ get: function () { return chunkIHWWBHBO_cjs.EVENT_EMISSION_ID; }
3402
3522
  });
3403
3523
  Object.defineProperty(exports, "FieldsPropertySchema", {
3404
3524
  enumerable: true,
3405
- get: function () { return chunkNTUEFDSW_cjs.FieldsPropertySchema; }
3525
+ get: function () { return chunkIHWWBHBO_cjs.FieldsPropertySchema; }
3406
3526
  });
3407
3527
  Object.defineProperty(exports, "InputFieldPropertySchema", {
3408
3528
  enumerable: true,
3409
- get: function () { return chunkNTUEFDSW_cjs.InputFieldPropertySchema; }
3529
+ get: function () { return chunkIHWWBHBO_cjs.InputFieldPropertySchema; }
3410
3530
  });
3411
3531
  Object.defineProperty(exports, "InputsPropertySchema", {
3412
3532
  enumerable: true,
3413
- get: function () { return chunkNTUEFDSW_cjs.InputsPropertySchema; }
3533
+ get: function () { return chunkIHWWBHBO_cjs.InputsPropertySchema; }
3414
3534
  });
3415
3535
  Object.defineProperty(exports, "LeaseLimitPropertySchema", {
3416
3536
  enumerable: true,
3417
- get: function () { return chunkNTUEFDSW_cjs.LeaseLimitPropertySchema; }
3537
+ get: function () { return chunkIHWWBHBO_cjs.LeaseLimitPropertySchema; }
3418
3538
  });
3419
3539
  Object.defineProperty(exports, "LeasePropertySchema", {
3420
3540
  enumerable: true,
3421
- get: function () { return chunkNTUEFDSW_cjs.LeasePropertySchema; }
3541
+ get: function () { return chunkIHWWBHBO_cjs.LeasePropertySchema; }
3422
3542
  });
3423
3543
  Object.defineProperty(exports, "LeaseSecondsPropertySchema", {
3424
3544
  enumerable: true,
3425
- get: function () { return chunkNTUEFDSW_cjs.LeaseSecondsPropertySchema; }
3545
+ get: function () { return chunkIHWWBHBO_cjs.LeaseSecondsPropertySchema; }
3426
3546
  });
3427
3547
  Object.defineProperty(exports, "LimitPropertySchema", {
3428
3548
  enumerable: true,
3429
- get: function () { return chunkNTUEFDSW_cjs.LimitPropertySchema; }
3549
+ get: function () { return chunkIHWWBHBO_cjs.LimitPropertySchema; }
3430
3550
  });
3431
3551
  Object.defineProperty(exports, "MANIFEST_ID", {
3432
3552
  enumerable: true,
3433
- get: function () { return chunkNTUEFDSW_cjs.MANIFEST_ID; }
3553
+ get: function () { return chunkIHWWBHBO_cjs.MANIFEST_ID; }
3434
3554
  });
3435
3555
  Object.defineProperty(exports, "MAX_CONCURRENCY_LIMIT", {
3436
3556
  enumerable: true,
3437
- get: function () { return chunkNTUEFDSW_cjs.MAX_CONCURRENCY_LIMIT; }
3557
+ get: function () { return chunkIHWWBHBO_cjs.MAX_CONCURRENCY_LIMIT; }
3438
3558
  });
3439
3559
  Object.defineProperty(exports, "MAX_PAGE_LIMIT", {
3440
3560
  enumerable: true,
3441
- get: function () { return chunkNTUEFDSW_cjs.MAX_PAGE_LIMIT; }
3561
+ get: function () { return chunkIHWWBHBO_cjs.MAX_PAGE_LIMIT; }
3442
3562
  });
3443
3563
  Object.defineProperty(exports, "OffsetPropertySchema", {
3444
3564
  enumerable: true,
3445
- get: function () { return chunkNTUEFDSW_cjs.OffsetPropertySchema; }
3565
+ get: function () { return chunkIHWWBHBO_cjs.OffsetPropertySchema; }
3446
3566
  });
3447
3567
  Object.defineProperty(exports, "OutputPropertySchema", {
3448
3568
  enumerable: true,
3449
- get: function () { return chunkNTUEFDSW_cjs.OutputPropertySchema; }
3569
+ get: function () { return chunkIHWWBHBO_cjs.OutputPropertySchema; }
3450
3570
  });
3451
3571
  Object.defineProperty(exports, "ParamsPropertySchema", {
3452
3572
  enumerable: true,
3453
- get: function () { return chunkNTUEFDSW_cjs.ParamsPropertySchema; }
3573
+ get: function () { return chunkIHWWBHBO_cjs.ParamsPropertySchema; }
3454
3574
  });
3455
3575
  Object.defineProperty(exports, "PkceCredentialsObjectSchema", {
3456
3576
  enumerable: true,
3457
- get: function () { return chunkNTUEFDSW_cjs.PkceCredentialsObjectSchema; }
3577
+ get: function () { return chunkIHWWBHBO_cjs.PkceCredentialsObjectSchema; }
3458
3578
  });
3459
3579
  Object.defineProperty(exports, "RESOLVE_CREDENTIALS_ID", {
3460
3580
  enumerable: true,
3461
- get: function () { return chunkNTUEFDSW_cjs.RESOLVE_CREDENTIALS_ID; }
3581
+ get: function () { return chunkIHWWBHBO_cjs.RESOLVE_CREDENTIALS_ID; }
3462
3582
  });
3463
3583
  Object.defineProperty(exports, "RecordPropertySchema", {
3464
3584
  enumerable: true,
3465
- get: function () { return chunkNTUEFDSW_cjs.RecordPropertySchema; }
3585
+ get: function () { return chunkIHWWBHBO_cjs.RecordPropertySchema; }
3466
3586
  });
3467
3587
  Object.defineProperty(exports, "RecordsPropertySchema", {
3468
3588
  enumerable: true,
3469
- get: function () { return chunkNTUEFDSW_cjs.RecordsPropertySchema; }
3589
+ get: function () { return chunkIHWWBHBO_cjs.RecordsPropertySchema; }
3470
3590
  });
3471
3591
  Object.defineProperty(exports, "RelayFetchSchema", {
3472
3592
  enumerable: true,
3473
- get: function () { return chunkNTUEFDSW_cjs.RelayFetchSchema; }
3593
+ get: function () { return chunkIHWWBHBO_cjs.RelayFetchSchema; }
3474
3594
  });
3475
3595
  Object.defineProperty(exports, "RelayRequestSchema", {
3476
3596
  enumerable: true,
3477
- get: function () { return chunkNTUEFDSW_cjs.RelayRequestSchema; }
3597
+ get: function () { return chunkIHWWBHBO_cjs.RelayRequestSchema; }
3478
3598
  });
3479
3599
  Object.defineProperty(exports, "ResolvedCredentialsSchema", {
3480
3600
  enumerable: true,
3481
- get: function () { return chunkNTUEFDSW_cjs.ResolvedCredentialsSchema; }
3601
+ get: function () { return chunkIHWWBHBO_cjs.ResolvedCredentialsSchema; }
3482
3602
  });
3483
3603
  Object.defineProperty(exports, "SDK_OPTIONS_ID", {
3484
3604
  enumerable: true,
3485
- get: function () { return chunkNTUEFDSW_cjs.SDK_OPTIONS_ID; }
3605
+ get: function () { return chunkIHWWBHBO_cjs.SDK_OPTIONS_ID; }
3486
3606
  });
3487
3607
  Object.defineProperty(exports, "TablePropertySchema", {
3488
3608
  enumerable: true,
3489
- get: function () { return chunkNTUEFDSW_cjs.TablePropertySchema; }
3609
+ get: function () { return chunkIHWWBHBO_cjs.TablePropertySchema; }
3490
3610
  });
3491
3611
  Object.defineProperty(exports, "TablesPropertySchema", {
3492
3612
  enumerable: true,
3493
- get: function () { return chunkNTUEFDSW_cjs.TablesPropertySchema; }
3613
+ get: function () { return chunkIHWWBHBO_cjs.TablesPropertySchema; }
3494
3614
  });
3495
3615
  Object.defineProperty(exports, "TriggerInboxKeyPropertySchema", {
3496
3616
  enumerable: true,
3497
- get: function () { return chunkNTUEFDSW_cjs.TriggerInboxKeyPropertySchema; }
3617
+ get: function () { return chunkIHWWBHBO_cjs.TriggerInboxKeyPropertySchema; }
3498
3618
  });
3499
3619
  Object.defineProperty(exports, "TriggerInboxNamePropertySchema", {
3500
3620
  enumerable: true,
3501
- get: function () { return chunkNTUEFDSW_cjs.TriggerInboxNamePropertySchema; }
3621
+ get: function () { return chunkIHWWBHBO_cjs.TriggerInboxNamePropertySchema; }
3502
3622
  });
3503
3623
  Object.defineProperty(exports, "TriggerInboxPropertySchema", {
3504
3624
  enumerable: true,
3505
- get: function () { return chunkNTUEFDSW_cjs.TriggerInboxPropertySchema; }
3625
+ get: function () { return chunkIHWWBHBO_cjs.TriggerInboxPropertySchema; }
3506
3626
  });
3507
3627
  Object.defineProperty(exports, "WatchTriggerInboxSchema", {
3508
3628
  enumerable: true,
3509
- get: function () { return chunkNTUEFDSW_cjs.WatchTriggerInboxSchema; }
3629
+ get: function () { return chunkIHWWBHBO_cjs.WatchTriggerInboxSchema; }
3510
3630
  });
3511
3631
  Object.defineProperty(exports, "ZAPIER_BASE_URL", {
3512
3632
  enumerable: true,
3513
- get: function () { return chunkNTUEFDSW_cjs.ZAPIER_BASE_URL; }
3633
+ get: function () { return chunkIHWWBHBO_cjs.ZAPIER_BASE_URL; }
3514
3634
  });
3515
3635
  Object.defineProperty(exports, "ZAPIER_MAX_CONCURRENT_REQUESTS", {
3516
3636
  enumerable: true,
3517
- get: function () { return chunkNTUEFDSW_cjs.ZAPIER_MAX_CONCURRENT_REQUESTS; }
3637
+ get: function () { return chunkIHWWBHBO_cjs.ZAPIER_MAX_CONCURRENT_REQUESTS; }
3518
3638
  });
3519
3639
  Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRIES", {
3520
3640
  enumerable: true,
3521
- get: function () { return chunkNTUEFDSW_cjs.ZAPIER_MAX_NETWORK_RETRIES; }
3641
+ get: function () { return chunkIHWWBHBO_cjs.ZAPIER_MAX_NETWORK_RETRIES; }
3522
3642
  });
3523
3643
  Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS", {
3524
3644
  enumerable: true,
3525
- get: function () { return chunkNTUEFDSW_cjs.ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS; }
3645
+ get: function () { return chunkIHWWBHBO_cjs.ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS; }
3526
3646
  });
3527
3647
  Object.defineProperty(exports, "ZapierAbortDrainSignal", {
3528
3648
  enumerable: true,
3529
- get: function () { return chunkNTUEFDSW_cjs.ZapierAbortDrainSignal; }
3649
+ get: function () { return chunkIHWWBHBO_cjs.ZapierAbortDrainSignal; }
3530
3650
  });
3531
3651
  Object.defineProperty(exports, "ZapierActionError", {
3532
3652
  enumerable: true,
3533
- get: function () { return chunkNTUEFDSW_cjs.ZapierActionError; }
3653
+ get: function () { return chunkIHWWBHBO_cjs.ZapierActionError; }
3534
3654
  });
3535
3655
  Object.defineProperty(exports, "ZapierApiError", {
3536
3656
  enumerable: true,
3537
- get: function () { return chunkNTUEFDSW_cjs.ZapierApiError; }
3657
+ get: function () { return chunkIHWWBHBO_cjs.ZapierApiError; }
3538
3658
  });
3539
3659
  Object.defineProperty(exports, "ZapierAppNotFoundError", {
3540
3660
  enumerable: true,
3541
- get: function () { return chunkNTUEFDSW_cjs.ZapierAppNotFoundError; }
3661
+ get: function () { return chunkIHWWBHBO_cjs.ZapierAppNotFoundError; }
3542
3662
  });
3543
3663
  Object.defineProperty(exports, "ZapierApprovalError", {
3544
3664
  enumerable: true,
3545
- get: function () { return chunkNTUEFDSW_cjs.ZapierApprovalError; }
3665
+ get: function () { return chunkIHWWBHBO_cjs.ZapierApprovalError; }
3546
3666
  });
3547
3667
  Object.defineProperty(exports, "ZapierAuthenticationError", {
3548
3668
  enumerable: true,
3549
- get: function () { return chunkNTUEFDSW_cjs.ZapierAuthenticationError; }
3669
+ get: function () { return chunkIHWWBHBO_cjs.ZapierAuthenticationError; }
3550
3670
  });
3551
3671
  Object.defineProperty(exports, "ZapierBundleError", {
3552
3672
  enumerable: true,
3553
- get: function () { return chunkNTUEFDSW_cjs.ZapierBundleError; }
3673
+ get: function () { return chunkIHWWBHBO_cjs.ZapierBundleError; }
3554
3674
  });
3555
3675
  Object.defineProperty(exports, "ZapierConfigurationError", {
3556
3676
  enumerable: true,
3557
- get: function () { return chunkNTUEFDSW_cjs.ZapierConfigurationError; }
3677
+ get: function () { return chunkIHWWBHBO_cjs.ZapierConfigurationError; }
3558
3678
  });
3559
3679
  Object.defineProperty(exports, "ZapierConflictError", {
3560
3680
  enumerable: true,
3561
- get: function () { return chunkNTUEFDSW_cjs.ZapierConflictError; }
3681
+ get: function () { return chunkIHWWBHBO_cjs.ZapierConflictError; }
3562
3682
  });
3563
3683
  Object.defineProperty(exports, "ZapierError", {
3564
3684
  enumerable: true,
3565
- get: function () { return chunkNTUEFDSW_cjs.ZapierError; }
3685
+ get: function () { return chunkIHWWBHBO_cjs.ZapierError; }
3566
3686
  });
3567
3687
  Object.defineProperty(exports, "ZapierNotFoundError", {
3568
3688
  enumerable: true,
3569
- get: function () { return chunkNTUEFDSW_cjs.ZapierNotFoundError; }
3689
+ get: function () { return chunkIHWWBHBO_cjs.ZapierNotFoundError; }
3570
3690
  });
3571
3691
  Object.defineProperty(exports, "ZapierRateLimitError", {
3572
3692
  enumerable: true,
3573
- get: function () { return chunkNTUEFDSW_cjs.ZapierRateLimitError; }
3693
+ get: function () { return chunkIHWWBHBO_cjs.ZapierRateLimitError; }
3574
3694
  });
3575
3695
  Object.defineProperty(exports, "ZapierRelayError", {
3576
3696
  enumerable: true,
3577
- get: function () { return chunkNTUEFDSW_cjs.ZapierRelayError; }
3697
+ get: function () { return chunkIHWWBHBO_cjs.ZapierRelayError; }
3578
3698
  });
3579
3699
  Object.defineProperty(exports, "ZapierReleaseTriggerMessageSignal", {
3580
3700
  enumerable: true,
3581
- get: function () { return chunkNTUEFDSW_cjs.ZapierReleaseTriggerMessageSignal; }
3701
+ get: function () { return chunkIHWWBHBO_cjs.ZapierReleaseTriggerMessageSignal; }
3582
3702
  });
3583
3703
  Object.defineProperty(exports, "ZapierResourceNotFoundError", {
3584
3704
  enumerable: true,
3585
- get: function () { return chunkNTUEFDSW_cjs.ZapierResourceNotFoundError; }
3705
+ get: function () { return chunkIHWWBHBO_cjs.ZapierResourceNotFoundError; }
3586
3706
  });
3587
3707
  Object.defineProperty(exports, "ZapierSignal", {
3588
3708
  enumerable: true,
3589
- get: function () { return chunkNTUEFDSW_cjs.ZapierSignal; }
3709
+ get: function () { return chunkIHWWBHBO_cjs.ZapierSignal; }
3590
3710
  });
3591
3711
  Object.defineProperty(exports, "ZapierTimeoutError", {
3592
3712
  enumerable: true,
3593
- get: function () { return chunkNTUEFDSW_cjs.ZapierTimeoutError; }
3713
+ get: function () { return chunkIHWWBHBO_cjs.ZapierTimeoutError; }
3594
3714
  });
3595
3715
  Object.defineProperty(exports, "ZapierUnknownError", {
3596
3716
  enumerable: true,
3597
- get: function () { return chunkNTUEFDSW_cjs.ZapierUnknownError; }
3717
+ get: function () { return chunkIHWWBHBO_cjs.ZapierUnknownError; }
3598
3718
  });
3599
3719
  Object.defineProperty(exports, "ZapierValidationError", {
3600
3720
  enumerable: true,
3601
- get: function () { return chunkNTUEFDSW_cjs.ZapierValidationError; }
3721
+ get: function () { return chunkIHWWBHBO_cjs.ZapierValidationError; }
3602
3722
  });
3603
3723
  Object.defineProperty(exports, "actionKeyResolver", {
3604
3724
  enumerable: true,
3605
- get: function () { return chunkNTUEFDSW_cjs.actionKeyResolver; }
3725
+ get: function () { return chunkIHWWBHBO_cjs.actionKeyResolver; }
3606
3726
  });
3607
3727
  Object.defineProperty(exports, "actionTypeResolver", {
3608
3728
  enumerable: true,
3609
- get: function () { return chunkNTUEFDSW_cjs.actionTypeResolver; }
3729
+ get: function () { return chunkIHWWBHBO_cjs.actionTypeResolver; }
3610
3730
  });
3611
3731
  Object.defineProperty(exports, "addPlugin", {
3612
3732
  enumerable: true,
3613
- get: function () { return chunkNTUEFDSW_cjs.addPlugin; }
3733
+ get: function () { return chunkIHWWBHBO_cjs.addPlugin; }
3614
3734
  });
3615
3735
  Object.defineProperty(exports, "apiPlugin", {
3616
3736
  enumerable: true,
3617
- get: function () { return chunkNTUEFDSW_cjs.apiPlugin; }
3737
+ get: function () { return chunkIHWWBHBO_cjs.apiPlugin; }
3618
3738
  });
3619
3739
  Object.defineProperty(exports, "apiPluginRef", {
3620
3740
  enumerable: true,
3621
- get: function () { return chunkNTUEFDSW_cjs.apiPluginRef; }
3741
+ get: function () { return chunkIHWWBHBO_cjs.apiPluginRef; }
3622
3742
  });
3623
3743
  Object.defineProperty(exports, "appKeyResolver", {
3624
3744
  enumerable: true,
3625
- get: function () { return chunkNTUEFDSW_cjs.appKeyResolver; }
3745
+ get: function () { return chunkIHWWBHBO_cjs.appKeyResolver; }
3626
3746
  });
3627
3747
  Object.defineProperty(exports, "appsPlugin", {
3628
3748
  enumerable: true,
3629
- get: function () { return chunkNTUEFDSW_cjs.appsPlugin; }
3749
+ get: function () { return chunkIHWWBHBO_cjs.appsPlugin; }
3630
3750
  });
3631
3751
  Object.defineProperty(exports, "batch", {
3632
3752
  enumerable: true,
3633
- get: function () { return chunkNTUEFDSW_cjs.batch; }
3753
+ get: function () { return chunkIHWWBHBO_cjs.batch; }
3634
3754
  });
3635
3755
  Object.defineProperty(exports, "buildApplicationLifecycleEvent", {
3636
3756
  enumerable: true,
3637
- get: function () { return chunkNTUEFDSW_cjs.buildApplicationLifecycleEvent; }
3757
+ get: function () { return chunkIHWWBHBO_cjs.buildApplicationLifecycleEvent; }
3638
3758
  });
3639
3759
  Object.defineProperty(exports, "buildCapabilityMessage", {
3640
3760
  enumerable: true,
3641
- get: function () { return chunkNTUEFDSW_cjs.buildCapabilityMessage; }
3761
+ get: function () { return chunkIHWWBHBO_cjs.buildCapabilityMessage; }
3642
3762
  });
3643
3763
  Object.defineProperty(exports, "buildErrorEvent", {
3644
3764
  enumerable: true,
3645
- get: function () { return chunkNTUEFDSW_cjs.buildErrorEvent; }
3765
+ get: function () { return chunkIHWWBHBO_cjs.buildErrorEvent; }
3646
3766
  });
3647
3767
  Object.defineProperty(exports, "buildErrorEventWithContext", {
3648
3768
  enumerable: true,
3649
- get: function () { return chunkNTUEFDSW_cjs.buildErrorEventWithContext; }
3769
+ get: function () { return chunkIHWWBHBO_cjs.buildErrorEventWithContext; }
3650
3770
  });
3651
3771
  Object.defineProperty(exports, "buildMethodCalledEvent", {
3652
3772
  enumerable: true,
3653
- get: function () { return chunkNTUEFDSW_cjs.buildMethodCalledEvent; }
3773
+ get: function () { return chunkIHWWBHBO_cjs.buildMethodCalledEvent; }
3654
3774
  });
3655
3775
  Object.defineProperty(exports, "cleanupEventListeners", {
3656
3776
  enumerable: true,
3657
- get: function () { return chunkNTUEFDSW_cjs.cleanupEventListeners; }
3777
+ get: function () { return chunkIHWWBHBO_cjs.cleanupEventListeners; }
3658
3778
  });
3659
3779
  Object.defineProperty(exports, "clearTokenCache", {
3660
3780
  enumerable: true,
3661
- get: function () { return chunkNTUEFDSW_cjs.clearTokenCache; }
3781
+ get: function () { return chunkIHWWBHBO_cjs.clearTokenCache; }
3662
3782
  });
3663
3783
  Object.defineProperty(exports, "clientCredentialsNameResolver", {
3664
3784
  enumerable: true,
3665
- get: function () { return chunkNTUEFDSW_cjs.clientCredentialsNameResolver; }
3785
+ get: function () { return chunkIHWWBHBO_cjs.clientCredentialsNameResolver; }
3666
3786
  });
3667
3787
  Object.defineProperty(exports, "clientIdResolver", {
3668
3788
  enumerable: true,
3669
- get: function () { return chunkNTUEFDSW_cjs.clientIdResolver; }
3789
+ get: function () { return chunkIHWWBHBO_cjs.clientIdResolver; }
3670
3790
  });
3671
3791
  Object.defineProperty(exports, "composePlugins", {
3672
3792
  enumerable: true,
3673
- get: function () { return chunkNTUEFDSW_cjs.composePlugins; }
3793
+ get: function () { return chunkIHWWBHBO_cjs.composePlugins; }
3674
3794
  });
3675
3795
  Object.defineProperty(exports, "connectionIdGenericResolver", {
3676
3796
  enumerable: true,
3677
- get: function () { return chunkNTUEFDSW_cjs.connectionIdGenericResolver; }
3797
+ get: function () { return chunkIHWWBHBO_cjs.connectionIdGenericResolver; }
3678
3798
  });
3679
3799
  Object.defineProperty(exports, "connectionIdResolver", {
3680
3800
  enumerable: true,
3681
- get: function () { return chunkNTUEFDSW_cjs.connectionIdResolver; }
3801
+ get: function () { return chunkIHWWBHBO_cjs.connectionIdResolver; }
3682
3802
  });
3683
3803
  Object.defineProperty(exports, "connectionsPlugin", {
3684
3804
  enumerable: true,
3685
- get: function () { return chunkNTUEFDSW_cjs.connectionsPlugin; }
3805
+ get: function () { return chunkIHWWBHBO_cjs.connectionsPlugin; }
3686
3806
  });
3687
3807
  Object.defineProperty(exports, "connectionsPluginRef", {
3688
3808
  enumerable: true,
3689
- get: function () { return chunkNTUEFDSW_cjs.connectionsPluginRef; }
3809
+ get: function () { return chunkIHWWBHBO_cjs.connectionsPluginRef; }
3690
3810
  });
3691
3811
  Object.defineProperty(exports, "createActionRunPlugin", {
3692
3812
  enumerable: true,
3693
- get: function () { return chunkNTUEFDSW_cjs.createActionRunPlugin; }
3813
+ get: function () { return chunkIHWWBHBO_cjs.createActionRunPlugin; }
3694
3814
  });
3695
3815
  Object.defineProperty(exports, "createBaseEvent", {
3696
3816
  enumerable: true,
3697
- get: function () { return chunkNTUEFDSW_cjs.createBaseEvent; }
3817
+ get: function () { return chunkIHWWBHBO_cjs.createBaseEvent; }
3698
3818
  });
3699
3819
  Object.defineProperty(exports, "createClientCredentialsPlugin", {
3700
3820
  enumerable: true,
3701
- get: function () { return chunkNTUEFDSW_cjs.createClientCredentialsPlugin; }
3821
+ get: function () { return chunkIHWWBHBO_cjs.createClientCredentialsPlugin; }
3702
3822
  });
3703
3823
  Object.defineProperty(exports, "createController", {
3704
3824
  enumerable: true,
3705
- get: function () { return chunkNTUEFDSW_cjs.createController; }
3825
+ get: function () { return chunkIHWWBHBO_cjs.createController; }
3706
3826
  });
3707
3827
  Object.defineProperty(exports, "createCorePlugin", {
3708
3828
  enumerable: true,
3709
- get: function () { return chunkNTUEFDSW_cjs.createCorePlugin; }
3829
+ get: function () { return chunkIHWWBHBO_cjs.createCorePlugin; }
3710
3830
  });
3711
3831
  Object.defineProperty(exports, "createFunction", {
3712
3832
  enumerable: true,
3713
- get: function () { return chunkNTUEFDSW_cjs.createFunction; }
3833
+ get: function () { return chunkIHWWBHBO_cjs.createFunction; }
3714
3834
  });
3715
3835
  Object.defineProperty(exports, "createMemoryCache", {
3716
3836
  enumerable: true,
3717
- get: function () { return chunkNTUEFDSW_cjs.createMemoryCache; }
3837
+ get: function () { return chunkIHWWBHBO_cjs.createMemoryCache; }
3718
3838
  });
3719
3839
  Object.defineProperty(exports, "createPaginatedFunction", {
3720
3840
  enumerable: true,
3721
- get: function () { return chunkNTUEFDSW_cjs.createPaginatedFunction; }
3841
+ get: function () { return chunkIHWWBHBO_cjs.createPaginatedFunction; }
3722
3842
  });
3723
3843
  Object.defineProperty(exports, "createPaginatedPluginMethod", {
3724
3844
  enumerable: true,
3725
- get: function () { return chunkNTUEFDSW_cjs.createPaginatedPluginMethod; }
3845
+ get: function () { return chunkIHWWBHBO_cjs.createPaginatedPluginMethod; }
3726
3846
  });
3727
3847
  Object.defineProperty(exports, "createPluginMethod", {
3728
3848
  enumerable: true,
3729
- get: function () { return chunkNTUEFDSW_cjs.createPluginMethod; }
3849
+ get: function () { return chunkIHWWBHBO_cjs.createPluginMethod; }
3730
3850
  });
3731
3851
  Object.defineProperty(exports, "createPluginStack", {
3732
3852
  enumerable: true,
3733
- get: function () { return chunkNTUEFDSW_cjs.createPluginStack; }
3853
+ get: function () { return chunkIHWWBHBO_cjs.createPluginStack; }
3734
3854
  });
3735
3855
  Object.defineProperty(exports, "createSdk", {
3736
3856
  enumerable: true,
3737
- get: function () { return chunkNTUEFDSW_cjs.createSdk; }
3857
+ get: function () { return chunkIHWWBHBO_cjs.createSdk; }
3738
3858
  });
3739
3859
  Object.defineProperty(exports, "createTableFieldsPlugin", {
3740
3860
  enumerable: true,
3741
- get: function () { return chunkNTUEFDSW_cjs.createTableFieldsPlugin; }
3861
+ get: function () { return chunkIHWWBHBO_cjs.createTableFieldsPlugin; }
3742
3862
  });
3743
3863
  Object.defineProperty(exports, "createTablePlugin", {
3744
3864
  enumerable: true,
3745
- get: function () { return chunkNTUEFDSW_cjs.createTablePlugin; }
3865
+ get: function () { return chunkIHWWBHBO_cjs.createTablePlugin; }
3746
3866
  });
3747
3867
  Object.defineProperty(exports, "createTableRecordsPlugin", {
3748
3868
  enumerable: true,
3749
- get: function () { return chunkNTUEFDSW_cjs.createTableRecordsPlugin; }
3869
+ get: function () { return chunkIHWWBHBO_cjs.createTableRecordsPlugin; }
3750
3870
  });
3751
3871
  Object.defineProperty(exports, "createZapierApi", {
3752
3872
  enumerable: true,
3753
- get: function () { return chunkNTUEFDSW_cjs.createZapierApi; }
3873
+ get: function () { return chunkIHWWBHBO_cjs.createZapierApi; }
3754
3874
  });
3755
3875
  Object.defineProperty(exports, "createZapierSdkWithoutRegistry", {
3756
3876
  enumerable: true,
3757
- get: function () { return chunkNTUEFDSW_cjs.createZapierSdkWithoutRegistry; }
3877
+ get: function () { return chunkIHWWBHBO_cjs.createZapierSdkWithoutRegistry; }
3758
3878
  });
3759
3879
  Object.defineProperty(exports, "declareMethod", {
3760
3880
  enumerable: true,
3761
- get: function () { return chunkNTUEFDSW_cjs.declareMethod; }
3881
+ get: function () { return chunkIHWWBHBO_cjs.declareMethod; }
3762
3882
  });
3763
3883
  Object.defineProperty(exports, "declareOptionalProperty", {
3764
3884
  enumerable: true,
3765
- get: function () { return chunkNTUEFDSW_cjs.declareOptionalProperty; }
3885
+ get: function () { return chunkIHWWBHBO_cjs.declareOptionalProperty; }
3766
3886
  });
3767
3887
  Object.defineProperty(exports, "declarePlugin", {
3768
3888
  enumerable: true,
3769
- get: function () { return chunkNTUEFDSW_cjs.declarePlugin; }
3889
+ get: function () { return chunkIHWWBHBO_cjs.declarePlugin; }
3770
3890
  });
3771
3891
  Object.defineProperty(exports, "declareProperty", {
3772
3892
  enumerable: true,
3773
- get: function () { return chunkNTUEFDSW_cjs.declareProperty; }
3893
+ get: function () { return chunkIHWWBHBO_cjs.declareProperty; }
3774
3894
  });
3775
3895
  Object.defineProperty(exports, "defineFormatter", {
3776
3896
  enumerable: true,
3777
- get: function () { return chunkNTUEFDSW_cjs.defineFormatter; }
3897
+ get: function () { return chunkIHWWBHBO_cjs.defineFormatter; }
3778
3898
  });
3779
3899
  Object.defineProperty(exports, "defineLegacyMerge", {
3780
3900
  enumerable: true,
3781
- get: function () { return chunkNTUEFDSW_cjs.defineLegacyMerge; }
3901
+ get: function () { return chunkIHWWBHBO_cjs.defineLegacyMerge; }
3782
3902
  });
3783
3903
  Object.defineProperty(exports, "defineMethod", {
3784
3904
  enumerable: true,
3785
- get: function () { return chunkNTUEFDSW_cjs.defineMethod; }
3905
+ get: function () { return chunkIHWWBHBO_cjs.defineMethod; }
3786
3906
  });
3787
3907
  Object.defineProperty(exports, "defineMethodOverride", {
3788
3908
  enumerable: true,
3789
- get: function () { return chunkNTUEFDSW_cjs.defineMethodOverride; }
3909
+ get: function () { return chunkIHWWBHBO_cjs.defineMethodOverride; }
3790
3910
  });
3791
3911
  Object.defineProperty(exports, "defineOverride", {
3792
3912
  enumerable: true,
3793
- get: function () { return chunkNTUEFDSW_cjs.defineOverride; }
3913
+ get: function () { return chunkIHWWBHBO_cjs.defineOverride; }
3794
3914
  });
3795
3915
  Object.defineProperty(exports, "definePlugin", {
3796
3916
  enumerable: true,
3797
- get: function () { return chunkNTUEFDSW_cjs.definePlugin; }
3917
+ get: function () { return chunkIHWWBHBO_cjs.definePlugin; }
3798
3918
  });
3799
3919
  Object.defineProperty(exports, "defineProperty", {
3800
3920
  enumerable: true,
3801
- get: function () { return chunkNTUEFDSW_cjs.defineProperty; }
3921
+ get: function () { return chunkIHWWBHBO_cjs.defineProperty; }
3802
3922
  });
3803
3923
  Object.defineProperty(exports, "defineResolver", {
3804
3924
  enumerable: true,
3805
- get: function () { return chunkNTUEFDSW_cjs.defineResolver; }
3925
+ get: function () { return chunkIHWWBHBO_cjs.defineResolver; }
3806
3926
  });
3807
3927
  Object.defineProperty(exports, "deleteClientCredentialsPlugin", {
3808
3928
  enumerable: true,
3809
- get: function () { return chunkNTUEFDSW_cjs.deleteClientCredentialsPlugin; }
3929
+ get: function () { return chunkIHWWBHBO_cjs.deleteClientCredentialsPlugin; }
3810
3930
  });
3811
3931
  Object.defineProperty(exports, "deleteTableFieldsPlugin", {
3812
3932
  enumerable: true,
3813
- get: function () { return chunkNTUEFDSW_cjs.deleteTableFieldsPlugin; }
3933
+ get: function () { return chunkIHWWBHBO_cjs.deleteTableFieldsPlugin; }
3814
3934
  });
3815
3935
  Object.defineProperty(exports, "deleteTablePlugin", {
3816
3936
  enumerable: true,
3817
- get: function () { return chunkNTUEFDSW_cjs.deleteTablePlugin; }
3937
+ get: function () { return chunkIHWWBHBO_cjs.deleteTablePlugin; }
3818
3938
  });
3819
3939
  Object.defineProperty(exports, "deleteTableRecordsPlugin", {
3820
3940
  enumerable: true,
3821
- get: function () { return chunkNTUEFDSW_cjs.deleteTableRecordsPlugin; }
3941
+ get: function () { return chunkIHWWBHBO_cjs.deleteTableRecordsPlugin; }
3822
3942
  });
3823
3943
  Object.defineProperty(exports, "disposeSdk", {
3824
3944
  enumerable: true,
3825
- get: function () { return chunkNTUEFDSW_cjs.disposeSdk; }
3945
+ get: function () { return chunkIHWWBHBO_cjs.disposeSdk; }
3826
3946
  });
3827
3947
  Object.defineProperty(exports, "durableRunIdResolver", {
3828
3948
  enumerable: true,
3829
- get: function () { return chunkNTUEFDSW_cjs.durableRunIdResolver; }
3949
+ get: function () { return chunkIHWWBHBO_cjs.durableRunIdResolver; }
3830
3950
  });
3831
3951
  Object.defineProperty(exports, "eventEmissionHookPlugin", {
3832
3952
  enumerable: true,
3833
- get: function () { return chunkNTUEFDSW_cjs.eventEmissionHookPlugin; }
3953
+ get: function () { return chunkIHWWBHBO_cjs.eventEmissionHookPlugin; }
3834
3954
  });
3835
3955
  Object.defineProperty(exports, "eventEmissionPlugin", {
3836
3956
  enumerable: true,
3837
- get: function () { return chunkNTUEFDSW_cjs.eventEmissionPlugin; }
3957
+ get: function () { return chunkIHWWBHBO_cjs.eventEmissionPlugin; }
3838
3958
  });
3839
3959
  Object.defineProperty(exports, "eventEmissionPluginRef", {
3840
3960
  enumerable: true,
3841
- get: function () { return chunkNTUEFDSW_cjs.eventEmissionPluginRef; }
3961
+ get: function () { return chunkIHWWBHBO_cjs.eventEmissionPluginRef; }
3842
3962
  });
3843
3963
  Object.defineProperty(exports, "fetchPlugin", {
3844
3964
  enumerable: true,
3845
- get: function () { return chunkNTUEFDSW_cjs.fetchPlugin; }
3965
+ get: function () { return chunkIHWWBHBO_cjs.fetchPlugin; }
3846
3966
  });
3847
3967
  Object.defineProperty(exports, "findFirstConnectionPlugin", {
3848
3968
  enumerable: true,
3849
- get: function () { return chunkNTUEFDSW_cjs.findFirstConnectionPlugin; }
3969
+ get: function () { return chunkIHWWBHBO_cjs.findFirstConnectionPlugin; }
3850
3970
  });
3851
3971
  Object.defineProperty(exports, "findManifestEntry", {
3852
3972
  enumerable: true,
3853
- get: function () { return chunkNTUEFDSW_cjs.findManifestEntry; }
3973
+ get: function () { return chunkIHWWBHBO_cjs.findManifestEntry; }
3854
3974
  });
3855
3975
  Object.defineProperty(exports, "findUniqueConnectionPlugin", {
3856
3976
  enumerable: true,
3857
- get: function () { return chunkNTUEFDSW_cjs.findUniqueConnectionPlugin; }
3977
+ get: function () { return chunkIHWWBHBO_cjs.findUniqueConnectionPlugin; }
3858
3978
  });
3859
3979
  Object.defineProperty(exports, "formatErrorMessage", {
3860
3980
  enumerable: true,
3861
- get: function () { return chunkNTUEFDSW_cjs.formatErrorMessage; }
3981
+ get: function () { return chunkIHWWBHBO_cjs.formatErrorMessage; }
3862
3982
  });
3863
3983
  Object.defineProperty(exports, "fromFunctionPlugin", {
3864
3984
  enumerable: true,
3865
- get: function () { return chunkNTUEFDSW_cjs.fromFunctionPlugin; }
3985
+ get: function () { return chunkIHWWBHBO_cjs.fromFunctionPlugin; }
3866
3986
  });
3867
3987
  Object.defineProperty(exports, "generateEventId", {
3868
3988
  enumerable: true,
3869
- get: function () { return chunkNTUEFDSW_cjs.generateEventId; }
3989
+ get: function () { return chunkIHWWBHBO_cjs.generateEventId; }
3870
3990
  });
3871
3991
  Object.defineProperty(exports, "getActionInputFieldsSchemaPlugin", {
3872
3992
  enumerable: true,
3873
- get: function () { return chunkNTUEFDSW_cjs.getActionInputFieldsSchemaPlugin; }
3993
+ get: function () { return chunkIHWWBHBO_cjs.getActionInputFieldsSchemaPlugin; }
3874
3994
  });
3875
3995
  Object.defineProperty(exports, "getActionPlugin", {
3876
3996
  enumerable: true,
3877
- get: function () { return chunkNTUEFDSW_cjs.getActionPlugin; }
3997
+ get: function () { return chunkIHWWBHBO_cjs.getActionPlugin; }
3878
3998
  });
3879
3999
  Object.defineProperty(exports, "getActionRunPlugin", {
3880
4000
  enumerable: true,
3881
- get: function () { return chunkNTUEFDSW_cjs.getActionRunPlugin; }
4001
+ get: function () { return chunkIHWWBHBO_cjs.getActionRunPlugin; }
3882
4002
  });
3883
4003
  Object.defineProperty(exports, "getAgent", {
3884
4004
  enumerable: true,
3885
- get: function () { return chunkNTUEFDSW_cjs.getAgent; }
4005
+ get: function () { return chunkIHWWBHBO_cjs.getAgent; }
3886
4006
  });
3887
4007
  Object.defineProperty(exports, "getAppPlugin", {
3888
4008
  enumerable: true,
3889
- get: function () { return chunkNTUEFDSW_cjs.getAppPlugin; }
4009
+ get: function () { return chunkIHWWBHBO_cjs.getAppPlugin; }
3890
4010
  });
3891
4011
  Object.defineProperty(exports, "getBaseUrlFromCredentials", {
3892
4012
  enumerable: true,
3893
- get: function () { return chunkNTUEFDSW_cjs.getBaseUrlFromCredentials; }
4013
+ get: function () { return chunkIHWWBHBO_cjs.getBaseUrlFromCredentials; }
3894
4014
  });
3895
4015
  Object.defineProperty(exports, "getCallerContext", {
3896
4016
  enumerable: true,
3897
- get: function () { return chunkNTUEFDSW_cjs.getCallerContext; }
4017
+ get: function () { return chunkIHWWBHBO_cjs.getCallerContext; }
3898
4018
  });
3899
4019
  Object.defineProperty(exports, "getCiPlatform", {
3900
4020
  enumerable: true,
3901
- get: function () { return chunkNTUEFDSW_cjs.getCiPlatform; }
4021
+ get: function () { return chunkIHWWBHBO_cjs.getCiPlatform; }
3902
4022
  });
3903
4023
  Object.defineProperty(exports, "getClientIdFromCredentials", {
3904
4024
  enumerable: true,
3905
- get: function () { return chunkNTUEFDSW_cjs.getClientIdFromCredentials; }
4025
+ get: function () { return chunkIHWWBHBO_cjs.getClientIdFromCredentials; }
3906
4026
  });
3907
4027
  Object.defineProperty(exports, "getConnectionPlugin", {
3908
4028
  enumerable: true,
3909
- get: function () { return chunkNTUEFDSW_cjs.getConnectionPlugin; }
4029
+ get: function () { return chunkIHWWBHBO_cjs.getConnectionPlugin; }
3910
4030
  });
3911
4031
  Object.defineProperty(exports, "getContext", {
3912
4032
  enumerable: true,
3913
- get: function () { return chunkNTUEFDSW_cjs.getContext; }
4033
+ get: function () { return chunkIHWWBHBO_cjs.getContext; }
3914
4034
  });
3915
4035
  Object.defineProperty(exports, "getCoreErrorCause", {
3916
4036
  enumerable: true,
3917
- get: function () { return chunkNTUEFDSW_cjs.getCoreErrorCause; }
4037
+ get: function () { return chunkIHWWBHBO_cjs.getCoreErrorCause; }
3918
4038
  });
3919
4039
  Object.defineProperty(exports, "getCoreErrorCode", {
3920
4040
  enumerable: true,
3921
- get: function () { return chunkNTUEFDSW_cjs.getCoreErrorCode; }
4041
+ get: function () { return chunkIHWWBHBO_cjs.getCoreErrorCode; }
3922
4042
  });
3923
4043
  Object.defineProperty(exports, "getCpuTime", {
3924
4044
  enumerable: true,
3925
- get: function () { return chunkNTUEFDSW_cjs.getCpuTime; }
4045
+ get: function () { return chunkIHWWBHBO_cjs.getCpuTime; }
3926
4046
  });
3927
4047
  Object.defineProperty(exports, "getCurrentTimestamp", {
3928
4048
  enumerable: true,
3929
- get: function () { return chunkNTUEFDSW_cjs.getCurrentTimestamp; }
4049
+ get: function () { return chunkIHWWBHBO_cjs.getCurrentTimestamp; }
3930
4050
  });
3931
4051
  Object.defineProperty(exports, "getMemoryUsage", {
3932
4052
  enumerable: true,
3933
- get: function () { return chunkNTUEFDSW_cjs.getMemoryUsage; }
4053
+ get: function () { return chunkIHWWBHBO_cjs.getMemoryUsage; }
3934
4054
  });
3935
4055
  Object.defineProperty(exports, "getNegatable", {
3936
4056
  enumerable: true,
3937
- get: function () { return chunkNTUEFDSW_cjs.getNegatable; }
4057
+ get: function () { return chunkIHWWBHBO_cjs.getNegatable; }
3938
4058
  });
3939
4059
  Object.defineProperty(exports, "getOrCreateApiClient", {
3940
4060
  enumerable: true,
3941
- get: function () { return chunkNTUEFDSW_cjs.getOrCreateApiClient; }
4061
+ get: function () { return chunkIHWWBHBO_cjs.getOrCreateApiClient; }
3942
4062
  });
3943
4063
  Object.defineProperty(exports, "getOsInfo", {
3944
4064
  enumerable: true,
3945
- get: function () { return chunkNTUEFDSW_cjs.getOsInfo; }
4065
+ get: function () { return chunkIHWWBHBO_cjs.getOsInfo; }
3946
4066
  });
3947
4067
  Object.defineProperty(exports, "getPlatformVersions", {
3948
4068
  enumerable: true,
3949
- get: function () { return chunkNTUEFDSW_cjs.getPlatformVersions; }
4069
+ get: function () { return chunkIHWWBHBO_cjs.getPlatformVersions; }
3950
4070
  });
3951
4071
  Object.defineProperty(exports, "getPreferredManifestEntryKey", {
3952
4072
  enumerable: true,
3953
- get: function () { return chunkNTUEFDSW_cjs.getPreferredManifestEntryKey; }
4073
+ get: function () { return chunkIHWWBHBO_cjs.getPreferredManifestEntryKey; }
3954
4074
  });
3955
4075
  Object.defineProperty(exports, "getProfilePlugin", {
3956
4076
  enumerable: true,
3957
- get: function () { return chunkNTUEFDSW_cjs.getProfilePlugin; }
4077
+ get: function () { return chunkIHWWBHBO_cjs.getProfilePlugin; }
3958
4078
  });
3959
4079
  Object.defineProperty(exports, "getRegistryPlugin", {
3960
4080
  enumerable: true,
3961
- get: function () { return chunkNTUEFDSW_cjs.getRegistryPlugin; }
4081
+ get: function () { return chunkIHWWBHBO_cjs.getRegistryPlugin; }
3962
4082
  });
3963
4083
  Object.defineProperty(exports, "getReleaseId", {
3964
4084
  enumerable: true,
3965
- get: function () { return chunkNTUEFDSW_cjs.getReleaseId; }
4085
+ get: function () { return chunkIHWWBHBO_cjs.getReleaseId; }
3966
4086
  });
3967
4087
  Object.defineProperty(exports, "getTablePlugin", {
3968
4088
  enumerable: true,
3969
- get: function () { return chunkNTUEFDSW_cjs.getTablePlugin; }
4089
+ get: function () { return chunkIHWWBHBO_cjs.getTablePlugin; }
3970
4090
  });
3971
4091
  Object.defineProperty(exports, "getTableRecordPlugin", {
3972
4092
  enumerable: true,
3973
- get: function () { return chunkNTUEFDSW_cjs.getTableRecordPlugin; }
4093
+ get: function () { return chunkIHWWBHBO_cjs.getTableRecordPlugin; }
3974
4094
  });
3975
4095
  Object.defineProperty(exports, "getTokenFromCliLogin", {
3976
4096
  enumerable: true,
3977
- get: function () { return chunkNTUEFDSW_cjs.getTokenFromCliLogin; }
4097
+ get: function () { return chunkIHWWBHBO_cjs.getTokenFromCliLogin; }
3978
4098
  });
3979
4099
  Object.defineProperty(exports, "getTtyContext", {
3980
4100
  enumerable: true,
3981
- get: function () { return chunkNTUEFDSW_cjs.getTtyContext; }
4101
+ get: function () { return chunkIHWWBHBO_cjs.getTtyContext; }
3982
4102
  });
3983
4103
  Object.defineProperty(exports, "getZapierApprovalMode", {
3984
4104
  enumerable: true,
3985
- get: function () { return chunkNTUEFDSW_cjs.getZapierApprovalMode; }
4105
+ get: function () { return chunkIHWWBHBO_cjs.getZapierApprovalMode; }
3986
4106
  });
3987
4107
  Object.defineProperty(exports, "getZapierCausationId", {
3988
4108
  enumerable: true,
3989
- get: function () { return chunkNTUEFDSW_cjs.getZapierCausationId; }
4109
+ get: function () { return chunkIHWWBHBO_cjs.getZapierCausationId; }
3990
4110
  });
3991
4111
  Object.defineProperty(exports, "getZapierCorrelationId", {
3992
4112
  enumerable: true,
3993
- get: function () { return chunkNTUEFDSW_cjs.getZapierCorrelationId; }
4113
+ get: function () { return chunkIHWWBHBO_cjs.getZapierCorrelationId; }
3994
4114
  });
3995
4115
  Object.defineProperty(exports, "getZapierDefaultApprovalMode", {
3996
4116
  enumerable: true,
3997
- get: function () { return chunkNTUEFDSW_cjs.getZapierDefaultApprovalMode; }
4117
+ get: function () { return chunkIHWWBHBO_cjs.getZapierDefaultApprovalMode; }
3998
4118
  });
3999
4119
  Object.defineProperty(exports, "getZapierOpenAutoModeApprovalsInBrowser", {
4000
4120
  enumerable: true,
4001
- get: function () { return chunkNTUEFDSW_cjs.getZapierOpenAutoModeApprovalsInBrowser; }
4121
+ get: function () { return chunkIHWWBHBO_cjs.getZapierOpenAutoModeApprovalsInBrowser; }
4002
4122
  });
4003
4123
  Object.defineProperty(exports, "getZapierSdkService", {
4004
4124
  enumerable: true,
4005
- get: function () { return chunkNTUEFDSW_cjs.getZapierSdkService; }
4125
+ get: function () { return chunkIHWWBHBO_cjs.getZapierSdkService; }
4006
4126
  });
4007
4127
  Object.defineProperty(exports, "injectCliLogin", {
4008
4128
  enumerable: true,
4009
- get: function () { return chunkNTUEFDSW_cjs.injectCliLogin; }
4129
+ get: function () { return chunkIHWWBHBO_cjs.injectCliLogin; }
4010
4130
  });
4011
4131
  Object.defineProperty(exports, "inputFieldKeyResolver", {
4012
4132
  enumerable: true,
4013
- get: function () { return chunkNTUEFDSW_cjs.inputFieldKeyResolver; }
4133
+ get: function () { return chunkIHWWBHBO_cjs.inputFieldKeyResolver; }
4014
4134
  });
4015
4135
  Object.defineProperty(exports, "inputsAllOptionalResolver", {
4016
4136
  enumerable: true,
4017
- get: function () { return chunkNTUEFDSW_cjs.inputsAllOptionalResolver; }
4137
+ get: function () { return chunkIHWWBHBO_cjs.inputsAllOptionalResolver; }
4018
4138
  });
4019
4139
  Object.defineProperty(exports, "inputsResolver", {
4020
4140
  enumerable: true,
4021
- get: function () { return chunkNTUEFDSW_cjs.inputsResolver; }
4141
+ get: function () { return chunkIHWWBHBO_cjs.inputsResolver; }
4022
4142
  });
4023
4143
  Object.defineProperty(exports, "invalidateCachedToken", {
4024
4144
  enumerable: true,
4025
- get: function () { return chunkNTUEFDSW_cjs.invalidateCachedToken; }
4145
+ get: function () { return chunkIHWWBHBO_cjs.invalidateCachedToken; }
4026
4146
  });
4027
4147
  Object.defineProperty(exports, "invalidateCredentialsToken", {
4028
4148
  enumerable: true,
4029
- get: function () { return chunkNTUEFDSW_cjs.invalidateCredentialsToken; }
4149
+ get: function () { return chunkIHWWBHBO_cjs.invalidateCredentialsToken; }
4030
4150
  });
4031
4151
  Object.defineProperty(exports, "isCi", {
4032
4152
  enumerable: true,
4033
- get: function () { return chunkNTUEFDSW_cjs.isCi; }
4153
+ get: function () { return chunkIHWWBHBO_cjs.isCi; }
4034
4154
  });
4035
4155
  Object.defineProperty(exports, "isCliLoginAvailable", {
4036
4156
  enumerable: true,
4037
- get: function () { return chunkNTUEFDSW_cjs.isCliLoginAvailable; }
4157
+ get: function () { return chunkIHWWBHBO_cjs.isCliLoginAvailable; }
4038
4158
  });
4039
4159
  Object.defineProperty(exports, "isClientCredentials", {
4040
4160
  enumerable: true,
4041
- get: function () { return chunkNTUEFDSW_cjs.isClientCredentials; }
4161
+ get: function () { return chunkIHWWBHBO_cjs.isClientCredentials; }
4042
4162
  });
4043
4163
  Object.defineProperty(exports, "isCoreCancelledSignal", {
4044
4164
  enumerable: true,
4045
- get: function () { return chunkNTUEFDSW_cjs.isCoreCancelledSignal; }
4165
+ get: function () { return chunkIHWWBHBO_cjs.isCoreCancelledSignal; }
4046
4166
  });
4047
4167
  Object.defineProperty(exports, "isCoreError", {
4048
4168
  enumerable: true,
4049
- get: function () { return chunkNTUEFDSW_cjs.isCoreError; }
4169
+ get: function () { return chunkIHWWBHBO_cjs.isCoreError; }
4050
4170
  });
4051
4171
  Object.defineProperty(exports, "isCoreSignal", {
4052
4172
  enumerable: true,
4053
- get: function () { return chunkNTUEFDSW_cjs.isCoreSignal; }
4173
+ get: function () { return chunkIHWWBHBO_cjs.isCoreSignal; }
4054
4174
  });
4055
4175
  Object.defineProperty(exports, "isCredentialsFunction", {
4056
4176
  enumerable: true,
4057
- get: function () { return chunkNTUEFDSW_cjs.isCredentialsFunction; }
4177
+ get: function () { return chunkIHWWBHBO_cjs.isCredentialsFunction; }
4058
4178
  });
4059
4179
  Object.defineProperty(exports, "isCredentialsObject", {
4060
4180
  enumerable: true,
4061
- get: function () { return chunkNTUEFDSW_cjs.isCredentialsObject; }
4181
+ get: function () { return chunkIHWWBHBO_cjs.isCredentialsObject; }
4062
4182
  });
4063
4183
  Object.defineProperty(exports, "isPermanentHttpError", {
4064
4184
  enumerable: true,
4065
- get: function () { return chunkNTUEFDSW_cjs.isPermanentHttpError; }
4185
+ get: function () { return chunkIHWWBHBO_cjs.isPermanentHttpError; }
4066
4186
  });
4067
4187
  Object.defineProperty(exports, "isPkceCredentials", {
4068
4188
  enumerable: true,
4069
- get: function () { return chunkNTUEFDSW_cjs.isPkceCredentials; }
4189
+ get: function () { return chunkIHWWBHBO_cjs.isPkceCredentials; }
4070
4190
  });
4071
4191
  Object.defineProperty(exports, "isPositional", {
4072
4192
  enumerable: true,
4073
- get: function () { return chunkNTUEFDSW_cjs.isPositional; }
4193
+ get: function () { return chunkIHWWBHBO_cjs.isPositional; }
4074
4194
  });
4075
4195
  Object.defineProperty(exports, "isZapierAbortDrainSignal", {
4076
4196
  enumerable: true,
4077
- get: function () { return chunkNTUEFDSW_cjs.isZapierAbortDrainSignal; }
4197
+ get: function () { return chunkIHWWBHBO_cjs.isZapierAbortDrainSignal; }
4078
4198
  });
4079
4199
  Object.defineProperty(exports, "isZapierActionError", {
4080
4200
  enumerable: true,
4081
- get: function () { return chunkNTUEFDSW_cjs.isZapierActionError; }
4201
+ get: function () { return chunkIHWWBHBO_cjs.isZapierActionError; }
4082
4202
  });
4083
4203
  Object.defineProperty(exports, "isZapierAppNotFoundError", {
4084
4204
  enumerable: true,
4085
- get: function () { return chunkNTUEFDSW_cjs.isZapierAppNotFoundError; }
4205
+ get: function () { return chunkIHWWBHBO_cjs.isZapierAppNotFoundError; }
4086
4206
  });
4087
4207
  Object.defineProperty(exports, "isZapierApprovalError", {
4088
4208
  enumerable: true,
4089
- get: function () { return chunkNTUEFDSW_cjs.isZapierApprovalError; }
4209
+ get: function () { return chunkIHWWBHBO_cjs.isZapierApprovalError; }
4090
4210
  });
4091
4211
  Object.defineProperty(exports, "isZapierAuthenticationError", {
4092
4212
  enumerable: true,
4093
- get: function () { return chunkNTUEFDSW_cjs.isZapierAuthenticationError; }
4213
+ get: function () { return chunkIHWWBHBO_cjs.isZapierAuthenticationError; }
4094
4214
  });
4095
4215
  Object.defineProperty(exports, "isZapierBundleError", {
4096
4216
  enumerable: true,
4097
- get: function () { return chunkNTUEFDSW_cjs.isZapierBundleError; }
4217
+ get: function () { return chunkIHWWBHBO_cjs.isZapierBundleError; }
4098
4218
  });
4099
4219
  Object.defineProperty(exports, "isZapierConflictError", {
4100
4220
  enumerable: true,
4101
- get: function () { return chunkNTUEFDSW_cjs.isZapierConflictError; }
4221
+ get: function () { return chunkIHWWBHBO_cjs.isZapierConflictError; }
4102
4222
  });
4103
4223
  Object.defineProperty(exports, "isZapierError", {
4104
4224
  enumerable: true,
4105
- get: function () { return chunkNTUEFDSW_cjs.isZapierError; }
4225
+ get: function () { return chunkIHWWBHBO_cjs.isZapierError; }
4106
4226
  });
4107
4227
  Object.defineProperty(exports, "isZapierNotFoundError", {
4108
4228
  enumerable: true,
4109
- get: function () { return chunkNTUEFDSW_cjs.isZapierNotFoundError; }
4229
+ get: function () { return chunkIHWWBHBO_cjs.isZapierNotFoundError; }
4110
4230
  });
4111
4231
  Object.defineProperty(exports, "isZapierRateLimitError", {
4112
4232
  enumerable: true,
4113
- get: function () { return chunkNTUEFDSW_cjs.isZapierRateLimitError; }
4233
+ get: function () { return chunkIHWWBHBO_cjs.isZapierRateLimitError; }
4114
4234
  });
4115
4235
  Object.defineProperty(exports, "isZapierReleaseTriggerMessageSignal", {
4116
4236
  enumerable: true,
4117
- get: function () { return chunkNTUEFDSW_cjs.isZapierReleaseTriggerMessageSignal; }
4237
+ get: function () { return chunkIHWWBHBO_cjs.isZapierReleaseTriggerMessageSignal; }
4118
4238
  });
4119
4239
  Object.defineProperty(exports, "isZapierResourceNotFoundError", {
4120
4240
  enumerable: true,
4121
- get: function () { return chunkNTUEFDSW_cjs.isZapierResourceNotFoundError; }
4241
+ get: function () { return chunkIHWWBHBO_cjs.isZapierResourceNotFoundError; }
4122
4242
  });
4123
4243
  Object.defineProperty(exports, "isZapierSignal", {
4124
4244
  enumerable: true,
4125
- get: function () { return chunkNTUEFDSW_cjs.isZapierSignal; }
4245
+ get: function () { return chunkIHWWBHBO_cjs.isZapierSignal; }
4126
4246
  });
4127
4247
  Object.defineProperty(exports, "isZapierTimeoutError", {
4128
4248
  enumerable: true,
4129
- get: function () { return chunkNTUEFDSW_cjs.isZapierTimeoutError; }
4249
+ get: function () { return chunkIHWWBHBO_cjs.isZapierTimeoutError; }
4130
4250
  });
4131
4251
  Object.defineProperty(exports, "isZapierValidationError", {
4132
4252
  enumerable: true,
4133
- get: function () { return chunkNTUEFDSW_cjs.isZapierValidationError; }
4253
+ get: function () { return chunkIHWWBHBO_cjs.isZapierValidationError; }
4134
4254
  });
4135
4255
  Object.defineProperty(exports, "listActionInputFieldChoicesPlugin", {
4136
4256
  enumerable: true,
4137
- get: function () { return chunkNTUEFDSW_cjs.listActionInputFieldChoicesPlugin; }
4257
+ get: function () { return chunkIHWWBHBO_cjs.listActionInputFieldChoicesPlugin; }
4138
4258
  });
4139
4259
  Object.defineProperty(exports, "listActionInputFieldsPlugin", {
4140
4260
  enumerable: true,
4141
- get: function () { return chunkNTUEFDSW_cjs.listActionInputFieldsPlugin; }
4261
+ get: function () { return chunkIHWWBHBO_cjs.listActionInputFieldsPlugin; }
4142
4262
  });
4143
4263
  Object.defineProperty(exports, "listActionsPlugin", {
4144
4264
  enumerable: true,
4145
- get: function () { return chunkNTUEFDSW_cjs.listActionsPlugin; }
4265
+ get: function () { return chunkIHWWBHBO_cjs.listActionsPlugin; }
4146
4266
  });
4147
4267
  Object.defineProperty(exports, "listAppsPlugin", {
4148
4268
  enumerable: true,
4149
- get: function () { return chunkNTUEFDSW_cjs.listAppsPlugin; }
4269
+ get: function () { return chunkIHWWBHBO_cjs.listAppsPlugin; }
4150
4270
  });
4151
4271
  Object.defineProperty(exports, "listClientCredentialsPlugin", {
4152
4272
  enumerable: true,
4153
- get: function () { return chunkNTUEFDSW_cjs.listClientCredentialsPlugin; }
4273
+ get: function () { return chunkIHWWBHBO_cjs.listClientCredentialsPlugin; }
4154
4274
  });
4155
4275
  Object.defineProperty(exports, "listConnectionsPlugin", {
4156
4276
  enumerable: true,
4157
- get: function () { return chunkNTUEFDSW_cjs.listConnectionsPlugin; }
4277
+ get: function () { return chunkIHWWBHBO_cjs.listConnectionsPlugin; }
4158
4278
  });
4159
4279
  Object.defineProperty(exports, "listTableFieldsPlugin", {
4160
4280
  enumerable: true,
4161
- get: function () { return chunkNTUEFDSW_cjs.listTableFieldsPlugin; }
4281
+ get: function () { return chunkIHWWBHBO_cjs.listTableFieldsPlugin; }
4162
4282
  });
4163
4283
  Object.defineProperty(exports, "listTableRecordsPlugin", {
4164
4284
  enumerable: true,
4165
- get: function () { return chunkNTUEFDSW_cjs.listTableRecordsPlugin; }
4285
+ get: function () { return chunkIHWWBHBO_cjs.listTableRecordsPlugin; }
4166
4286
  });
4167
4287
  Object.defineProperty(exports, "listTablesPlugin", {
4168
4288
  enumerable: true,
4169
- get: function () { return chunkNTUEFDSW_cjs.listTablesPlugin; }
4289
+ get: function () { return chunkIHWWBHBO_cjs.listTablesPlugin; }
4170
4290
  });
4171
4291
  Object.defineProperty(exports, "logDeprecation", {
4172
4292
  enumerable: true,
4173
- get: function () { return chunkNTUEFDSW_cjs.logDeprecation; }
4293
+ get: function () { return chunkIHWWBHBO_cjs.logDeprecation; }
4174
4294
  });
4175
4295
  Object.defineProperty(exports, "manifestPlugin", {
4176
4296
  enumerable: true,
4177
- get: function () { return chunkNTUEFDSW_cjs.manifestPlugin; }
4297
+ get: function () { return chunkIHWWBHBO_cjs.manifestPlugin; }
4178
4298
  });
4179
4299
  Object.defineProperty(exports, "manifestPluginRef", {
4180
4300
  enumerable: true,
4181
- get: function () { return chunkNTUEFDSW_cjs.manifestPluginRef; }
4301
+ get: function () { return chunkIHWWBHBO_cjs.manifestPluginRef; }
4182
4302
  });
4183
4303
  Object.defineProperty(exports, "omitExports", {
4184
4304
  enumerable: true,
4185
- get: function () { return chunkNTUEFDSW_cjs.omitExports; }
4305
+ get: function () { return chunkIHWWBHBO_cjs.omitExports; }
4186
4306
  });
4187
4307
  Object.defineProperty(exports, "operationAnnotatorPlugin", {
4188
4308
  enumerable: true,
4189
- get: function () { return chunkNTUEFDSW_cjs.operationAnnotatorPlugin; }
4309
+ get: function () { return chunkIHWWBHBO_cjs.operationAnnotatorPlugin; }
4190
4310
  });
4191
4311
  Object.defineProperty(exports, "parseConcurrencyEnvVar", {
4192
4312
  enumerable: true,
4193
- get: function () { return chunkNTUEFDSW_cjs.parseConcurrencyEnvVar; }
4313
+ get: function () { return chunkIHWWBHBO_cjs.parseConcurrencyEnvVar; }
4194
4314
  });
4195
4315
  Object.defineProperty(exports, "readManifestFromFile", {
4196
4316
  enumerable: true,
4197
- get: function () { return chunkNTUEFDSW_cjs.readManifestFromFile; }
4317
+ get: function () { return chunkIHWWBHBO_cjs.readManifestFromFile; }
4198
4318
  });
4199
4319
  Object.defineProperty(exports, "registryPlugin", {
4200
4320
  enumerable: true,
4201
- get: function () { return chunkNTUEFDSW_cjs.registryPlugin; }
4321
+ get: function () { return chunkIHWWBHBO_cjs.registryPlugin; }
4202
4322
  });
4203
4323
  Object.defineProperty(exports, "requestPlugin", {
4204
4324
  enumerable: true,
4205
- get: function () { return chunkNTUEFDSW_cjs.requestPlugin; }
4325
+ get: function () { return chunkIHWWBHBO_cjs.requestPlugin; }
4206
4326
  });
4207
4327
  Object.defineProperty(exports, "resetDeprecationWarnings", {
4208
4328
  enumerable: true,
4209
- get: function () { return chunkNTUEFDSW_cjs.resetDeprecationWarnings; }
4329
+ get: function () { return chunkIHWWBHBO_cjs.resetDeprecationWarnings; }
4210
4330
  });
4211
4331
  Object.defineProperty(exports, "resolveAuth", {
4212
4332
  enumerable: true,
4213
- get: function () { return chunkNTUEFDSW_cjs.resolveAuth; }
4333
+ get: function () { return chunkIHWWBHBO_cjs.resolveAuth; }
4214
4334
  });
4215
4335
  Object.defineProperty(exports, "resolveAuthToken", {
4216
4336
  enumerable: true,
4217
- get: function () { return chunkNTUEFDSW_cjs.resolveAuthToken; }
4337
+ get: function () { return chunkIHWWBHBO_cjs.resolveAuthToken; }
4218
4338
  });
4219
4339
  Object.defineProperty(exports, "resolveCredentials", {
4220
4340
  enumerable: true,
4221
- get: function () { return chunkNTUEFDSW_cjs.resolveCredentials; }
4341
+ get: function () { return chunkIHWWBHBO_cjs.resolveCredentials; }
4222
4342
  });
4223
4343
  Object.defineProperty(exports, "resolveCredentialsFromEnv", {
4224
4344
  enumerable: true,
4225
- get: function () { return chunkNTUEFDSW_cjs.resolveCredentialsFromEnv; }
4345
+ get: function () { return chunkIHWWBHBO_cjs.resolveCredentialsFromEnv; }
4226
4346
  });
4227
4347
  Object.defineProperty(exports, "resolveCredentialsPlugin", {
4228
4348
  enumerable: true,
4229
- get: function () { return chunkNTUEFDSW_cjs.resolveCredentialsPlugin; }
4349
+ get: function () { return chunkIHWWBHBO_cjs.resolveCredentialsPlugin; }
4230
4350
  });
4231
4351
  Object.defineProperty(exports, "resolveCredentialsPluginRef", {
4232
4352
  enumerable: true,
4233
- get: function () { return chunkNTUEFDSW_cjs.resolveCredentialsPluginRef; }
4353
+ get: function () { return chunkIHWWBHBO_cjs.resolveCredentialsPluginRef; }
4234
4354
  });
4235
4355
  Object.defineProperty(exports, "resolvePlugin", {
4236
4356
  enumerable: true,
4237
- get: function () { return chunkNTUEFDSW_cjs.resolvePlugin; }
4357
+ get: function () { return chunkIHWWBHBO_cjs.resolvePlugin; }
4238
4358
  });
4239
4359
  Object.defineProperty(exports, "runActionPlugin", {
4240
4360
  enumerable: true,
4241
- get: function () { return chunkNTUEFDSW_cjs.runActionPlugin; }
4361
+ get: function () { return chunkIHWWBHBO_cjs.runActionPlugin; }
4242
4362
  });
4243
4363
  Object.defineProperty(exports, "runInMethodScope", {
4244
4364
  enumerable: true,
4245
- get: function () { return chunkNTUEFDSW_cjs.runInMethodScope; }
4365
+ get: function () { return chunkIHWWBHBO_cjs.runInMethodScope; }
4246
4366
  });
4247
4367
  Object.defineProperty(exports, "runWithCallerContext", {
4248
4368
  enumerable: true,
4249
- get: function () { return chunkNTUEFDSW_cjs.runWithCallerContext; }
4369
+ get: function () { return chunkIHWWBHBO_cjs.runWithCallerContext; }
4250
4370
  });
4251
4371
  Object.defineProperty(exports, "runWithTelemetryContext", {
4252
4372
  enumerable: true,
4253
- get: function () { return chunkNTUEFDSW_cjs.runWithTelemetryContext; }
4373
+ get: function () { return chunkIHWWBHBO_cjs.runWithTelemetryContext; }
4254
4374
  });
4255
4375
  Object.defineProperty(exports, "sdkOptionsPluginRef", {
4256
4376
  enumerable: true,
4257
- get: function () { return chunkNTUEFDSW_cjs.sdkOptionsPluginRef; }
4377
+ get: function () { return chunkIHWWBHBO_cjs.sdkOptionsPluginRef; }
4258
4378
  });
4259
4379
  Object.defineProperty(exports, "selectExports", {
4260
4380
  enumerable: true,
4261
- get: function () { return chunkNTUEFDSW_cjs.selectExports; }
4381
+ get: function () { return chunkIHWWBHBO_cjs.selectExports; }
4262
4382
  });
4263
4383
  Object.defineProperty(exports, "tableFieldIdsResolver", {
4264
4384
  enumerable: true,
4265
- get: function () { return chunkNTUEFDSW_cjs.tableFieldIdsResolver; }
4385
+ get: function () { return chunkIHWWBHBO_cjs.tableFieldIdsResolver; }
4266
4386
  });
4267
4387
  Object.defineProperty(exports, "tableFieldsResolver", {
4268
4388
  enumerable: true,
4269
- get: function () { return chunkNTUEFDSW_cjs.tableFieldsResolver; }
4389
+ get: function () { return chunkIHWWBHBO_cjs.tableFieldsResolver; }
4270
4390
  });
4271
4391
  Object.defineProperty(exports, "tableFiltersResolver", {
4272
4392
  enumerable: true,
4273
- get: function () { return chunkNTUEFDSW_cjs.tableFiltersResolver; }
4393
+ get: function () { return chunkIHWWBHBO_cjs.tableFiltersResolver; }
4274
4394
  });
4275
4395
  Object.defineProperty(exports, "tableIdResolver", {
4276
4396
  enumerable: true,
4277
- get: function () { return chunkNTUEFDSW_cjs.tableIdResolver; }
4397
+ get: function () { return chunkIHWWBHBO_cjs.tableIdResolver; }
4278
4398
  });
4279
4399
  Object.defineProperty(exports, "tableNameResolver", {
4280
4400
  enumerable: true,
4281
- get: function () { return chunkNTUEFDSW_cjs.tableNameResolver; }
4401
+ get: function () { return chunkIHWWBHBO_cjs.tableNameResolver; }
4282
4402
  });
4283
4403
  Object.defineProperty(exports, "tableRecordIdResolver", {
4284
4404
  enumerable: true,
4285
- get: function () { return chunkNTUEFDSW_cjs.tableRecordIdResolver; }
4405
+ get: function () { return chunkIHWWBHBO_cjs.tableRecordIdResolver; }
4286
4406
  });
4287
4407
  Object.defineProperty(exports, "tableRecordIdsResolver", {
4288
4408
  enumerable: true,
4289
- get: function () { return chunkNTUEFDSW_cjs.tableRecordIdsResolver; }
4409
+ get: function () { return chunkIHWWBHBO_cjs.tableRecordIdsResolver; }
4290
4410
  });
4291
4411
  Object.defineProperty(exports, "tableRecordsResolver", {
4292
4412
  enumerable: true,
4293
- get: function () { return chunkNTUEFDSW_cjs.tableRecordsResolver; }
4413
+ get: function () { return chunkIHWWBHBO_cjs.tableRecordsResolver; }
4294
4414
  });
4295
4415
  Object.defineProperty(exports, "tableSortResolver", {
4296
4416
  enumerable: true,
4297
- get: function () { return chunkNTUEFDSW_cjs.tableSortResolver; }
4417
+ get: function () { return chunkIHWWBHBO_cjs.tableSortResolver; }
4298
4418
  });
4299
4419
  Object.defineProperty(exports, "tableUpdateRecordsResolver", {
4300
4420
  enumerable: true,
4301
- get: function () { return chunkNTUEFDSW_cjs.tableUpdateRecordsResolver; }
4421
+ get: function () { return chunkIHWWBHBO_cjs.tableUpdateRecordsResolver; }
4302
4422
  });
4303
4423
  Object.defineProperty(exports, "toSnakeCase", {
4304
4424
  enumerable: true,
4305
- get: function () { return chunkNTUEFDSW_cjs.toSnakeCase; }
4425
+ get: function () { return chunkIHWWBHBO_cjs.toSnakeCase; }
4306
4426
  });
4307
4427
  Object.defineProperty(exports, "toTitleCase", {
4308
4428
  enumerable: true,
4309
- get: function () { return chunkNTUEFDSW_cjs.toTitleCase; }
4429
+ get: function () { return chunkIHWWBHBO_cjs.toTitleCase; }
4310
4430
  });
4311
4431
  Object.defineProperty(exports, "triggerInboxResolver", {
4312
4432
  enumerable: true,
4313
- get: function () { return chunkNTUEFDSW_cjs.triggerInboxResolver; }
4433
+ get: function () { return chunkIHWWBHBO_cjs.triggerInboxResolver; }
4314
4434
  });
4315
4435
  Object.defineProperty(exports, "triggerMessagesResolver", {
4316
4436
  enumerable: true,
4317
- get: function () { return chunkNTUEFDSW_cjs.triggerMessagesResolver; }
4437
+ get: function () { return chunkIHWWBHBO_cjs.triggerMessagesResolver; }
4318
4438
  });
4319
4439
  Object.defineProperty(exports, "updateTableRecordsPlugin", {
4320
4440
  enumerable: true,
4321
- get: function () { return chunkNTUEFDSW_cjs.updateTableRecordsPlugin; }
4441
+ get: function () { return chunkIHWWBHBO_cjs.updateTableRecordsPlugin; }
4322
4442
  });
4323
4443
  Object.defineProperty(exports, "workflowDraftIdResolver", {
4324
4444
  enumerable: true,
4325
- get: function () { return chunkNTUEFDSW_cjs.workflowDraftIdResolver; }
4445
+ get: function () { return chunkIHWWBHBO_cjs.workflowDraftIdResolver; }
4446
+ });
4447
+ Object.defineProperty(exports, "workflowDraftRevisionResolver", {
4448
+ enumerable: true,
4449
+ get: function () { return chunkIHWWBHBO_cjs.workflowDraftRevisionResolver; }
4326
4450
  });
4327
4451
  Object.defineProperty(exports, "workflowIdResolver", {
4328
4452
  enumerable: true,
4329
- get: function () { return chunkNTUEFDSW_cjs.workflowIdResolver; }
4453
+ get: function () { return chunkIHWWBHBO_cjs.workflowIdResolver; }
4330
4454
  });
4331
4455
  Object.defineProperty(exports, "workflowRunIdResolver", {
4332
4456
  enumerable: true,
4333
- get: function () { return chunkNTUEFDSW_cjs.workflowRunIdResolver; }
4457
+ get: function () { return chunkIHWWBHBO_cjs.workflowRunIdResolver; }
4334
4458
  });
4335
4459
  Object.defineProperty(exports, "workflowVersionIdResolver", {
4336
4460
  enumerable: true,
4337
- get: function () { return chunkNTUEFDSW_cjs.workflowVersionIdResolver; }
4461
+ get: function () { return chunkIHWWBHBO_cjs.workflowVersionIdResolver; }
4338
4462
  });
4339
4463
  Object.defineProperty(exports, "zapierAdaptError", {
4340
4464
  enumerable: true,
4341
- get: function () { return chunkNTUEFDSW_cjs.zapierAdaptError; }
4465
+ get: function () { return chunkIHWWBHBO_cjs.zapierAdaptError; }
4342
4466
  });
4343
4467
  Object.defineProperty(exports, "zapierCoreOptions", {
4344
4468
  enumerable: true,
4345
- get: function () { return chunkNTUEFDSW_cjs.zapierCoreOptions; }
4469
+ get: function () { return chunkIHWWBHBO_cjs.zapierCoreOptions; }
4346
4470
  });
4347
4471
  Object.defineProperty(exports, "zapierSdkPlugin", {
4348
4472
  enumerable: true,
4349
- get: function () { return chunkNTUEFDSW_cjs.zapierSdkPlugin; }
4473
+ get: function () { return chunkIHWWBHBO_cjs.zapierSdkPlugin; }
4350
4474
  });
4351
4475
  exports.createZapierSdk = createZapierSdk;
4352
4476
  exports.zapierExperimentalSdkPlugin = zapierExperimentalSdkPlugin;