@zapier/zapier-sdk 0.109.0 → 0.109.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 chunkBU4ANX6G_cjs = require('./chunk-BU4ANX6G.cjs');
3
+ var chunkNTUEFDSW_cjs = require('./chunk-NTUEFDSW.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 chunkBU4ANX6G_cjs.ZapierValidationError(
55
+ throw new chunkNTUEFDSW_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 chunkBU4ANX6G_cjs.ZapierValidationError("trigger is missing selectedApi");
82
+ throw new chunkNTUEFDSW_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 chunkBU4ANX6G_cjs.ZapierValidationError(
103
+ throw new chunkNTUEFDSW_cjs.ZapierValidationError(
104
104
  `appVersions["${key}"] is missing implementationName`
105
105
  );
106
106
  }
@@ -143,7 +143,7 @@ var WorkflowDraftSchema = zod.z.object({
143
143
  id: zod.z.string().describe("Workflow draft ID (UUID)"),
144
144
  workflow_id: zod.z.string().describe("Parent workflow ID (UUID)"),
145
145
  slug: zod.z.string().describe(
146
- "Human-friendly identifier for URL routing; unique among open drafts per workflow"
146
+ "Human-friendly display name, not an identifier: two open drafts of a workflow may share one"
147
147
  ),
148
148
  base_version_id: zod.z.string().nullable().describe(
149
149
  "The version this draft was forked from (the live version at draft creation), or null when the workflow had no published version yet"
@@ -269,7 +269,7 @@ var ListWorkflowsApiResponseSchema = zod.z.object({
269
269
  var listWorkflowsPlugin = kitcore.defineMethod({
270
270
  ...codeSubstrateDefaults,
271
271
  name: "listWorkflows",
272
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
272
+ imports: [chunkNTUEFDSW_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: chunkBU4ANX6G_cjs.DEFAULT_PAGE_SIZE },
280
+ output: { type: "list", defaultPageSize: chunkNTUEFDSW_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: [chunkBU4ANX6G_cjs.apiPluginRef],
355
+ imports: [chunkNTUEFDSW_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: chunkBU4ANX6G_cjs.workflowIdResolver },
361
+ resolvers: { workflow: chunkNTUEFDSW_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: [chunkBU4ANX6G_cjs.apiPluginRef],
407
+ imports: [chunkNTUEFDSW_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: [chunkBU4ANX6G_cjs.apiPluginRef],
498
+ imports: [chunkNTUEFDSW_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 = chunkBU4ANX6G_cjs.extractErrorDetail(data);
528
- return new chunkBU4ANX6G_cjs.ZapierApiError(
527
+ const detail = chunkNTUEFDSW_cjs.extractErrorDetail(data);
528
+ return new chunkNTUEFDSW_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: [chunkBU4ANX6G_cjs.apiPluginRef],
566
+ imports: [chunkNTUEFDSW_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: chunkBU4ANX6G_cjs.workflowIdResolver },
573
+ resolvers: { workflow: chunkNTUEFDSW_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: [chunkBU4ANX6G_cjs.apiPluginRef],
606
+ imports: [chunkNTUEFDSW_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: chunkBU4ANX6G_cjs.workflowIdResolver },
613
+ resolvers: { workflow: chunkNTUEFDSW_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: [chunkBU4ANX6G_cjs.apiPluginRef],
641
+ imports: [chunkNTUEFDSW_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: chunkBU4ANX6G_cjs.workflowIdResolver },
648
+ resolvers: { workflow: chunkNTUEFDSW_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: [chunkBU4ANX6G_cjs.apiPluginRef],
675
+ imports: [chunkNTUEFDSW_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: chunkBU4ANX6G_cjs.workflowIdResolver },
683
+ resolvers: { workflow: chunkNTUEFDSW_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: [chunkBU4ANX6G_cjs.apiPluginRef],
747
+ imports: [chunkNTUEFDSW_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: chunkBU4ANX6G_cjs.DEFAULT_PAGE_SIZE },
755
+ output: { type: "list", defaultPageSize: chunkNTUEFDSW_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: [chunkBU4ANX6G_cjs.apiPluginRef],
869
+ imports: [chunkNTUEFDSW_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: chunkBU4ANX6G_cjs.durableRunIdResolver },
875
+ resolvers: { run: chunkNTUEFDSW_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: [chunkBU4ANX6G_cjs.apiPluginRef],
969
+ imports: [chunkNTUEFDSW_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: [chunkBU4ANX6G_cjs.apiPluginRef],
1026
+ imports: [chunkNTUEFDSW_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: chunkBU4ANX6G_cjs.durableRunIdResolver },
1033
+ resolvers: { run: chunkNTUEFDSW_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: [chunkBU4ANX6G_cjs.apiPluginRef],
1148
+ imports: [chunkNTUEFDSW_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: chunkBU4ANX6G_cjs.workflowIdResolver, sourceFiles: sourceFilesResolver },
1155
+ resolvers: { workflow: chunkNTUEFDSW_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 chunkBU4ANX6G_cjs.ZapierConflictError(
1210
- chunkBU4ANX6G_cjs.extractErrorDetail(data) ?? "Workflow version publish conflict.",
1209
+ return new chunkNTUEFDSW_cjs.ZapierConflictError(
1210
+ chunkNTUEFDSW_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 chunkBU4ANX6G_cjs.ZapierConflictError(
1215
+ return new chunkNTUEFDSW_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: [chunkBU4ANX6G_cjs.apiPluginRef],
1270
+ imports: [chunkNTUEFDSW_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: chunkBU4ANX6G_cjs.DEFAULT_PAGE_SIZE },
1279
- resolvers: { workflow: chunkBU4ANX6G_cjs.workflowIdResolver },
1278
+ output: { type: "list", defaultPageSize: chunkNTUEFDSW_cjs.DEFAULT_PAGE_SIZE },
1279
+ resolvers: { workflow: chunkNTUEFDSW_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: [chunkBU4ANX6G_cjs.apiPluginRef],
1314
+ imports: [chunkNTUEFDSW_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: chunkBU4ANX6G_cjs.workflowIdResolver,
1322
- version: chunkBU4ANX6G_cjs.workflowVersionIdResolver
1321
+ workflow: chunkNTUEFDSW_cjs.workflowIdResolver,
1322
+ version: chunkNTUEFDSW_cjs.workflowVersionIdResolver
1323
1323
  },
1324
1324
  run: async ({ imports, input }) => {
1325
1325
  const api = imports.api;
@@ -1337,7 +1337,7 @@ var WorkflowDraftSummarySchema = zod.z.object({
1337
1337
  id: zod.z.string().describe("Workflow draft ID (UUID)"),
1338
1338
  workflow_id: zod.z.string().describe("Parent workflow ID (UUID)"),
1339
1339
  slug: zod.z.string().describe(
1340
- "Human-friendly identifier for URL routing; unique among open drafts per workflow"
1340
+ "Human-friendly display name, not an identifier: two open drafts of a workflow may share one"
1341
1341
  ),
1342
1342
  base_version_id: zod.z.string().nullable().describe(
1343
1343
  "The version this draft was forked from (the live version at draft creation), or null when the workflow had no published version yet"
@@ -1352,7 +1352,9 @@ var ListWorkflowDraftsOptionsSchema = zod.z.object({
1352
1352
  status: WorkflowDraftStatusSchema.optional().describe(
1353
1353
  "Filter by draft status (server default: open)"
1354
1354
  ),
1355
- slug: zod.z.string().optional().describe("Filter by exact slug match; returns at most one draft"),
1355
+ slug: zod.z.string().optional().describe(
1356
+ "Filter by exact slug match. Slugs are not unique, so this returns every draft with this slug matching the selected status, ordered by most recent activity and paginated"
1357
+ ),
1356
1358
  pageSize: zod.z.number().int().min(1).max(100).optional().describe("Number of drafts per page (max 100)"),
1357
1359
  cursor: zod.z.string().optional().describe("Pagination cursor"),
1358
1360
  maxItems: zod.z.number().int().min(1).optional().describe("Maximum total drafts to return across all pages")
@@ -1375,7 +1377,7 @@ var ListWorkflowDraftsApiResponseSchema = zod.z.object({
1375
1377
  var listWorkflowDraftsPlugin = kitcore.defineMethod({
1376
1378
  ...codeSubstrateDefaults,
1377
1379
  name: "listWorkflowDrafts",
1378
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
1380
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1379
1381
  type: "list",
1380
1382
  itemType: "WorkflowDraft",
1381
1383
  inputSchema: ListWorkflowDraftsOptionsSchema,
@@ -1383,8 +1385,8 @@ var listWorkflowDraftsPlugin = kitcore.defineMethod({
1383
1385
  skipOutputValidation: true,
1384
1386
  // The handler already returns a clean `{ data, nextCursor }` page, so the
1385
1387
  // standard list output (no `adaptPage`) applies.
1386
- output: { type: "list", defaultPageSize: chunkBU4ANX6G_cjs.DEFAULT_PAGE_SIZE },
1387
- resolvers: { workflow: chunkBU4ANX6G_cjs.workflowIdResolver },
1388
+ output: { type: "list", defaultPageSize: chunkNTUEFDSW_cjs.DEFAULT_PAGE_SIZE },
1389
+ resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
1388
1390
  run: async ({ imports, input }) => {
1389
1391
  const api = imports.api;
1390
1392
  const searchParams = {};
@@ -1425,15 +1427,15 @@ var GetWorkflowDraftResponseSchema = WorkflowDraftSchema;
1425
1427
  var getWorkflowDraftPlugin = kitcore.defineMethod({
1426
1428
  ...codeSubstrateDefaults,
1427
1429
  name: "getWorkflowDraft",
1428
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
1430
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1429
1431
  itemType: "WorkflowDraft",
1430
1432
  inputSchema: GetWorkflowDraftOptionsSchema,
1431
1433
  outputSchema: GetWorkflowDraftResponseSchema,
1432
1434
  skipOutputValidation: true,
1433
1435
  output: "item",
1434
1436
  resolvers: {
1435
- workflow: chunkBU4ANX6G_cjs.workflowIdResolver,
1436
- draft: chunkBU4ANX6G_cjs.workflowDraftIdResolver
1437
+ workflow: chunkNTUEFDSW_cjs.workflowIdResolver,
1438
+ draft: chunkNTUEFDSW_cjs.workflowDraftIdResolver
1437
1439
  },
1438
1440
  run: async ({ imports, input }) => {
1439
1441
  const api = imports.api;
@@ -1450,7 +1452,7 @@ var getWorkflowDraftPlugin = kitcore.defineMethod({
1450
1452
  var CreateWorkflowDraftOptionsSchema = zod.z.object({
1451
1453
  workflow: zod.z.string().uuid().describe("Durable workflow ID"),
1452
1454
  slug: zod.z.string().min(1).max(128).optional().describe(
1453
- "Optional slug for URL routing. When omitted, the server generates one."
1455
+ "Optional display name for the draft. When omitted, the server generates one. Need not be unique among the workflow's open drafts."
1454
1456
  )
1455
1457
  }).describe(
1456
1458
  "Fork a new draft from the workflow's current live version (or a blank stub before the first publish)"
@@ -1461,14 +1463,14 @@ var CreateWorkflowDraftResponseSchema = WorkflowDraftSchema;
1461
1463
  var createWorkflowDraftPlugin = kitcore.defineMethod({
1462
1464
  ...codeSubstrateDefaults,
1463
1465
  name: "createWorkflowDraft",
1464
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
1466
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1465
1467
  type: "create",
1466
1468
  itemType: "WorkflowDraft",
1467
1469
  inputSchema: CreateWorkflowDraftOptionsSchema,
1468
1470
  outputSchema: CreateWorkflowDraftResponseSchema,
1469
1471
  skipOutputValidation: true,
1470
1472
  output: "item",
1471
- resolvers: { workflow: chunkBU4ANX6G_cjs.workflowIdResolver },
1473
+ resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
1472
1474
  run: async ({ imports, input }) => {
1473
1475
  const api = imports.api;
1474
1476
  const body = {};
@@ -1521,7 +1523,7 @@ var UpdateWorkflowDraftResponseSchema = WorkflowDraftSchema;
1521
1523
  var updateWorkflowDraftPlugin = kitcore.defineMethod({
1522
1524
  ...codeSubstrateDefaults,
1523
1525
  name: "updateWorkflowDraft",
1524
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
1526
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1525
1527
  type: "update",
1526
1528
  itemType: "WorkflowDraft",
1527
1529
  inputSchema: UpdateWorkflowDraftOptionsSchema,
@@ -1529,8 +1531,8 @@ var updateWorkflowDraftPlugin = kitcore.defineMethod({
1529
1531
  skipOutputValidation: true,
1530
1532
  output: "item",
1531
1533
  resolvers: {
1532
- workflow: chunkBU4ANX6G_cjs.workflowIdResolver,
1533
- draft: chunkBU4ANX6G_cjs.workflowDraftIdResolver,
1534
+ workflow: chunkNTUEFDSW_cjs.workflowIdResolver,
1535
+ draft: chunkNTUEFDSW_cjs.workflowDraftIdResolver,
1534
1536
  sourceFiles: sourceFilesResolver
1535
1537
  },
1536
1538
  run: async ({ imports, input }) => {
@@ -1575,8 +1577,8 @@ var updateWorkflowDraftPlugin = kitcore.defineMethod({
1575
1577
  // re-read the draft, and retry instead of blind-overwriting.
1576
1578
  customErrorHandler: ({ status, data }) => {
1577
1579
  if (status === 409) {
1578
- const detail = chunkBU4ANX6G_cjs.extractErrorDetail(data);
1579
- return new chunkBU4ANX6G_cjs.ZapierConflictError(
1580
+ const detail = chunkNTUEFDSW_cjs.extractErrorDetail(data);
1581
+ return new chunkNTUEFDSW_cjs.ZapierConflictError(
1580
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.`,
1581
1583
  { statusCode: status, resourceType: "workflow-draft" }
1582
1584
  );
@@ -1600,7 +1602,7 @@ var DiscardWorkflowDraftResponseSchema = WorkflowDraftSchema;
1600
1602
  var discardWorkflowDraftPlugin = kitcore.defineMethod({
1601
1603
  ...codeSubstrateDefaults,
1602
1604
  name: "discardWorkflowDraft",
1603
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
1605
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1604
1606
  type: "delete",
1605
1607
  itemType: "WorkflowDraft",
1606
1608
  // Soft delete returns the discarded draft, not the `{ success: boolean }`
@@ -1614,8 +1616,8 @@ var discardWorkflowDraftPlugin = kitcore.defineMethod({
1614
1616
  skipOutputValidation: true,
1615
1617
  output: "item",
1616
1618
  resolvers: {
1617
- workflow: chunkBU4ANX6G_cjs.workflowIdResolver,
1618
- draft: chunkBU4ANX6G_cjs.workflowDraftIdResolver
1619
+ workflow: chunkNTUEFDSW_cjs.workflowIdResolver,
1620
+ draft: chunkNTUEFDSW_cjs.workflowDraftIdResolver
1619
1621
  },
1620
1622
  run: async ({ imports, input }) => {
1621
1623
  const api = imports.api;
@@ -1658,7 +1660,7 @@ var PublishWorkflowDraftResponseSchema = zod.z.object({
1658
1660
  var publishWorkflowDraftPlugin = kitcore.defineMethod({
1659
1661
  ...codeSubstrateDefaults,
1660
1662
  name: "publishWorkflowDraft",
1661
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
1663
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1662
1664
  type: "create",
1663
1665
  itemType: "WorkflowVersion",
1664
1666
  // The response is the composite `{ draft, version }`, not the bare
@@ -1669,8 +1671,8 @@ var publishWorkflowDraftPlugin = kitcore.defineMethod({
1669
1671
  skipOutputValidation: true,
1670
1672
  output: "item",
1671
1673
  resolvers: {
1672
- workflow: chunkBU4ANX6G_cjs.workflowIdResolver,
1673
- draft: chunkBU4ANX6G_cjs.workflowDraftIdResolver
1674
+ workflow: chunkNTUEFDSW_cjs.workflowIdResolver,
1675
+ draft: chunkNTUEFDSW_cjs.workflowDraftIdResolver
1674
1676
  },
1675
1677
  run: async ({ imports, input }) => {
1676
1678
  const api = imports.api;
@@ -1703,15 +1705,15 @@ var publishWorkflowDraftPlugin = kitcore.defineMethod({
1703
1705
  // to ZapierValidationError via the client's default handling.
1704
1706
  customErrorHandler: ({ status, data }) => {
1705
1707
  if (status === 409) {
1706
- const detail = chunkBU4ANX6G_cjs.extractErrorDetail(data);
1707
- return new chunkBU4ANX6G_cjs.ZapierConflictError(
1708
+ const detail = chunkNTUEFDSW_cjs.extractErrorDetail(data);
1709
+ return new chunkNTUEFDSW_cjs.ZapierConflictError(
1708
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.`,
1709
1711
  { statusCode: status, resourceType: "workflow-draft" }
1710
1712
  );
1711
1713
  }
1712
1714
  if (status === 503) {
1713
- const detail = chunkBU4ANX6G_cjs.extractErrorDetail(data);
1714
- return new chunkBU4ANX6G_cjs.ZapierApiError(
1715
+ const detail = chunkNTUEFDSW_cjs.extractErrorDetail(data);
1716
+ return new chunkNTUEFDSW_cjs.ZapierApiError(
1715
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.",
1716
1718
  { statusCode: status }
1717
1719
  );
@@ -1772,7 +1774,7 @@ var ListWorkflowRunsApiResponseSchema = zod.z.object({
1772
1774
  var listWorkflowRunsPlugin = kitcore.defineMethod({
1773
1775
  ...codeSubstrateDefaults,
1774
1776
  name: "listWorkflowRuns",
1775
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
1777
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1776
1778
  type: "list",
1777
1779
  itemType: "WorkflowRun",
1778
1780
  inputSchema: ListWorkflowRunsOptionsSchema,
@@ -1780,8 +1782,8 @@ var listWorkflowRunsPlugin = kitcore.defineMethod({
1780
1782
  skipOutputValidation: true,
1781
1783
  // The handler already returns a clean `{ data, nextCursor }` page, so the
1782
1784
  // standard list output (no `adaptPage`) applies.
1783
- output: { type: "list", defaultPageSize: chunkBU4ANX6G_cjs.DEFAULT_PAGE_SIZE },
1784
- resolvers: { workflow: chunkBU4ANX6G_cjs.workflowIdResolver },
1785
+ output: { type: "list", defaultPageSize: chunkNTUEFDSW_cjs.DEFAULT_PAGE_SIZE },
1786
+ resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
1785
1787
  run: async ({ imports, input }) => {
1786
1788
  const api = imports.api;
1787
1789
  const searchParams = {};
@@ -1837,15 +1839,15 @@ var GetWorkflowRunResponseSchema = zod.z.object({
1837
1839
  var getWorkflowRunPlugin = kitcore.defineMethod({
1838
1840
  ...codeSubstrateDefaults,
1839
1841
  name: "getWorkflowRun",
1840
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
1842
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1841
1843
  itemType: "WorkflowRun",
1842
1844
  inputSchema: GetWorkflowRunOptionsSchema,
1843
1845
  outputSchema: GetWorkflowRunResponseSchema,
1844
1846
  skipOutputValidation: true,
1845
1847
  output: "item",
1846
1848
  resolvers: {
1847
- workflow: chunkBU4ANX6G_cjs.workflowIdResolver,
1848
- run: chunkBU4ANX6G_cjs.workflowRunIdResolver
1849
+ workflow: chunkNTUEFDSW_cjs.workflowIdResolver,
1850
+ run: chunkNTUEFDSW_cjs.workflowRunIdResolver
1849
1851
  },
1850
1852
  run: async ({ imports, input }) => {
1851
1853
  const api = imports.api;
@@ -1882,7 +1884,7 @@ var GetTriggerRunResponseSchema = zod.z.object({
1882
1884
  var getTriggerRunPlugin = kitcore.defineMethod({
1883
1885
  ...codeSubstrateDefaults,
1884
1886
  name: "getTriggerRun",
1885
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
1887
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1886
1888
  itemType: "WorkflowRun",
1887
1889
  inputSchema: GetTriggerRunOptionsSchema,
1888
1890
  outputSchema: GetTriggerRunResponseSchema,
@@ -1925,14 +1927,14 @@ var TriggerWorkflowResponseSchema = zod.z.object({
1925
1927
  var triggerWorkflowPlugin = kitcore.defineMethod({
1926
1928
  ...codeSubstrateDefaults,
1927
1929
  name: "triggerWorkflow",
1928
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
1930
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
1929
1931
  type: "create",
1930
1932
  itemType: "WorkflowRun",
1931
1933
  inputSchema: TriggerWorkflowOptionsSchema,
1932
1934
  outputSchema: TriggerWorkflowResponseSchema,
1933
1935
  skipOutputValidation: true,
1934
1936
  output: "item",
1935
- resolvers: { workflow: chunkBU4ANX6G_cjs.workflowIdResolver },
1937
+ resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
1936
1938
  run: async ({ imports, input }) => {
1937
1939
  const api = imports.api;
1938
1940
  const rawWorkflow = await api.get(
@@ -1946,7 +1948,7 @@ var triggerWorkflowPlugin = kitcore.defineMethod({
1946
1948
  const segments = new URL(workflow.trigger_url).pathname.split("/");
1947
1949
  const triggerToken = segments[segments.length - 1];
1948
1950
  if (!triggerToken) {
1949
- throw new chunkBU4ANX6G_cjs.ZapierApiError(
1951
+ throw new chunkNTUEFDSW_cjs.ZapierApiError(
1950
1952
  `Workflow ${input.workflow} returned a malformed trigger_url`,
1951
1953
  { statusCode: 0, response: workflow.trigger_url }
1952
1954
  );
@@ -2025,7 +2027,7 @@ var ValidateWorkflowResponseSchema = zod.z.object({
2025
2027
  var validateWorkflowPlugin = kitcore.defineMethod({
2026
2028
  ...codeSubstrateDefaults,
2027
2029
  name: "validateWorkflow",
2028
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
2030
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2029
2031
  itemType: "WorkflowValidation",
2030
2032
  inputSchema: ValidateWorkflowOptionsSchema,
2031
2033
  outputSchema: ValidateWorkflowResponseSchema,
@@ -2072,7 +2074,7 @@ function handleFormsAccessError({
2072
2074
  if (status !== 403 || firstErrorDetail(data) !== FORMS_ACCESS_DENIED_DETAIL) {
2073
2075
  return void 0;
2074
2076
  }
2075
- return new chunkBU4ANX6G_cjs.ZapierConfigurationError(
2077
+ return new chunkNTUEFDSW_cjs.ZapierConfigurationError(
2076
2078
  `${FORMS_ACCESS_DENIED_DETAIL} Request access through Zapier support at https://zapier.com/app/get-help.`,
2077
2079
  { statusCode: status }
2078
2080
  );
@@ -2150,7 +2152,7 @@ function assertUniqueKeys(keys, fields) {
2150
2152
  const label = fields[index]?.label ?? "";
2151
2153
  const previous = seen.get(key);
2152
2154
  if (previous !== void 0) {
2153
- throw new chunkBU4ANX6G_cjs.ZapierValidationError(
2155
+ throw new chunkNTUEFDSW_cjs.ZapierValidationError(
2154
2156
  `Fields "${previous}" and "${label}" both derive the submission key "${key}". Give them labels that differ by more than punctuation or casing.`,
2155
2157
  { details: { key, labels: [previous, label] } }
2156
2158
  );
@@ -2356,7 +2358,7 @@ var CreateFormSchema = zod.z.object({
2356
2358
  var createFormPlugin = kitcore.defineMethod({
2357
2359
  ...humanInputDefaults,
2358
2360
  name: "createForm",
2359
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
2361
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2360
2362
  type: "create",
2361
2363
  itemType: "Form",
2362
2364
  inputSchema: CreateFormSchema,
@@ -2447,8 +2449,8 @@ var EnableAgenticManagementItemSchema = zod.z.object({
2447
2449
  var enableAgenticManagementPlugin = kitcore.defineMethod({
2448
2450
  ...agenticManagementDefaults,
2449
2451
  name: "enableAgenticManagement",
2450
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
2451
- resolvers: { workflow: chunkBU4ANX6G_cjs.workflowIdResolver },
2452
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2453
+ resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
2452
2454
  type: "create",
2453
2455
  itemType: "AgenticManagementEnableResult",
2454
2456
  inputSchema: EnableAgenticManagementSchema,
@@ -2489,8 +2491,8 @@ var DisableAgenticManagementItemSchema = zod.z.object({
2489
2491
  var disableAgenticManagementPlugin = kitcore.defineMethod({
2490
2492
  ...agenticManagementDefaults,
2491
2493
  name: "disableAgenticManagement",
2492
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
2493
- resolvers: { workflow: chunkBU4ANX6G_cjs.workflowIdResolver },
2494
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2495
+ resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
2494
2496
  type: "delete",
2495
2497
  confirm: "delete",
2496
2498
  itemType: "AgenticManagementDisableResult",
@@ -2535,8 +2537,8 @@ var GetAgenticManagementConfigItemSchema = zod.z.object({
2535
2537
  var getAgenticManagementConfigPlugin = kitcore.defineMethod({
2536
2538
  ...agenticManagementDefaults,
2537
2539
  name: "getAgenticManagementConfig",
2538
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
2539
- resolvers: { workflow: chunkBU4ANX6G_cjs.workflowIdResolver },
2540
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2541
+ resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
2540
2542
  type: "item",
2541
2543
  itemType: "AgenticManagementConfig",
2542
2544
  inputSchema: GetAgenticManagementConfigSchema,
@@ -2582,8 +2584,8 @@ var UpdateAgenticManagementConfigItemSchema = zod.z.object({
2582
2584
  var updateAgenticManagementConfigPlugin = kitcore.defineMethod({
2583
2585
  ...agenticManagementDefaults,
2584
2586
  name: "updateAgenticManagementConfig",
2585
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
2586
- resolvers: { workflow: chunkBU4ANX6G_cjs.workflowIdResolver },
2587
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2588
+ resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
2587
2589
  type: "update",
2588
2590
  itemType: "AgenticManagementConfig",
2589
2591
  inputSchema: UpdateAgenticManagementConfigSchema,
@@ -2620,8 +2622,8 @@ var GetAgenticManagementIntentSchema = zod.z.object({
2620
2622
  var getAgenticManagementIntentPlugin = kitcore.defineMethod({
2621
2623
  ...agenticManagementDefaults,
2622
2624
  name: "getAgenticManagementIntent",
2623
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
2624
- resolvers: { workflow: chunkBU4ANX6G_cjs.workflowIdResolver },
2625
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2626
+ resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
2625
2627
  type: "item",
2626
2628
  itemType: "AgenticManagementIntent",
2627
2629
  inputSchema: GetAgenticManagementIntentSchema,
@@ -2664,8 +2666,8 @@ var UpdateAgenticManagementIntentSchema = zod.z.object({
2664
2666
  var updateAgenticManagementIntentPlugin = kitcore.defineMethod({
2665
2667
  ...agenticManagementDefaults,
2666
2668
  name: "updateAgenticManagementIntent",
2667
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
2668
- resolvers: { workflow: chunkBU4ANX6G_cjs.workflowIdResolver },
2669
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2670
+ resolvers: { workflow: chunkNTUEFDSW_cjs.workflowIdResolver },
2669
2671
  type: "update",
2670
2672
  itemType: "AgenticManagementIntent",
2671
2673
  inputSchema: UpdateAgenticManagementIntentSchema,
@@ -2817,7 +2819,7 @@ var ReadVfsFileItemSchema = zod.z.object({
2817
2819
  var readVfsFilePlugin = kitcore.defineMethod({
2818
2820
  ...vfsDefaults,
2819
2821
  name: "readVfsFile",
2820
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
2822
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2821
2823
  itemType: "VfsFile",
2822
2824
  inputSchema: ReadVfsFileSchema,
2823
2825
  outputSchema: ReadVfsFileItemSchema,
@@ -2876,7 +2878,7 @@ var WriteVfsFileItemSchema = FsWriteResultSchema;
2876
2878
  var writeVfsFilePlugin = kitcore.defineMethod({
2877
2879
  ...vfsDefaults,
2878
2880
  name: "writeVfsFile",
2879
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
2881
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2880
2882
  itemType: "VfsWriteResult",
2881
2883
  inputSchema: WriteVfsFileSchema,
2882
2884
  outputSchema: WriteVfsFileItemSchema,
@@ -2917,7 +2919,7 @@ var AppendVfsFileItemSchema = FsWriteResultSchema;
2917
2919
  var appendVfsFilePlugin = kitcore.defineMethod({
2918
2920
  ...vfsDefaults,
2919
2921
  name: "appendVfsFile",
2920
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
2922
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2921
2923
  itemType: "VfsWriteResult",
2922
2924
  inputSchema: AppendVfsFileSchema,
2923
2925
  outputSchema: AppendVfsFileItemSchema,
@@ -2958,7 +2960,7 @@ var CopyVfsFileItemSchema = FsWriteResultSchema;
2958
2960
  var copyVfsFilePlugin = kitcore.defineMethod({
2959
2961
  ...vfsDefaults,
2960
2962
  name: "copyVfsFile",
2961
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
2963
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
2962
2964
  itemType: "VfsWriteResult",
2963
2965
  inputSchema: CopyVfsFileSchema,
2964
2966
  outputSchema: CopyVfsFileItemSchema,
@@ -2996,7 +2998,7 @@ var ListVfsDirectorySchema = zod.z.object({
2996
2998
  var listVfsDirectoryPlugin = kitcore.defineMethod({
2997
2999
  ...vfsDefaults,
2998
3000
  name: "listVfsDirectory",
2999
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
3001
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
3000
3002
  type: "list",
3001
3003
  itemType: "VfsDirectoryEntry",
3002
3004
  inputSchema: ListVfsDirectorySchema,
@@ -3039,7 +3041,7 @@ var CreateVfsDirectoryItemSchema = FsMkdirResultSchema;
3039
3041
  var createVfsDirectoryPlugin = kitcore.defineMethod({
3040
3042
  ...vfsDefaults,
3041
3043
  name: "createVfsDirectory",
3042
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
3044
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
3043
3045
  itemType: "VfsMkdirResult",
3044
3046
  inputSchema: CreateVfsDirectorySchema,
3045
3047
  outputSchema: CreateVfsDirectoryItemSchema,
@@ -3069,7 +3071,7 @@ var StatVfsPathItemSchema = FsDirectoryEntrySchema;
3069
3071
  var statVfsPathPlugin = kitcore.defineMethod({
3070
3072
  ...vfsDefaults,
3071
3073
  name: "statVfsPath",
3072
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
3074
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
3073
3075
  itemType: "VfsStat",
3074
3076
  inputSchema: StatVfsPathSchema,
3075
3077
  outputSchema: StatVfsPathItemSchema,
@@ -3100,7 +3102,7 @@ var DeleteVfsPathItemSchema = FsDeleteResultSchema;
3100
3102
  var deleteVfsPathPlugin = kitcore.defineMethod({
3101
3103
  ...vfsDefaults,
3102
3104
  name: "deleteVfsPath",
3103
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
3105
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
3104
3106
  type: "delete",
3105
3107
  itemType: "VfsDeleteResult",
3106
3108
  // `type: "delete"` defaults the documented return to `{ success: boolean }`,
@@ -3141,7 +3143,7 @@ var MoveVfsPathItemSchema = FsMoveResultSchema;
3141
3143
  var moveVfsPathPlugin = kitcore.defineMethod({
3142
3144
  ...vfsDefaults,
3143
3145
  name: "moveVfsPath",
3144
- imports: [chunkBU4ANX6G_cjs.apiPluginRef],
3146
+ imports: [chunkNTUEFDSW_cjs.apiPluginRef],
3145
3147
  itemType: "VfsMoveResult",
3146
3148
  inputSchema: MoveVfsPathSchema,
3147
3149
  outputSchema: MoveVfsPathItemSchema,
@@ -3164,7 +3166,7 @@ var zapierExperimentalSdkPlugin = kitcore.definePlugin({
3164
3166
  namespace: "zapier",
3165
3167
  name: "experimental-sdk",
3166
3168
  exports: [
3167
- chunkBU4ANX6G_cjs.zapierSdkPlugin,
3169
+ chunkNTUEFDSW_cjs.zapierSdkPlugin,
3168
3170
  // Code substrate (experimental). `list*` plugins are exported before their
3169
3171
  // `get*` / mutation siblings because per-row resolvers reach the listing
3170
3172
  // methods.
@@ -3224,1127 +3226,1127 @@ var zapierExperimentalSdkPlugin = kitcore.definePlugin({
3224
3226
  function createZapierSdk(options = {}) {
3225
3227
  return kitcore.createSdk(zapierExperimentalSdkPlugin, {
3226
3228
  configuration: {
3227
- [chunkBU4ANX6G_cjs.SDK_OPTIONS_ID]: options,
3228
- [kitcore.CORE_OPTIONS_ID]: chunkBU4ANX6G_cjs.zapierCoreOptions
3229
+ [chunkNTUEFDSW_cjs.SDK_OPTIONS_ID]: options,
3230
+ [kitcore.CORE_OPTIONS_ID]: chunkNTUEFDSW_cjs.zapierCoreOptions
3229
3231
  }
3230
3232
  });
3231
3233
  }
3232
3234
 
3233
3235
  Object.defineProperty(exports, "ACTION_RUNS_PATH", {
3234
3236
  enumerable: true,
3235
- get: function () { return chunkBU4ANX6G_cjs.ACTION_RUNS_PATH; }
3237
+ get: function () { return chunkNTUEFDSW_cjs.ACTION_RUNS_PATH; }
3236
3238
  });
3237
3239
  Object.defineProperty(exports, "API_ID", {
3238
3240
  enumerable: true,
3239
- get: function () { return chunkBU4ANX6G_cjs.API_ID; }
3241
+ get: function () { return chunkNTUEFDSW_cjs.API_ID; }
3240
3242
  });
3241
3243
  Object.defineProperty(exports, "ActionKeyPropertySchema", {
3242
3244
  enumerable: true,
3243
- get: function () { return chunkBU4ANX6G_cjs.ActionKeyPropertySchema; }
3245
+ get: function () { return chunkNTUEFDSW_cjs.ActionKeyPropertySchema; }
3244
3246
  });
3245
3247
  Object.defineProperty(exports, "ActionPropertySchema", {
3246
3248
  enumerable: true,
3247
- get: function () { return chunkBU4ANX6G_cjs.ActionPropertySchema; }
3249
+ get: function () { return chunkNTUEFDSW_cjs.ActionPropertySchema; }
3248
3250
  });
3249
3251
  Object.defineProperty(exports, "ActionTimeoutMillisecondsPropertySchema", {
3250
3252
  enumerable: true,
3251
- get: function () { return chunkBU4ANX6G_cjs.ActionTimeoutMillisecondsPropertySchema; }
3253
+ get: function () { return chunkNTUEFDSW_cjs.ActionTimeoutMillisecondsPropertySchema; }
3252
3254
  });
3253
3255
  Object.defineProperty(exports, "ActionTimeoutSecondsPropertySchema", {
3254
3256
  enumerable: true,
3255
- get: function () { return chunkBU4ANX6G_cjs.ActionTimeoutSecondsPropertySchema; }
3257
+ get: function () { return chunkNTUEFDSW_cjs.ActionTimeoutSecondsPropertySchema; }
3256
3258
  });
3257
3259
  Object.defineProperty(exports, "ActionTypePropertySchema", {
3258
3260
  enumerable: true,
3259
- get: function () { return chunkBU4ANX6G_cjs.ActionTypePropertySchema; }
3261
+ get: function () { return chunkNTUEFDSW_cjs.ActionTypePropertySchema; }
3260
3262
  });
3261
3263
  Object.defineProperty(exports, "AppKeyPropertySchema", {
3262
3264
  enumerable: true,
3263
- get: function () { return chunkBU4ANX6G_cjs.AppKeyPropertySchema; }
3265
+ get: function () { return chunkNTUEFDSW_cjs.AppKeyPropertySchema; }
3264
3266
  });
3265
3267
  Object.defineProperty(exports, "AppPropertySchema", {
3266
3268
  enumerable: true,
3267
- get: function () { return chunkBU4ANX6G_cjs.AppPropertySchema; }
3269
+ get: function () { return chunkNTUEFDSW_cjs.AppPropertySchema; }
3268
3270
  });
3269
3271
  Object.defineProperty(exports, "AppsPropertySchema", {
3270
3272
  enumerable: true,
3271
- get: function () { return chunkBU4ANX6G_cjs.AppsPropertySchema; }
3273
+ get: function () { return chunkNTUEFDSW_cjs.AppsPropertySchema; }
3272
3274
  });
3273
3275
  Object.defineProperty(exports, "AuthMechanism", {
3274
3276
  enumerable: true,
3275
- get: function () { return chunkBU4ANX6G_cjs.AuthMechanism; }
3277
+ get: function () { return chunkNTUEFDSW_cjs.AuthMechanism; }
3276
3278
  });
3277
3279
  Object.defineProperty(exports, "AuthenticationIdPropertySchema", {
3278
3280
  enumerable: true,
3279
- get: function () { return chunkBU4ANX6G_cjs.AuthenticationIdPropertySchema; }
3281
+ get: function () { return chunkNTUEFDSW_cjs.AuthenticationIdPropertySchema; }
3280
3282
  });
3281
3283
  Object.defineProperty(exports, "BaseSdkOptionsSchema", {
3282
3284
  enumerable: true,
3283
- get: function () { return chunkBU4ANX6G_cjs.BaseSdkOptionsSchema; }
3285
+ get: function () { return chunkNTUEFDSW_cjs.BaseSdkOptionsSchema; }
3284
3286
  });
3285
3287
  Object.defineProperty(exports, "CONNECTIONS_ID", {
3286
3288
  enumerable: true,
3287
- get: function () { return chunkBU4ANX6G_cjs.CONNECTIONS_ID; }
3289
+ get: function () { return chunkNTUEFDSW_cjs.CONNECTIONS_ID; }
3288
3290
  });
3289
3291
  Object.defineProperty(exports, "CONTEXT", {
3290
3292
  enumerable: true,
3291
- get: function () { return chunkBU4ANX6G_cjs.CONTEXT; }
3293
+ get: function () { return chunkNTUEFDSW_cjs.CONTEXT; }
3292
3294
  });
3293
3295
  Object.defineProperty(exports, "CONTEXT_CACHE_MAX_SIZE", {
3294
3296
  enumerable: true,
3295
- get: function () { return chunkBU4ANX6G_cjs.CONTEXT_CACHE_MAX_SIZE; }
3297
+ get: function () { return chunkNTUEFDSW_cjs.CONTEXT_CACHE_MAX_SIZE; }
3296
3298
  });
3297
3299
  Object.defineProperty(exports, "CONTEXT_CACHE_TTL_MILLISECONDS", {
3298
3300
  enumerable: true,
3299
- get: function () { return chunkBU4ANX6G_cjs.CONTEXT_CACHE_TTL_MILLISECONDS; }
3301
+ get: function () { return chunkNTUEFDSW_cjs.CONTEXT_CACHE_TTL_MILLISECONDS; }
3300
3302
  });
3301
3303
  Object.defineProperty(exports, "CORE_ERROR_SYMBOL", {
3302
3304
  enumerable: true,
3303
- get: function () { return chunkBU4ANX6G_cjs.CORE_ERROR_SYMBOL; }
3305
+ get: function () { return chunkNTUEFDSW_cjs.CORE_ERROR_SYMBOL; }
3304
3306
  });
3305
3307
  Object.defineProperty(exports, "CORE_OPTIONS_ID", {
3306
3308
  enumerable: true,
3307
- get: function () { return chunkBU4ANX6G_cjs.CORE_OPTIONS_ID; }
3309
+ get: function () { return chunkNTUEFDSW_cjs.CORE_OPTIONS_ID; }
3308
3310
  });
3309
3311
  Object.defineProperty(exports, "CORE_SIGNAL_SYMBOL", {
3310
3312
  enumerable: true,
3311
- get: function () { return chunkBU4ANX6G_cjs.CORE_SIGNAL_SYMBOL; }
3313
+ get: function () { return chunkNTUEFDSW_cjs.CORE_SIGNAL_SYMBOL; }
3312
3314
  });
3313
3315
  Object.defineProperty(exports, "ClientCredentialsObjectSchema", {
3314
3316
  enumerable: true,
3315
- get: function () { return chunkBU4ANX6G_cjs.ClientCredentialsObjectSchema; }
3317
+ get: function () { return chunkNTUEFDSW_cjs.ClientCredentialsObjectSchema; }
3316
3318
  });
3317
3319
  Object.defineProperty(exports, "ConnectionEntrySchema", {
3318
3320
  enumerable: true,
3319
- get: function () { return chunkBU4ANX6G_cjs.ConnectionEntrySchema; }
3321
+ get: function () { return chunkNTUEFDSW_cjs.ConnectionEntrySchema; }
3320
3322
  });
3321
3323
  Object.defineProperty(exports, "ConnectionIdPropertySchema", {
3322
3324
  enumerable: true,
3323
- get: function () { return chunkBU4ANX6G_cjs.ConnectionIdPropertySchema; }
3325
+ get: function () { return chunkNTUEFDSW_cjs.ConnectionIdPropertySchema; }
3324
3326
  });
3325
3327
  Object.defineProperty(exports, "ConnectionPropertySchema", {
3326
3328
  enumerable: true,
3327
- get: function () { return chunkBU4ANX6G_cjs.ConnectionPropertySchema; }
3329
+ get: function () { return chunkNTUEFDSW_cjs.ConnectionPropertySchema; }
3328
3330
  });
3329
3331
  Object.defineProperty(exports, "ConnectionsMapSchema", {
3330
3332
  enumerable: true,
3331
- get: function () { return chunkBU4ANX6G_cjs.ConnectionsMapSchema; }
3333
+ get: function () { return chunkNTUEFDSW_cjs.ConnectionsMapSchema; }
3332
3334
  });
3333
3335
  Object.defineProperty(exports, "ConnectionsPropertySchema", {
3334
3336
  enumerable: true,
3335
- get: function () { return chunkBU4ANX6G_cjs.ConnectionsPropertySchema; }
3337
+ get: function () { return chunkNTUEFDSW_cjs.ConnectionsPropertySchema; }
3336
3338
  });
3337
3339
  Object.defineProperty(exports, "CoreCancelledSignal", {
3338
3340
  enumerable: true,
3339
- get: function () { return chunkBU4ANX6G_cjs.CoreCancelledSignal; }
3341
+ get: function () { return chunkNTUEFDSW_cjs.CoreCancelledSignal; }
3340
3342
  });
3341
3343
  Object.defineProperty(exports, "CoreDisposeError", {
3342
3344
  enumerable: true,
3343
- get: function () { return chunkBU4ANX6G_cjs.CoreDisposeError; }
3345
+ get: function () { return chunkNTUEFDSW_cjs.CoreDisposeError; }
3344
3346
  });
3345
3347
  Object.defineProperty(exports, "CoreErrorCode", {
3346
3348
  enumerable: true,
3347
- get: function () { return chunkBU4ANX6G_cjs.CoreErrorCode; }
3349
+ get: function () { return chunkNTUEFDSW_cjs.CoreErrorCode; }
3348
3350
  });
3349
3351
  Object.defineProperty(exports, "CoreSignal", {
3350
3352
  enumerable: true,
3351
- get: function () { return chunkBU4ANX6G_cjs.CoreSignal; }
3353
+ get: function () { return chunkNTUEFDSW_cjs.CoreSignal; }
3352
3354
  });
3353
3355
  Object.defineProperty(exports, "CredentialsFunctionSchema", {
3354
3356
  enumerable: true,
3355
- get: function () { return chunkBU4ANX6G_cjs.CredentialsFunctionSchema; }
3357
+ get: function () { return chunkNTUEFDSW_cjs.CredentialsFunctionSchema; }
3356
3358
  });
3357
3359
  Object.defineProperty(exports, "CredentialsObjectSchema", {
3358
3360
  enumerable: true,
3359
- get: function () { return chunkBU4ANX6G_cjs.CredentialsObjectSchema; }
3361
+ get: function () { return chunkNTUEFDSW_cjs.CredentialsObjectSchema; }
3360
3362
  });
3361
3363
  Object.defineProperty(exports, "CredentialsSchema", {
3362
3364
  enumerable: true,
3363
- get: function () { return chunkBU4ANX6G_cjs.CredentialsSchema; }
3365
+ get: function () { return chunkNTUEFDSW_cjs.CredentialsSchema; }
3364
3366
  });
3365
3367
  Object.defineProperty(exports, "DEFAULT_ACTION_TIMEOUT_MILLISECONDS", {
3366
3368
  enumerable: true,
3367
- get: function () { return chunkBU4ANX6G_cjs.DEFAULT_ACTION_TIMEOUT_MILLISECONDS; }
3369
+ get: function () { return chunkNTUEFDSW_cjs.DEFAULT_ACTION_TIMEOUT_MILLISECONDS; }
3368
3370
  });
3369
3371
  Object.defineProperty(exports, "DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS", {
3370
3372
  enumerable: true,
3371
- get: function () { return chunkBU4ANX6G_cjs.DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS; }
3373
+ get: function () { return chunkNTUEFDSW_cjs.DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS; }
3372
3374
  });
3373
3375
  Object.defineProperty(exports, "DEFAULT_CONFIG_PATH", {
3374
3376
  enumerable: true,
3375
- get: function () { return chunkBU4ANX6G_cjs.DEFAULT_CONFIG_PATH; }
3377
+ get: function () { return chunkNTUEFDSW_cjs.DEFAULT_CONFIG_PATH; }
3376
3378
  });
3377
3379
  Object.defineProperty(exports, "DEFAULT_MAX_APPROVAL_RETRIES", {
3378
3380
  enumerable: true,
3379
- get: function () { return chunkBU4ANX6G_cjs.DEFAULT_MAX_APPROVAL_RETRIES; }
3381
+ get: function () { return chunkNTUEFDSW_cjs.DEFAULT_MAX_APPROVAL_RETRIES; }
3380
3382
  });
3381
3383
  Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
3382
3384
  enumerable: true,
3383
- get: function () { return chunkBU4ANX6G_cjs.DEFAULT_PAGE_SIZE; }
3385
+ get: function () { return chunkNTUEFDSW_cjs.DEFAULT_PAGE_SIZE; }
3384
3386
  });
3385
3387
  Object.defineProperty(exports, "DEPRECATION_NOTICE_EVENT", {
3386
3388
  enumerable: true,
3387
- get: function () { return chunkBU4ANX6G_cjs.DEPRECATION_NOTICE_EVENT; }
3389
+ get: function () { return chunkNTUEFDSW_cjs.DEPRECATION_NOTICE_EVENT; }
3388
3390
  });
3389
3391
  Object.defineProperty(exports, "DebugPropertySchema", {
3390
3392
  enumerable: true,
3391
- get: function () { return chunkBU4ANX6G_cjs.DebugPropertySchema; }
3393
+ get: function () { return chunkNTUEFDSW_cjs.DebugPropertySchema; }
3392
3394
  });
3393
3395
  Object.defineProperty(exports, "DrainTriggerInboxSchema", {
3394
3396
  enumerable: true,
3395
- get: function () { return chunkBU4ANX6G_cjs.DrainTriggerInboxSchema; }
3397
+ get: function () { return chunkNTUEFDSW_cjs.DrainTriggerInboxSchema; }
3396
3398
  });
3397
3399
  Object.defineProperty(exports, "EVENT_EMISSION_ID", {
3398
3400
  enumerable: true,
3399
- get: function () { return chunkBU4ANX6G_cjs.EVENT_EMISSION_ID; }
3401
+ get: function () { return chunkNTUEFDSW_cjs.EVENT_EMISSION_ID; }
3400
3402
  });
3401
3403
  Object.defineProperty(exports, "FieldsPropertySchema", {
3402
3404
  enumerable: true,
3403
- get: function () { return chunkBU4ANX6G_cjs.FieldsPropertySchema; }
3405
+ get: function () { return chunkNTUEFDSW_cjs.FieldsPropertySchema; }
3404
3406
  });
3405
3407
  Object.defineProperty(exports, "InputFieldPropertySchema", {
3406
3408
  enumerable: true,
3407
- get: function () { return chunkBU4ANX6G_cjs.InputFieldPropertySchema; }
3409
+ get: function () { return chunkNTUEFDSW_cjs.InputFieldPropertySchema; }
3408
3410
  });
3409
3411
  Object.defineProperty(exports, "InputsPropertySchema", {
3410
3412
  enumerable: true,
3411
- get: function () { return chunkBU4ANX6G_cjs.InputsPropertySchema; }
3413
+ get: function () { return chunkNTUEFDSW_cjs.InputsPropertySchema; }
3412
3414
  });
3413
3415
  Object.defineProperty(exports, "LeaseLimitPropertySchema", {
3414
3416
  enumerable: true,
3415
- get: function () { return chunkBU4ANX6G_cjs.LeaseLimitPropertySchema; }
3417
+ get: function () { return chunkNTUEFDSW_cjs.LeaseLimitPropertySchema; }
3416
3418
  });
3417
3419
  Object.defineProperty(exports, "LeasePropertySchema", {
3418
3420
  enumerable: true,
3419
- get: function () { return chunkBU4ANX6G_cjs.LeasePropertySchema; }
3421
+ get: function () { return chunkNTUEFDSW_cjs.LeasePropertySchema; }
3420
3422
  });
3421
3423
  Object.defineProperty(exports, "LeaseSecondsPropertySchema", {
3422
3424
  enumerable: true,
3423
- get: function () { return chunkBU4ANX6G_cjs.LeaseSecondsPropertySchema; }
3425
+ get: function () { return chunkNTUEFDSW_cjs.LeaseSecondsPropertySchema; }
3424
3426
  });
3425
3427
  Object.defineProperty(exports, "LimitPropertySchema", {
3426
3428
  enumerable: true,
3427
- get: function () { return chunkBU4ANX6G_cjs.LimitPropertySchema; }
3429
+ get: function () { return chunkNTUEFDSW_cjs.LimitPropertySchema; }
3428
3430
  });
3429
3431
  Object.defineProperty(exports, "MANIFEST_ID", {
3430
3432
  enumerable: true,
3431
- get: function () { return chunkBU4ANX6G_cjs.MANIFEST_ID; }
3433
+ get: function () { return chunkNTUEFDSW_cjs.MANIFEST_ID; }
3432
3434
  });
3433
3435
  Object.defineProperty(exports, "MAX_CONCURRENCY_LIMIT", {
3434
3436
  enumerable: true,
3435
- get: function () { return chunkBU4ANX6G_cjs.MAX_CONCURRENCY_LIMIT; }
3437
+ get: function () { return chunkNTUEFDSW_cjs.MAX_CONCURRENCY_LIMIT; }
3436
3438
  });
3437
3439
  Object.defineProperty(exports, "MAX_PAGE_LIMIT", {
3438
3440
  enumerable: true,
3439
- get: function () { return chunkBU4ANX6G_cjs.MAX_PAGE_LIMIT; }
3441
+ get: function () { return chunkNTUEFDSW_cjs.MAX_PAGE_LIMIT; }
3440
3442
  });
3441
3443
  Object.defineProperty(exports, "OffsetPropertySchema", {
3442
3444
  enumerable: true,
3443
- get: function () { return chunkBU4ANX6G_cjs.OffsetPropertySchema; }
3445
+ get: function () { return chunkNTUEFDSW_cjs.OffsetPropertySchema; }
3444
3446
  });
3445
3447
  Object.defineProperty(exports, "OutputPropertySchema", {
3446
3448
  enumerable: true,
3447
- get: function () { return chunkBU4ANX6G_cjs.OutputPropertySchema; }
3449
+ get: function () { return chunkNTUEFDSW_cjs.OutputPropertySchema; }
3448
3450
  });
3449
3451
  Object.defineProperty(exports, "ParamsPropertySchema", {
3450
3452
  enumerable: true,
3451
- get: function () { return chunkBU4ANX6G_cjs.ParamsPropertySchema; }
3453
+ get: function () { return chunkNTUEFDSW_cjs.ParamsPropertySchema; }
3452
3454
  });
3453
3455
  Object.defineProperty(exports, "PkceCredentialsObjectSchema", {
3454
3456
  enumerable: true,
3455
- get: function () { return chunkBU4ANX6G_cjs.PkceCredentialsObjectSchema; }
3457
+ get: function () { return chunkNTUEFDSW_cjs.PkceCredentialsObjectSchema; }
3456
3458
  });
3457
3459
  Object.defineProperty(exports, "RESOLVE_CREDENTIALS_ID", {
3458
3460
  enumerable: true,
3459
- get: function () { return chunkBU4ANX6G_cjs.RESOLVE_CREDENTIALS_ID; }
3461
+ get: function () { return chunkNTUEFDSW_cjs.RESOLVE_CREDENTIALS_ID; }
3460
3462
  });
3461
3463
  Object.defineProperty(exports, "RecordPropertySchema", {
3462
3464
  enumerable: true,
3463
- get: function () { return chunkBU4ANX6G_cjs.RecordPropertySchema; }
3465
+ get: function () { return chunkNTUEFDSW_cjs.RecordPropertySchema; }
3464
3466
  });
3465
3467
  Object.defineProperty(exports, "RecordsPropertySchema", {
3466
3468
  enumerable: true,
3467
- get: function () { return chunkBU4ANX6G_cjs.RecordsPropertySchema; }
3469
+ get: function () { return chunkNTUEFDSW_cjs.RecordsPropertySchema; }
3468
3470
  });
3469
3471
  Object.defineProperty(exports, "RelayFetchSchema", {
3470
3472
  enumerable: true,
3471
- get: function () { return chunkBU4ANX6G_cjs.RelayFetchSchema; }
3473
+ get: function () { return chunkNTUEFDSW_cjs.RelayFetchSchema; }
3472
3474
  });
3473
3475
  Object.defineProperty(exports, "RelayRequestSchema", {
3474
3476
  enumerable: true,
3475
- get: function () { return chunkBU4ANX6G_cjs.RelayRequestSchema; }
3477
+ get: function () { return chunkNTUEFDSW_cjs.RelayRequestSchema; }
3476
3478
  });
3477
3479
  Object.defineProperty(exports, "ResolvedCredentialsSchema", {
3478
3480
  enumerable: true,
3479
- get: function () { return chunkBU4ANX6G_cjs.ResolvedCredentialsSchema; }
3481
+ get: function () { return chunkNTUEFDSW_cjs.ResolvedCredentialsSchema; }
3480
3482
  });
3481
3483
  Object.defineProperty(exports, "SDK_OPTIONS_ID", {
3482
3484
  enumerable: true,
3483
- get: function () { return chunkBU4ANX6G_cjs.SDK_OPTIONS_ID; }
3485
+ get: function () { return chunkNTUEFDSW_cjs.SDK_OPTIONS_ID; }
3484
3486
  });
3485
3487
  Object.defineProperty(exports, "TablePropertySchema", {
3486
3488
  enumerable: true,
3487
- get: function () { return chunkBU4ANX6G_cjs.TablePropertySchema; }
3489
+ get: function () { return chunkNTUEFDSW_cjs.TablePropertySchema; }
3488
3490
  });
3489
3491
  Object.defineProperty(exports, "TablesPropertySchema", {
3490
3492
  enumerable: true,
3491
- get: function () { return chunkBU4ANX6G_cjs.TablesPropertySchema; }
3493
+ get: function () { return chunkNTUEFDSW_cjs.TablesPropertySchema; }
3492
3494
  });
3493
3495
  Object.defineProperty(exports, "TriggerInboxKeyPropertySchema", {
3494
3496
  enumerable: true,
3495
- get: function () { return chunkBU4ANX6G_cjs.TriggerInboxKeyPropertySchema; }
3497
+ get: function () { return chunkNTUEFDSW_cjs.TriggerInboxKeyPropertySchema; }
3496
3498
  });
3497
3499
  Object.defineProperty(exports, "TriggerInboxNamePropertySchema", {
3498
3500
  enumerable: true,
3499
- get: function () { return chunkBU4ANX6G_cjs.TriggerInboxNamePropertySchema; }
3501
+ get: function () { return chunkNTUEFDSW_cjs.TriggerInboxNamePropertySchema; }
3500
3502
  });
3501
3503
  Object.defineProperty(exports, "TriggerInboxPropertySchema", {
3502
3504
  enumerable: true,
3503
- get: function () { return chunkBU4ANX6G_cjs.TriggerInboxPropertySchema; }
3505
+ get: function () { return chunkNTUEFDSW_cjs.TriggerInboxPropertySchema; }
3504
3506
  });
3505
3507
  Object.defineProperty(exports, "WatchTriggerInboxSchema", {
3506
3508
  enumerable: true,
3507
- get: function () { return chunkBU4ANX6G_cjs.WatchTriggerInboxSchema; }
3509
+ get: function () { return chunkNTUEFDSW_cjs.WatchTriggerInboxSchema; }
3508
3510
  });
3509
3511
  Object.defineProperty(exports, "ZAPIER_BASE_URL", {
3510
3512
  enumerable: true,
3511
- get: function () { return chunkBU4ANX6G_cjs.ZAPIER_BASE_URL; }
3513
+ get: function () { return chunkNTUEFDSW_cjs.ZAPIER_BASE_URL; }
3512
3514
  });
3513
3515
  Object.defineProperty(exports, "ZAPIER_MAX_CONCURRENT_REQUESTS", {
3514
3516
  enumerable: true,
3515
- get: function () { return chunkBU4ANX6G_cjs.ZAPIER_MAX_CONCURRENT_REQUESTS; }
3517
+ get: function () { return chunkNTUEFDSW_cjs.ZAPIER_MAX_CONCURRENT_REQUESTS; }
3516
3518
  });
3517
3519
  Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRIES", {
3518
3520
  enumerable: true,
3519
- get: function () { return chunkBU4ANX6G_cjs.ZAPIER_MAX_NETWORK_RETRIES; }
3521
+ get: function () { return chunkNTUEFDSW_cjs.ZAPIER_MAX_NETWORK_RETRIES; }
3520
3522
  });
3521
3523
  Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS", {
3522
3524
  enumerable: true,
3523
- get: function () { return chunkBU4ANX6G_cjs.ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS; }
3525
+ get: function () { return chunkNTUEFDSW_cjs.ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS; }
3524
3526
  });
3525
3527
  Object.defineProperty(exports, "ZapierAbortDrainSignal", {
3526
3528
  enumerable: true,
3527
- get: function () { return chunkBU4ANX6G_cjs.ZapierAbortDrainSignal; }
3529
+ get: function () { return chunkNTUEFDSW_cjs.ZapierAbortDrainSignal; }
3528
3530
  });
3529
3531
  Object.defineProperty(exports, "ZapierActionError", {
3530
3532
  enumerable: true,
3531
- get: function () { return chunkBU4ANX6G_cjs.ZapierActionError; }
3533
+ get: function () { return chunkNTUEFDSW_cjs.ZapierActionError; }
3532
3534
  });
3533
3535
  Object.defineProperty(exports, "ZapierApiError", {
3534
3536
  enumerable: true,
3535
- get: function () { return chunkBU4ANX6G_cjs.ZapierApiError; }
3537
+ get: function () { return chunkNTUEFDSW_cjs.ZapierApiError; }
3536
3538
  });
3537
3539
  Object.defineProperty(exports, "ZapierAppNotFoundError", {
3538
3540
  enumerable: true,
3539
- get: function () { return chunkBU4ANX6G_cjs.ZapierAppNotFoundError; }
3541
+ get: function () { return chunkNTUEFDSW_cjs.ZapierAppNotFoundError; }
3540
3542
  });
3541
3543
  Object.defineProperty(exports, "ZapierApprovalError", {
3542
3544
  enumerable: true,
3543
- get: function () { return chunkBU4ANX6G_cjs.ZapierApprovalError; }
3545
+ get: function () { return chunkNTUEFDSW_cjs.ZapierApprovalError; }
3544
3546
  });
3545
3547
  Object.defineProperty(exports, "ZapierAuthenticationError", {
3546
3548
  enumerable: true,
3547
- get: function () { return chunkBU4ANX6G_cjs.ZapierAuthenticationError; }
3549
+ get: function () { return chunkNTUEFDSW_cjs.ZapierAuthenticationError; }
3548
3550
  });
3549
3551
  Object.defineProperty(exports, "ZapierBundleError", {
3550
3552
  enumerable: true,
3551
- get: function () { return chunkBU4ANX6G_cjs.ZapierBundleError; }
3553
+ get: function () { return chunkNTUEFDSW_cjs.ZapierBundleError; }
3552
3554
  });
3553
3555
  Object.defineProperty(exports, "ZapierConfigurationError", {
3554
3556
  enumerable: true,
3555
- get: function () { return chunkBU4ANX6G_cjs.ZapierConfigurationError; }
3557
+ get: function () { return chunkNTUEFDSW_cjs.ZapierConfigurationError; }
3556
3558
  });
3557
3559
  Object.defineProperty(exports, "ZapierConflictError", {
3558
3560
  enumerable: true,
3559
- get: function () { return chunkBU4ANX6G_cjs.ZapierConflictError; }
3561
+ get: function () { return chunkNTUEFDSW_cjs.ZapierConflictError; }
3560
3562
  });
3561
3563
  Object.defineProperty(exports, "ZapierError", {
3562
3564
  enumerable: true,
3563
- get: function () { return chunkBU4ANX6G_cjs.ZapierError; }
3565
+ get: function () { return chunkNTUEFDSW_cjs.ZapierError; }
3564
3566
  });
3565
3567
  Object.defineProperty(exports, "ZapierNotFoundError", {
3566
3568
  enumerable: true,
3567
- get: function () { return chunkBU4ANX6G_cjs.ZapierNotFoundError; }
3569
+ get: function () { return chunkNTUEFDSW_cjs.ZapierNotFoundError; }
3568
3570
  });
3569
3571
  Object.defineProperty(exports, "ZapierRateLimitError", {
3570
3572
  enumerable: true,
3571
- get: function () { return chunkBU4ANX6G_cjs.ZapierRateLimitError; }
3573
+ get: function () { return chunkNTUEFDSW_cjs.ZapierRateLimitError; }
3572
3574
  });
3573
3575
  Object.defineProperty(exports, "ZapierRelayError", {
3574
3576
  enumerable: true,
3575
- get: function () { return chunkBU4ANX6G_cjs.ZapierRelayError; }
3577
+ get: function () { return chunkNTUEFDSW_cjs.ZapierRelayError; }
3576
3578
  });
3577
3579
  Object.defineProperty(exports, "ZapierReleaseTriggerMessageSignal", {
3578
3580
  enumerable: true,
3579
- get: function () { return chunkBU4ANX6G_cjs.ZapierReleaseTriggerMessageSignal; }
3581
+ get: function () { return chunkNTUEFDSW_cjs.ZapierReleaseTriggerMessageSignal; }
3580
3582
  });
3581
3583
  Object.defineProperty(exports, "ZapierResourceNotFoundError", {
3582
3584
  enumerable: true,
3583
- get: function () { return chunkBU4ANX6G_cjs.ZapierResourceNotFoundError; }
3585
+ get: function () { return chunkNTUEFDSW_cjs.ZapierResourceNotFoundError; }
3584
3586
  });
3585
3587
  Object.defineProperty(exports, "ZapierSignal", {
3586
3588
  enumerable: true,
3587
- get: function () { return chunkBU4ANX6G_cjs.ZapierSignal; }
3589
+ get: function () { return chunkNTUEFDSW_cjs.ZapierSignal; }
3588
3590
  });
3589
3591
  Object.defineProperty(exports, "ZapierTimeoutError", {
3590
3592
  enumerable: true,
3591
- get: function () { return chunkBU4ANX6G_cjs.ZapierTimeoutError; }
3593
+ get: function () { return chunkNTUEFDSW_cjs.ZapierTimeoutError; }
3592
3594
  });
3593
3595
  Object.defineProperty(exports, "ZapierUnknownError", {
3594
3596
  enumerable: true,
3595
- get: function () { return chunkBU4ANX6G_cjs.ZapierUnknownError; }
3597
+ get: function () { return chunkNTUEFDSW_cjs.ZapierUnknownError; }
3596
3598
  });
3597
3599
  Object.defineProperty(exports, "ZapierValidationError", {
3598
3600
  enumerable: true,
3599
- get: function () { return chunkBU4ANX6G_cjs.ZapierValidationError; }
3601
+ get: function () { return chunkNTUEFDSW_cjs.ZapierValidationError; }
3600
3602
  });
3601
3603
  Object.defineProperty(exports, "actionKeyResolver", {
3602
3604
  enumerable: true,
3603
- get: function () { return chunkBU4ANX6G_cjs.actionKeyResolver; }
3605
+ get: function () { return chunkNTUEFDSW_cjs.actionKeyResolver; }
3604
3606
  });
3605
3607
  Object.defineProperty(exports, "actionTypeResolver", {
3606
3608
  enumerable: true,
3607
- get: function () { return chunkBU4ANX6G_cjs.actionTypeResolver; }
3609
+ get: function () { return chunkNTUEFDSW_cjs.actionTypeResolver; }
3608
3610
  });
3609
3611
  Object.defineProperty(exports, "addPlugin", {
3610
3612
  enumerable: true,
3611
- get: function () { return chunkBU4ANX6G_cjs.addPlugin; }
3613
+ get: function () { return chunkNTUEFDSW_cjs.addPlugin; }
3612
3614
  });
3613
3615
  Object.defineProperty(exports, "apiPlugin", {
3614
3616
  enumerable: true,
3615
- get: function () { return chunkBU4ANX6G_cjs.apiPlugin; }
3617
+ get: function () { return chunkNTUEFDSW_cjs.apiPlugin; }
3616
3618
  });
3617
3619
  Object.defineProperty(exports, "apiPluginRef", {
3618
3620
  enumerable: true,
3619
- get: function () { return chunkBU4ANX6G_cjs.apiPluginRef; }
3621
+ get: function () { return chunkNTUEFDSW_cjs.apiPluginRef; }
3620
3622
  });
3621
3623
  Object.defineProperty(exports, "appKeyResolver", {
3622
3624
  enumerable: true,
3623
- get: function () { return chunkBU4ANX6G_cjs.appKeyResolver; }
3625
+ get: function () { return chunkNTUEFDSW_cjs.appKeyResolver; }
3624
3626
  });
3625
3627
  Object.defineProperty(exports, "appsPlugin", {
3626
3628
  enumerable: true,
3627
- get: function () { return chunkBU4ANX6G_cjs.appsPlugin; }
3629
+ get: function () { return chunkNTUEFDSW_cjs.appsPlugin; }
3628
3630
  });
3629
3631
  Object.defineProperty(exports, "batch", {
3630
3632
  enumerable: true,
3631
- get: function () { return chunkBU4ANX6G_cjs.batch; }
3633
+ get: function () { return chunkNTUEFDSW_cjs.batch; }
3632
3634
  });
3633
3635
  Object.defineProperty(exports, "buildApplicationLifecycleEvent", {
3634
3636
  enumerable: true,
3635
- get: function () { return chunkBU4ANX6G_cjs.buildApplicationLifecycleEvent; }
3637
+ get: function () { return chunkNTUEFDSW_cjs.buildApplicationLifecycleEvent; }
3636
3638
  });
3637
3639
  Object.defineProperty(exports, "buildCapabilityMessage", {
3638
3640
  enumerable: true,
3639
- get: function () { return chunkBU4ANX6G_cjs.buildCapabilityMessage; }
3641
+ get: function () { return chunkNTUEFDSW_cjs.buildCapabilityMessage; }
3640
3642
  });
3641
3643
  Object.defineProperty(exports, "buildErrorEvent", {
3642
3644
  enumerable: true,
3643
- get: function () { return chunkBU4ANX6G_cjs.buildErrorEvent; }
3645
+ get: function () { return chunkNTUEFDSW_cjs.buildErrorEvent; }
3644
3646
  });
3645
3647
  Object.defineProperty(exports, "buildErrorEventWithContext", {
3646
3648
  enumerable: true,
3647
- get: function () { return chunkBU4ANX6G_cjs.buildErrorEventWithContext; }
3649
+ get: function () { return chunkNTUEFDSW_cjs.buildErrorEventWithContext; }
3648
3650
  });
3649
3651
  Object.defineProperty(exports, "buildMethodCalledEvent", {
3650
3652
  enumerable: true,
3651
- get: function () { return chunkBU4ANX6G_cjs.buildMethodCalledEvent; }
3653
+ get: function () { return chunkNTUEFDSW_cjs.buildMethodCalledEvent; }
3652
3654
  });
3653
3655
  Object.defineProperty(exports, "cleanupEventListeners", {
3654
3656
  enumerable: true,
3655
- get: function () { return chunkBU4ANX6G_cjs.cleanupEventListeners; }
3657
+ get: function () { return chunkNTUEFDSW_cjs.cleanupEventListeners; }
3656
3658
  });
3657
3659
  Object.defineProperty(exports, "clearTokenCache", {
3658
3660
  enumerable: true,
3659
- get: function () { return chunkBU4ANX6G_cjs.clearTokenCache; }
3661
+ get: function () { return chunkNTUEFDSW_cjs.clearTokenCache; }
3660
3662
  });
3661
3663
  Object.defineProperty(exports, "clientCredentialsNameResolver", {
3662
3664
  enumerable: true,
3663
- get: function () { return chunkBU4ANX6G_cjs.clientCredentialsNameResolver; }
3665
+ get: function () { return chunkNTUEFDSW_cjs.clientCredentialsNameResolver; }
3664
3666
  });
3665
3667
  Object.defineProperty(exports, "clientIdResolver", {
3666
3668
  enumerable: true,
3667
- get: function () { return chunkBU4ANX6G_cjs.clientIdResolver; }
3669
+ get: function () { return chunkNTUEFDSW_cjs.clientIdResolver; }
3668
3670
  });
3669
3671
  Object.defineProperty(exports, "composePlugins", {
3670
3672
  enumerable: true,
3671
- get: function () { return chunkBU4ANX6G_cjs.composePlugins; }
3673
+ get: function () { return chunkNTUEFDSW_cjs.composePlugins; }
3672
3674
  });
3673
3675
  Object.defineProperty(exports, "connectionIdGenericResolver", {
3674
3676
  enumerable: true,
3675
- get: function () { return chunkBU4ANX6G_cjs.connectionIdGenericResolver; }
3677
+ get: function () { return chunkNTUEFDSW_cjs.connectionIdGenericResolver; }
3676
3678
  });
3677
3679
  Object.defineProperty(exports, "connectionIdResolver", {
3678
3680
  enumerable: true,
3679
- get: function () { return chunkBU4ANX6G_cjs.connectionIdResolver; }
3681
+ get: function () { return chunkNTUEFDSW_cjs.connectionIdResolver; }
3680
3682
  });
3681
3683
  Object.defineProperty(exports, "connectionsPlugin", {
3682
3684
  enumerable: true,
3683
- get: function () { return chunkBU4ANX6G_cjs.connectionsPlugin; }
3685
+ get: function () { return chunkNTUEFDSW_cjs.connectionsPlugin; }
3684
3686
  });
3685
3687
  Object.defineProperty(exports, "connectionsPluginRef", {
3686
3688
  enumerable: true,
3687
- get: function () { return chunkBU4ANX6G_cjs.connectionsPluginRef; }
3689
+ get: function () { return chunkNTUEFDSW_cjs.connectionsPluginRef; }
3688
3690
  });
3689
3691
  Object.defineProperty(exports, "createActionRunPlugin", {
3690
3692
  enumerable: true,
3691
- get: function () { return chunkBU4ANX6G_cjs.createActionRunPlugin; }
3693
+ get: function () { return chunkNTUEFDSW_cjs.createActionRunPlugin; }
3692
3694
  });
3693
3695
  Object.defineProperty(exports, "createBaseEvent", {
3694
3696
  enumerable: true,
3695
- get: function () { return chunkBU4ANX6G_cjs.createBaseEvent; }
3697
+ get: function () { return chunkNTUEFDSW_cjs.createBaseEvent; }
3696
3698
  });
3697
3699
  Object.defineProperty(exports, "createClientCredentialsPlugin", {
3698
3700
  enumerable: true,
3699
- get: function () { return chunkBU4ANX6G_cjs.createClientCredentialsPlugin; }
3701
+ get: function () { return chunkNTUEFDSW_cjs.createClientCredentialsPlugin; }
3700
3702
  });
3701
3703
  Object.defineProperty(exports, "createController", {
3702
3704
  enumerable: true,
3703
- get: function () { return chunkBU4ANX6G_cjs.createController; }
3705
+ get: function () { return chunkNTUEFDSW_cjs.createController; }
3704
3706
  });
3705
3707
  Object.defineProperty(exports, "createCorePlugin", {
3706
3708
  enumerable: true,
3707
- get: function () { return chunkBU4ANX6G_cjs.createCorePlugin; }
3709
+ get: function () { return chunkNTUEFDSW_cjs.createCorePlugin; }
3708
3710
  });
3709
3711
  Object.defineProperty(exports, "createFunction", {
3710
3712
  enumerable: true,
3711
- get: function () { return chunkBU4ANX6G_cjs.createFunction; }
3713
+ get: function () { return chunkNTUEFDSW_cjs.createFunction; }
3712
3714
  });
3713
3715
  Object.defineProperty(exports, "createMemoryCache", {
3714
3716
  enumerable: true,
3715
- get: function () { return chunkBU4ANX6G_cjs.createMemoryCache; }
3717
+ get: function () { return chunkNTUEFDSW_cjs.createMemoryCache; }
3716
3718
  });
3717
3719
  Object.defineProperty(exports, "createPaginatedFunction", {
3718
3720
  enumerable: true,
3719
- get: function () { return chunkBU4ANX6G_cjs.createPaginatedFunction; }
3721
+ get: function () { return chunkNTUEFDSW_cjs.createPaginatedFunction; }
3720
3722
  });
3721
3723
  Object.defineProperty(exports, "createPaginatedPluginMethod", {
3722
3724
  enumerable: true,
3723
- get: function () { return chunkBU4ANX6G_cjs.createPaginatedPluginMethod; }
3725
+ get: function () { return chunkNTUEFDSW_cjs.createPaginatedPluginMethod; }
3724
3726
  });
3725
3727
  Object.defineProperty(exports, "createPluginMethod", {
3726
3728
  enumerable: true,
3727
- get: function () { return chunkBU4ANX6G_cjs.createPluginMethod; }
3729
+ get: function () { return chunkNTUEFDSW_cjs.createPluginMethod; }
3728
3730
  });
3729
3731
  Object.defineProperty(exports, "createPluginStack", {
3730
3732
  enumerable: true,
3731
- get: function () { return chunkBU4ANX6G_cjs.createPluginStack; }
3733
+ get: function () { return chunkNTUEFDSW_cjs.createPluginStack; }
3732
3734
  });
3733
3735
  Object.defineProperty(exports, "createSdk", {
3734
3736
  enumerable: true,
3735
- get: function () { return chunkBU4ANX6G_cjs.createSdk; }
3737
+ get: function () { return chunkNTUEFDSW_cjs.createSdk; }
3736
3738
  });
3737
3739
  Object.defineProperty(exports, "createTableFieldsPlugin", {
3738
3740
  enumerable: true,
3739
- get: function () { return chunkBU4ANX6G_cjs.createTableFieldsPlugin; }
3741
+ get: function () { return chunkNTUEFDSW_cjs.createTableFieldsPlugin; }
3740
3742
  });
3741
3743
  Object.defineProperty(exports, "createTablePlugin", {
3742
3744
  enumerable: true,
3743
- get: function () { return chunkBU4ANX6G_cjs.createTablePlugin; }
3745
+ get: function () { return chunkNTUEFDSW_cjs.createTablePlugin; }
3744
3746
  });
3745
3747
  Object.defineProperty(exports, "createTableRecordsPlugin", {
3746
3748
  enumerable: true,
3747
- get: function () { return chunkBU4ANX6G_cjs.createTableRecordsPlugin; }
3749
+ get: function () { return chunkNTUEFDSW_cjs.createTableRecordsPlugin; }
3748
3750
  });
3749
3751
  Object.defineProperty(exports, "createZapierApi", {
3750
3752
  enumerable: true,
3751
- get: function () { return chunkBU4ANX6G_cjs.createZapierApi; }
3753
+ get: function () { return chunkNTUEFDSW_cjs.createZapierApi; }
3752
3754
  });
3753
3755
  Object.defineProperty(exports, "createZapierSdkWithoutRegistry", {
3754
3756
  enumerable: true,
3755
- get: function () { return chunkBU4ANX6G_cjs.createZapierSdkWithoutRegistry; }
3757
+ get: function () { return chunkNTUEFDSW_cjs.createZapierSdkWithoutRegistry; }
3756
3758
  });
3757
3759
  Object.defineProperty(exports, "declareMethod", {
3758
3760
  enumerable: true,
3759
- get: function () { return chunkBU4ANX6G_cjs.declareMethod; }
3761
+ get: function () { return chunkNTUEFDSW_cjs.declareMethod; }
3760
3762
  });
3761
3763
  Object.defineProperty(exports, "declareOptionalProperty", {
3762
3764
  enumerable: true,
3763
- get: function () { return chunkBU4ANX6G_cjs.declareOptionalProperty; }
3765
+ get: function () { return chunkNTUEFDSW_cjs.declareOptionalProperty; }
3764
3766
  });
3765
3767
  Object.defineProperty(exports, "declarePlugin", {
3766
3768
  enumerable: true,
3767
- get: function () { return chunkBU4ANX6G_cjs.declarePlugin; }
3769
+ get: function () { return chunkNTUEFDSW_cjs.declarePlugin; }
3768
3770
  });
3769
3771
  Object.defineProperty(exports, "declareProperty", {
3770
3772
  enumerable: true,
3771
- get: function () { return chunkBU4ANX6G_cjs.declareProperty; }
3773
+ get: function () { return chunkNTUEFDSW_cjs.declareProperty; }
3772
3774
  });
3773
3775
  Object.defineProperty(exports, "defineFormatter", {
3774
3776
  enumerable: true,
3775
- get: function () { return chunkBU4ANX6G_cjs.defineFormatter; }
3777
+ get: function () { return chunkNTUEFDSW_cjs.defineFormatter; }
3776
3778
  });
3777
3779
  Object.defineProperty(exports, "defineLegacyMerge", {
3778
3780
  enumerable: true,
3779
- get: function () { return chunkBU4ANX6G_cjs.defineLegacyMerge; }
3781
+ get: function () { return chunkNTUEFDSW_cjs.defineLegacyMerge; }
3780
3782
  });
3781
3783
  Object.defineProperty(exports, "defineMethod", {
3782
3784
  enumerable: true,
3783
- get: function () { return chunkBU4ANX6G_cjs.defineMethod; }
3785
+ get: function () { return chunkNTUEFDSW_cjs.defineMethod; }
3784
3786
  });
3785
3787
  Object.defineProperty(exports, "defineMethodOverride", {
3786
3788
  enumerable: true,
3787
- get: function () { return chunkBU4ANX6G_cjs.defineMethodOverride; }
3789
+ get: function () { return chunkNTUEFDSW_cjs.defineMethodOverride; }
3788
3790
  });
3789
3791
  Object.defineProperty(exports, "defineOverride", {
3790
3792
  enumerable: true,
3791
- get: function () { return chunkBU4ANX6G_cjs.defineOverride; }
3793
+ get: function () { return chunkNTUEFDSW_cjs.defineOverride; }
3792
3794
  });
3793
3795
  Object.defineProperty(exports, "definePlugin", {
3794
3796
  enumerable: true,
3795
- get: function () { return chunkBU4ANX6G_cjs.definePlugin; }
3797
+ get: function () { return chunkNTUEFDSW_cjs.definePlugin; }
3796
3798
  });
3797
3799
  Object.defineProperty(exports, "defineProperty", {
3798
3800
  enumerable: true,
3799
- get: function () { return chunkBU4ANX6G_cjs.defineProperty; }
3801
+ get: function () { return chunkNTUEFDSW_cjs.defineProperty; }
3800
3802
  });
3801
3803
  Object.defineProperty(exports, "defineResolver", {
3802
3804
  enumerable: true,
3803
- get: function () { return chunkBU4ANX6G_cjs.defineResolver; }
3805
+ get: function () { return chunkNTUEFDSW_cjs.defineResolver; }
3804
3806
  });
3805
3807
  Object.defineProperty(exports, "deleteClientCredentialsPlugin", {
3806
3808
  enumerable: true,
3807
- get: function () { return chunkBU4ANX6G_cjs.deleteClientCredentialsPlugin; }
3809
+ get: function () { return chunkNTUEFDSW_cjs.deleteClientCredentialsPlugin; }
3808
3810
  });
3809
3811
  Object.defineProperty(exports, "deleteTableFieldsPlugin", {
3810
3812
  enumerable: true,
3811
- get: function () { return chunkBU4ANX6G_cjs.deleteTableFieldsPlugin; }
3813
+ get: function () { return chunkNTUEFDSW_cjs.deleteTableFieldsPlugin; }
3812
3814
  });
3813
3815
  Object.defineProperty(exports, "deleteTablePlugin", {
3814
3816
  enumerable: true,
3815
- get: function () { return chunkBU4ANX6G_cjs.deleteTablePlugin; }
3817
+ get: function () { return chunkNTUEFDSW_cjs.deleteTablePlugin; }
3816
3818
  });
3817
3819
  Object.defineProperty(exports, "deleteTableRecordsPlugin", {
3818
3820
  enumerable: true,
3819
- get: function () { return chunkBU4ANX6G_cjs.deleteTableRecordsPlugin; }
3821
+ get: function () { return chunkNTUEFDSW_cjs.deleteTableRecordsPlugin; }
3820
3822
  });
3821
3823
  Object.defineProperty(exports, "disposeSdk", {
3822
3824
  enumerable: true,
3823
- get: function () { return chunkBU4ANX6G_cjs.disposeSdk; }
3825
+ get: function () { return chunkNTUEFDSW_cjs.disposeSdk; }
3824
3826
  });
3825
3827
  Object.defineProperty(exports, "durableRunIdResolver", {
3826
3828
  enumerable: true,
3827
- get: function () { return chunkBU4ANX6G_cjs.durableRunIdResolver; }
3829
+ get: function () { return chunkNTUEFDSW_cjs.durableRunIdResolver; }
3828
3830
  });
3829
3831
  Object.defineProperty(exports, "eventEmissionHookPlugin", {
3830
3832
  enumerable: true,
3831
- get: function () { return chunkBU4ANX6G_cjs.eventEmissionHookPlugin; }
3833
+ get: function () { return chunkNTUEFDSW_cjs.eventEmissionHookPlugin; }
3832
3834
  });
3833
3835
  Object.defineProperty(exports, "eventEmissionPlugin", {
3834
3836
  enumerable: true,
3835
- get: function () { return chunkBU4ANX6G_cjs.eventEmissionPlugin; }
3837
+ get: function () { return chunkNTUEFDSW_cjs.eventEmissionPlugin; }
3836
3838
  });
3837
3839
  Object.defineProperty(exports, "eventEmissionPluginRef", {
3838
3840
  enumerable: true,
3839
- get: function () { return chunkBU4ANX6G_cjs.eventEmissionPluginRef; }
3841
+ get: function () { return chunkNTUEFDSW_cjs.eventEmissionPluginRef; }
3840
3842
  });
3841
3843
  Object.defineProperty(exports, "fetchPlugin", {
3842
3844
  enumerable: true,
3843
- get: function () { return chunkBU4ANX6G_cjs.fetchPlugin; }
3845
+ get: function () { return chunkNTUEFDSW_cjs.fetchPlugin; }
3844
3846
  });
3845
3847
  Object.defineProperty(exports, "findFirstConnectionPlugin", {
3846
3848
  enumerable: true,
3847
- get: function () { return chunkBU4ANX6G_cjs.findFirstConnectionPlugin; }
3849
+ get: function () { return chunkNTUEFDSW_cjs.findFirstConnectionPlugin; }
3848
3850
  });
3849
3851
  Object.defineProperty(exports, "findManifestEntry", {
3850
3852
  enumerable: true,
3851
- get: function () { return chunkBU4ANX6G_cjs.findManifestEntry; }
3853
+ get: function () { return chunkNTUEFDSW_cjs.findManifestEntry; }
3852
3854
  });
3853
3855
  Object.defineProperty(exports, "findUniqueConnectionPlugin", {
3854
3856
  enumerable: true,
3855
- get: function () { return chunkBU4ANX6G_cjs.findUniqueConnectionPlugin; }
3857
+ get: function () { return chunkNTUEFDSW_cjs.findUniqueConnectionPlugin; }
3856
3858
  });
3857
3859
  Object.defineProperty(exports, "formatErrorMessage", {
3858
3860
  enumerable: true,
3859
- get: function () { return chunkBU4ANX6G_cjs.formatErrorMessage; }
3861
+ get: function () { return chunkNTUEFDSW_cjs.formatErrorMessage; }
3860
3862
  });
3861
3863
  Object.defineProperty(exports, "fromFunctionPlugin", {
3862
3864
  enumerable: true,
3863
- get: function () { return chunkBU4ANX6G_cjs.fromFunctionPlugin; }
3865
+ get: function () { return chunkNTUEFDSW_cjs.fromFunctionPlugin; }
3864
3866
  });
3865
3867
  Object.defineProperty(exports, "generateEventId", {
3866
3868
  enumerable: true,
3867
- get: function () { return chunkBU4ANX6G_cjs.generateEventId; }
3869
+ get: function () { return chunkNTUEFDSW_cjs.generateEventId; }
3868
3870
  });
3869
3871
  Object.defineProperty(exports, "getActionInputFieldsSchemaPlugin", {
3870
3872
  enumerable: true,
3871
- get: function () { return chunkBU4ANX6G_cjs.getActionInputFieldsSchemaPlugin; }
3873
+ get: function () { return chunkNTUEFDSW_cjs.getActionInputFieldsSchemaPlugin; }
3872
3874
  });
3873
3875
  Object.defineProperty(exports, "getActionPlugin", {
3874
3876
  enumerable: true,
3875
- get: function () { return chunkBU4ANX6G_cjs.getActionPlugin; }
3877
+ get: function () { return chunkNTUEFDSW_cjs.getActionPlugin; }
3876
3878
  });
3877
3879
  Object.defineProperty(exports, "getActionRunPlugin", {
3878
3880
  enumerable: true,
3879
- get: function () { return chunkBU4ANX6G_cjs.getActionRunPlugin; }
3881
+ get: function () { return chunkNTUEFDSW_cjs.getActionRunPlugin; }
3880
3882
  });
3881
3883
  Object.defineProperty(exports, "getAgent", {
3882
3884
  enumerable: true,
3883
- get: function () { return chunkBU4ANX6G_cjs.getAgent; }
3885
+ get: function () { return chunkNTUEFDSW_cjs.getAgent; }
3884
3886
  });
3885
3887
  Object.defineProperty(exports, "getAppPlugin", {
3886
3888
  enumerable: true,
3887
- get: function () { return chunkBU4ANX6G_cjs.getAppPlugin; }
3889
+ get: function () { return chunkNTUEFDSW_cjs.getAppPlugin; }
3888
3890
  });
3889
3891
  Object.defineProperty(exports, "getBaseUrlFromCredentials", {
3890
3892
  enumerable: true,
3891
- get: function () { return chunkBU4ANX6G_cjs.getBaseUrlFromCredentials; }
3893
+ get: function () { return chunkNTUEFDSW_cjs.getBaseUrlFromCredentials; }
3892
3894
  });
3893
3895
  Object.defineProperty(exports, "getCallerContext", {
3894
3896
  enumerable: true,
3895
- get: function () { return chunkBU4ANX6G_cjs.getCallerContext; }
3897
+ get: function () { return chunkNTUEFDSW_cjs.getCallerContext; }
3896
3898
  });
3897
3899
  Object.defineProperty(exports, "getCiPlatform", {
3898
3900
  enumerable: true,
3899
- get: function () { return chunkBU4ANX6G_cjs.getCiPlatform; }
3901
+ get: function () { return chunkNTUEFDSW_cjs.getCiPlatform; }
3900
3902
  });
3901
3903
  Object.defineProperty(exports, "getClientIdFromCredentials", {
3902
3904
  enumerable: true,
3903
- get: function () { return chunkBU4ANX6G_cjs.getClientIdFromCredentials; }
3905
+ get: function () { return chunkNTUEFDSW_cjs.getClientIdFromCredentials; }
3904
3906
  });
3905
3907
  Object.defineProperty(exports, "getConnectionPlugin", {
3906
3908
  enumerable: true,
3907
- get: function () { return chunkBU4ANX6G_cjs.getConnectionPlugin; }
3909
+ get: function () { return chunkNTUEFDSW_cjs.getConnectionPlugin; }
3908
3910
  });
3909
3911
  Object.defineProperty(exports, "getContext", {
3910
3912
  enumerable: true,
3911
- get: function () { return chunkBU4ANX6G_cjs.getContext; }
3913
+ get: function () { return chunkNTUEFDSW_cjs.getContext; }
3912
3914
  });
3913
3915
  Object.defineProperty(exports, "getCoreErrorCause", {
3914
3916
  enumerable: true,
3915
- get: function () { return chunkBU4ANX6G_cjs.getCoreErrorCause; }
3917
+ get: function () { return chunkNTUEFDSW_cjs.getCoreErrorCause; }
3916
3918
  });
3917
3919
  Object.defineProperty(exports, "getCoreErrorCode", {
3918
3920
  enumerable: true,
3919
- get: function () { return chunkBU4ANX6G_cjs.getCoreErrorCode; }
3921
+ get: function () { return chunkNTUEFDSW_cjs.getCoreErrorCode; }
3920
3922
  });
3921
3923
  Object.defineProperty(exports, "getCpuTime", {
3922
3924
  enumerable: true,
3923
- get: function () { return chunkBU4ANX6G_cjs.getCpuTime; }
3925
+ get: function () { return chunkNTUEFDSW_cjs.getCpuTime; }
3924
3926
  });
3925
3927
  Object.defineProperty(exports, "getCurrentTimestamp", {
3926
3928
  enumerable: true,
3927
- get: function () { return chunkBU4ANX6G_cjs.getCurrentTimestamp; }
3929
+ get: function () { return chunkNTUEFDSW_cjs.getCurrentTimestamp; }
3928
3930
  });
3929
3931
  Object.defineProperty(exports, "getMemoryUsage", {
3930
3932
  enumerable: true,
3931
- get: function () { return chunkBU4ANX6G_cjs.getMemoryUsage; }
3933
+ get: function () { return chunkNTUEFDSW_cjs.getMemoryUsage; }
3932
3934
  });
3933
3935
  Object.defineProperty(exports, "getNegatable", {
3934
3936
  enumerable: true,
3935
- get: function () { return chunkBU4ANX6G_cjs.getNegatable; }
3937
+ get: function () { return chunkNTUEFDSW_cjs.getNegatable; }
3936
3938
  });
3937
3939
  Object.defineProperty(exports, "getOrCreateApiClient", {
3938
3940
  enumerable: true,
3939
- get: function () { return chunkBU4ANX6G_cjs.getOrCreateApiClient; }
3941
+ get: function () { return chunkNTUEFDSW_cjs.getOrCreateApiClient; }
3940
3942
  });
3941
3943
  Object.defineProperty(exports, "getOsInfo", {
3942
3944
  enumerable: true,
3943
- get: function () { return chunkBU4ANX6G_cjs.getOsInfo; }
3945
+ get: function () { return chunkNTUEFDSW_cjs.getOsInfo; }
3944
3946
  });
3945
3947
  Object.defineProperty(exports, "getPlatformVersions", {
3946
3948
  enumerable: true,
3947
- get: function () { return chunkBU4ANX6G_cjs.getPlatformVersions; }
3949
+ get: function () { return chunkNTUEFDSW_cjs.getPlatformVersions; }
3948
3950
  });
3949
3951
  Object.defineProperty(exports, "getPreferredManifestEntryKey", {
3950
3952
  enumerable: true,
3951
- get: function () { return chunkBU4ANX6G_cjs.getPreferredManifestEntryKey; }
3953
+ get: function () { return chunkNTUEFDSW_cjs.getPreferredManifestEntryKey; }
3952
3954
  });
3953
3955
  Object.defineProperty(exports, "getProfilePlugin", {
3954
3956
  enumerable: true,
3955
- get: function () { return chunkBU4ANX6G_cjs.getProfilePlugin; }
3957
+ get: function () { return chunkNTUEFDSW_cjs.getProfilePlugin; }
3956
3958
  });
3957
3959
  Object.defineProperty(exports, "getRegistryPlugin", {
3958
3960
  enumerable: true,
3959
- get: function () { return chunkBU4ANX6G_cjs.getRegistryPlugin; }
3961
+ get: function () { return chunkNTUEFDSW_cjs.getRegistryPlugin; }
3960
3962
  });
3961
3963
  Object.defineProperty(exports, "getReleaseId", {
3962
3964
  enumerable: true,
3963
- get: function () { return chunkBU4ANX6G_cjs.getReleaseId; }
3965
+ get: function () { return chunkNTUEFDSW_cjs.getReleaseId; }
3964
3966
  });
3965
3967
  Object.defineProperty(exports, "getTablePlugin", {
3966
3968
  enumerable: true,
3967
- get: function () { return chunkBU4ANX6G_cjs.getTablePlugin; }
3969
+ get: function () { return chunkNTUEFDSW_cjs.getTablePlugin; }
3968
3970
  });
3969
3971
  Object.defineProperty(exports, "getTableRecordPlugin", {
3970
3972
  enumerable: true,
3971
- get: function () { return chunkBU4ANX6G_cjs.getTableRecordPlugin; }
3973
+ get: function () { return chunkNTUEFDSW_cjs.getTableRecordPlugin; }
3972
3974
  });
3973
3975
  Object.defineProperty(exports, "getTokenFromCliLogin", {
3974
3976
  enumerable: true,
3975
- get: function () { return chunkBU4ANX6G_cjs.getTokenFromCliLogin; }
3977
+ get: function () { return chunkNTUEFDSW_cjs.getTokenFromCliLogin; }
3976
3978
  });
3977
3979
  Object.defineProperty(exports, "getTtyContext", {
3978
3980
  enumerable: true,
3979
- get: function () { return chunkBU4ANX6G_cjs.getTtyContext; }
3981
+ get: function () { return chunkNTUEFDSW_cjs.getTtyContext; }
3980
3982
  });
3981
3983
  Object.defineProperty(exports, "getZapierApprovalMode", {
3982
3984
  enumerable: true,
3983
- get: function () { return chunkBU4ANX6G_cjs.getZapierApprovalMode; }
3985
+ get: function () { return chunkNTUEFDSW_cjs.getZapierApprovalMode; }
3984
3986
  });
3985
3987
  Object.defineProperty(exports, "getZapierCausationId", {
3986
3988
  enumerable: true,
3987
- get: function () { return chunkBU4ANX6G_cjs.getZapierCausationId; }
3989
+ get: function () { return chunkNTUEFDSW_cjs.getZapierCausationId; }
3988
3990
  });
3989
3991
  Object.defineProperty(exports, "getZapierCorrelationId", {
3990
3992
  enumerable: true,
3991
- get: function () { return chunkBU4ANX6G_cjs.getZapierCorrelationId; }
3993
+ get: function () { return chunkNTUEFDSW_cjs.getZapierCorrelationId; }
3992
3994
  });
3993
3995
  Object.defineProperty(exports, "getZapierDefaultApprovalMode", {
3994
3996
  enumerable: true,
3995
- get: function () { return chunkBU4ANX6G_cjs.getZapierDefaultApprovalMode; }
3997
+ get: function () { return chunkNTUEFDSW_cjs.getZapierDefaultApprovalMode; }
3996
3998
  });
3997
3999
  Object.defineProperty(exports, "getZapierOpenAutoModeApprovalsInBrowser", {
3998
4000
  enumerable: true,
3999
- get: function () { return chunkBU4ANX6G_cjs.getZapierOpenAutoModeApprovalsInBrowser; }
4001
+ get: function () { return chunkNTUEFDSW_cjs.getZapierOpenAutoModeApprovalsInBrowser; }
4000
4002
  });
4001
4003
  Object.defineProperty(exports, "getZapierSdkService", {
4002
4004
  enumerable: true,
4003
- get: function () { return chunkBU4ANX6G_cjs.getZapierSdkService; }
4005
+ get: function () { return chunkNTUEFDSW_cjs.getZapierSdkService; }
4004
4006
  });
4005
4007
  Object.defineProperty(exports, "injectCliLogin", {
4006
4008
  enumerable: true,
4007
- get: function () { return chunkBU4ANX6G_cjs.injectCliLogin; }
4009
+ get: function () { return chunkNTUEFDSW_cjs.injectCliLogin; }
4008
4010
  });
4009
4011
  Object.defineProperty(exports, "inputFieldKeyResolver", {
4010
4012
  enumerable: true,
4011
- get: function () { return chunkBU4ANX6G_cjs.inputFieldKeyResolver; }
4013
+ get: function () { return chunkNTUEFDSW_cjs.inputFieldKeyResolver; }
4012
4014
  });
4013
4015
  Object.defineProperty(exports, "inputsAllOptionalResolver", {
4014
4016
  enumerable: true,
4015
- get: function () { return chunkBU4ANX6G_cjs.inputsAllOptionalResolver; }
4017
+ get: function () { return chunkNTUEFDSW_cjs.inputsAllOptionalResolver; }
4016
4018
  });
4017
4019
  Object.defineProperty(exports, "inputsResolver", {
4018
4020
  enumerable: true,
4019
- get: function () { return chunkBU4ANX6G_cjs.inputsResolver; }
4021
+ get: function () { return chunkNTUEFDSW_cjs.inputsResolver; }
4020
4022
  });
4021
4023
  Object.defineProperty(exports, "invalidateCachedToken", {
4022
4024
  enumerable: true,
4023
- get: function () { return chunkBU4ANX6G_cjs.invalidateCachedToken; }
4025
+ get: function () { return chunkNTUEFDSW_cjs.invalidateCachedToken; }
4024
4026
  });
4025
4027
  Object.defineProperty(exports, "invalidateCredentialsToken", {
4026
4028
  enumerable: true,
4027
- get: function () { return chunkBU4ANX6G_cjs.invalidateCredentialsToken; }
4029
+ get: function () { return chunkNTUEFDSW_cjs.invalidateCredentialsToken; }
4028
4030
  });
4029
4031
  Object.defineProperty(exports, "isCi", {
4030
4032
  enumerable: true,
4031
- get: function () { return chunkBU4ANX6G_cjs.isCi; }
4033
+ get: function () { return chunkNTUEFDSW_cjs.isCi; }
4032
4034
  });
4033
4035
  Object.defineProperty(exports, "isCliLoginAvailable", {
4034
4036
  enumerable: true,
4035
- get: function () { return chunkBU4ANX6G_cjs.isCliLoginAvailable; }
4037
+ get: function () { return chunkNTUEFDSW_cjs.isCliLoginAvailable; }
4036
4038
  });
4037
4039
  Object.defineProperty(exports, "isClientCredentials", {
4038
4040
  enumerable: true,
4039
- get: function () { return chunkBU4ANX6G_cjs.isClientCredentials; }
4041
+ get: function () { return chunkNTUEFDSW_cjs.isClientCredentials; }
4040
4042
  });
4041
4043
  Object.defineProperty(exports, "isCoreCancelledSignal", {
4042
4044
  enumerable: true,
4043
- get: function () { return chunkBU4ANX6G_cjs.isCoreCancelledSignal; }
4045
+ get: function () { return chunkNTUEFDSW_cjs.isCoreCancelledSignal; }
4044
4046
  });
4045
4047
  Object.defineProperty(exports, "isCoreError", {
4046
4048
  enumerable: true,
4047
- get: function () { return chunkBU4ANX6G_cjs.isCoreError; }
4049
+ get: function () { return chunkNTUEFDSW_cjs.isCoreError; }
4048
4050
  });
4049
4051
  Object.defineProperty(exports, "isCoreSignal", {
4050
4052
  enumerable: true,
4051
- get: function () { return chunkBU4ANX6G_cjs.isCoreSignal; }
4053
+ get: function () { return chunkNTUEFDSW_cjs.isCoreSignal; }
4052
4054
  });
4053
4055
  Object.defineProperty(exports, "isCredentialsFunction", {
4054
4056
  enumerable: true,
4055
- get: function () { return chunkBU4ANX6G_cjs.isCredentialsFunction; }
4057
+ get: function () { return chunkNTUEFDSW_cjs.isCredentialsFunction; }
4056
4058
  });
4057
4059
  Object.defineProperty(exports, "isCredentialsObject", {
4058
4060
  enumerable: true,
4059
- get: function () { return chunkBU4ANX6G_cjs.isCredentialsObject; }
4061
+ get: function () { return chunkNTUEFDSW_cjs.isCredentialsObject; }
4060
4062
  });
4061
4063
  Object.defineProperty(exports, "isPermanentHttpError", {
4062
4064
  enumerable: true,
4063
- get: function () { return chunkBU4ANX6G_cjs.isPermanentHttpError; }
4065
+ get: function () { return chunkNTUEFDSW_cjs.isPermanentHttpError; }
4064
4066
  });
4065
4067
  Object.defineProperty(exports, "isPkceCredentials", {
4066
4068
  enumerable: true,
4067
- get: function () { return chunkBU4ANX6G_cjs.isPkceCredentials; }
4069
+ get: function () { return chunkNTUEFDSW_cjs.isPkceCredentials; }
4068
4070
  });
4069
4071
  Object.defineProperty(exports, "isPositional", {
4070
4072
  enumerable: true,
4071
- get: function () { return chunkBU4ANX6G_cjs.isPositional; }
4073
+ get: function () { return chunkNTUEFDSW_cjs.isPositional; }
4072
4074
  });
4073
4075
  Object.defineProperty(exports, "isZapierAbortDrainSignal", {
4074
4076
  enumerable: true,
4075
- get: function () { return chunkBU4ANX6G_cjs.isZapierAbortDrainSignal; }
4077
+ get: function () { return chunkNTUEFDSW_cjs.isZapierAbortDrainSignal; }
4076
4078
  });
4077
4079
  Object.defineProperty(exports, "isZapierActionError", {
4078
4080
  enumerable: true,
4079
- get: function () { return chunkBU4ANX6G_cjs.isZapierActionError; }
4081
+ get: function () { return chunkNTUEFDSW_cjs.isZapierActionError; }
4080
4082
  });
4081
4083
  Object.defineProperty(exports, "isZapierAppNotFoundError", {
4082
4084
  enumerable: true,
4083
- get: function () { return chunkBU4ANX6G_cjs.isZapierAppNotFoundError; }
4085
+ get: function () { return chunkNTUEFDSW_cjs.isZapierAppNotFoundError; }
4084
4086
  });
4085
4087
  Object.defineProperty(exports, "isZapierApprovalError", {
4086
4088
  enumerable: true,
4087
- get: function () { return chunkBU4ANX6G_cjs.isZapierApprovalError; }
4089
+ get: function () { return chunkNTUEFDSW_cjs.isZapierApprovalError; }
4088
4090
  });
4089
4091
  Object.defineProperty(exports, "isZapierAuthenticationError", {
4090
4092
  enumerable: true,
4091
- get: function () { return chunkBU4ANX6G_cjs.isZapierAuthenticationError; }
4093
+ get: function () { return chunkNTUEFDSW_cjs.isZapierAuthenticationError; }
4092
4094
  });
4093
4095
  Object.defineProperty(exports, "isZapierBundleError", {
4094
4096
  enumerable: true,
4095
- get: function () { return chunkBU4ANX6G_cjs.isZapierBundleError; }
4097
+ get: function () { return chunkNTUEFDSW_cjs.isZapierBundleError; }
4096
4098
  });
4097
4099
  Object.defineProperty(exports, "isZapierConflictError", {
4098
4100
  enumerable: true,
4099
- get: function () { return chunkBU4ANX6G_cjs.isZapierConflictError; }
4101
+ get: function () { return chunkNTUEFDSW_cjs.isZapierConflictError; }
4100
4102
  });
4101
4103
  Object.defineProperty(exports, "isZapierError", {
4102
4104
  enumerable: true,
4103
- get: function () { return chunkBU4ANX6G_cjs.isZapierError; }
4105
+ get: function () { return chunkNTUEFDSW_cjs.isZapierError; }
4104
4106
  });
4105
4107
  Object.defineProperty(exports, "isZapierNotFoundError", {
4106
4108
  enumerable: true,
4107
- get: function () { return chunkBU4ANX6G_cjs.isZapierNotFoundError; }
4109
+ get: function () { return chunkNTUEFDSW_cjs.isZapierNotFoundError; }
4108
4110
  });
4109
4111
  Object.defineProperty(exports, "isZapierRateLimitError", {
4110
4112
  enumerable: true,
4111
- get: function () { return chunkBU4ANX6G_cjs.isZapierRateLimitError; }
4113
+ get: function () { return chunkNTUEFDSW_cjs.isZapierRateLimitError; }
4112
4114
  });
4113
4115
  Object.defineProperty(exports, "isZapierReleaseTriggerMessageSignal", {
4114
4116
  enumerable: true,
4115
- get: function () { return chunkBU4ANX6G_cjs.isZapierReleaseTriggerMessageSignal; }
4117
+ get: function () { return chunkNTUEFDSW_cjs.isZapierReleaseTriggerMessageSignal; }
4116
4118
  });
4117
4119
  Object.defineProperty(exports, "isZapierResourceNotFoundError", {
4118
4120
  enumerable: true,
4119
- get: function () { return chunkBU4ANX6G_cjs.isZapierResourceNotFoundError; }
4121
+ get: function () { return chunkNTUEFDSW_cjs.isZapierResourceNotFoundError; }
4120
4122
  });
4121
4123
  Object.defineProperty(exports, "isZapierSignal", {
4122
4124
  enumerable: true,
4123
- get: function () { return chunkBU4ANX6G_cjs.isZapierSignal; }
4125
+ get: function () { return chunkNTUEFDSW_cjs.isZapierSignal; }
4124
4126
  });
4125
4127
  Object.defineProperty(exports, "isZapierTimeoutError", {
4126
4128
  enumerable: true,
4127
- get: function () { return chunkBU4ANX6G_cjs.isZapierTimeoutError; }
4129
+ get: function () { return chunkNTUEFDSW_cjs.isZapierTimeoutError; }
4128
4130
  });
4129
4131
  Object.defineProperty(exports, "isZapierValidationError", {
4130
4132
  enumerable: true,
4131
- get: function () { return chunkBU4ANX6G_cjs.isZapierValidationError; }
4133
+ get: function () { return chunkNTUEFDSW_cjs.isZapierValidationError; }
4132
4134
  });
4133
4135
  Object.defineProperty(exports, "listActionInputFieldChoicesPlugin", {
4134
4136
  enumerable: true,
4135
- get: function () { return chunkBU4ANX6G_cjs.listActionInputFieldChoicesPlugin; }
4137
+ get: function () { return chunkNTUEFDSW_cjs.listActionInputFieldChoicesPlugin; }
4136
4138
  });
4137
4139
  Object.defineProperty(exports, "listActionInputFieldsPlugin", {
4138
4140
  enumerable: true,
4139
- get: function () { return chunkBU4ANX6G_cjs.listActionInputFieldsPlugin; }
4141
+ get: function () { return chunkNTUEFDSW_cjs.listActionInputFieldsPlugin; }
4140
4142
  });
4141
4143
  Object.defineProperty(exports, "listActionsPlugin", {
4142
4144
  enumerable: true,
4143
- get: function () { return chunkBU4ANX6G_cjs.listActionsPlugin; }
4145
+ get: function () { return chunkNTUEFDSW_cjs.listActionsPlugin; }
4144
4146
  });
4145
4147
  Object.defineProperty(exports, "listAppsPlugin", {
4146
4148
  enumerable: true,
4147
- get: function () { return chunkBU4ANX6G_cjs.listAppsPlugin; }
4149
+ get: function () { return chunkNTUEFDSW_cjs.listAppsPlugin; }
4148
4150
  });
4149
4151
  Object.defineProperty(exports, "listClientCredentialsPlugin", {
4150
4152
  enumerable: true,
4151
- get: function () { return chunkBU4ANX6G_cjs.listClientCredentialsPlugin; }
4153
+ get: function () { return chunkNTUEFDSW_cjs.listClientCredentialsPlugin; }
4152
4154
  });
4153
4155
  Object.defineProperty(exports, "listConnectionsPlugin", {
4154
4156
  enumerable: true,
4155
- get: function () { return chunkBU4ANX6G_cjs.listConnectionsPlugin; }
4157
+ get: function () { return chunkNTUEFDSW_cjs.listConnectionsPlugin; }
4156
4158
  });
4157
4159
  Object.defineProperty(exports, "listTableFieldsPlugin", {
4158
4160
  enumerable: true,
4159
- get: function () { return chunkBU4ANX6G_cjs.listTableFieldsPlugin; }
4161
+ get: function () { return chunkNTUEFDSW_cjs.listTableFieldsPlugin; }
4160
4162
  });
4161
4163
  Object.defineProperty(exports, "listTableRecordsPlugin", {
4162
4164
  enumerable: true,
4163
- get: function () { return chunkBU4ANX6G_cjs.listTableRecordsPlugin; }
4165
+ get: function () { return chunkNTUEFDSW_cjs.listTableRecordsPlugin; }
4164
4166
  });
4165
4167
  Object.defineProperty(exports, "listTablesPlugin", {
4166
4168
  enumerable: true,
4167
- get: function () { return chunkBU4ANX6G_cjs.listTablesPlugin; }
4169
+ get: function () { return chunkNTUEFDSW_cjs.listTablesPlugin; }
4168
4170
  });
4169
4171
  Object.defineProperty(exports, "logDeprecation", {
4170
4172
  enumerable: true,
4171
- get: function () { return chunkBU4ANX6G_cjs.logDeprecation; }
4173
+ get: function () { return chunkNTUEFDSW_cjs.logDeprecation; }
4172
4174
  });
4173
4175
  Object.defineProperty(exports, "manifestPlugin", {
4174
4176
  enumerable: true,
4175
- get: function () { return chunkBU4ANX6G_cjs.manifestPlugin; }
4177
+ get: function () { return chunkNTUEFDSW_cjs.manifestPlugin; }
4176
4178
  });
4177
4179
  Object.defineProperty(exports, "manifestPluginRef", {
4178
4180
  enumerable: true,
4179
- get: function () { return chunkBU4ANX6G_cjs.manifestPluginRef; }
4181
+ get: function () { return chunkNTUEFDSW_cjs.manifestPluginRef; }
4180
4182
  });
4181
4183
  Object.defineProperty(exports, "omitExports", {
4182
4184
  enumerable: true,
4183
- get: function () { return chunkBU4ANX6G_cjs.omitExports; }
4185
+ get: function () { return chunkNTUEFDSW_cjs.omitExports; }
4184
4186
  });
4185
4187
  Object.defineProperty(exports, "operationAnnotatorPlugin", {
4186
4188
  enumerable: true,
4187
- get: function () { return chunkBU4ANX6G_cjs.operationAnnotatorPlugin; }
4189
+ get: function () { return chunkNTUEFDSW_cjs.operationAnnotatorPlugin; }
4188
4190
  });
4189
4191
  Object.defineProperty(exports, "parseConcurrencyEnvVar", {
4190
4192
  enumerable: true,
4191
- get: function () { return chunkBU4ANX6G_cjs.parseConcurrencyEnvVar; }
4193
+ get: function () { return chunkNTUEFDSW_cjs.parseConcurrencyEnvVar; }
4192
4194
  });
4193
4195
  Object.defineProperty(exports, "readManifestFromFile", {
4194
4196
  enumerable: true,
4195
- get: function () { return chunkBU4ANX6G_cjs.readManifestFromFile; }
4197
+ get: function () { return chunkNTUEFDSW_cjs.readManifestFromFile; }
4196
4198
  });
4197
4199
  Object.defineProperty(exports, "registryPlugin", {
4198
4200
  enumerable: true,
4199
- get: function () { return chunkBU4ANX6G_cjs.registryPlugin; }
4201
+ get: function () { return chunkNTUEFDSW_cjs.registryPlugin; }
4200
4202
  });
4201
4203
  Object.defineProperty(exports, "requestPlugin", {
4202
4204
  enumerable: true,
4203
- get: function () { return chunkBU4ANX6G_cjs.requestPlugin; }
4205
+ get: function () { return chunkNTUEFDSW_cjs.requestPlugin; }
4204
4206
  });
4205
4207
  Object.defineProperty(exports, "resetDeprecationWarnings", {
4206
4208
  enumerable: true,
4207
- get: function () { return chunkBU4ANX6G_cjs.resetDeprecationWarnings; }
4209
+ get: function () { return chunkNTUEFDSW_cjs.resetDeprecationWarnings; }
4208
4210
  });
4209
4211
  Object.defineProperty(exports, "resolveAuth", {
4210
4212
  enumerable: true,
4211
- get: function () { return chunkBU4ANX6G_cjs.resolveAuth; }
4213
+ get: function () { return chunkNTUEFDSW_cjs.resolveAuth; }
4212
4214
  });
4213
4215
  Object.defineProperty(exports, "resolveAuthToken", {
4214
4216
  enumerable: true,
4215
- get: function () { return chunkBU4ANX6G_cjs.resolveAuthToken; }
4217
+ get: function () { return chunkNTUEFDSW_cjs.resolveAuthToken; }
4216
4218
  });
4217
4219
  Object.defineProperty(exports, "resolveCredentials", {
4218
4220
  enumerable: true,
4219
- get: function () { return chunkBU4ANX6G_cjs.resolveCredentials; }
4221
+ get: function () { return chunkNTUEFDSW_cjs.resolveCredentials; }
4220
4222
  });
4221
4223
  Object.defineProperty(exports, "resolveCredentialsFromEnv", {
4222
4224
  enumerable: true,
4223
- get: function () { return chunkBU4ANX6G_cjs.resolveCredentialsFromEnv; }
4225
+ get: function () { return chunkNTUEFDSW_cjs.resolveCredentialsFromEnv; }
4224
4226
  });
4225
4227
  Object.defineProperty(exports, "resolveCredentialsPlugin", {
4226
4228
  enumerable: true,
4227
- get: function () { return chunkBU4ANX6G_cjs.resolveCredentialsPlugin; }
4229
+ get: function () { return chunkNTUEFDSW_cjs.resolveCredentialsPlugin; }
4228
4230
  });
4229
4231
  Object.defineProperty(exports, "resolveCredentialsPluginRef", {
4230
4232
  enumerable: true,
4231
- get: function () { return chunkBU4ANX6G_cjs.resolveCredentialsPluginRef; }
4233
+ get: function () { return chunkNTUEFDSW_cjs.resolveCredentialsPluginRef; }
4232
4234
  });
4233
4235
  Object.defineProperty(exports, "resolvePlugin", {
4234
4236
  enumerable: true,
4235
- get: function () { return chunkBU4ANX6G_cjs.resolvePlugin; }
4237
+ get: function () { return chunkNTUEFDSW_cjs.resolvePlugin; }
4236
4238
  });
4237
4239
  Object.defineProperty(exports, "runActionPlugin", {
4238
4240
  enumerable: true,
4239
- get: function () { return chunkBU4ANX6G_cjs.runActionPlugin; }
4241
+ get: function () { return chunkNTUEFDSW_cjs.runActionPlugin; }
4240
4242
  });
4241
4243
  Object.defineProperty(exports, "runInMethodScope", {
4242
4244
  enumerable: true,
4243
- get: function () { return chunkBU4ANX6G_cjs.runInMethodScope; }
4245
+ get: function () { return chunkNTUEFDSW_cjs.runInMethodScope; }
4244
4246
  });
4245
4247
  Object.defineProperty(exports, "runWithCallerContext", {
4246
4248
  enumerable: true,
4247
- get: function () { return chunkBU4ANX6G_cjs.runWithCallerContext; }
4249
+ get: function () { return chunkNTUEFDSW_cjs.runWithCallerContext; }
4248
4250
  });
4249
4251
  Object.defineProperty(exports, "runWithTelemetryContext", {
4250
4252
  enumerable: true,
4251
- get: function () { return chunkBU4ANX6G_cjs.runWithTelemetryContext; }
4253
+ get: function () { return chunkNTUEFDSW_cjs.runWithTelemetryContext; }
4252
4254
  });
4253
4255
  Object.defineProperty(exports, "sdkOptionsPluginRef", {
4254
4256
  enumerable: true,
4255
- get: function () { return chunkBU4ANX6G_cjs.sdkOptionsPluginRef; }
4257
+ get: function () { return chunkNTUEFDSW_cjs.sdkOptionsPluginRef; }
4256
4258
  });
4257
4259
  Object.defineProperty(exports, "selectExports", {
4258
4260
  enumerable: true,
4259
- get: function () { return chunkBU4ANX6G_cjs.selectExports; }
4261
+ get: function () { return chunkNTUEFDSW_cjs.selectExports; }
4260
4262
  });
4261
4263
  Object.defineProperty(exports, "tableFieldIdsResolver", {
4262
4264
  enumerable: true,
4263
- get: function () { return chunkBU4ANX6G_cjs.tableFieldIdsResolver; }
4265
+ get: function () { return chunkNTUEFDSW_cjs.tableFieldIdsResolver; }
4264
4266
  });
4265
4267
  Object.defineProperty(exports, "tableFieldsResolver", {
4266
4268
  enumerable: true,
4267
- get: function () { return chunkBU4ANX6G_cjs.tableFieldsResolver; }
4269
+ get: function () { return chunkNTUEFDSW_cjs.tableFieldsResolver; }
4268
4270
  });
4269
4271
  Object.defineProperty(exports, "tableFiltersResolver", {
4270
4272
  enumerable: true,
4271
- get: function () { return chunkBU4ANX6G_cjs.tableFiltersResolver; }
4273
+ get: function () { return chunkNTUEFDSW_cjs.tableFiltersResolver; }
4272
4274
  });
4273
4275
  Object.defineProperty(exports, "tableIdResolver", {
4274
4276
  enumerable: true,
4275
- get: function () { return chunkBU4ANX6G_cjs.tableIdResolver; }
4277
+ get: function () { return chunkNTUEFDSW_cjs.tableIdResolver; }
4276
4278
  });
4277
4279
  Object.defineProperty(exports, "tableNameResolver", {
4278
4280
  enumerable: true,
4279
- get: function () { return chunkBU4ANX6G_cjs.tableNameResolver; }
4281
+ get: function () { return chunkNTUEFDSW_cjs.tableNameResolver; }
4280
4282
  });
4281
4283
  Object.defineProperty(exports, "tableRecordIdResolver", {
4282
4284
  enumerable: true,
4283
- get: function () { return chunkBU4ANX6G_cjs.tableRecordIdResolver; }
4285
+ get: function () { return chunkNTUEFDSW_cjs.tableRecordIdResolver; }
4284
4286
  });
4285
4287
  Object.defineProperty(exports, "tableRecordIdsResolver", {
4286
4288
  enumerable: true,
4287
- get: function () { return chunkBU4ANX6G_cjs.tableRecordIdsResolver; }
4289
+ get: function () { return chunkNTUEFDSW_cjs.tableRecordIdsResolver; }
4288
4290
  });
4289
4291
  Object.defineProperty(exports, "tableRecordsResolver", {
4290
4292
  enumerable: true,
4291
- get: function () { return chunkBU4ANX6G_cjs.tableRecordsResolver; }
4293
+ get: function () { return chunkNTUEFDSW_cjs.tableRecordsResolver; }
4292
4294
  });
4293
4295
  Object.defineProperty(exports, "tableSortResolver", {
4294
4296
  enumerable: true,
4295
- get: function () { return chunkBU4ANX6G_cjs.tableSortResolver; }
4297
+ get: function () { return chunkNTUEFDSW_cjs.tableSortResolver; }
4296
4298
  });
4297
4299
  Object.defineProperty(exports, "tableUpdateRecordsResolver", {
4298
4300
  enumerable: true,
4299
- get: function () { return chunkBU4ANX6G_cjs.tableUpdateRecordsResolver; }
4301
+ get: function () { return chunkNTUEFDSW_cjs.tableUpdateRecordsResolver; }
4300
4302
  });
4301
4303
  Object.defineProperty(exports, "toSnakeCase", {
4302
4304
  enumerable: true,
4303
- get: function () { return chunkBU4ANX6G_cjs.toSnakeCase; }
4305
+ get: function () { return chunkNTUEFDSW_cjs.toSnakeCase; }
4304
4306
  });
4305
4307
  Object.defineProperty(exports, "toTitleCase", {
4306
4308
  enumerable: true,
4307
- get: function () { return chunkBU4ANX6G_cjs.toTitleCase; }
4309
+ get: function () { return chunkNTUEFDSW_cjs.toTitleCase; }
4308
4310
  });
4309
4311
  Object.defineProperty(exports, "triggerInboxResolver", {
4310
4312
  enumerable: true,
4311
- get: function () { return chunkBU4ANX6G_cjs.triggerInboxResolver; }
4313
+ get: function () { return chunkNTUEFDSW_cjs.triggerInboxResolver; }
4312
4314
  });
4313
4315
  Object.defineProperty(exports, "triggerMessagesResolver", {
4314
4316
  enumerable: true,
4315
- get: function () { return chunkBU4ANX6G_cjs.triggerMessagesResolver; }
4317
+ get: function () { return chunkNTUEFDSW_cjs.triggerMessagesResolver; }
4316
4318
  });
4317
4319
  Object.defineProperty(exports, "updateTableRecordsPlugin", {
4318
4320
  enumerable: true,
4319
- get: function () { return chunkBU4ANX6G_cjs.updateTableRecordsPlugin; }
4321
+ get: function () { return chunkNTUEFDSW_cjs.updateTableRecordsPlugin; }
4320
4322
  });
4321
4323
  Object.defineProperty(exports, "workflowDraftIdResolver", {
4322
4324
  enumerable: true,
4323
- get: function () { return chunkBU4ANX6G_cjs.workflowDraftIdResolver; }
4325
+ get: function () { return chunkNTUEFDSW_cjs.workflowDraftIdResolver; }
4324
4326
  });
4325
4327
  Object.defineProperty(exports, "workflowIdResolver", {
4326
4328
  enumerable: true,
4327
- get: function () { return chunkBU4ANX6G_cjs.workflowIdResolver; }
4329
+ get: function () { return chunkNTUEFDSW_cjs.workflowIdResolver; }
4328
4330
  });
4329
4331
  Object.defineProperty(exports, "workflowRunIdResolver", {
4330
4332
  enumerable: true,
4331
- get: function () { return chunkBU4ANX6G_cjs.workflowRunIdResolver; }
4333
+ get: function () { return chunkNTUEFDSW_cjs.workflowRunIdResolver; }
4332
4334
  });
4333
4335
  Object.defineProperty(exports, "workflowVersionIdResolver", {
4334
4336
  enumerable: true,
4335
- get: function () { return chunkBU4ANX6G_cjs.workflowVersionIdResolver; }
4337
+ get: function () { return chunkNTUEFDSW_cjs.workflowVersionIdResolver; }
4336
4338
  });
4337
4339
  Object.defineProperty(exports, "zapierAdaptError", {
4338
4340
  enumerable: true,
4339
- get: function () { return chunkBU4ANX6G_cjs.zapierAdaptError; }
4341
+ get: function () { return chunkNTUEFDSW_cjs.zapierAdaptError; }
4340
4342
  });
4341
4343
  Object.defineProperty(exports, "zapierCoreOptions", {
4342
4344
  enumerable: true,
4343
- get: function () { return chunkBU4ANX6G_cjs.zapierCoreOptions; }
4345
+ get: function () { return chunkNTUEFDSW_cjs.zapierCoreOptions; }
4344
4346
  });
4345
4347
  Object.defineProperty(exports, "zapierSdkPlugin", {
4346
4348
  enumerable: true,
4347
- get: function () { return chunkBU4ANX6G_cjs.zapierSdkPlugin; }
4349
+ get: function () { return chunkNTUEFDSW_cjs.zapierSdkPlugin; }
4348
4350
  });
4349
4351
  exports.createZapierSdk = createZapierSdk;
4350
4352
  exports.zapierExperimentalSdkPlugin = zapierExperimentalSdkPlugin;