@zapier/zapier-sdk 0.110.0 → 0.110.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkIHWWBHBO_cjs = require('./chunk-IHWWBHBO.cjs');
3
+ var chunkBURXHBSW_cjs = require('./chunk-BURXHBSW.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 chunkIHWWBHBO_cjs.ZapierValidationError(
55
+ throw new chunkBURXHBSW_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 chunkIHWWBHBO_cjs.ZapierValidationError("trigger is missing selectedApi");
82
+ throw new chunkBURXHBSW_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 chunkIHWWBHBO_cjs.ZapierValidationError(
103
+ throw new chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
272
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.DEFAULT_PAGE_SIZE },
280
+ output: { type: "list", defaultPageSize: chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
355
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.workflowIdResolver },
361
+ resolvers: { workflow: chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
407
+ imports: [chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
498
+ imports: [chunkBURXHBSW_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 = chunkIHWWBHBO_cjs.extractErrorDetail(data);
528
- return new chunkIHWWBHBO_cjs.ZapierApiError(
527
+ const detail = chunkBURXHBSW_cjs.extractErrorDetail(data);
528
+ return new chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
566
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.workflowIdResolver },
573
+ resolvers: { workflow: chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
606
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.workflowIdResolver },
613
+ resolvers: { workflow: chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
641
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.workflowIdResolver },
648
+ resolvers: { workflow: chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
675
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.workflowIdResolver },
683
+ resolvers: { workflow: chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
747
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.DEFAULT_PAGE_SIZE },
755
+ output: { type: "list", defaultPageSize: chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
869
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.durableRunIdResolver },
875
+ resolvers: { run: chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
969
+ imports: [chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
1026
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.durableRunIdResolver },
1033
+ resolvers: { run: chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
1148
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.workflowIdResolver, sourceFiles: sourceFilesResolver },
1155
+ resolvers: { workflow: chunkBURXHBSW_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 chunkIHWWBHBO_cjs.ZapierConflictError(
1210
- chunkIHWWBHBO_cjs.extractErrorDetail(data) ?? "Workflow version publish conflict.",
1209
+ return new chunkBURXHBSW_cjs.ZapierConflictError(
1210
+ chunkBURXHBSW_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 chunkIHWWBHBO_cjs.ZapierConflictError(
1215
+ return new chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
1270
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.DEFAULT_PAGE_SIZE },
1279
- resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
1278
+ output: { type: "list", defaultPageSize: chunkBURXHBSW_cjs.DEFAULT_PAGE_SIZE },
1279
+ resolvers: { workflow: chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
1314
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.workflowIdResolver,
1322
- version: chunkIHWWBHBO_cjs.workflowVersionIdResolver
1321
+ workflow: chunkBURXHBSW_cjs.workflowIdResolver,
1322
+ version: chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
1380
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.DEFAULT_PAGE_SIZE },
1389
- resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
1388
+ output: { type: "list", defaultPageSize: chunkBURXHBSW_cjs.DEFAULT_PAGE_SIZE },
1389
+ resolvers: { workflow: chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
1430
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.workflowIdResolver,
1438
- draft: chunkIHWWBHBO_cjs.workflowDraftIdResolver
1437
+ workflow: chunkBURXHBSW_cjs.workflowIdResolver,
1438
+ draft: chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
1466
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.workflowIdResolver },
1473
+ resolvers: { workflow: chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
1526
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.workflowIdResolver,
1535
- draft: chunkIHWWBHBO_cjs.workflowDraftIdResolver,
1534
+ workflow: chunkBURXHBSW_cjs.workflowIdResolver,
1535
+ draft: chunkBURXHBSW_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 = chunkIHWWBHBO_cjs.extractErrorDetail(data);
1581
- return new chunkIHWWBHBO_cjs.ZapierConflictError(
1580
+ const detail = chunkBURXHBSW_cjs.extractErrorDetail(data);
1581
+ return new chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
1605
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.workflowIdResolver,
1620
- draft: chunkIHWWBHBO_cjs.workflowDraftIdResolver
1619
+ workflow: chunkBURXHBSW_cjs.workflowIdResolver,
1620
+ draft: chunkBURXHBSW_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: [chunkIHWWBHBO_cjs.apiPluginRef],
1663
+ imports: [chunkBURXHBSW_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: chunkIHWWBHBO_cjs.workflowIdResolver,
1675
- draft: chunkIHWWBHBO_cjs.workflowDraftIdResolver
1674
+ workflow: chunkBURXHBSW_cjs.workflowIdResolver,
1675
+ draft: chunkBURXHBSW_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 = chunkIHWWBHBO_cjs.extractErrorDetail(data);
1709
- return new chunkIHWWBHBO_cjs.ZapierConflictError(
1708
+ const detail = chunkBURXHBSW_cjs.extractErrorDetail(data);
1709
+ return new chunkBURXHBSW_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 = chunkIHWWBHBO_cjs.extractErrorDetail(data);
1716
- return new chunkIHWWBHBO_cjs.ZapierApiError(
1715
+ const detail = chunkBURXHBSW_cjs.extractErrorDetail(data);
1716
+ return new chunkBURXHBSW_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
  );
@@ -1819,7 +1819,7 @@ var RunWorkflowDraftResponseSchema = zod.z.object({
1819
1819
  var runWorkflowDraftPlugin = kitcore.defineMethod({
1820
1820
  ...codeSubstrateDefaults,
1821
1821
  name: "runWorkflowDraft",
1822
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1822
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
1823
1823
  type: "create",
1824
1824
  itemType: "WorkflowRun",
1825
1825
  // The response is the draft variant of the run resource (`kind: "draft"`,
@@ -1831,9 +1831,9 @@ var runWorkflowDraftPlugin = kitcore.defineMethod({
1831
1831
  skipOutputValidation: true,
1832
1832
  output: "item",
1833
1833
  resolvers: {
1834
- workflow: chunkIHWWBHBO_cjs.workflowIdResolver,
1835
- draft: chunkIHWWBHBO_cjs.workflowDraftIdResolver,
1836
- draftRevision: chunkIHWWBHBO_cjs.workflowDraftRevisionResolver
1834
+ workflow: chunkBURXHBSW_cjs.workflowIdResolver,
1835
+ draft: chunkBURXHBSW_cjs.workflowDraftIdResolver,
1836
+ draftRevision: chunkBURXHBSW_cjs.workflowDraftRevisionResolver
1837
1837
  },
1838
1838
  run: async ({ imports, input }) => {
1839
1839
  const api = imports.api;
@@ -1855,8 +1855,8 @@ var runWorkflowDraftPlugin = kitcore.defineMethod({
1855
1855
  // retries with backoff and then throws ZapierRateLimitError.
1856
1856
  customErrorHandler: ({ status, data }) => {
1857
1857
  if (status === 409) {
1858
- const detail = chunkIHWWBHBO_cjs.extractErrorDetail(data);
1859
- return new chunkIHWWBHBO_cjs.ZapierConflictError(
1858
+ const detail = chunkBURXHBSW_cjs.extractErrorDetail(data);
1859
+ return new chunkBURXHBSW_cjs.ZapierConflictError(
1860
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
1861
  { statusCode: status, resourceType: "workflow-draft" }
1862
1862
  );
@@ -1871,7 +1871,7 @@ var runWorkflowDraftPlugin = kitcore.defineMethod({
1871
1871
  var listWorkflowRunsPlugin = kitcore.defineMethod({
1872
1872
  ...codeSubstrateDefaults,
1873
1873
  name: "listWorkflowRuns",
1874
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1874
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
1875
1875
  type: "list",
1876
1876
  itemType: "WorkflowRun",
1877
1877
  inputSchema: ListWorkflowRunsOptionsSchema,
@@ -1879,8 +1879,8 @@ var listWorkflowRunsPlugin = kitcore.defineMethod({
1879
1879
  skipOutputValidation: true,
1880
1880
  // The handler already returns a clean `{ data, nextCursor }` page, so the
1881
1881
  // standard list output (no `adaptPage`) applies.
1882
- output: { type: "list", defaultPageSize: chunkIHWWBHBO_cjs.DEFAULT_PAGE_SIZE },
1883
- resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
1882
+ output: { type: "list", defaultPageSize: chunkBURXHBSW_cjs.DEFAULT_PAGE_SIZE },
1883
+ resolvers: { workflow: chunkBURXHBSW_cjs.workflowIdResolver },
1884
1884
  run: async ({ imports, input }) => {
1885
1885
  const api = imports.api;
1886
1886
  const searchParams = {};
@@ -1958,15 +1958,15 @@ var GetWorkflowRunResponseSchema = zod.z.discriminatedUnion("kind", [
1958
1958
  var getWorkflowRunPlugin = kitcore.defineMethod({
1959
1959
  ...codeSubstrateDefaults,
1960
1960
  name: "getWorkflowRun",
1961
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
1961
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
1962
1962
  itemType: "WorkflowRun",
1963
1963
  inputSchema: GetWorkflowRunOptionsSchema,
1964
1964
  outputSchema: GetWorkflowRunResponseSchema,
1965
1965
  skipOutputValidation: true,
1966
1966
  output: "item",
1967
1967
  resolvers: {
1968
- workflow: chunkIHWWBHBO_cjs.workflowIdResolver,
1969
- run: chunkIHWWBHBO_cjs.workflowRunIdResolver
1968
+ workflow: chunkBURXHBSW_cjs.workflowIdResolver,
1969
+ run: chunkBURXHBSW_cjs.workflowRunIdResolver
1970
1970
  },
1971
1971
  run: async ({ imports, input }) => {
1972
1972
  const api = imports.api;
@@ -2003,7 +2003,7 @@ var GetTriggerRunResponseSchema = zod.z.object({
2003
2003
  var getTriggerRunPlugin = kitcore.defineMethod({
2004
2004
  ...codeSubstrateDefaults,
2005
2005
  name: "getTriggerRun",
2006
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2006
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
2007
2007
  itemType: "WorkflowRun",
2008
2008
  inputSchema: GetTriggerRunOptionsSchema,
2009
2009
  outputSchema: GetTriggerRunResponseSchema,
@@ -2046,14 +2046,14 @@ var TriggerWorkflowResponseSchema = zod.z.object({
2046
2046
  var triggerWorkflowPlugin = kitcore.defineMethod({
2047
2047
  ...codeSubstrateDefaults,
2048
2048
  name: "triggerWorkflow",
2049
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2049
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
2050
2050
  type: "create",
2051
2051
  itemType: "WorkflowRun",
2052
2052
  inputSchema: TriggerWorkflowOptionsSchema,
2053
2053
  outputSchema: TriggerWorkflowResponseSchema,
2054
2054
  skipOutputValidation: true,
2055
2055
  output: "item",
2056
- resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
2056
+ resolvers: { workflow: chunkBURXHBSW_cjs.workflowIdResolver },
2057
2057
  run: async ({ imports, input }) => {
2058
2058
  const api = imports.api;
2059
2059
  const rawWorkflow = await api.get(
@@ -2067,7 +2067,7 @@ var triggerWorkflowPlugin = kitcore.defineMethod({
2067
2067
  const segments = new URL(workflow.trigger_url).pathname.split("/");
2068
2068
  const triggerToken = segments[segments.length - 1];
2069
2069
  if (!triggerToken) {
2070
- throw new chunkIHWWBHBO_cjs.ZapierApiError(
2070
+ throw new chunkBURXHBSW_cjs.ZapierApiError(
2071
2071
  `Workflow ${input.workflow} returned a malformed trigger_url`,
2072
2072
  { statusCode: 0, response: workflow.trigger_url }
2073
2073
  );
@@ -2146,7 +2146,7 @@ var ValidateWorkflowResponseSchema = zod.z.object({
2146
2146
  var validateWorkflowPlugin = kitcore.defineMethod({
2147
2147
  ...codeSubstrateDefaults,
2148
2148
  name: "validateWorkflow",
2149
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2149
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
2150
2150
  itemType: "WorkflowValidation",
2151
2151
  inputSchema: ValidateWorkflowOptionsSchema,
2152
2152
  outputSchema: ValidateWorkflowResponseSchema,
@@ -2193,7 +2193,7 @@ function handleFormsAccessError({
2193
2193
  if (status !== 403 || firstErrorDetail(data) !== FORMS_ACCESS_DENIED_DETAIL) {
2194
2194
  return void 0;
2195
2195
  }
2196
- return new chunkIHWWBHBO_cjs.ZapierConfigurationError(
2196
+ return new chunkBURXHBSW_cjs.ZapierConfigurationError(
2197
2197
  `${FORMS_ACCESS_DENIED_DETAIL} Request access through Zapier support at https://zapier.com/app/get-help.`,
2198
2198
  { statusCode: status }
2199
2199
  );
@@ -2271,7 +2271,7 @@ function assertUniqueKeys(keys, fields) {
2271
2271
  const label = fields[index]?.label ?? "";
2272
2272
  const previous = seen.get(key);
2273
2273
  if (previous !== void 0) {
2274
- throw new chunkIHWWBHBO_cjs.ZapierValidationError(
2274
+ throw new chunkBURXHBSW_cjs.ZapierValidationError(
2275
2275
  `Fields "${previous}" and "${label}" both derive the submission key "${key}". Give them labels that differ by more than punctuation or casing.`,
2276
2276
  { details: { key, labels: [previous, label] } }
2277
2277
  );
@@ -2477,7 +2477,7 @@ var CreateFormSchema = zod.z.object({
2477
2477
  var createFormPlugin = kitcore.defineMethod({
2478
2478
  ...humanInputDefaults,
2479
2479
  name: "createForm",
2480
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2480
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
2481
2481
  type: "create",
2482
2482
  itemType: "Form",
2483
2483
  inputSchema: CreateFormSchema,
@@ -2568,8 +2568,8 @@ var EnableAgenticManagementItemSchema = zod.z.object({
2568
2568
  var enableAgenticManagementPlugin = kitcore.defineMethod({
2569
2569
  ...agenticManagementDefaults,
2570
2570
  name: "enableAgenticManagement",
2571
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2572
- resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
2571
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
2572
+ resolvers: { workflow: chunkBURXHBSW_cjs.workflowIdResolver },
2573
2573
  type: "create",
2574
2574
  itemType: "AgenticManagementEnableResult",
2575
2575
  inputSchema: EnableAgenticManagementSchema,
@@ -2610,8 +2610,8 @@ var DisableAgenticManagementItemSchema = zod.z.object({
2610
2610
  var disableAgenticManagementPlugin = kitcore.defineMethod({
2611
2611
  ...agenticManagementDefaults,
2612
2612
  name: "disableAgenticManagement",
2613
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2614
- resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
2613
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
2614
+ resolvers: { workflow: chunkBURXHBSW_cjs.workflowIdResolver },
2615
2615
  type: "delete",
2616
2616
  confirm: "delete",
2617
2617
  itemType: "AgenticManagementDisableResult",
@@ -2656,8 +2656,8 @@ var GetAgenticManagementConfigItemSchema = zod.z.object({
2656
2656
  var getAgenticManagementConfigPlugin = kitcore.defineMethod({
2657
2657
  ...agenticManagementDefaults,
2658
2658
  name: "getAgenticManagementConfig",
2659
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2660
- resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
2659
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
2660
+ resolvers: { workflow: chunkBURXHBSW_cjs.workflowIdResolver },
2661
2661
  type: "item",
2662
2662
  itemType: "AgenticManagementConfig",
2663
2663
  inputSchema: GetAgenticManagementConfigSchema,
@@ -2703,8 +2703,8 @@ var UpdateAgenticManagementConfigItemSchema = zod.z.object({
2703
2703
  var updateAgenticManagementConfigPlugin = kitcore.defineMethod({
2704
2704
  ...agenticManagementDefaults,
2705
2705
  name: "updateAgenticManagementConfig",
2706
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2707
- resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
2706
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
2707
+ resolvers: { workflow: chunkBURXHBSW_cjs.workflowIdResolver },
2708
2708
  type: "update",
2709
2709
  itemType: "AgenticManagementConfig",
2710
2710
  inputSchema: UpdateAgenticManagementConfigSchema,
@@ -2741,8 +2741,8 @@ var GetAgenticManagementIntentSchema = zod.z.object({
2741
2741
  var getAgenticManagementIntentPlugin = kitcore.defineMethod({
2742
2742
  ...agenticManagementDefaults,
2743
2743
  name: "getAgenticManagementIntent",
2744
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2745
- resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
2744
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
2745
+ resolvers: { workflow: chunkBURXHBSW_cjs.workflowIdResolver },
2746
2746
  type: "item",
2747
2747
  itemType: "AgenticManagementIntent",
2748
2748
  inputSchema: GetAgenticManagementIntentSchema,
@@ -2785,8 +2785,8 @@ var UpdateAgenticManagementIntentSchema = zod.z.object({
2785
2785
  var updateAgenticManagementIntentPlugin = kitcore.defineMethod({
2786
2786
  ...agenticManagementDefaults,
2787
2787
  name: "updateAgenticManagementIntent",
2788
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2789
- resolvers: { workflow: chunkIHWWBHBO_cjs.workflowIdResolver },
2788
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
2789
+ resolvers: { workflow: chunkBURXHBSW_cjs.workflowIdResolver },
2790
2790
  type: "update",
2791
2791
  itemType: "AgenticManagementIntent",
2792
2792
  inputSchema: UpdateAgenticManagementIntentSchema,
@@ -2938,7 +2938,7 @@ var ReadVfsFileItemSchema = zod.z.object({
2938
2938
  var readVfsFilePlugin = kitcore.defineMethod({
2939
2939
  ...vfsDefaults,
2940
2940
  name: "readVfsFile",
2941
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
2941
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
2942
2942
  itemType: "VfsFile",
2943
2943
  inputSchema: ReadVfsFileSchema,
2944
2944
  outputSchema: ReadVfsFileItemSchema,
@@ -2997,7 +2997,7 @@ var WriteVfsFileItemSchema = FsWriteResultSchema;
2997
2997
  var writeVfsFilePlugin = kitcore.defineMethod({
2998
2998
  ...vfsDefaults,
2999
2999
  name: "writeVfsFile",
3000
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
3000
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
3001
3001
  itemType: "VfsWriteResult",
3002
3002
  inputSchema: WriteVfsFileSchema,
3003
3003
  outputSchema: WriteVfsFileItemSchema,
@@ -3038,7 +3038,7 @@ var AppendVfsFileItemSchema = FsWriteResultSchema;
3038
3038
  var appendVfsFilePlugin = kitcore.defineMethod({
3039
3039
  ...vfsDefaults,
3040
3040
  name: "appendVfsFile",
3041
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
3041
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
3042
3042
  itemType: "VfsWriteResult",
3043
3043
  inputSchema: AppendVfsFileSchema,
3044
3044
  outputSchema: AppendVfsFileItemSchema,
@@ -3079,7 +3079,7 @@ var CopyVfsFileItemSchema = FsWriteResultSchema;
3079
3079
  var copyVfsFilePlugin = kitcore.defineMethod({
3080
3080
  ...vfsDefaults,
3081
3081
  name: "copyVfsFile",
3082
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
3082
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
3083
3083
  itemType: "VfsWriteResult",
3084
3084
  inputSchema: CopyVfsFileSchema,
3085
3085
  outputSchema: CopyVfsFileItemSchema,
@@ -3117,7 +3117,7 @@ var ListVfsDirectorySchema = zod.z.object({
3117
3117
  var listVfsDirectoryPlugin = kitcore.defineMethod({
3118
3118
  ...vfsDefaults,
3119
3119
  name: "listVfsDirectory",
3120
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
3120
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
3121
3121
  type: "list",
3122
3122
  itemType: "VfsDirectoryEntry",
3123
3123
  inputSchema: ListVfsDirectorySchema,
@@ -3160,7 +3160,7 @@ var CreateVfsDirectoryItemSchema = FsMkdirResultSchema;
3160
3160
  var createVfsDirectoryPlugin = kitcore.defineMethod({
3161
3161
  ...vfsDefaults,
3162
3162
  name: "createVfsDirectory",
3163
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
3163
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
3164
3164
  itemType: "VfsMkdirResult",
3165
3165
  inputSchema: CreateVfsDirectorySchema,
3166
3166
  outputSchema: CreateVfsDirectoryItemSchema,
@@ -3190,7 +3190,7 @@ var StatVfsPathItemSchema = FsDirectoryEntrySchema;
3190
3190
  var statVfsPathPlugin = kitcore.defineMethod({
3191
3191
  ...vfsDefaults,
3192
3192
  name: "statVfsPath",
3193
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
3193
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
3194
3194
  itemType: "VfsStat",
3195
3195
  inputSchema: StatVfsPathSchema,
3196
3196
  outputSchema: StatVfsPathItemSchema,
@@ -3221,7 +3221,7 @@ var DeleteVfsPathItemSchema = FsDeleteResultSchema;
3221
3221
  var deleteVfsPathPlugin = kitcore.defineMethod({
3222
3222
  ...vfsDefaults,
3223
3223
  name: "deleteVfsPath",
3224
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
3224
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
3225
3225
  type: "delete",
3226
3226
  itemType: "VfsDeleteResult",
3227
3227
  // `type: "delete"` defaults the documented return to `{ success: boolean }`,
@@ -3262,7 +3262,7 @@ var MoveVfsPathItemSchema = FsMoveResultSchema;
3262
3262
  var moveVfsPathPlugin = kitcore.defineMethod({
3263
3263
  ...vfsDefaults,
3264
3264
  name: "moveVfsPath",
3265
- imports: [chunkIHWWBHBO_cjs.apiPluginRef],
3265
+ imports: [chunkBURXHBSW_cjs.apiPluginRef],
3266
3266
  itemType: "VfsMoveResult",
3267
3267
  inputSchema: MoveVfsPathSchema,
3268
3268
  outputSchema: MoveVfsPathItemSchema,
@@ -3285,7 +3285,7 @@ var zapierExperimentalSdkPlugin = kitcore.definePlugin({
3285
3285
  namespace: "zapier",
3286
3286
  name: "experimental-sdk",
3287
3287
  exports: [
3288
- chunkIHWWBHBO_cjs.zapierSdkPlugin,
3288
+ chunkBURXHBSW_cjs.zapierSdkPlugin,
3289
3289
  // Code substrate (experimental). `list*` plugins are exported before their
3290
3290
  // `get*` / mutation siblings because per-row resolvers reach the listing
3291
3291
  // methods.
@@ -3346,1131 +3346,1131 @@ var zapierExperimentalSdkPlugin = kitcore.definePlugin({
3346
3346
  function createZapierSdk(options = {}) {
3347
3347
  return kitcore.createSdk(zapierExperimentalSdkPlugin, {
3348
3348
  configuration: {
3349
- [chunkIHWWBHBO_cjs.SDK_OPTIONS_ID]: options,
3350
- [kitcore.CORE_OPTIONS_ID]: chunkIHWWBHBO_cjs.zapierCoreOptions
3349
+ [chunkBURXHBSW_cjs.SDK_OPTIONS_ID]: options,
3350
+ [kitcore.CORE_OPTIONS_ID]: chunkBURXHBSW_cjs.zapierCoreOptions
3351
3351
  }
3352
3352
  });
3353
3353
  }
3354
3354
 
3355
3355
  Object.defineProperty(exports, "ACTION_RUNS_PATH", {
3356
3356
  enumerable: true,
3357
- get: function () { return chunkIHWWBHBO_cjs.ACTION_RUNS_PATH; }
3357
+ get: function () { return chunkBURXHBSW_cjs.ACTION_RUNS_PATH; }
3358
3358
  });
3359
3359
  Object.defineProperty(exports, "API_ID", {
3360
3360
  enumerable: true,
3361
- get: function () { return chunkIHWWBHBO_cjs.API_ID; }
3361
+ get: function () { return chunkBURXHBSW_cjs.API_ID; }
3362
3362
  });
3363
3363
  Object.defineProperty(exports, "ActionKeyPropertySchema", {
3364
3364
  enumerable: true,
3365
- get: function () { return chunkIHWWBHBO_cjs.ActionKeyPropertySchema; }
3365
+ get: function () { return chunkBURXHBSW_cjs.ActionKeyPropertySchema; }
3366
3366
  });
3367
3367
  Object.defineProperty(exports, "ActionPropertySchema", {
3368
3368
  enumerable: true,
3369
- get: function () { return chunkIHWWBHBO_cjs.ActionPropertySchema; }
3369
+ get: function () { return chunkBURXHBSW_cjs.ActionPropertySchema; }
3370
3370
  });
3371
3371
  Object.defineProperty(exports, "ActionTimeoutMillisecondsPropertySchema", {
3372
3372
  enumerable: true,
3373
- get: function () { return chunkIHWWBHBO_cjs.ActionTimeoutMillisecondsPropertySchema; }
3373
+ get: function () { return chunkBURXHBSW_cjs.ActionTimeoutMillisecondsPropertySchema; }
3374
3374
  });
3375
3375
  Object.defineProperty(exports, "ActionTimeoutSecondsPropertySchema", {
3376
3376
  enumerable: true,
3377
- get: function () { return chunkIHWWBHBO_cjs.ActionTimeoutSecondsPropertySchema; }
3377
+ get: function () { return chunkBURXHBSW_cjs.ActionTimeoutSecondsPropertySchema; }
3378
3378
  });
3379
3379
  Object.defineProperty(exports, "ActionTypePropertySchema", {
3380
3380
  enumerable: true,
3381
- get: function () { return chunkIHWWBHBO_cjs.ActionTypePropertySchema; }
3381
+ get: function () { return chunkBURXHBSW_cjs.ActionTypePropertySchema; }
3382
3382
  });
3383
3383
  Object.defineProperty(exports, "AppKeyPropertySchema", {
3384
3384
  enumerable: true,
3385
- get: function () { return chunkIHWWBHBO_cjs.AppKeyPropertySchema; }
3385
+ get: function () { return chunkBURXHBSW_cjs.AppKeyPropertySchema; }
3386
3386
  });
3387
3387
  Object.defineProperty(exports, "AppPropertySchema", {
3388
3388
  enumerable: true,
3389
- get: function () { return chunkIHWWBHBO_cjs.AppPropertySchema; }
3389
+ get: function () { return chunkBURXHBSW_cjs.AppPropertySchema; }
3390
3390
  });
3391
3391
  Object.defineProperty(exports, "AppsPropertySchema", {
3392
3392
  enumerable: true,
3393
- get: function () { return chunkIHWWBHBO_cjs.AppsPropertySchema; }
3393
+ get: function () { return chunkBURXHBSW_cjs.AppsPropertySchema; }
3394
3394
  });
3395
3395
  Object.defineProperty(exports, "AuthMechanism", {
3396
3396
  enumerable: true,
3397
- get: function () { return chunkIHWWBHBO_cjs.AuthMechanism; }
3397
+ get: function () { return chunkBURXHBSW_cjs.AuthMechanism; }
3398
3398
  });
3399
3399
  Object.defineProperty(exports, "AuthenticationIdPropertySchema", {
3400
3400
  enumerable: true,
3401
- get: function () { return chunkIHWWBHBO_cjs.AuthenticationIdPropertySchema; }
3401
+ get: function () { return chunkBURXHBSW_cjs.AuthenticationIdPropertySchema; }
3402
3402
  });
3403
3403
  Object.defineProperty(exports, "BaseSdkOptionsSchema", {
3404
3404
  enumerable: true,
3405
- get: function () { return chunkIHWWBHBO_cjs.BaseSdkOptionsSchema; }
3405
+ get: function () { return chunkBURXHBSW_cjs.BaseSdkOptionsSchema; }
3406
3406
  });
3407
3407
  Object.defineProperty(exports, "CONNECTIONS_ID", {
3408
3408
  enumerable: true,
3409
- get: function () { return chunkIHWWBHBO_cjs.CONNECTIONS_ID; }
3409
+ get: function () { return chunkBURXHBSW_cjs.CONNECTIONS_ID; }
3410
3410
  });
3411
3411
  Object.defineProperty(exports, "CONTEXT", {
3412
3412
  enumerable: true,
3413
- get: function () { return chunkIHWWBHBO_cjs.CONTEXT; }
3413
+ get: function () { return chunkBURXHBSW_cjs.CONTEXT; }
3414
3414
  });
3415
3415
  Object.defineProperty(exports, "CONTEXT_CACHE_MAX_SIZE", {
3416
3416
  enumerable: true,
3417
- get: function () { return chunkIHWWBHBO_cjs.CONTEXT_CACHE_MAX_SIZE; }
3417
+ get: function () { return chunkBURXHBSW_cjs.CONTEXT_CACHE_MAX_SIZE; }
3418
3418
  });
3419
3419
  Object.defineProperty(exports, "CONTEXT_CACHE_TTL_MILLISECONDS", {
3420
3420
  enumerable: true,
3421
- get: function () { return chunkIHWWBHBO_cjs.CONTEXT_CACHE_TTL_MILLISECONDS; }
3421
+ get: function () { return chunkBURXHBSW_cjs.CONTEXT_CACHE_TTL_MILLISECONDS; }
3422
3422
  });
3423
3423
  Object.defineProperty(exports, "CORE_ERROR_SYMBOL", {
3424
3424
  enumerable: true,
3425
- get: function () { return chunkIHWWBHBO_cjs.CORE_ERROR_SYMBOL; }
3425
+ get: function () { return chunkBURXHBSW_cjs.CORE_ERROR_SYMBOL; }
3426
3426
  });
3427
3427
  Object.defineProperty(exports, "CORE_OPTIONS_ID", {
3428
3428
  enumerable: true,
3429
- get: function () { return chunkIHWWBHBO_cjs.CORE_OPTIONS_ID; }
3429
+ get: function () { return chunkBURXHBSW_cjs.CORE_OPTIONS_ID; }
3430
3430
  });
3431
3431
  Object.defineProperty(exports, "CORE_SIGNAL_SYMBOL", {
3432
3432
  enumerable: true,
3433
- get: function () { return chunkIHWWBHBO_cjs.CORE_SIGNAL_SYMBOL; }
3433
+ get: function () { return chunkBURXHBSW_cjs.CORE_SIGNAL_SYMBOL; }
3434
3434
  });
3435
3435
  Object.defineProperty(exports, "ClientCredentialsObjectSchema", {
3436
3436
  enumerable: true,
3437
- get: function () { return chunkIHWWBHBO_cjs.ClientCredentialsObjectSchema; }
3437
+ get: function () { return chunkBURXHBSW_cjs.ClientCredentialsObjectSchema; }
3438
3438
  });
3439
3439
  Object.defineProperty(exports, "ConnectionEntrySchema", {
3440
3440
  enumerable: true,
3441
- get: function () { return chunkIHWWBHBO_cjs.ConnectionEntrySchema; }
3441
+ get: function () { return chunkBURXHBSW_cjs.ConnectionEntrySchema; }
3442
3442
  });
3443
3443
  Object.defineProperty(exports, "ConnectionIdPropertySchema", {
3444
3444
  enumerable: true,
3445
- get: function () { return chunkIHWWBHBO_cjs.ConnectionIdPropertySchema; }
3445
+ get: function () { return chunkBURXHBSW_cjs.ConnectionIdPropertySchema; }
3446
3446
  });
3447
3447
  Object.defineProperty(exports, "ConnectionPropertySchema", {
3448
3448
  enumerable: true,
3449
- get: function () { return chunkIHWWBHBO_cjs.ConnectionPropertySchema; }
3449
+ get: function () { return chunkBURXHBSW_cjs.ConnectionPropertySchema; }
3450
3450
  });
3451
3451
  Object.defineProperty(exports, "ConnectionsMapSchema", {
3452
3452
  enumerable: true,
3453
- get: function () { return chunkIHWWBHBO_cjs.ConnectionsMapSchema; }
3453
+ get: function () { return chunkBURXHBSW_cjs.ConnectionsMapSchema; }
3454
3454
  });
3455
3455
  Object.defineProperty(exports, "ConnectionsPropertySchema", {
3456
3456
  enumerable: true,
3457
- get: function () { return chunkIHWWBHBO_cjs.ConnectionsPropertySchema; }
3457
+ get: function () { return chunkBURXHBSW_cjs.ConnectionsPropertySchema; }
3458
3458
  });
3459
3459
  Object.defineProperty(exports, "CoreCancelledSignal", {
3460
3460
  enumerable: true,
3461
- get: function () { return chunkIHWWBHBO_cjs.CoreCancelledSignal; }
3461
+ get: function () { return chunkBURXHBSW_cjs.CoreCancelledSignal; }
3462
3462
  });
3463
3463
  Object.defineProperty(exports, "CoreDisposeError", {
3464
3464
  enumerable: true,
3465
- get: function () { return chunkIHWWBHBO_cjs.CoreDisposeError; }
3465
+ get: function () { return chunkBURXHBSW_cjs.CoreDisposeError; }
3466
3466
  });
3467
3467
  Object.defineProperty(exports, "CoreErrorCode", {
3468
3468
  enumerable: true,
3469
- get: function () { return chunkIHWWBHBO_cjs.CoreErrorCode; }
3469
+ get: function () { return chunkBURXHBSW_cjs.CoreErrorCode; }
3470
3470
  });
3471
3471
  Object.defineProperty(exports, "CoreSignal", {
3472
3472
  enumerable: true,
3473
- get: function () { return chunkIHWWBHBO_cjs.CoreSignal; }
3473
+ get: function () { return chunkBURXHBSW_cjs.CoreSignal; }
3474
3474
  });
3475
3475
  Object.defineProperty(exports, "CredentialsFunctionSchema", {
3476
3476
  enumerable: true,
3477
- get: function () { return chunkIHWWBHBO_cjs.CredentialsFunctionSchema; }
3477
+ get: function () { return chunkBURXHBSW_cjs.CredentialsFunctionSchema; }
3478
3478
  });
3479
3479
  Object.defineProperty(exports, "CredentialsObjectSchema", {
3480
3480
  enumerable: true,
3481
- get: function () { return chunkIHWWBHBO_cjs.CredentialsObjectSchema; }
3481
+ get: function () { return chunkBURXHBSW_cjs.CredentialsObjectSchema; }
3482
3482
  });
3483
3483
  Object.defineProperty(exports, "CredentialsSchema", {
3484
3484
  enumerable: true,
3485
- get: function () { return chunkIHWWBHBO_cjs.CredentialsSchema; }
3485
+ get: function () { return chunkBURXHBSW_cjs.CredentialsSchema; }
3486
3486
  });
3487
3487
  Object.defineProperty(exports, "DEFAULT_ACTION_TIMEOUT_MILLISECONDS", {
3488
3488
  enumerable: true,
3489
- get: function () { return chunkIHWWBHBO_cjs.DEFAULT_ACTION_TIMEOUT_MILLISECONDS; }
3489
+ get: function () { return chunkBURXHBSW_cjs.DEFAULT_ACTION_TIMEOUT_MILLISECONDS; }
3490
3490
  });
3491
3491
  Object.defineProperty(exports, "DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS", {
3492
3492
  enumerable: true,
3493
- get: function () { return chunkIHWWBHBO_cjs.DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS; }
3493
+ get: function () { return chunkBURXHBSW_cjs.DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS; }
3494
3494
  });
3495
3495
  Object.defineProperty(exports, "DEFAULT_CONFIG_PATH", {
3496
3496
  enumerable: true,
3497
- get: function () { return chunkIHWWBHBO_cjs.DEFAULT_CONFIG_PATH; }
3497
+ get: function () { return chunkBURXHBSW_cjs.DEFAULT_CONFIG_PATH; }
3498
3498
  });
3499
3499
  Object.defineProperty(exports, "DEFAULT_MAX_APPROVAL_RETRIES", {
3500
3500
  enumerable: true,
3501
- get: function () { return chunkIHWWBHBO_cjs.DEFAULT_MAX_APPROVAL_RETRIES; }
3501
+ get: function () { return chunkBURXHBSW_cjs.DEFAULT_MAX_APPROVAL_RETRIES; }
3502
3502
  });
3503
3503
  Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
3504
3504
  enumerable: true,
3505
- get: function () { return chunkIHWWBHBO_cjs.DEFAULT_PAGE_SIZE; }
3505
+ get: function () { return chunkBURXHBSW_cjs.DEFAULT_PAGE_SIZE; }
3506
3506
  });
3507
3507
  Object.defineProperty(exports, "DEPRECATION_NOTICE_EVENT", {
3508
3508
  enumerable: true,
3509
- get: function () { return chunkIHWWBHBO_cjs.DEPRECATION_NOTICE_EVENT; }
3509
+ get: function () { return chunkBURXHBSW_cjs.DEPRECATION_NOTICE_EVENT; }
3510
3510
  });
3511
3511
  Object.defineProperty(exports, "DebugPropertySchema", {
3512
3512
  enumerable: true,
3513
- get: function () { return chunkIHWWBHBO_cjs.DebugPropertySchema; }
3513
+ get: function () { return chunkBURXHBSW_cjs.DebugPropertySchema; }
3514
3514
  });
3515
3515
  Object.defineProperty(exports, "DrainTriggerInboxSchema", {
3516
3516
  enumerable: true,
3517
- get: function () { return chunkIHWWBHBO_cjs.DrainTriggerInboxSchema; }
3517
+ get: function () { return chunkBURXHBSW_cjs.DrainTriggerInboxSchema; }
3518
3518
  });
3519
3519
  Object.defineProperty(exports, "EVENT_EMISSION_ID", {
3520
3520
  enumerable: true,
3521
- get: function () { return chunkIHWWBHBO_cjs.EVENT_EMISSION_ID; }
3521
+ get: function () { return chunkBURXHBSW_cjs.EVENT_EMISSION_ID; }
3522
3522
  });
3523
3523
  Object.defineProperty(exports, "FieldsPropertySchema", {
3524
3524
  enumerable: true,
3525
- get: function () { return chunkIHWWBHBO_cjs.FieldsPropertySchema; }
3525
+ get: function () { return chunkBURXHBSW_cjs.FieldsPropertySchema; }
3526
3526
  });
3527
3527
  Object.defineProperty(exports, "InputFieldPropertySchema", {
3528
3528
  enumerable: true,
3529
- get: function () { return chunkIHWWBHBO_cjs.InputFieldPropertySchema; }
3529
+ get: function () { return chunkBURXHBSW_cjs.InputFieldPropertySchema; }
3530
3530
  });
3531
3531
  Object.defineProperty(exports, "InputsPropertySchema", {
3532
3532
  enumerable: true,
3533
- get: function () { return chunkIHWWBHBO_cjs.InputsPropertySchema; }
3533
+ get: function () { return chunkBURXHBSW_cjs.InputsPropertySchema; }
3534
3534
  });
3535
3535
  Object.defineProperty(exports, "LeaseLimitPropertySchema", {
3536
3536
  enumerable: true,
3537
- get: function () { return chunkIHWWBHBO_cjs.LeaseLimitPropertySchema; }
3537
+ get: function () { return chunkBURXHBSW_cjs.LeaseLimitPropertySchema; }
3538
3538
  });
3539
3539
  Object.defineProperty(exports, "LeasePropertySchema", {
3540
3540
  enumerable: true,
3541
- get: function () { return chunkIHWWBHBO_cjs.LeasePropertySchema; }
3541
+ get: function () { return chunkBURXHBSW_cjs.LeasePropertySchema; }
3542
3542
  });
3543
3543
  Object.defineProperty(exports, "LeaseSecondsPropertySchema", {
3544
3544
  enumerable: true,
3545
- get: function () { return chunkIHWWBHBO_cjs.LeaseSecondsPropertySchema; }
3545
+ get: function () { return chunkBURXHBSW_cjs.LeaseSecondsPropertySchema; }
3546
3546
  });
3547
3547
  Object.defineProperty(exports, "LimitPropertySchema", {
3548
3548
  enumerable: true,
3549
- get: function () { return chunkIHWWBHBO_cjs.LimitPropertySchema; }
3549
+ get: function () { return chunkBURXHBSW_cjs.LimitPropertySchema; }
3550
3550
  });
3551
3551
  Object.defineProperty(exports, "MANIFEST_ID", {
3552
3552
  enumerable: true,
3553
- get: function () { return chunkIHWWBHBO_cjs.MANIFEST_ID; }
3553
+ get: function () { return chunkBURXHBSW_cjs.MANIFEST_ID; }
3554
3554
  });
3555
3555
  Object.defineProperty(exports, "MAX_CONCURRENCY_LIMIT", {
3556
3556
  enumerable: true,
3557
- get: function () { return chunkIHWWBHBO_cjs.MAX_CONCURRENCY_LIMIT; }
3557
+ get: function () { return chunkBURXHBSW_cjs.MAX_CONCURRENCY_LIMIT; }
3558
3558
  });
3559
3559
  Object.defineProperty(exports, "MAX_PAGE_LIMIT", {
3560
3560
  enumerable: true,
3561
- get: function () { return chunkIHWWBHBO_cjs.MAX_PAGE_LIMIT; }
3561
+ get: function () { return chunkBURXHBSW_cjs.MAX_PAGE_LIMIT; }
3562
3562
  });
3563
3563
  Object.defineProperty(exports, "OffsetPropertySchema", {
3564
3564
  enumerable: true,
3565
- get: function () { return chunkIHWWBHBO_cjs.OffsetPropertySchema; }
3565
+ get: function () { return chunkBURXHBSW_cjs.OffsetPropertySchema; }
3566
3566
  });
3567
3567
  Object.defineProperty(exports, "OutputPropertySchema", {
3568
3568
  enumerable: true,
3569
- get: function () { return chunkIHWWBHBO_cjs.OutputPropertySchema; }
3569
+ get: function () { return chunkBURXHBSW_cjs.OutputPropertySchema; }
3570
3570
  });
3571
3571
  Object.defineProperty(exports, "ParamsPropertySchema", {
3572
3572
  enumerable: true,
3573
- get: function () { return chunkIHWWBHBO_cjs.ParamsPropertySchema; }
3573
+ get: function () { return chunkBURXHBSW_cjs.ParamsPropertySchema; }
3574
3574
  });
3575
3575
  Object.defineProperty(exports, "PkceCredentialsObjectSchema", {
3576
3576
  enumerable: true,
3577
- get: function () { return chunkIHWWBHBO_cjs.PkceCredentialsObjectSchema; }
3577
+ get: function () { return chunkBURXHBSW_cjs.PkceCredentialsObjectSchema; }
3578
3578
  });
3579
3579
  Object.defineProperty(exports, "RESOLVE_CREDENTIALS_ID", {
3580
3580
  enumerable: true,
3581
- get: function () { return chunkIHWWBHBO_cjs.RESOLVE_CREDENTIALS_ID; }
3581
+ get: function () { return chunkBURXHBSW_cjs.RESOLVE_CREDENTIALS_ID; }
3582
3582
  });
3583
3583
  Object.defineProperty(exports, "RecordPropertySchema", {
3584
3584
  enumerable: true,
3585
- get: function () { return chunkIHWWBHBO_cjs.RecordPropertySchema; }
3585
+ get: function () { return chunkBURXHBSW_cjs.RecordPropertySchema; }
3586
3586
  });
3587
3587
  Object.defineProperty(exports, "RecordsPropertySchema", {
3588
3588
  enumerable: true,
3589
- get: function () { return chunkIHWWBHBO_cjs.RecordsPropertySchema; }
3589
+ get: function () { return chunkBURXHBSW_cjs.RecordsPropertySchema; }
3590
3590
  });
3591
3591
  Object.defineProperty(exports, "RelayFetchSchema", {
3592
3592
  enumerable: true,
3593
- get: function () { return chunkIHWWBHBO_cjs.RelayFetchSchema; }
3593
+ get: function () { return chunkBURXHBSW_cjs.RelayFetchSchema; }
3594
3594
  });
3595
3595
  Object.defineProperty(exports, "RelayRequestSchema", {
3596
3596
  enumerable: true,
3597
- get: function () { return chunkIHWWBHBO_cjs.RelayRequestSchema; }
3597
+ get: function () { return chunkBURXHBSW_cjs.RelayRequestSchema; }
3598
3598
  });
3599
3599
  Object.defineProperty(exports, "ResolvedCredentialsSchema", {
3600
3600
  enumerable: true,
3601
- get: function () { return chunkIHWWBHBO_cjs.ResolvedCredentialsSchema; }
3601
+ get: function () { return chunkBURXHBSW_cjs.ResolvedCredentialsSchema; }
3602
3602
  });
3603
3603
  Object.defineProperty(exports, "SDK_OPTIONS_ID", {
3604
3604
  enumerable: true,
3605
- get: function () { return chunkIHWWBHBO_cjs.SDK_OPTIONS_ID; }
3605
+ get: function () { return chunkBURXHBSW_cjs.SDK_OPTIONS_ID; }
3606
3606
  });
3607
3607
  Object.defineProperty(exports, "TablePropertySchema", {
3608
3608
  enumerable: true,
3609
- get: function () { return chunkIHWWBHBO_cjs.TablePropertySchema; }
3609
+ get: function () { return chunkBURXHBSW_cjs.TablePropertySchema; }
3610
3610
  });
3611
3611
  Object.defineProperty(exports, "TablesPropertySchema", {
3612
3612
  enumerable: true,
3613
- get: function () { return chunkIHWWBHBO_cjs.TablesPropertySchema; }
3613
+ get: function () { return chunkBURXHBSW_cjs.TablesPropertySchema; }
3614
3614
  });
3615
3615
  Object.defineProperty(exports, "TriggerInboxKeyPropertySchema", {
3616
3616
  enumerable: true,
3617
- get: function () { return chunkIHWWBHBO_cjs.TriggerInboxKeyPropertySchema; }
3617
+ get: function () { return chunkBURXHBSW_cjs.TriggerInboxKeyPropertySchema; }
3618
3618
  });
3619
3619
  Object.defineProperty(exports, "TriggerInboxNamePropertySchema", {
3620
3620
  enumerable: true,
3621
- get: function () { return chunkIHWWBHBO_cjs.TriggerInboxNamePropertySchema; }
3621
+ get: function () { return chunkBURXHBSW_cjs.TriggerInboxNamePropertySchema; }
3622
3622
  });
3623
3623
  Object.defineProperty(exports, "TriggerInboxPropertySchema", {
3624
3624
  enumerable: true,
3625
- get: function () { return chunkIHWWBHBO_cjs.TriggerInboxPropertySchema; }
3625
+ get: function () { return chunkBURXHBSW_cjs.TriggerInboxPropertySchema; }
3626
3626
  });
3627
3627
  Object.defineProperty(exports, "WatchTriggerInboxSchema", {
3628
3628
  enumerable: true,
3629
- get: function () { return chunkIHWWBHBO_cjs.WatchTriggerInboxSchema; }
3629
+ get: function () { return chunkBURXHBSW_cjs.WatchTriggerInboxSchema; }
3630
3630
  });
3631
3631
  Object.defineProperty(exports, "ZAPIER_BASE_URL", {
3632
3632
  enumerable: true,
3633
- get: function () { return chunkIHWWBHBO_cjs.ZAPIER_BASE_URL; }
3633
+ get: function () { return chunkBURXHBSW_cjs.ZAPIER_BASE_URL; }
3634
3634
  });
3635
3635
  Object.defineProperty(exports, "ZAPIER_MAX_CONCURRENT_REQUESTS", {
3636
3636
  enumerable: true,
3637
- get: function () { return chunkIHWWBHBO_cjs.ZAPIER_MAX_CONCURRENT_REQUESTS; }
3637
+ get: function () { return chunkBURXHBSW_cjs.ZAPIER_MAX_CONCURRENT_REQUESTS; }
3638
3638
  });
3639
3639
  Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRIES", {
3640
3640
  enumerable: true,
3641
- get: function () { return chunkIHWWBHBO_cjs.ZAPIER_MAX_NETWORK_RETRIES; }
3641
+ get: function () { return chunkBURXHBSW_cjs.ZAPIER_MAX_NETWORK_RETRIES; }
3642
3642
  });
3643
3643
  Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS", {
3644
3644
  enumerable: true,
3645
- get: function () { return chunkIHWWBHBO_cjs.ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS; }
3645
+ get: function () { return chunkBURXHBSW_cjs.ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS; }
3646
3646
  });
3647
3647
  Object.defineProperty(exports, "ZapierAbortDrainSignal", {
3648
3648
  enumerable: true,
3649
- get: function () { return chunkIHWWBHBO_cjs.ZapierAbortDrainSignal; }
3649
+ get: function () { return chunkBURXHBSW_cjs.ZapierAbortDrainSignal; }
3650
3650
  });
3651
3651
  Object.defineProperty(exports, "ZapierActionError", {
3652
3652
  enumerable: true,
3653
- get: function () { return chunkIHWWBHBO_cjs.ZapierActionError; }
3653
+ get: function () { return chunkBURXHBSW_cjs.ZapierActionError; }
3654
3654
  });
3655
3655
  Object.defineProperty(exports, "ZapierApiError", {
3656
3656
  enumerable: true,
3657
- get: function () { return chunkIHWWBHBO_cjs.ZapierApiError; }
3657
+ get: function () { return chunkBURXHBSW_cjs.ZapierApiError; }
3658
3658
  });
3659
3659
  Object.defineProperty(exports, "ZapierAppNotFoundError", {
3660
3660
  enumerable: true,
3661
- get: function () { return chunkIHWWBHBO_cjs.ZapierAppNotFoundError; }
3661
+ get: function () { return chunkBURXHBSW_cjs.ZapierAppNotFoundError; }
3662
3662
  });
3663
3663
  Object.defineProperty(exports, "ZapierApprovalError", {
3664
3664
  enumerable: true,
3665
- get: function () { return chunkIHWWBHBO_cjs.ZapierApprovalError; }
3665
+ get: function () { return chunkBURXHBSW_cjs.ZapierApprovalError; }
3666
3666
  });
3667
3667
  Object.defineProperty(exports, "ZapierAuthenticationError", {
3668
3668
  enumerable: true,
3669
- get: function () { return chunkIHWWBHBO_cjs.ZapierAuthenticationError; }
3669
+ get: function () { return chunkBURXHBSW_cjs.ZapierAuthenticationError; }
3670
3670
  });
3671
3671
  Object.defineProperty(exports, "ZapierBundleError", {
3672
3672
  enumerable: true,
3673
- get: function () { return chunkIHWWBHBO_cjs.ZapierBundleError; }
3673
+ get: function () { return chunkBURXHBSW_cjs.ZapierBundleError; }
3674
3674
  });
3675
3675
  Object.defineProperty(exports, "ZapierConfigurationError", {
3676
3676
  enumerable: true,
3677
- get: function () { return chunkIHWWBHBO_cjs.ZapierConfigurationError; }
3677
+ get: function () { return chunkBURXHBSW_cjs.ZapierConfigurationError; }
3678
3678
  });
3679
3679
  Object.defineProperty(exports, "ZapierConflictError", {
3680
3680
  enumerable: true,
3681
- get: function () { return chunkIHWWBHBO_cjs.ZapierConflictError; }
3681
+ get: function () { return chunkBURXHBSW_cjs.ZapierConflictError; }
3682
3682
  });
3683
3683
  Object.defineProperty(exports, "ZapierError", {
3684
3684
  enumerable: true,
3685
- get: function () { return chunkIHWWBHBO_cjs.ZapierError; }
3685
+ get: function () { return chunkBURXHBSW_cjs.ZapierError; }
3686
3686
  });
3687
3687
  Object.defineProperty(exports, "ZapierNotFoundError", {
3688
3688
  enumerable: true,
3689
- get: function () { return chunkIHWWBHBO_cjs.ZapierNotFoundError; }
3689
+ get: function () { return chunkBURXHBSW_cjs.ZapierNotFoundError; }
3690
3690
  });
3691
3691
  Object.defineProperty(exports, "ZapierRateLimitError", {
3692
3692
  enumerable: true,
3693
- get: function () { return chunkIHWWBHBO_cjs.ZapierRateLimitError; }
3693
+ get: function () { return chunkBURXHBSW_cjs.ZapierRateLimitError; }
3694
3694
  });
3695
3695
  Object.defineProperty(exports, "ZapierRelayError", {
3696
3696
  enumerable: true,
3697
- get: function () { return chunkIHWWBHBO_cjs.ZapierRelayError; }
3697
+ get: function () { return chunkBURXHBSW_cjs.ZapierRelayError; }
3698
3698
  });
3699
3699
  Object.defineProperty(exports, "ZapierReleaseTriggerMessageSignal", {
3700
3700
  enumerable: true,
3701
- get: function () { return chunkIHWWBHBO_cjs.ZapierReleaseTriggerMessageSignal; }
3701
+ get: function () { return chunkBURXHBSW_cjs.ZapierReleaseTriggerMessageSignal; }
3702
3702
  });
3703
3703
  Object.defineProperty(exports, "ZapierResourceNotFoundError", {
3704
3704
  enumerable: true,
3705
- get: function () { return chunkIHWWBHBO_cjs.ZapierResourceNotFoundError; }
3705
+ get: function () { return chunkBURXHBSW_cjs.ZapierResourceNotFoundError; }
3706
3706
  });
3707
3707
  Object.defineProperty(exports, "ZapierSignal", {
3708
3708
  enumerable: true,
3709
- get: function () { return chunkIHWWBHBO_cjs.ZapierSignal; }
3709
+ get: function () { return chunkBURXHBSW_cjs.ZapierSignal; }
3710
3710
  });
3711
3711
  Object.defineProperty(exports, "ZapierTimeoutError", {
3712
3712
  enumerable: true,
3713
- get: function () { return chunkIHWWBHBO_cjs.ZapierTimeoutError; }
3713
+ get: function () { return chunkBURXHBSW_cjs.ZapierTimeoutError; }
3714
3714
  });
3715
3715
  Object.defineProperty(exports, "ZapierUnknownError", {
3716
3716
  enumerable: true,
3717
- get: function () { return chunkIHWWBHBO_cjs.ZapierUnknownError; }
3717
+ get: function () { return chunkBURXHBSW_cjs.ZapierUnknownError; }
3718
3718
  });
3719
3719
  Object.defineProperty(exports, "ZapierValidationError", {
3720
3720
  enumerable: true,
3721
- get: function () { return chunkIHWWBHBO_cjs.ZapierValidationError; }
3721
+ get: function () { return chunkBURXHBSW_cjs.ZapierValidationError; }
3722
3722
  });
3723
3723
  Object.defineProperty(exports, "actionKeyResolver", {
3724
3724
  enumerable: true,
3725
- get: function () { return chunkIHWWBHBO_cjs.actionKeyResolver; }
3725
+ get: function () { return chunkBURXHBSW_cjs.actionKeyResolver; }
3726
3726
  });
3727
3727
  Object.defineProperty(exports, "actionTypeResolver", {
3728
3728
  enumerable: true,
3729
- get: function () { return chunkIHWWBHBO_cjs.actionTypeResolver; }
3729
+ get: function () { return chunkBURXHBSW_cjs.actionTypeResolver; }
3730
3730
  });
3731
3731
  Object.defineProperty(exports, "addPlugin", {
3732
3732
  enumerable: true,
3733
- get: function () { return chunkIHWWBHBO_cjs.addPlugin; }
3733
+ get: function () { return chunkBURXHBSW_cjs.addPlugin; }
3734
3734
  });
3735
3735
  Object.defineProperty(exports, "apiPlugin", {
3736
3736
  enumerable: true,
3737
- get: function () { return chunkIHWWBHBO_cjs.apiPlugin; }
3737
+ get: function () { return chunkBURXHBSW_cjs.apiPlugin; }
3738
3738
  });
3739
3739
  Object.defineProperty(exports, "apiPluginRef", {
3740
3740
  enumerable: true,
3741
- get: function () { return chunkIHWWBHBO_cjs.apiPluginRef; }
3741
+ get: function () { return chunkBURXHBSW_cjs.apiPluginRef; }
3742
3742
  });
3743
3743
  Object.defineProperty(exports, "appKeyResolver", {
3744
3744
  enumerable: true,
3745
- get: function () { return chunkIHWWBHBO_cjs.appKeyResolver; }
3745
+ get: function () { return chunkBURXHBSW_cjs.appKeyResolver; }
3746
3746
  });
3747
3747
  Object.defineProperty(exports, "appsPlugin", {
3748
3748
  enumerable: true,
3749
- get: function () { return chunkIHWWBHBO_cjs.appsPlugin; }
3749
+ get: function () { return chunkBURXHBSW_cjs.appsPlugin; }
3750
3750
  });
3751
3751
  Object.defineProperty(exports, "batch", {
3752
3752
  enumerable: true,
3753
- get: function () { return chunkIHWWBHBO_cjs.batch; }
3753
+ get: function () { return chunkBURXHBSW_cjs.batch; }
3754
3754
  });
3755
3755
  Object.defineProperty(exports, "buildApplicationLifecycleEvent", {
3756
3756
  enumerable: true,
3757
- get: function () { return chunkIHWWBHBO_cjs.buildApplicationLifecycleEvent; }
3757
+ get: function () { return chunkBURXHBSW_cjs.buildApplicationLifecycleEvent; }
3758
3758
  });
3759
3759
  Object.defineProperty(exports, "buildCapabilityMessage", {
3760
3760
  enumerable: true,
3761
- get: function () { return chunkIHWWBHBO_cjs.buildCapabilityMessage; }
3761
+ get: function () { return chunkBURXHBSW_cjs.buildCapabilityMessage; }
3762
3762
  });
3763
3763
  Object.defineProperty(exports, "buildErrorEvent", {
3764
3764
  enumerable: true,
3765
- get: function () { return chunkIHWWBHBO_cjs.buildErrorEvent; }
3765
+ get: function () { return chunkBURXHBSW_cjs.buildErrorEvent; }
3766
3766
  });
3767
3767
  Object.defineProperty(exports, "buildErrorEventWithContext", {
3768
3768
  enumerable: true,
3769
- get: function () { return chunkIHWWBHBO_cjs.buildErrorEventWithContext; }
3769
+ get: function () { return chunkBURXHBSW_cjs.buildErrorEventWithContext; }
3770
3770
  });
3771
3771
  Object.defineProperty(exports, "buildMethodCalledEvent", {
3772
3772
  enumerable: true,
3773
- get: function () { return chunkIHWWBHBO_cjs.buildMethodCalledEvent; }
3773
+ get: function () { return chunkBURXHBSW_cjs.buildMethodCalledEvent; }
3774
3774
  });
3775
3775
  Object.defineProperty(exports, "cleanupEventListeners", {
3776
3776
  enumerable: true,
3777
- get: function () { return chunkIHWWBHBO_cjs.cleanupEventListeners; }
3777
+ get: function () { return chunkBURXHBSW_cjs.cleanupEventListeners; }
3778
3778
  });
3779
3779
  Object.defineProperty(exports, "clearTokenCache", {
3780
3780
  enumerable: true,
3781
- get: function () { return chunkIHWWBHBO_cjs.clearTokenCache; }
3781
+ get: function () { return chunkBURXHBSW_cjs.clearTokenCache; }
3782
3782
  });
3783
3783
  Object.defineProperty(exports, "clientCredentialsNameResolver", {
3784
3784
  enumerable: true,
3785
- get: function () { return chunkIHWWBHBO_cjs.clientCredentialsNameResolver; }
3785
+ get: function () { return chunkBURXHBSW_cjs.clientCredentialsNameResolver; }
3786
3786
  });
3787
3787
  Object.defineProperty(exports, "clientIdResolver", {
3788
3788
  enumerable: true,
3789
- get: function () { return chunkIHWWBHBO_cjs.clientIdResolver; }
3789
+ get: function () { return chunkBURXHBSW_cjs.clientIdResolver; }
3790
3790
  });
3791
3791
  Object.defineProperty(exports, "composePlugins", {
3792
3792
  enumerable: true,
3793
- get: function () { return chunkIHWWBHBO_cjs.composePlugins; }
3793
+ get: function () { return chunkBURXHBSW_cjs.composePlugins; }
3794
3794
  });
3795
3795
  Object.defineProperty(exports, "connectionIdGenericResolver", {
3796
3796
  enumerable: true,
3797
- get: function () { return chunkIHWWBHBO_cjs.connectionIdGenericResolver; }
3797
+ get: function () { return chunkBURXHBSW_cjs.connectionIdGenericResolver; }
3798
3798
  });
3799
3799
  Object.defineProperty(exports, "connectionIdResolver", {
3800
3800
  enumerable: true,
3801
- get: function () { return chunkIHWWBHBO_cjs.connectionIdResolver; }
3801
+ get: function () { return chunkBURXHBSW_cjs.connectionIdResolver; }
3802
3802
  });
3803
3803
  Object.defineProperty(exports, "connectionsPlugin", {
3804
3804
  enumerable: true,
3805
- get: function () { return chunkIHWWBHBO_cjs.connectionsPlugin; }
3805
+ get: function () { return chunkBURXHBSW_cjs.connectionsPlugin; }
3806
3806
  });
3807
3807
  Object.defineProperty(exports, "connectionsPluginRef", {
3808
3808
  enumerable: true,
3809
- get: function () { return chunkIHWWBHBO_cjs.connectionsPluginRef; }
3809
+ get: function () { return chunkBURXHBSW_cjs.connectionsPluginRef; }
3810
3810
  });
3811
3811
  Object.defineProperty(exports, "createActionRunPlugin", {
3812
3812
  enumerable: true,
3813
- get: function () { return chunkIHWWBHBO_cjs.createActionRunPlugin; }
3813
+ get: function () { return chunkBURXHBSW_cjs.createActionRunPlugin; }
3814
3814
  });
3815
3815
  Object.defineProperty(exports, "createBaseEvent", {
3816
3816
  enumerable: true,
3817
- get: function () { return chunkIHWWBHBO_cjs.createBaseEvent; }
3817
+ get: function () { return chunkBURXHBSW_cjs.createBaseEvent; }
3818
3818
  });
3819
3819
  Object.defineProperty(exports, "createClientCredentialsPlugin", {
3820
3820
  enumerable: true,
3821
- get: function () { return chunkIHWWBHBO_cjs.createClientCredentialsPlugin; }
3821
+ get: function () { return chunkBURXHBSW_cjs.createClientCredentialsPlugin; }
3822
3822
  });
3823
3823
  Object.defineProperty(exports, "createController", {
3824
3824
  enumerable: true,
3825
- get: function () { return chunkIHWWBHBO_cjs.createController; }
3825
+ get: function () { return chunkBURXHBSW_cjs.createController; }
3826
3826
  });
3827
3827
  Object.defineProperty(exports, "createCorePlugin", {
3828
3828
  enumerable: true,
3829
- get: function () { return chunkIHWWBHBO_cjs.createCorePlugin; }
3829
+ get: function () { return chunkBURXHBSW_cjs.createCorePlugin; }
3830
3830
  });
3831
3831
  Object.defineProperty(exports, "createFunction", {
3832
3832
  enumerable: true,
3833
- get: function () { return chunkIHWWBHBO_cjs.createFunction; }
3833
+ get: function () { return chunkBURXHBSW_cjs.createFunction; }
3834
3834
  });
3835
3835
  Object.defineProperty(exports, "createMemoryCache", {
3836
3836
  enumerable: true,
3837
- get: function () { return chunkIHWWBHBO_cjs.createMemoryCache; }
3837
+ get: function () { return chunkBURXHBSW_cjs.createMemoryCache; }
3838
3838
  });
3839
3839
  Object.defineProperty(exports, "createPaginatedFunction", {
3840
3840
  enumerable: true,
3841
- get: function () { return chunkIHWWBHBO_cjs.createPaginatedFunction; }
3841
+ get: function () { return chunkBURXHBSW_cjs.createPaginatedFunction; }
3842
3842
  });
3843
3843
  Object.defineProperty(exports, "createPaginatedPluginMethod", {
3844
3844
  enumerable: true,
3845
- get: function () { return chunkIHWWBHBO_cjs.createPaginatedPluginMethod; }
3845
+ get: function () { return chunkBURXHBSW_cjs.createPaginatedPluginMethod; }
3846
3846
  });
3847
3847
  Object.defineProperty(exports, "createPluginMethod", {
3848
3848
  enumerable: true,
3849
- get: function () { return chunkIHWWBHBO_cjs.createPluginMethod; }
3849
+ get: function () { return chunkBURXHBSW_cjs.createPluginMethod; }
3850
3850
  });
3851
3851
  Object.defineProperty(exports, "createPluginStack", {
3852
3852
  enumerable: true,
3853
- get: function () { return chunkIHWWBHBO_cjs.createPluginStack; }
3853
+ get: function () { return chunkBURXHBSW_cjs.createPluginStack; }
3854
3854
  });
3855
3855
  Object.defineProperty(exports, "createSdk", {
3856
3856
  enumerable: true,
3857
- get: function () { return chunkIHWWBHBO_cjs.createSdk; }
3857
+ get: function () { return chunkBURXHBSW_cjs.createSdk; }
3858
3858
  });
3859
3859
  Object.defineProperty(exports, "createTableFieldsPlugin", {
3860
3860
  enumerable: true,
3861
- get: function () { return chunkIHWWBHBO_cjs.createTableFieldsPlugin; }
3861
+ get: function () { return chunkBURXHBSW_cjs.createTableFieldsPlugin; }
3862
3862
  });
3863
3863
  Object.defineProperty(exports, "createTablePlugin", {
3864
3864
  enumerable: true,
3865
- get: function () { return chunkIHWWBHBO_cjs.createTablePlugin; }
3865
+ get: function () { return chunkBURXHBSW_cjs.createTablePlugin; }
3866
3866
  });
3867
3867
  Object.defineProperty(exports, "createTableRecordsPlugin", {
3868
3868
  enumerable: true,
3869
- get: function () { return chunkIHWWBHBO_cjs.createTableRecordsPlugin; }
3869
+ get: function () { return chunkBURXHBSW_cjs.createTableRecordsPlugin; }
3870
3870
  });
3871
3871
  Object.defineProperty(exports, "createZapierApi", {
3872
3872
  enumerable: true,
3873
- get: function () { return chunkIHWWBHBO_cjs.createZapierApi; }
3873
+ get: function () { return chunkBURXHBSW_cjs.createZapierApi; }
3874
3874
  });
3875
3875
  Object.defineProperty(exports, "createZapierSdkWithoutRegistry", {
3876
3876
  enumerable: true,
3877
- get: function () { return chunkIHWWBHBO_cjs.createZapierSdkWithoutRegistry; }
3877
+ get: function () { return chunkBURXHBSW_cjs.createZapierSdkWithoutRegistry; }
3878
3878
  });
3879
3879
  Object.defineProperty(exports, "declareMethod", {
3880
3880
  enumerable: true,
3881
- get: function () { return chunkIHWWBHBO_cjs.declareMethod; }
3881
+ get: function () { return chunkBURXHBSW_cjs.declareMethod; }
3882
3882
  });
3883
3883
  Object.defineProperty(exports, "declareOptionalProperty", {
3884
3884
  enumerable: true,
3885
- get: function () { return chunkIHWWBHBO_cjs.declareOptionalProperty; }
3885
+ get: function () { return chunkBURXHBSW_cjs.declareOptionalProperty; }
3886
3886
  });
3887
3887
  Object.defineProperty(exports, "declarePlugin", {
3888
3888
  enumerable: true,
3889
- get: function () { return chunkIHWWBHBO_cjs.declarePlugin; }
3889
+ get: function () { return chunkBURXHBSW_cjs.declarePlugin; }
3890
3890
  });
3891
3891
  Object.defineProperty(exports, "declareProperty", {
3892
3892
  enumerable: true,
3893
- get: function () { return chunkIHWWBHBO_cjs.declareProperty; }
3893
+ get: function () { return chunkBURXHBSW_cjs.declareProperty; }
3894
3894
  });
3895
3895
  Object.defineProperty(exports, "defineFormatter", {
3896
3896
  enumerable: true,
3897
- get: function () { return chunkIHWWBHBO_cjs.defineFormatter; }
3897
+ get: function () { return chunkBURXHBSW_cjs.defineFormatter; }
3898
3898
  });
3899
3899
  Object.defineProperty(exports, "defineLegacyMerge", {
3900
3900
  enumerable: true,
3901
- get: function () { return chunkIHWWBHBO_cjs.defineLegacyMerge; }
3901
+ get: function () { return chunkBURXHBSW_cjs.defineLegacyMerge; }
3902
3902
  });
3903
3903
  Object.defineProperty(exports, "defineMethod", {
3904
3904
  enumerable: true,
3905
- get: function () { return chunkIHWWBHBO_cjs.defineMethod; }
3905
+ get: function () { return chunkBURXHBSW_cjs.defineMethod; }
3906
3906
  });
3907
3907
  Object.defineProperty(exports, "defineMethodOverride", {
3908
3908
  enumerable: true,
3909
- get: function () { return chunkIHWWBHBO_cjs.defineMethodOverride; }
3909
+ get: function () { return chunkBURXHBSW_cjs.defineMethodOverride; }
3910
3910
  });
3911
3911
  Object.defineProperty(exports, "defineOverride", {
3912
3912
  enumerable: true,
3913
- get: function () { return chunkIHWWBHBO_cjs.defineOverride; }
3913
+ get: function () { return chunkBURXHBSW_cjs.defineOverride; }
3914
3914
  });
3915
3915
  Object.defineProperty(exports, "definePlugin", {
3916
3916
  enumerable: true,
3917
- get: function () { return chunkIHWWBHBO_cjs.definePlugin; }
3917
+ get: function () { return chunkBURXHBSW_cjs.definePlugin; }
3918
3918
  });
3919
3919
  Object.defineProperty(exports, "defineProperty", {
3920
3920
  enumerable: true,
3921
- get: function () { return chunkIHWWBHBO_cjs.defineProperty; }
3921
+ get: function () { return chunkBURXHBSW_cjs.defineProperty; }
3922
3922
  });
3923
3923
  Object.defineProperty(exports, "defineResolver", {
3924
3924
  enumerable: true,
3925
- get: function () { return chunkIHWWBHBO_cjs.defineResolver; }
3925
+ get: function () { return chunkBURXHBSW_cjs.defineResolver; }
3926
3926
  });
3927
3927
  Object.defineProperty(exports, "deleteClientCredentialsPlugin", {
3928
3928
  enumerable: true,
3929
- get: function () { return chunkIHWWBHBO_cjs.deleteClientCredentialsPlugin; }
3929
+ get: function () { return chunkBURXHBSW_cjs.deleteClientCredentialsPlugin; }
3930
3930
  });
3931
3931
  Object.defineProperty(exports, "deleteTableFieldsPlugin", {
3932
3932
  enumerable: true,
3933
- get: function () { return chunkIHWWBHBO_cjs.deleteTableFieldsPlugin; }
3933
+ get: function () { return chunkBURXHBSW_cjs.deleteTableFieldsPlugin; }
3934
3934
  });
3935
3935
  Object.defineProperty(exports, "deleteTablePlugin", {
3936
3936
  enumerable: true,
3937
- get: function () { return chunkIHWWBHBO_cjs.deleteTablePlugin; }
3937
+ get: function () { return chunkBURXHBSW_cjs.deleteTablePlugin; }
3938
3938
  });
3939
3939
  Object.defineProperty(exports, "deleteTableRecordsPlugin", {
3940
3940
  enumerable: true,
3941
- get: function () { return chunkIHWWBHBO_cjs.deleteTableRecordsPlugin; }
3941
+ get: function () { return chunkBURXHBSW_cjs.deleteTableRecordsPlugin; }
3942
3942
  });
3943
3943
  Object.defineProperty(exports, "disposeSdk", {
3944
3944
  enumerable: true,
3945
- get: function () { return chunkIHWWBHBO_cjs.disposeSdk; }
3945
+ get: function () { return chunkBURXHBSW_cjs.disposeSdk; }
3946
3946
  });
3947
3947
  Object.defineProperty(exports, "durableRunIdResolver", {
3948
3948
  enumerable: true,
3949
- get: function () { return chunkIHWWBHBO_cjs.durableRunIdResolver; }
3949
+ get: function () { return chunkBURXHBSW_cjs.durableRunIdResolver; }
3950
3950
  });
3951
3951
  Object.defineProperty(exports, "eventEmissionHookPlugin", {
3952
3952
  enumerable: true,
3953
- get: function () { return chunkIHWWBHBO_cjs.eventEmissionHookPlugin; }
3953
+ get: function () { return chunkBURXHBSW_cjs.eventEmissionHookPlugin; }
3954
3954
  });
3955
3955
  Object.defineProperty(exports, "eventEmissionPlugin", {
3956
3956
  enumerable: true,
3957
- get: function () { return chunkIHWWBHBO_cjs.eventEmissionPlugin; }
3957
+ get: function () { return chunkBURXHBSW_cjs.eventEmissionPlugin; }
3958
3958
  });
3959
3959
  Object.defineProperty(exports, "eventEmissionPluginRef", {
3960
3960
  enumerable: true,
3961
- get: function () { return chunkIHWWBHBO_cjs.eventEmissionPluginRef; }
3961
+ get: function () { return chunkBURXHBSW_cjs.eventEmissionPluginRef; }
3962
3962
  });
3963
3963
  Object.defineProperty(exports, "fetchPlugin", {
3964
3964
  enumerable: true,
3965
- get: function () { return chunkIHWWBHBO_cjs.fetchPlugin; }
3965
+ get: function () { return chunkBURXHBSW_cjs.fetchPlugin; }
3966
3966
  });
3967
3967
  Object.defineProperty(exports, "findFirstConnectionPlugin", {
3968
3968
  enumerable: true,
3969
- get: function () { return chunkIHWWBHBO_cjs.findFirstConnectionPlugin; }
3969
+ get: function () { return chunkBURXHBSW_cjs.findFirstConnectionPlugin; }
3970
3970
  });
3971
3971
  Object.defineProperty(exports, "findManifestEntry", {
3972
3972
  enumerable: true,
3973
- get: function () { return chunkIHWWBHBO_cjs.findManifestEntry; }
3973
+ get: function () { return chunkBURXHBSW_cjs.findManifestEntry; }
3974
3974
  });
3975
3975
  Object.defineProperty(exports, "findUniqueConnectionPlugin", {
3976
3976
  enumerable: true,
3977
- get: function () { return chunkIHWWBHBO_cjs.findUniqueConnectionPlugin; }
3977
+ get: function () { return chunkBURXHBSW_cjs.findUniqueConnectionPlugin; }
3978
3978
  });
3979
3979
  Object.defineProperty(exports, "formatErrorMessage", {
3980
3980
  enumerable: true,
3981
- get: function () { return chunkIHWWBHBO_cjs.formatErrorMessage; }
3981
+ get: function () { return chunkBURXHBSW_cjs.formatErrorMessage; }
3982
3982
  });
3983
3983
  Object.defineProperty(exports, "fromFunctionPlugin", {
3984
3984
  enumerable: true,
3985
- get: function () { return chunkIHWWBHBO_cjs.fromFunctionPlugin; }
3985
+ get: function () { return chunkBURXHBSW_cjs.fromFunctionPlugin; }
3986
3986
  });
3987
3987
  Object.defineProperty(exports, "generateEventId", {
3988
3988
  enumerable: true,
3989
- get: function () { return chunkIHWWBHBO_cjs.generateEventId; }
3989
+ get: function () { return chunkBURXHBSW_cjs.generateEventId; }
3990
3990
  });
3991
3991
  Object.defineProperty(exports, "getActionInputFieldsSchemaPlugin", {
3992
3992
  enumerable: true,
3993
- get: function () { return chunkIHWWBHBO_cjs.getActionInputFieldsSchemaPlugin; }
3993
+ get: function () { return chunkBURXHBSW_cjs.getActionInputFieldsSchemaPlugin; }
3994
3994
  });
3995
3995
  Object.defineProperty(exports, "getActionPlugin", {
3996
3996
  enumerable: true,
3997
- get: function () { return chunkIHWWBHBO_cjs.getActionPlugin; }
3997
+ get: function () { return chunkBURXHBSW_cjs.getActionPlugin; }
3998
3998
  });
3999
3999
  Object.defineProperty(exports, "getActionRunPlugin", {
4000
4000
  enumerable: true,
4001
- get: function () { return chunkIHWWBHBO_cjs.getActionRunPlugin; }
4001
+ get: function () { return chunkBURXHBSW_cjs.getActionRunPlugin; }
4002
4002
  });
4003
4003
  Object.defineProperty(exports, "getAgent", {
4004
4004
  enumerable: true,
4005
- get: function () { return chunkIHWWBHBO_cjs.getAgent; }
4005
+ get: function () { return chunkBURXHBSW_cjs.getAgent; }
4006
4006
  });
4007
4007
  Object.defineProperty(exports, "getAppPlugin", {
4008
4008
  enumerable: true,
4009
- get: function () { return chunkIHWWBHBO_cjs.getAppPlugin; }
4009
+ get: function () { return chunkBURXHBSW_cjs.getAppPlugin; }
4010
4010
  });
4011
4011
  Object.defineProperty(exports, "getBaseUrlFromCredentials", {
4012
4012
  enumerable: true,
4013
- get: function () { return chunkIHWWBHBO_cjs.getBaseUrlFromCredentials; }
4013
+ get: function () { return chunkBURXHBSW_cjs.getBaseUrlFromCredentials; }
4014
4014
  });
4015
4015
  Object.defineProperty(exports, "getCallerContext", {
4016
4016
  enumerable: true,
4017
- get: function () { return chunkIHWWBHBO_cjs.getCallerContext; }
4017
+ get: function () { return chunkBURXHBSW_cjs.getCallerContext; }
4018
4018
  });
4019
4019
  Object.defineProperty(exports, "getCiPlatform", {
4020
4020
  enumerable: true,
4021
- get: function () { return chunkIHWWBHBO_cjs.getCiPlatform; }
4021
+ get: function () { return chunkBURXHBSW_cjs.getCiPlatform; }
4022
4022
  });
4023
4023
  Object.defineProperty(exports, "getClientIdFromCredentials", {
4024
4024
  enumerable: true,
4025
- get: function () { return chunkIHWWBHBO_cjs.getClientIdFromCredentials; }
4025
+ get: function () { return chunkBURXHBSW_cjs.getClientIdFromCredentials; }
4026
4026
  });
4027
4027
  Object.defineProperty(exports, "getConnectionPlugin", {
4028
4028
  enumerable: true,
4029
- get: function () { return chunkIHWWBHBO_cjs.getConnectionPlugin; }
4029
+ get: function () { return chunkBURXHBSW_cjs.getConnectionPlugin; }
4030
4030
  });
4031
4031
  Object.defineProperty(exports, "getContext", {
4032
4032
  enumerable: true,
4033
- get: function () { return chunkIHWWBHBO_cjs.getContext; }
4033
+ get: function () { return chunkBURXHBSW_cjs.getContext; }
4034
4034
  });
4035
4035
  Object.defineProperty(exports, "getCoreErrorCause", {
4036
4036
  enumerable: true,
4037
- get: function () { return chunkIHWWBHBO_cjs.getCoreErrorCause; }
4037
+ get: function () { return chunkBURXHBSW_cjs.getCoreErrorCause; }
4038
4038
  });
4039
4039
  Object.defineProperty(exports, "getCoreErrorCode", {
4040
4040
  enumerable: true,
4041
- get: function () { return chunkIHWWBHBO_cjs.getCoreErrorCode; }
4041
+ get: function () { return chunkBURXHBSW_cjs.getCoreErrorCode; }
4042
4042
  });
4043
4043
  Object.defineProperty(exports, "getCpuTime", {
4044
4044
  enumerable: true,
4045
- get: function () { return chunkIHWWBHBO_cjs.getCpuTime; }
4045
+ get: function () { return chunkBURXHBSW_cjs.getCpuTime; }
4046
4046
  });
4047
4047
  Object.defineProperty(exports, "getCurrentTimestamp", {
4048
4048
  enumerable: true,
4049
- get: function () { return chunkIHWWBHBO_cjs.getCurrentTimestamp; }
4049
+ get: function () { return chunkBURXHBSW_cjs.getCurrentTimestamp; }
4050
4050
  });
4051
4051
  Object.defineProperty(exports, "getMemoryUsage", {
4052
4052
  enumerable: true,
4053
- get: function () { return chunkIHWWBHBO_cjs.getMemoryUsage; }
4053
+ get: function () { return chunkBURXHBSW_cjs.getMemoryUsage; }
4054
4054
  });
4055
4055
  Object.defineProperty(exports, "getNegatable", {
4056
4056
  enumerable: true,
4057
- get: function () { return chunkIHWWBHBO_cjs.getNegatable; }
4057
+ get: function () { return chunkBURXHBSW_cjs.getNegatable; }
4058
4058
  });
4059
4059
  Object.defineProperty(exports, "getOrCreateApiClient", {
4060
4060
  enumerable: true,
4061
- get: function () { return chunkIHWWBHBO_cjs.getOrCreateApiClient; }
4061
+ get: function () { return chunkBURXHBSW_cjs.getOrCreateApiClient; }
4062
4062
  });
4063
4063
  Object.defineProperty(exports, "getOsInfo", {
4064
4064
  enumerable: true,
4065
- get: function () { return chunkIHWWBHBO_cjs.getOsInfo; }
4065
+ get: function () { return chunkBURXHBSW_cjs.getOsInfo; }
4066
4066
  });
4067
4067
  Object.defineProperty(exports, "getPlatformVersions", {
4068
4068
  enumerable: true,
4069
- get: function () { return chunkIHWWBHBO_cjs.getPlatformVersions; }
4069
+ get: function () { return chunkBURXHBSW_cjs.getPlatformVersions; }
4070
4070
  });
4071
4071
  Object.defineProperty(exports, "getPreferredManifestEntryKey", {
4072
4072
  enumerable: true,
4073
- get: function () { return chunkIHWWBHBO_cjs.getPreferredManifestEntryKey; }
4073
+ get: function () { return chunkBURXHBSW_cjs.getPreferredManifestEntryKey; }
4074
4074
  });
4075
4075
  Object.defineProperty(exports, "getProfilePlugin", {
4076
4076
  enumerable: true,
4077
- get: function () { return chunkIHWWBHBO_cjs.getProfilePlugin; }
4077
+ get: function () { return chunkBURXHBSW_cjs.getProfilePlugin; }
4078
4078
  });
4079
4079
  Object.defineProperty(exports, "getRegistryPlugin", {
4080
4080
  enumerable: true,
4081
- get: function () { return chunkIHWWBHBO_cjs.getRegistryPlugin; }
4081
+ get: function () { return chunkBURXHBSW_cjs.getRegistryPlugin; }
4082
4082
  });
4083
4083
  Object.defineProperty(exports, "getReleaseId", {
4084
4084
  enumerable: true,
4085
- get: function () { return chunkIHWWBHBO_cjs.getReleaseId; }
4085
+ get: function () { return chunkBURXHBSW_cjs.getReleaseId; }
4086
4086
  });
4087
4087
  Object.defineProperty(exports, "getTablePlugin", {
4088
4088
  enumerable: true,
4089
- get: function () { return chunkIHWWBHBO_cjs.getTablePlugin; }
4089
+ get: function () { return chunkBURXHBSW_cjs.getTablePlugin; }
4090
4090
  });
4091
4091
  Object.defineProperty(exports, "getTableRecordPlugin", {
4092
4092
  enumerable: true,
4093
- get: function () { return chunkIHWWBHBO_cjs.getTableRecordPlugin; }
4093
+ get: function () { return chunkBURXHBSW_cjs.getTableRecordPlugin; }
4094
4094
  });
4095
4095
  Object.defineProperty(exports, "getTokenFromCliLogin", {
4096
4096
  enumerable: true,
4097
- get: function () { return chunkIHWWBHBO_cjs.getTokenFromCliLogin; }
4097
+ get: function () { return chunkBURXHBSW_cjs.getTokenFromCliLogin; }
4098
4098
  });
4099
4099
  Object.defineProperty(exports, "getTtyContext", {
4100
4100
  enumerable: true,
4101
- get: function () { return chunkIHWWBHBO_cjs.getTtyContext; }
4101
+ get: function () { return chunkBURXHBSW_cjs.getTtyContext; }
4102
4102
  });
4103
4103
  Object.defineProperty(exports, "getZapierApprovalMode", {
4104
4104
  enumerable: true,
4105
- get: function () { return chunkIHWWBHBO_cjs.getZapierApprovalMode; }
4105
+ get: function () { return chunkBURXHBSW_cjs.getZapierApprovalMode; }
4106
4106
  });
4107
4107
  Object.defineProperty(exports, "getZapierCausationId", {
4108
4108
  enumerable: true,
4109
- get: function () { return chunkIHWWBHBO_cjs.getZapierCausationId; }
4109
+ get: function () { return chunkBURXHBSW_cjs.getZapierCausationId; }
4110
4110
  });
4111
4111
  Object.defineProperty(exports, "getZapierCorrelationId", {
4112
4112
  enumerable: true,
4113
- get: function () { return chunkIHWWBHBO_cjs.getZapierCorrelationId; }
4113
+ get: function () { return chunkBURXHBSW_cjs.getZapierCorrelationId; }
4114
4114
  });
4115
4115
  Object.defineProperty(exports, "getZapierDefaultApprovalMode", {
4116
4116
  enumerable: true,
4117
- get: function () { return chunkIHWWBHBO_cjs.getZapierDefaultApprovalMode; }
4117
+ get: function () { return chunkBURXHBSW_cjs.getZapierDefaultApprovalMode; }
4118
4118
  });
4119
4119
  Object.defineProperty(exports, "getZapierOpenAutoModeApprovalsInBrowser", {
4120
4120
  enumerable: true,
4121
- get: function () { return chunkIHWWBHBO_cjs.getZapierOpenAutoModeApprovalsInBrowser; }
4121
+ get: function () { return chunkBURXHBSW_cjs.getZapierOpenAutoModeApprovalsInBrowser; }
4122
4122
  });
4123
4123
  Object.defineProperty(exports, "getZapierSdkService", {
4124
4124
  enumerable: true,
4125
- get: function () { return chunkIHWWBHBO_cjs.getZapierSdkService; }
4125
+ get: function () { return chunkBURXHBSW_cjs.getZapierSdkService; }
4126
4126
  });
4127
4127
  Object.defineProperty(exports, "injectCliLogin", {
4128
4128
  enumerable: true,
4129
- get: function () { return chunkIHWWBHBO_cjs.injectCliLogin; }
4129
+ get: function () { return chunkBURXHBSW_cjs.injectCliLogin; }
4130
4130
  });
4131
4131
  Object.defineProperty(exports, "inputFieldKeyResolver", {
4132
4132
  enumerable: true,
4133
- get: function () { return chunkIHWWBHBO_cjs.inputFieldKeyResolver; }
4133
+ get: function () { return chunkBURXHBSW_cjs.inputFieldKeyResolver; }
4134
4134
  });
4135
4135
  Object.defineProperty(exports, "inputsAllOptionalResolver", {
4136
4136
  enumerable: true,
4137
- get: function () { return chunkIHWWBHBO_cjs.inputsAllOptionalResolver; }
4137
+ get: function () { return chunkBURXHBSW_cjs.inputsAllOptionalResolver; }
4138
4138
  });
4139
4139
  Object.defineProperty(exports, "inputsResolver", {
4140
4140
  enumerable: true,
4141
- get: function () { return chunkIHWWBHBO_cjs.inputsResolver; }
4141
+ get: function () { return chunkBURXHBSW_cjs.inputsResolver; }
4142
4142
  });
4143
4143
  Object.defineProperty(exports, "invalidateCachedToken", {
4144
4144
  enumerable: true,
4145
- get: function () { return chunkIHWWBHBO_cjs.invalidateCachedToken; }
4145
+ get: function () { return chunkBURXHBSW_cjs.invalidateCachedToken; }
4146
4146
  });
4147
4147
  Object.defineProperty(exports, "invalidateCredentialsToken", {
4148
4148
  enumerable: true,
4149
- get: function () { return chunkIHWWBHBO_cjs.invalidateCredentialsToken; }
4149
+ get: function () { return chunkBURXHBSW_cjs.invalidateCredentialsToken; }
4150
4150
  });
4151
4151
  Object.defineProperty(exports, "isCi", {
4152
4152
  enumerable: true,
4153
- get: function () { return chunkIHWWBHBO_cjs.isCi; }
4153
+ get: function () { return chunkBURXHBSW_cjs.isCi; }
4154
4154
  });
4155
4155
  Object.defineProperty(exports, "isCliLoginAvailable", {
4156
4156
  enumerable: true,
4157
- get: function () { return chunkIHWWBHBO_cjs.isCliLoginAvailable; }
4157
+ get: function () { return chunkBURXHBSW_cjs.isCliLoginAvailable; }
4158
4158
  });
4159
4159
  Object.defineProperty(exports, "isClientCredentials", {
4160
4160
  enumerable: true,
4161
- get: function () { return chunkIHWWBHBO_cjs.isClientCredentials; }
4161
+ get: function () { return chunkBURXHBSW_cjs.isClientCredentials; }
4162
4162
  });
4163
4163
  Object.defineProperty(exports, "isCoreCancelledSignal", {
4164
4164
  enumerable: true,
4165
- get: function () { return chunkIHWWBHBO_cjs.isCoreCancelledSignal; }
4165
+ get: function () { return chunkBURXHBSW_cjs.isCoreCancelledSignal; }
4166
4166
  });
4167
4167
  Object.defineProperty(exports, "isCoreError", {
4168
4168
  enumerable: true,
4169
- get: function () { return chunkIHWWBHBO_cjs.isCoreError; }
4169
+ get: function () { return chunkBURXHBSW_cjs.isCoreError; }
4170
4170
  });
4171
4171
  Object.defineProperty(exports, "isCoreSignal", {
4172
4172
  enumerable: true,
4173
- get: function () { return chunkIHWWBHBO_cjs.isCoreSignal; }
4173
+ get: function () { return chunkBURXHBSW_cjs.isCoreSignal; }
4174
4174
  });
4175
4175
  Object.defineProperty(exports, "isCredentialsFunction", {
4176
4176
  enumerable: true,
4177
- get: function () { return chunkIHWWBHBO_cjs.isCredentialsFunction; }
4177
+ get: function () { return chunkBURXHBSW_cjs.isCredentialsFunction; }
4178
4178
  });
4179
4179
  Object.defineProperty(exports, "isCredentialsObject", {
4180
4180
  enumerable: true,
4181
- get: function () { return chunkIHWWBHBO_cjs.isCredentialsObject; }
4181
+ get: function () { return chunkBURXHBSW_cjs.isCredentialsObject; }
4182
4182
  });
4183
4183
  Object.defineProperty(exports, "isPermanentHttpError", {
4184
4184
  enumerable: true,
4185
- get: function () { return chunkIHWWBHBO_cjs.isPermanentHttpError; }
4185
+ get: function () { return chunkBURXHBSW_cjs.isPermanentHttpError; }
4186
4186
  });
4187
4187
  Object.defineProperty(exports, "isPkceCredentials", {
4188
4188
  enumerable: true,
4189
- get: function () { return chunkIHWWBHBO_cjs.isPkceCredentials; }
4189
+ get: function () { return chunkBURXHBSW_cjs.isPkceCredentials; }
4190
4190
  });
4191
4191
  Object.defineProperty(exports, "isPositional", {
4192
4192
  enumerable: true,
4193
- get: function () { return chunkIHWWBHBO_cjs.isPositional; }
4193
+ get: function () { return chunkBURXHBSW_cjs.isPositional; }
4194
4194
  });
4195
4195
  Object.defineProperty(exports, "isZapierAbortDrainSignal", {
4196
4196
  enumerable: true,
4197
- get: function () { return chunkIHWWBHBO_cjs.isZapierAbortDrainSignal; }
4197
+ get: function () { return chunkBURXHBSW_cjs.isZapierAbortDrainSignal; }
4198
4198
  });
4199
4199
  Object.defineProperty(exports, "isZapierActionError", {
4200
4200
  enumerable: true,
4201
- get: function () { return chunkIHWWBHBO_cjs.isZapierActionError; }
4201
+ get: function () { return chunkBURXHBSW_cjs.isZapierActionError; }
4202
4202
  });
4203
4203
  Object.defineProperty(exports, "isZapierAppNotFoundError", {
4204
4204
  enumerable: true,
4205
- get: function () { return chunkIHWWBHBO_cjs.isZapierAppNotFoundError; }
4205
+ get: function () { return chunkBURXHBSW_cjs.isZapierAppNotFoundError; }
4206
4206
  });
4207
4207
  Object.defineProperty(exports, "isZapierApprovalError", {
4208
4208
  enumerable: true,
4209
- get: function () { return chunkIHWWBHBO_cjs.isZapierApprovalError; }
4209
+ get: function () { return chunkBURXHBSW_cjs.isZapierApprovalError; }
4210
4210
  });
4211
4211
  Object.defineProperty(exports, "isZapierAuthenticationError", {
4212
4212
  enumerable: true,
4213
- get: function () { return chunkIHWWBHBO_cjs.isZapierAuthenticationError; }
4213
+ get: function () { return chunkBURXHBSW_cjs.isZapierAuthenticationError; }
4214
4214
  });
4215
4215
  Object.defineProperty(exports, "isZapierBundleError", {
4216
4216
  enumerable: true,
4217
- get: function () { return chunkIHWWBHBO_cjs.isZapierBundleError; }
4217
+ get: function () { return chunkBURXHBSW_cjs.isZapierBundleError; }
4218
4218
  });
4219
4219
  Object.defineProperty(exports, "isZapierConflictError", {
4220
4220
  enumerable: true,
4221
- get: function () { return chunkIHWWBHBO_cjs.isZapierConflictError; }
4221
+ get: function () { return chunkBURXHBSW_cjs.isZapierConflictError; }
4222
4222
  });
4223
4223
  Object.defineProperty(exports, "isZapierError", {
4224
4224
  enumerable: true,
4225
- get: function () { return chunkIHWWBHBO_cjs.isZapierError; }
4225
+ get: function () { return chunkBURXHBSW_cjs.isZapierError; }
4226
4226
  });
4227
4227
  Object.defineProperty(exports, "isZapierNotFoundError", {
4228
4228
  enumerable: true,
4229
- get: function () { return chunkIHWWBHBO_cjs.isZapierNotFoundError; }
4229
+ get: function () { return chunkBURXHBSW_cjs.isZapierNotFoundError; }
4230
4230
  });
4231
4231
  Object.defineProperty(exports, "isZapierRateLimitError", {
4232
4232
  enumerable: true,
4233
- get: function () { return chunkIHWWBHBO_cjs.isZapierRateLimitError; }
4233
+ get: function () { return chunkBURXHBSW_cjs.isZapierRateLimitError; }
4234
4234
  });
4235
4235
  Object.defineProperty(exports, "isZapierReleaseTriggerMessageSignal", {
4236
4236
  enumerable: true,
4237
- get: function () { return chunkIHWWBHBO_cjs.isZapierReleaseTriggerMessageSignal; }
4237
+ get: function () { return chunkBURXHBSW_cjs.isZapierReleaseTriggerMessageSignal; }
4238
4238
  });
4239
4239
  Object.defineProperty(exports, "isZapierResourceNotFoundError", {
4240
4240
  enumerable: true,
4241
- get: function () { return chunkIHWWBHBO_cjs.isZapierResourceNotFoundError; }
4241
+ get: function () { return chunkBURXHBSW_cjs.isZapierResourceNotFoundError; }
4242
4242
  });
4243
4243
  Object.defineProperty(exports, "isZapierSignal", {
4244
4244
  enumerable: true,
4245
- get: function () { return chunkIHWWBHBO_cjs.isZapierSignal; }
4245
+ get: function () { return chunkBURXHBSW_cjs.isZapierSignal; }
4246
4246
  });
4247
4247
  Object.defineProperty(exports, "isZapierTimeoutError", {
4248
4248
  enumerable: true,
4249
- get: function () { return chunkIHWWBHBO_cjs.isZapierTimeoutError; }
4249
+ get: function () { return chunkBURXHBSW_cjs.isZapierTimeoutError; }
4250
4250
  });
4251
4251
  Object.defineProperty(exports, "isZapierValidationError", {
4252
4252
  enumerable: true,
4253
- get: function () { return chunkIHWWBHBO_cjs.isZapierValidationError; }
4253
+ get: function () { return chunkBURXHBSW_cjs.isZapierValidationError; }
4254
4254
  });
4255
4255
  Object.defineProperty(exports, "listActionInputFieldChoicesPlugin", {
4256
4256
  enumerable: true,
4257
- get: function () { return chunkIHWWBHBO_cjs.listActionInputFieldChoicesPlugin; }
4257
+ get: function () { return chunkBURXHBSW_cjs.listActionInputFieldChoicesPlugin; }
4258
4258
  });
4259
4259
  Object.defineProperty(exports, "listActionInputFieldsPlugin", {
4260
4260
  enumerable: true,
4261
- get: function () { return chunkIHWWBHBO_cjs.listActionInputFieldsPlugin; }
4261
+ get: function () { return chunkBURXHBSW_cjs.listActionInputFieldsPlugin; }
4262
4262
  });
4263
4263
  Object.defineProperty(exports, "listActionsPlugin", {
4264
4264
  enumerable: true,
4265
- get: function () { return chunkIHWWBHBO_cjs.listActionsPlugin; }
4265
+ get: function () { return chunkBURXHBSW_cjs.listActionsPlugin; }
4266
4266
  });
4267
4267
  Object.defineProperty(exports, "listAppsPlugin", {
4268
4268
  enumerable: true,
4269
- get: function () { return chunkIHWWBHBO_cjs.listAppsPlugin; }
4269
+ get: function () { return chunkBURXHBSW_cjs.listAppsPlugin; }
4270
4270
  });
4271
4271
  Object.defineProperty(exports, "listClientCredentialsPlugin", {
4272
4272
  enumerable: true,
4273
- get: function () { return chunkIHWWBHBO_cjs.listClientCredentialsPlugin; }
4273
+ get: function () { return chunkBURXHBSW_cjs.listClientCredentialsPlugin; }
4274
4274
  });
4275
4275
  Object.defineProperty(exports, "listConnectionsPlugin", {
4276
4276
  enumerable: true,
4277
- get: function () { return chunkIHWWBHBO_cjs.listConnectionsPlugin; }
4277
+ get: function () { return chunkBURXHBSW_cjs.listConnectionsPlugin; }
4278
4278
  });
4279
4279
  Object.defineProperty(exports, "listTableFieldsPlugin", {
4280
4280
  enumerable: true,
4281
- get: function () { return chunkIHWWBHBO_cjs.listTableFieldsPlugin; }
4281
+ get: function () { return chunkBURXHBSW_cjs.listTableFieldsPlugin; }
4282
4282
  });
4283
4283
  Object.defineProperty(exports, "listTableRecordsPlugin", {
4284
4284
  enumerable: true,
4285
- get: function () { return chunkIHWWBHBO_cjs.listTableRecordsPlugin; }
4285
+ get: function () { return chunkBURXHBSW_cjs.listTableRecordsPlugin; }
4286
4286
  });
4287
4287
  Object.defineProperty(exports, "listTablesPlugin", {
4288
4288
  enumerable: true,
4289
- get: function () { return chunkIHWWBHBO_cjs.listTablesPlugin; }
4289
+ get: function () { return chunkBURXHBSW_cjs.listTablesPlugin; }
4290
4290
  });
4291
4291
  Object.defineProperty(exports, "logDeprecation", {
4292
4292
  enumerable: true,
4293
- get: function () { return chunkIHWWBHBO_cjs.logDeprecation; }
4293
+ get: function () { return chunkBURXHBSW_cjs.logDeprecation; }
4294
4294
  });
4295
4295
  Object.defineProperty(exports, "manifestPlugin", {
4296
4296
  enumerable: true,
4297
- get: function () { return chunkIHWWBHBO_cjs.manifestPlugin; }
4297
+ get: function () { return chunkBURXHBSW_cjs.manifestPlugin; }
4298
4298
  });
4299
4299
  Object.defineProperty(exports, "manifestPluginRef", {
4300
4300
  enumerable: true,
4301
- get: function () { return chunkIHWWBHBO_cjs.manifestPluginRef; }
4301
+ get: function () { return chunkBURXHBSW_cjs.manifestPluginRef; }
4302
4302
  });
4303
4303
  Object.defineProperty(exports, "omitExports", {
4304
4304
  enumerable: true,
4305
- get: function () { return chunkIHWWBHBO_cjs.omitExports; }
4305
+ get: function () { return chunkBURXHBSW_cjs.omitExports; }
4306
4306
  });
4307
4307
  Object.defineProperty(exports, "operationAnnotatorPlugin", {
4308
4308
  enumerable: true,
4309
- get: function () { return chunkIHWWBHBO_cjs.operationAnnotatorPlugin; }
4309
+ get: function () { return chunkBURXHBSW_cjs.operationAnnotatorPlugin; }
4310
4310
  });
4311
4311
  Object.defineProperty(exports, "parseConcurrencyEnvVar", {
4312
4312
  enumerable: true,
4313
- get: function () { return chunkIHWWBHBO_cjs.parseConcurrencyEnvVar; }
4313
+ get: function () { return chunkBURXHBSW_cjs.parseConcurrencyEnvVar; }
4314
4314
  });
4315
4315
  Object.defineProperty(exports, "readManifestFromFile", {
4316
4316
  enumerable: true,
4317
- get: function () { return chunkIHWWBHBO_cjs.readManifestFromFile; }
4317
+ get: function () { return chunkBURXHBSW_cjs.readManifestFromFile; }
4318
4318
  });
4319
4319
  Object.defineProperty(exports, "registryPlugin", {
4320
4320
  enumerable: true,
4321
- get: function () { return chunkIHWWBHBO_cjs.registryPlugin; }
4321
+ get: function () { return chunkBURXHBSW_cjs.registryPlugin; }
4322
4322
  });
4323
4323
  Object.defineProperty(exports, "requestPlugin", {
4324
4324
  enumerable: true,
4325
- get: function () { return chunkIHWWBHBO_cjs.requestPlugin; }
4325
+ get: function () { return chunkBURXHBSW_cjs.requestPlugin; }
4326
4326
  });
4327
4327
  Object.defineProperty(exports, "resetDeprecationWarnings", {
4328
4328
  enumerable: true,
4329
- get: function () { return chunkIHWWBHBO_cjs.resetDeprecationWarnings; }
4329
+ get: function () { return chunkBURXHBSW_cjs.resetDeprecationWarnings; }
4330
4330
  });
4331
4331
  Object.defineProperty(exports, "resolveAuth", {
4332
4332
  enumerable: true,
4333
- get: function () { return chunkIHWWBHBO_cjs.resolveAuth; }
4333
+ get: function () { return chunkBURXHBSW_cjs.resolveAuth; }
4334
4334
  });
4335
4335
  Object.defineProperty(exports, "resolveAuthToken", {
4336
4336
  enumerable: true,
4337
- get: function () { return chunkIHWWBHBO_cjs.resolveAuthToken; }
4337
+ get: function () { return chunkBURXHBSW_cjs.resolveAuthToken; }
4338
4338
  });
4339
4339
  Object.defineProperty(exports, "resolveCredentials", {
4340
4340
  enumerable: true,
4341
- get: function () { return chunkIHWWBHBO_cjs.resolveCredentials; }
4341
+ get: function () { return chunkBURXHBSW_cjs.resolveCredentials; }
4342
4342
  });
4343
4343
  Object.defineProperty(exports, "resolveCredentialsFromEnv", {
4344
4344
  enumerable: true,
4345
- get: function () { return chunkIHWWBHBO_cjs.resolveCredentialsFromEnv; }
4345
+ get: function () { return chunkBURXHBSW_cjs.resolveCredentialsFromEnv; }
4346
4346
  });
4347
4347
  Object.defineProperty(exports, "resolveCredentialsPlugin", {
4348
4348
  enumerable: true,
4349
- get: function () { return chunkIHWWBHBO_cjs.resolveCredentialsPlugin; }
4349
+ get: function () { return chunkBURXHBSW_cjs.resolveCredentialsPlugin; }
4350
4350
  });
4351
4351
  Object.defineProperty(exports, "resolveCredentialsPluginRef", {
4352
4352
  enumerable: true,
4353
- get: function () { return chunkIHWWBHBO_cjs.resolveCredentialsPluginRef; }
4353
+ get: function () { return chunkBURXHBSW_cjs.resolveCredentialsPluginRef; }
4354
4354
  });
4355
4355
  Object.defineProperty(exports, "resolvePlugin", {
4356
4356
  enumerable: true,
4357
- get: function () { return chunkIHWWBHBO_cjs.resolvePlugin; }
4357
+ get: function () { return chunkBURXHBSW_cjs.resolvePlugin; }
4358
4358
  });
4359
4359
  Object.defineProperty(exports, "runActionPlugin", {
4360
4360
  enumerable: true,
4361
- get: function () { return chunkIHWWBHBO_cjs.runActionPlugin; }
4361
+ get: function () { return chunkBURXHBSW_cjs.runActionPlugin; }
4362
4362
  });
4363
4363
  Object.defineProperty(exports, "runInMethodScope", {
4364
4364
  enumerable: true,
4365
- get: function () { return chunkIHWWBHBO_cjs.runInMethodScope; }
4365
+ get: function () { return chunkBURXHBSW_cjs.runInMethodScope; }
4366
4366
  });
4367
4367
  Object.defineProperty(exports, "runWithCallerContext", {
4368
4368
  enumerable: true,
4369
- get: function () { return chunkIHWWBHBO_cjs.runWithCallerContext; }
4369
+ get: function () { return chunkBURXHBSW_cjs.runWithCallerContext; }
4370
4370
  });
4371
4371
  Object.defineProperty(exports, "runWithTelemetryContext", {
4372
4372
  enumerable: true,
4373
- get: function () { return chunkIHWWBHBO_cjs.runWithTelemetryContext; }
4373
+ get: function () { return chunkBURXHBSW_cjs.runWithTelemetryContext; }
4374
4374
  });
4375
4375
  Object.defineProperty(exports, "sdkOptionsPluginRef", {
4376
4376
  enumerable: true,
4377
- get: function () { return chunkIHWWBHBO_cjs.sdkOptionsPluginRef; }
4377
+ get: function () { return chunkBURXHBSW_cjs.sdkOptionsPluginRef; }
4378
4378
  });
4379
4379
  Object.defineProperty(exports, "selectExports", {
4380
4380
  enumerable: true,
4381
- get: function () { return chunkIHWWBHBO_cjs.selectExports; }
4381
+ get: function () { return chunkBURXHBSW_cjs.selectExports; }
4382
4382
  });
4383
4383
  Object.defineProperty(exports, "tableFieldIdsResolver", {
4384
4384
  enumerable: true,
4385
- get: function () { return chunkIHWWBHBO_cjs.tableFieldIdsResolver; }
4385
+ get: function () { return chunkBURXHBSW_cjs.tableFieldIdsResolver; }
4386
4386
  });
4387
4387
  Object.defineProperty(exports, "tableFieldsResolver", {
4388
4388
  enumerable: true,
4389
- get: function () { return chunkIHWWBHBO_cjs.tableFieldsResolver; }
4389
+ get: function () { return chunkBURXHBSW_cjs.tableFieldsResolver; }
4390
4390
  });
4391
4391
  Object.defineProperty(exports, "tableFiltersResolver", {
4392
4392
  enumerable: true,
4393
- get: function () { return chunkIHWWBHBO_cjs.tableFiltersResolver; }
4393
+ get: function () { return chunkBURXHBSW_cjs.tableFiltersResolver; }
4394
4394
  });
4395
4395
  Object.defineProperty(exports, "tableIdResolver", {
4396
4396
  enumerable: true,
4397
- get: function () { return chunkIHWWBHBO_cjs.tableIdResolver; }
4397
+ get: function () { return chunkBURXHBSW_cjs.tableIdResolver; }
4398
4398
  });
4399
4399
  Object.defineProperty(exports, "tableNameResolver", {
4400
4400
  enumerable: true,
4401
- get: function () { return chunkIHWWBHBO_cjs.tableNameResolver; }
4401
+ get: function () { return chunkBURXHBSW_cjs.tableNameResolver; }
4402
4402
  });
4403
4403
  Object.defineProperty(exports, "tableRecordIdResolver", {
4404
4404
  enumerable: true,
4405
- get: function () { return chunkIHWWBHBO_cjs.tableRecordIdResolver; }
4405
+ get: function () { return chunkBURXHBSW_cjs.tableRecordIdResolver; }
4406
4406
  });
4407
4407
  Object.defineProperty(exports, "tableRecordIdsResolver", {
4408
4408
  enumerable: true,
4409
- get: function () { return chunkIHWWBHBO_cjs.tableRecordIdsResolver; }
4409
+ get: function () { return chunkBURXHBSW_cjs.tableRecordIdsResolver; }
4410
4410
  });
4411
4411
  Object.defineProperty(exports, "tableRecordsResolver", {
4412
4412
  enumerable: true,
4413
- get: function () { return chunkIHWWBHBO_cjs.tableRecordsResolver; }
4413
+ get: function () { return chunkBURXHBSW_cjs.tableRecordsResolver; }
4414
4414
  });
4415
4415
  Object.defineProperty(exports, "tableSortResolver", {
4416
4416
  enumerable: true,
4417
- get: function () { return chunkIHWWBHBO_cjs.tableSortResolver; }
4417
+ get: function () { return chunkBURXHBSW_cjs.tableSortResolver; }
4418
4418
  });
4419
4419
  Object.defineProperty(exports, "tableUpdateRecordsResolver", {
4420
4420
  enumerable: true,
4421
- get: function () { return chunkIHWWBHBO_cjs.tableUpdateRecordsResolver; }
4421
+ get: function () { return chunkBURXHBSW_cjs.tableUpdateRecordsResolver; }
4422
4422
  });
4423
4423
  Object.defineProperty(exports, "toSnakeCase", {
4424
4424
  enumerable: true,
4425
- get: function () { return chunkIHWWBHBO_cjs.toSnakeCase; }
4425
+ get: function () { return chunkBURXHBSW_cjs.toSnakeCase; }
4426
4426
  });
4427
4427
  Object.defineProperty(exports, "toTitleCase", {
4428
4428
  enumerable: true,
4429
- get: function () { return chunkIHWWBHBO_cjs.toTitleCase; }
4429
+ get: function () { return chunkBURXHBSW_cjs.toTitleCase; }
4430
4430
  });
4431
4431
  Object.defineProperty(exports, "triggerInboxResolver", {
4432
4432
  enumerable: true,
4433
- get: function () { return chunkIHWWBHBO_cjs.triggerInboxResolver; }
4433
+ get: function () { return chunkBURXHBSW_cjs.triggerInboxResolver; }
4434
4434
  });
4435
4435
  Object.defineProperty(exports, "triggerMessagesResolver", {
4436
4436
  enumerable: true,
4437
- get: function () { return chunkIHWWBHBO_cjs.triggerMessagesResolver; }
4437
+ get: function () { return chunkBURXHBSW_cjs.triggerMessagesResolver; }
4438
4438
  });
4439
4439
  Object.defineProperty(exports, "updateTableRecordsPlugin", {
4440
4440
  enumerable: true,
4441
- get: function () { return chunkIHWWBHBO_cjs.updateTableRecordsPlugin; }
4441
+ get: function () { return chunkBURXHBSW_cjs.updateTableRecordsPlugin; }
4442
4442
  });
4443
4443
  Object.defineProperty(exports, "workflowDraftIdResolver", {
4444
4444
  enumerable: true,
4445
- get: function () { return chunkIHWWBHBO_cjs.workflowDraftIdResolver; }
4445
+ get: function () { return chunkBURXHBSW_cjs.workflowDraftIdResolver; }
4446
4446
  });
4447
4447
  Object.defineProperty(exports, "workflowDraftRevisionResolver", {
4448
4448
  enumerable: true,
4449
- get: function () { return chunkIHWWBHBO_cjs.workflowDraftRevisionResolver; }
4449
+ get: function () { return chunkBURXHBSW_cjs.workflowDraftRevisionResolver; }
4450
4450
  });
4451
4451
  Object.defineProperty(exports, "workflowIdResolver", {
4452
4452
  enumerable: true,
4453
- get: function () { return chunkIHWWBHBO_cjs.workflowIdResolver; }
4453
+ get: function () { return chunkBURXHBSW_cjs.workflowIdResolver; }
4454
4454
  });
4455
4455
  Object.defineProperty(exports, "workflowRunIdResolver", {
4456
4456
  enumerable: true,
4457
- get: function () { return chunkIHWWBHBO_cjs.workflowRunIdResolver; }
4457
+ get: function () { return chunkBURXHBSW_cjs.workflowRunIdResolver; }
4458
4458
  });
4459
4459
  Object.defineProperty(exports, "workflowVersionIdResolver", {
4460
4460
  enumerable: true,
4461
- get: function () { return chunkIHWWBHBO_cjs.workflowVersionIdResolver; }
4461
+ get: function () { return chunkBURXHBSW_cjs.workflowVersionIdResolver; }
4462
4462
  });
4463
4463
  Object.defineProperty(exports, "zapierAdaptError", {
4464
4464
  enumerable: true,
4465
- get: function () { return chunkIHWWBHBO_cjs.zapierAdaptError; }
4465
+ get: function () { return chunkBURXHBSW_cjs.zapierAdaptError; }
4466
4466
  });
4467
4467
  Object.defineProperty(exports, "zapierCoreOptions", {
4468
4468
  enumerable: true,
4469
- get: function () { return chunkIHWWBHBO_cjs.zapierCoreOptions; }
4469
+ get: function () { return chunkBURXHBSW_cjs.zapierCoreOptions; }
4470
4470
  });
4471
4471
  Object.defineProperty(exports, "zapierSdkPlugin", {
4472
4472
  enumerable: true,
4473
- get: function () { return chunkIHWWBHBO_cjs.zapierSdkPlugin; }
4473
+ get: function () { return chunkBURXHBSW_cjs.zapierSdkPlugin; }
4474
4474
  });
4475
4475
  exports.createZapierSdk = createZapierSdk;
4476
4476
  exports.zapierExperimentalSdkPlugin = zapierExperimentalSdkPlugin;