@zapier/zapier-sdk 0.107.2 → 0.108.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkY7CGEGII_cjs = require('./chunk-Y7CGEGII.cjs');
3
+ var chunkHMEY72T6_cjs = require('./chunk-HMEY72T6.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 chunkY7CGEGII_cjs.ZapierValidationError(
55
+ throw new chunkHMEY72T6_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 chunkY7CGEGII_cjs.ZapierValidationError("trigger is missing selectedApi");
82
+ throw new chunkHMEY72T6_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 chunkY7CGEGII_cjs.ZapierValidationError(
103
+ throw new chunkHMEY72T6_cjs.ZapierValidationError(
104
104
  `appVersions["${key}"] is missing implementationName`
105
105
  );
106
106
  }
@@ -269,7 +269,7 @@ var ListWorkflowsApiResponseSchema = zod.z.object({
269
269
  var listWorkflowsPlugin = kitcore.defineMethod({
270
270
  ...codeSubstrateDefaults,
271
271
  name: "listWorkflows",
272
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
272
+ imports: [chunkHMEY72T6_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: chunkY7CGEGII_cjs.DEFAULT_PAGE_SIZE },
280
+ output: { type: "list", defaultPageSize: chunkHMEY72T6_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: [chunkY7CGEGII_cjs.apiPluginRef],
355
+ imports: [chunkHMEY72T6_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: chunkY7CGEGII_cjs.workflowIdResolver },
361
+ resolvers: { workflow: chunkHMEY72T6_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: [chunkY7CGEGII_cjs.apiPluginRef],
407
+ imports: [chunkHMEY72T6_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: [chunkY7CGEGII_cjs.apiPluginRef],
498
+ imports: [chunkHMEY72T6_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 = chunkY7CGEGII_cjs.extractErrorDetail(data);
528
- return new chunkY7CGEGII_cjs.ZapierApiError(
527
+ const detail = chunkHMEY72T6_cjs.extractErrorDetail(data);
528
+ return new chunkHMEY72T6_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: [chunkY7CGEGII_cjs.apiPluginRef],
566
+ imports: [chunkHMEY72T6_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: chunkY7CGEGII_cjs.workflowIdResolver },
573
+ resolvers: { workflow: chunkHMEY72T6_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: [chunkY7CGEGII_cjs.apiPluginRef],
606
+ imports: [chunkHMEY72T6_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: chunkY7CGEGII_cjs.workflowIdResolver },
613
+ resolvers: { workflow: chunkHMEY72T6_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: [chunkY7CGEGII_cjs.apiPluginRef],
641
+ imports: [chunkHMEY72T6_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: chunkY7CGEGII_cjs.workflowIdResolver },
648
+ resolvers: { workflow: chunkHMEY72T6_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: [chunkY7CGEGII_cjs.apiPluginRef],
675
+ imports: [chunkHMEY72T6_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: chunkY7CGEGII_cjs.workflowIdResolver },
683
+ resolvers: { workflow: chunkHMEY72T6_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: [chunkY7CGEGII_cjs.apiPluginRef],
747
+ imports: [chunkHMEY72T6_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: chunkY7CGEGII_cjs.DEFAULT_PAGE_SIZE },
755
+ output: { type: "list", defaultPageSize: chunkHMEY72T6_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: [chunkY7CGEGII_cjs.apiPluginRef],
869
+ imports: [chunkHMEY72T6_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: chunkY7CGEGII_cjs.durableRunIdResolver },
875
+ resolvers: { run: chunkHMEY72T6_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: [chunkY7CGEGII_cjs.apiPluginRef],
969
+ imports: [chunkHMEY72T6_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: [chunkY7CGEGII_cjs.apiPluginRef],
1026
+ imports: [chunkHMEY72T6_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: chunkY7CGEGII_cjs.durableRunIdResolver },
1033
+ resolvers: { run: chunkHMEY72T6_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: [chunkY7CGEGII_cjs.apiPluginRef],
1148
+ imports: [chunkHMEY72T6_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: chunkY7CGEGII_cjs.workflowIdResolver, sourceFiles: sourceFilesResolver },
1155
+ resolvers: { workflow: chunkHMEY72T6_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 chunkY7CGEGII_cjs.ZapierConflictError(
1210
- chunkY7CGEGII_cjs.extractErrorDetail(data) ?? "Workflow version publish conflict.",
1209
+ return new chunkHMEY72T6_cjs.ZapierConflictError(
1210
+ chunkHMEY72T6_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 chunkY7CGEGII_cjs.ZapierConflictError(
1215
+ return new chunkHMEY72T6_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: [chunkY7CGEGII_cjs.apiPluginRef],
1270
+ imports: [chunkHMEY72T6_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: chunkY7CGEGII_cjs.DEFAULT_PAGE_SIZE },
1279
- resolvers: { workflow: chunkY7CGEGII_cjs.workflowIdResolver },
1278
+ output: { type: "list", defaultPageSize: chunkHMEY72T6_cjs.DEFAULT_PAGE_SIZE },
1279
+ resolvers: { workflow: chunkHMEY72T6_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: [chunkY7CGEGII_cjs.apiPluginRef],
1314
+ imports: [chunkHMEY72T6_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: chunkY7CGEGII_cjs.workflowIdResolver,
1322
- version: chunkY7CGEGII_cjs.workflowVersionIdResolver
1321
+ workflow: chunkHMEY72T6_cjs.workflowIdResolver,
1322
+ version: chunkHMEY72T6_cjs.workflowVersionIdResolver
1323
1323
  },
1324
1324
  run: async ({ imports, input }) => {
1325
1325
  const api = imports.api;
@@ -1375,7 +1375,7 @@ var ListWorkflowDraftsApiResponseSchema = zod.z.object({
1375
1375
  var listWorkflowDraftsPlugin = kitcore.defineMethod({
1376
1376
  ...codeSubstrateDefaults,
1377
1377
  name: "listWorkflowDrafts",
1378
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
1378
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
1379
1379
  type: "list",
1380
1380
  itemType: "WorkflowDraft",
1381
1381
  inputSchema: ListWorkflowDraftsOptionsSchema,
@@ -1383,8 +1383,8 @@ var listWorkflowDraftsPlugin = kitcore.defineMethod({
1383
1383
  skipOutputValidation: true,
1384
1384
  // The handler already returns a clean `{ data, nextCursor }` page, so the
1385
1385
  // standard list output (no `adaptPage`) applies.
1386
- output: { type: "list", defaultPageSize: chunkY7CGEGII_cjs.DEFAULT_PAGE_SIZE },
1387
- resolvers: { workflow: chunkY7CGEGII_cjs.workflowIdResolver },
1386
+ output: { type: "list", defaultPageSize: chunkHMEY72T6_cjs.DEFAULT_PAGE_SIZE },
1387
+ resolvers: { workflow: chunkHMEY72T6_cjs.workflowIdResolver },
1388
1388
  run: async ({ imports, input }) => {
1389
1389
  const api = imports.api;
1390
1390
  const searchParams = {};
@@ -1425,15 +1425,15 @@ var GetWorkflowDraftResponseSchema = WorkflowDraftSchema;
1425
1425
  var getWorkflowDraftPlugin = kitcore.defineMethod({
1426
1426
  ...codeSubstrateDefaults,
1427
1427
  name: "getWorkflowDraft",
1428
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
1428
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
1429
1429
  itemType: "WorkflowDraft",
1430
1430
  inputSchema: GetWorkflowDraftOptionsSchema,
1431
1431
  outputSchema: GetWorkflowDraftResponseSchema,
1432
1432
  skipOutputValidation: true,
1433
1433
  output: "item",
1434
1434
  resolvers: {
1435
- workflow: chunkY7CGEGII_cjs.workflowIdResolver,
1436
- draft: chunkY7CGEGII_cjs.workflowDraftIdResolver
1435
+ workflow: chunkHMEY72T6_cjs.workflowIdResolver,
1436
+ draft: chunkHMEY72T6_cjs.workflowDraftIdResolver
1437
1437
  },
1438
1438
  run: async ({ imports, input }) => {
1439
1439
  const api = imports.api;
@@ -1461,14 +1461,14 @@ var CreateWorkflowDraftResponseSchema = WorkflowDraftSchema;
1461
1461
  var createWorkflowDraftPlugin = kitcore.defineMethod({
1462
1462
  ...codeSubstrateDefaults,
1463
1463
  name: "createWorkflowDraft",
1464
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
1464
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
1465
1465
  type: "create",
1466
1466
  itemType: "WorkflowDraft",
1467
1467
  inputSchema: CreateWorkflowDraftOptionsSchema,
1468
1468
  outputSchema: CreateWorkflowDraftResponseSchema,
1469
1469
  skipOutputValidation: true,
1470
1470
  output: "item",
1471
- resolvers: { workflow: chunkY7CGEGII_cjs.workflowIdResolver },
1471
+ resolvers: { workflow: chunkHMEY72T6_cjs.workflowIdResolver },
1472
1472
  run: async ({ imports, input }) => {
1473
1473
  const api = imports.api;
1474
1474
  const body = {};
@@ -1521,7 +1521,7 @@ var UpdateWorkflowDraftResponseSchema = WorkflowDraftSchema;
1521
1521
  var updateWorkflowDraftPlugin = kitcore.defineMethod({
1522
1522
  ...codeSubstrateDefaults,
1523
1523
  name: "updateWorkflowDraft",
1524
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
1524
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
1525
1525
  type: "update",
1526
1526
  itemType: "WorkflowDraft",
1527
1527
  inputSchema: UpdateWorkflowDraftOptionsSchema,
@@ -1529,8 +1529,8 @@ var updateWorkflowDraftPlugin = kitcore.defineMethod({
1529
1529
  skipOutputValidation: true,
1530
1530
  output: "item",
1531
1531
  resolvers: {
1532
- workflow: chunkY7CGEGII_cjs.workflowIdResolver,
1533
- draft: chunkY7CGEGII_cjs.workflowDraftIdResolver,
1532
+ workflow: chunkHMEY72T6_cjs.workflowIdResolver,
1533
+ draft: chunkHMEY72T6_cjs.workflowDraftIdResolver,
1534
1534
  sourceFiles: sourceFilesResolver
1535
1535
  },
1536
1536
  run: async ({ imports, input }) => {
@@ -1575,8 +1575,8 @@ var updateWorkflowDraftPlugin = kitcore.defineMethod({
1575
1575
  // re-read the draft, and retry instead of blind-overwriting.
1576
1576
  customErrorHandler: ({ status, data }) => {
1577
1577
  if (status === 409) {
1578
- const detail = chunkY7CGEGII_cjs.extractErrorDetail(data);
1579
- return new chunkY7CGEGII_cjs.ZapierConflictError(
1578
+ const detail = chunkHMEY72T6_cjs.extractErrorDetail(data);
1579
+ return new chunkHMEY72T6_cjs.ZapierConflictError(
1580
1580
  `${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
1581
  { statusCode: status, resourceType: "workflow-draft" }
1582
1582
  );
@@ -1600,7 +1600,7 @@ var DiscardWorkflowDraftResponseSchema = WorkflowDraftSchema;
1600
1600
  var discardWorkflowDraftPlugin = kitcore.defineMethod({
1601
1601
  ...codeSubstrateDefaults,
1602
1602
  name: "discardWorkflowDraft",
1603
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
1603
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
1604
1604
  type: "delete",
1605
1605
  itemType: "WorkflowDraft",
1606
1606
  // Soft delete returns the discarded draft, not the `{ success: boolean }`
@@ -1614,8 +1614,8 @@ var discardWorkflowDraftPlugin = kitcore.defineMethod({
1614
1614
  skipOutputValidation: true,
1615
1615
  output: "item",
1616
1616
  resolvers: {
1617
- workflow: chunkY7CGEGII_cjs.workflowIdResolver,
1618
- draft: chunkY7CGEGII_cjs.workflowDraftIdResolver
1617
+ workflow: chunkHMEY72T6_cjs.workflowIdResolver,
1618
+ draft: chunkHMEY72T6_cjs.workflowDraftIdResolver
1619
1619
  },
1620
1620
  run: async ({ imports, input }) => {
1621
1621
  const api = imports.api;
@@ -1658,7 +1658,7 @@ var PublishWorkflowDraftResponseSchema = zod.z.object({
1658
1658
  var publishWorkflowDraftPlugin = kitcore.defineMethod({
1659
1659
  ...codeSubstrateDefaults,
1660
1660
  name: "publishWorkflowDraft",
1661
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
1661
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
1662
1662
  type: "create",
1663
1663
  itemType: "WorkflowVersion",
1664
1664
  // The response is the composite `{ draft, version }`, not the bare
@@ -1669,8 +1669,8 @@ var publishWorkflowDraftPlugin = kitcore.defineMethod({
1669
1669
  skipOutputValidation: true,
1670
1670
  output: "item",
1671
1671
  resolvers: {
1672
- workflow: chunkY7CGEGII_cjs.workflowIdResolver,
1673
- draft: chunkY7CGEGII_cjs.workflowDraftIdResolver
1672
+ workflow: chunkHMEY72T6_cjs.workflowIdResolver,
1673
+ draft: chunkHMEY72T6_cjs.workflowDraftIdResolver
1674
1674
  },
1675
1675
  run: async ({ imports, input }) => {
1676
1676
  const api = imports.api;
@@ -1703,15 +1703,15 @@ var publishWorkflowDraftPlugin = kitcore.defineMethod({
1703
1703
  // to ZapierValidationError via the client's default handling.
1704
1704
  customErrorHandler: ({ status, data }) => {
1705
1705
  if (status === 409) {
1706
- const detail = chunkY7CGEGII_cjs.extractErrorDetail(data);
1707
- return new chunkY7CGEGII_cjs.ZapierConflictError(
1706
+ const detail = chunkHMEY72T6_cjs.extractErrorDetail(data);
1707
+ return new chunkHMEY72T6_cjs.ZapierConflictError(
1708
1708
  `${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
1709
  { statusCode: status, resourceType: "workflow-draft" }
1710
1710
  );
1711
1711
  }
1712
1712
  if (status === 503) {
1713
- const detail = chunkY7CGEGII_cjs.extractErrorDetail(data);
1714
- return new chunkY7CGEGII_cjs.ZapierApiError(
1713
+ const detail = chunkHMEY72T6_cjs.extractErrorDetail(data);
1714
+ return new chunkHMEY72T6_cjs.ZapierApiError(
1715
1715
  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
1716
  { statusCode: status }
1717
1717
  );
@@ -1772,7 +1772,7 @@ var ListWorkflowRunsApiResponseSchema = zod.z.object({
1772
1772
  var listWorkflowRunsPlugin = kitcore.defineMethod({
1773
1773
  ...codeSubstrateDefaults,
1774
1774
  name: "listWorkflowRuns",
1775
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
1775
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
1776
1776
  type: "list",
1777
1777
  itemType: "WorkflowRun",
1778
1778
  inputSchema: ListWorkflowRunsOptionsSchema,
@@ -1780,8 +1780,8 @@ var listWorkflowRunsPlugin = kitcore.defineMethod({
1780
1780
  skipOutputValidation: true,
1781
1781
  // The handler already returns a clean `{ data, nextCursor }` page, so the
1782
1782
  // standard list output (no `adaptPage`) applies.
1783
- output: { type: "list", defaultPageSize: chunkY7CGEGII_cjs.DEFAULT_PAGE_SIZE },
1784
- resolvers: { workflow: chunkY7CGEGII_cjs.workflowIdResolver },
1783
+ output: { type: "list", defaultPageSize: chunkHMEY72T6_cjs.DEFAULT_PAGE_SIZE },
1784
+ resolvers: { workflow: chunkHMEY72T6_cjs.workflowIdResolver },
1785
1785
  run: async ({ imports, input }) => {
1786
1786
  const api = imports.api;
1787
1787
  const searchParams = {};
@@ -1837,15 +1837,15 @@ var GetWorkflowRunResponseSchema = zod.z.object({
1837
1837
  var getWorkflowRunPlugin = kitcore.defineMethod({
1838
1838
  ...codeSubstrateDefaults,
1839
1839
  name: "getWorkflowRun",
1840
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
1840
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
1841
1841
  itemType: "WorkflowRun",
1842
1842
  inputSchema: GetWorkflowRunOptionsSchema,
1843
1843
  outputSchema: GetWorkflowRunResponseSchema,
1844
1844
  skipOutputValidation: true,
1845
1845
  output: "item",
1846
1846
  resolvers: {
1847
- workflow: chunkY7CGEGII_cjs.workflowIdResolver,
1848
- run: chunkY7CGEGII_cjs.workflowRunIdResolver
1847
+ workflow: chunkHMEY72T6_cjs.workflowIdResolver,
1848
+ run: chunkHMEY72T6_cjs.workflowRunIdResolver
1849
1849
  },
1850
1850
  run: async ({ imports, input }) => {
1851
1851
  const api = imports.api;
@@ -1882,7 +1882,7 @@ var GetTriggerRunResponseSchema = zod.z.object({
1882
1882
  var getTriggerRunPlugin = kitcore.defineMethod({
1883
1883
  ...codeSubstrateDefaults,
1884
1884
  name: "getTriggerRun",
1885
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
1885
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
1886
1886
  itemType: "WorkflowRun",
1887
1887
  inputSchema: GetTriggerRunOptionsSchema,
1888
1888
  outputSchema: GetTriggerRunResponseSchema,
@@ -1925,14 +1925,14 @@ var TriggerWorkflowResponseSchema = zod.z.object({
1925
1925
  var triggerWorkflowPlugin = kitcore.defineMethod({
1926
1926
  ...codeSubstrateDefaults,
1927
1927
  name: "triggerWorkflow",
1928
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
1928
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
1929
1929
  type: "create",
1930
1930
  itemType: "WorkflowRun",
1931
1931
  inputSchema: TriggerWorkflowOptionsSchema,
1932
1932
  outputSchema: TriggerWorkflowResponseSchema,
1933
1933
  skipOutputValidation: true,
1934
1934
  output: "item",
1935
- resolvers: { workflow: chunkY7CGEGII_cjs.workflowIdResolver },
1935
+ resolvers: { workflow: chunkHMEY72T6_cjs.workflowIdResolver },
1936
1936
  run: async ({ imports, input }) => {
1937
1937
  const api = imports.api;
1938
1938
  const rawWorkflow = await api.get(
@@ -1946,7 +1946,7 @@ var triggerWorkflowPlugin = kitcore.defineMethod({
1946
1946
  const segments = new URL(workflow.trigger_url).pathname.split("/");
1947
1947
  const triggerToken = segments[segments.length - 1];
1948
1948
  if (!triggerToken) {
1949
- throw new chunkY7CGEGII_cjs.ZapierApiError(
1949
+ throw new chunkHMEY72T6_cjs.ZapierApiError(
1950
1950
  `Workflow ${input.workflow} returned a malformed trigger_url`,
1951
1951
  { statusCode: 0, response: workflow.trigger_url }
1952
1952
  );
@@ -2025,7 +2025,7 @@ var ValidateWorkflowResponseSchema = zod.z.object({
2025
2025
  var validateWorkflowPlugin = kitcore.defineMethod({
2026
2026
  ...codeSubstrateDefaults,
2027
2027
  name: "validateWorkflow",
2028
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
2028
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
2029
2029
  itemType: "WorkflowValidation",
2030
2030
  inputSchema: ValidateWorkflowOptionsSchema,
2031
2031
  outputSchema: ValidateWorkflowResponseSchema,
@@ -2072,7 +2072,7 @@ function handleFormsAccessError({
2072
2072
  if (status !== 403 || firstErrorDetail(data) !== FORMS_ACCESS_DENIED_DETAIL) {
2073
2073
  return void 0;
2074
2074
  }
2075
- return new chunkY7CGEGII_cjs.ZapierConfigurationError(
2075
+ return new chunkHMEY72T6_cjs.ZapierConfigurationError(
2076
2076
  `${FORMS_ACCESS_DENIED_DETAIL} Request access through Zapier support at https://zapier.com/app/get-help.`,
2077
2077
  { statusCode: status }
2078
2078
  );
@@ -2150,7 +2150,7 @@ function assertUniqueKeys(keys, fields) {
2150
2150
  const label = fields[index]?.label ?? "";
2151
2151
  const previous = seen.get(key);
2152
2152
  if (previous !== void 0) {
2153
- throw new chunkY7CGEGII_cjs.ZapierValidationError(
2153
+ throw new chunkHMEY72T6_cjs.ZapierValidationError(
2154
2154
  `Fields "${previous}" and "${label}" both derive the submission key "${key}". Give them labels that differ by more than punctuation or casing.`,
2155
2155
  { details: { key, labels: [previous, label] } }
2156
2156
  );
@@ -2356,7 +2356,7 @@ var CreateFormSchema = zod.z.object({
2356
2356
  var createFormPlugin = kitcore.defineMethod({
2357
2357
  ...humanInputDefaults,
2358
2358
  name: "createForm",
2359
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
2359
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
2360
2360
  type: "create",
2361
2361
  itemType: "Form",
2362
2362
  inputSchema: CreateFormSchema,
@@ -2447,8 +2447,8 @@ var EnableAgenticManagementItemSchema = zod.z.object({
2447
2447
  var enableAgenticManagementPlugin = kitcore.defineMethod({
2448
2448
  ...agenticManagementDefaults,
2449
2449
  name: "enableAgenticManagement",
2450
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
2451
- resolvers: { workflow: chunkY7CGEGII_cjs.workflowIdResolver },
2450
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
2451
+ resolvers: { workflow: chunkHMEY72T6_cjs.workflowIdResolver },
2452
2452
  type: "create",
2453
2453
  itemType: "AgenticManagementEnableResult",
2454
2454
  inputSchema: EnableAgenticManagementSchema,
@@ -2489,8 +2489,8 @@ var DisableAgenticManagementItemSchema = zod.z.object({
2489
2489
  var disableAgenticManagementPlugin = kitcore.defineMethod({
2490
2490
  ...agenticManagementDefaults,
2491
2491
  name: "disableAgenticManagement",
2492
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
2493
- resolvers: { workflow: chunkY7CGEGII_cjs.workflowIdResolver },
2492
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
2493
+ resolvers: { workflow: chunkHMEY72T6_cjs.workflowIdResolver },
2494
2494
  type: "delete",
2495
2495
  confirm: "delete",
2496
2496
  itemType: "AgenticManagementDisableResult",
@@ -2535,8 +2535,8 @@ var GetAgenticManagementConfigItemSchema = zod.z.object({
2535
2535
  var getAgenticManagementConfigPlugin = kitcore.defineMethod({
2536
2536
  ...agenticManagementDefaults,
2537
2537
  name: "getAgenticManagementConfig",
2538
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
2539
- resolvers: { workflow: chunkY7CGEGII_cjs.workflowIdResolver },
2538
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
2539
+ resolvers: { workflow: chunkHMEY72T6_cjs.workflowIdResolver },
2540
2540
  type: "item",
2541
2541
  itemType: "AgenticManagementConfig",
2542
2542
  inputSchema: GetAgenticManagementConfigSchema,
@@ -2582,8 +2582,8 @@ var UpdateAgenticManagementConfigItemSchema = zod.z.object({
2582
2582
  var updateAgenticManagementConfigPlugin = kitcore.defineMethod({
2583
2583
  ...agenticManagementDefaults,
2584
2584
  name: "updateAgenticManagementConfig",
2585
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
2586
- resolvers: { workflow: chunkY7CGEGII_cjs.workflowIdResolver },
2585
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
2586
+ resolvers: { workflow: chunkHMEY72T6_cjs.workflowIdResolver },
2587
2587
  type: "update",
2588
2588
  itemType: "AgenticManagementConfig",
2589
2589
  inputSchema: UpdateAgenticManagementConfigSchema,
@@ -2620,8 +2620,8 @@ var GetAgenticManagementIntentSchema = zod.z.object({
2620
2620
  var getAgenticManagementIntentPlugin = kitcore.defineMethod({
2621
2621
  ...agenticManagementDefaults,
2622
2622
  name: "getAgenticManagementIntent",
2623
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
2624
- resolvers: { workflow: chunkY7CGEGII_cjs.workflowIdResolver },
2623
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
2624
+ resolvers: { workflow: chunkHMEY72T6_cjs.workflowIdResolver },
2625
2625
  type: "item",
2626
2626
  itemType: "AgenticManagementIntent",
2627
2627
  inputSchema: GetAgenticManagementIntentSchema,
@@ -2664,8 +2664,8 @@ var UpdateAgenticManagementIntentSchema = zod.z.object({
2664
2664
  var updateAgenticManagementIntentPlugin = kitcore.defineMethod({
2665
2665
  ...agenticManagementDefaults,
2666
2666
  name: "updateAgenticManagementIntent",
2667
- imports: [chunkY7CGEGII_cjs.apiPluginRef],
2668
- resolvers: { workflow: chunkY7CGEGII_cjs.workflowIdResolver },
2667
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
2668
+ resolvers: { workflow: chunkHMEY72T6_cjs.workflowIdResolver },
2669
2669
  type: "update",
2670
2670
  itemType: "AgenticManagementIntent",
2671
2671
  inputSchema: UpdateAgenticManagementIntentSchema,
@@ -2691,13 +2691,480 @@ var updateAgenticManagementIntentPlugin = kitcore.defineMethod({
2691
2691
  return { data };
2692
2692
  }
2693
2693
  });
2694
+ var fsDirectoryEntryFormatter = kitcore.defineFormatter({
2695
+ format: ({ item }) => ({
2696
+ title: item.path,
2697
+ details: [
2698
+ { label: "type", text: item.type, style: "normal" },
2699
+ ...item.size !== void 0 ? [
2700
+ {
2701
+ label: "size",
2702
+ text: `${item.size} bytes`,
2703
+ style: "normal"
2704
+ }
2705
+ ] : [],
2706
+ ...item.version !== void 0 ? [
2707
+ {
2708
+ label: "version",
2709
+ text: String(item.version),
2710
+ style: "normal"
2711
+ }
2712
+ ] : [],
2713
+ ...item.updated_at ? [{ label: "updated", text: item.updated_at, style: "dim" }] : []
2714
+ ]
2715
+ })
2716
+ });
2717
+
2718
+ // src/plugins/vfs/shared.ts
2719
+ var vfsDefaults = {
2720
+ // `titlePlural` is set explicitly so the generated docs heading reads
2721
+ // "Virtual File System", not the auto-pluralized "Virtual File Systems".
2722
+ categories: [
2723
+ {
2724
+ key: "vfs",
2725
+ title: "Virtual File System",
2726
+ titlePlural: "Virtual File System"
2727
+ }
2728
+ ],
2729
+ stability: "experimental"
2730
+ };
2731
+ var VFS_PATH_PREFIX = "/vfs/v1";
2732
+ var VFS_NAME = "Zapier Virtual File System (VFS)";
2733
+ var VFS_MAX_CONTENT_BYTES = 10485760;
2734
+ function absolutePathSchema({
2735
+ label,
2736
+ example = "/Mine/notes.md"
2737
+ }) {
2738
+ return zod.z.string().startsWith("/", {
2739
+ message: `${label} must start with '/' \u2014 paths are absolute.`
2740
+ }).meta({ example });
2741
+ }
2742
+ var FsWriteResultSchema = zod.z.object({
2743
+ path: zod.z.string().describe("Absolute path of the written file."),
2744
+ version: zod.z.number().int().min(1).describe("Monotonic version stamped by the server on this write."),
2745
+ action: zod.z.enum(["created", "updated"]).describe(
2746
+ "Whether the write created a new file or updated an existing one."
2747
+ ),
2748
+ warnings: zod.z.array(zod.z.string()).optional().describe(
2749
+ "Non-fatal issues the server surfaced alongside the successful write."
2750
+ )
2751
+ });
2752
+ var FsMkdirResultSchema = zod.z.object({
2753
+ path: zod.z.string().describe("Absolute path of the created directory."),
2754
+ action: zod.z.enum(["created", "updated"]).describe(
2755
+ "Whether the directory was newly created or already existed (idempotent)."
2756
+ )
2757
+ });
2758
+ var FsDeleteResultSchema = zod.z.object({
2759
+ path: zod.z.string().describe("Absolute path that was removed from the live tree.")
2760
+ });
2761
+ var FsMoveResultSchema = zod.z.object({
2762
+ from: zod.z.string().describe("Absolute source path (before the move)."),
2763
+ to: zod.z.string().describe("Absolute destination path (after the move).")
2764
+ });
2765
+ var FsDirectoryEntrySchema = zod.z.object({
2766
+ type: zod.z.enum(["file", "directory", "shortcut", "stream"]).describe("Kind of entry. `shortcut` points at a `target_*` sibling."),
2767
+ name: zod.z.string().describe("Basename of the entry (the segment after the last `/`)."),
2768
+ path: zod.z.string().describe("Absolute path of the entry."),
2769
+ size: zod.z.number().int().min(0).optional().describe(
2770
+ "Content size in bytes. Present for files; absent for directories."
2771
+ ),
2772
+ version: zod.z.number().int().min(1).optional().describe("Monotonic version for the underlying file, when applicable."),
2773
+ updated_at: zod.z.string().optional().describe("ISO-8601 timestamp of the last modification."),
2774
+ target_type: zod.z.enum(["file", "directory", "stream"]).nullable().optional().describe(
2775
+ "For `shortcut` entries: the kind of resource the shortcut points at."
2776
+ ),
2777
+ target_path: zod.z.string().nullable().optional().describe(
2778
+ "For `shortcut` entries: the absolute path the shortcut points at."
2779
+ ),
2780
+ accessible: zod.z.boolean().optional().describe(
2781
+ "Whether the caller can read the target. Only meaningful for shortcuts."
2782
+ ),
2783
+ content_type: zod.z.string().optional().describe(
2784
+ "MIME type of a file's content, when the server can determine one."
2785
+ )
2786
+ });
2787
+
2788
+ // src/plugins/vfs/readVfsFile/schemas.ts
2789
+ var ReadVfsFileSchema = zod.z.object({
2790
+ path: absolutePathSchema({ label: "Path" }).describe(
2791
+ "Absolute path of the file to read (must start with `/`)."
2792
+ ),
2793
+ maxBytes: zod.z.number().int().min(1).max(VFS_MAX_CONTENT_BYTES).optional().describe(
2794
+ "Optional cap on returned content length, in bytes. Files are capped at 10 MB, so values above that have no effect."
2795
+ )
2796
+ }).describe(
2797
+ "Read a file from the " + VFS_NAME + ", the file store behind your context repository. Paths are absolute, e.g. `/Mine/notes.md`. Returns the content as a UTF-8 string with its size, version, and last-modified time."
2798
+ );
2799
+ var ReadVfsFileItemSchema = zod.z.object({
2800
+ type: zod.z.literal("file").describe("Discriminator \u2014 always `file` for a file read."),
2801
+ path: zod.z.string().describe("Absolute path of the file that was read."),
2802
+ name: zod.z.string().describe("Basename of the file (the segment after the last `/`)."),
2803
+ content: zod.z.string().describe(
2804
+ "File content as a UTF-8 string, truncated to `maxBytes` when requested."
2805
+ ),
2806
+ size: zod.z.number().int().min(0).describe(
2807
+ "Total content size in bytes (independent of any `maxBytes` truncation)."
2808
+ ),
2809
+ version: zod.z.number().int().min(1).describe("Monotonic version for the file at read time."),
2810
+ updated_at: zod.z.string().describe("ISO-8601 timestamp of the last modification."),
2811
+ canonical_path: zod.z.string().optional().describe(
2812
+ "Absolute path the server resolved after following any shortcut."
2813
+ )
2814
+ });
2815
+
2816
+ // src/plugins/vfs/readVfsFile/index.ts
2817
+ var readVfsFilePlugin = kitcore.defineMethod({
2818
+ ...vfsDefaults,
2819
+ name: "readVfsFile",
2820
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
2821
+ itemType: "VfsFile",
2822
+ inputSchema: ReadVfsFileSchema,
2823
+ outputSchema: ReadVfsFileItemSchema,
2824
+ output: "item",
2825
+ formatter: fsDirectoryEntryFormatter,
2826
+ run: async ({ imports, input }) => {
2827
+ const searchParams = { path: input.path };
2828
+ if (input.maxBytes !== void 0) {
2829
+ searchParams.max_bytes = String(input.maxBytes);
2830
+ }
2831
+ const data = await imports.api.get(
2832
+ `${VFS_PATH_PREFIX}/files`,
2833
+ {
2834
+ authRequired: true,
2835
+ searchParams,
2836
+ resource: { type: "vfs_path", id: input.path }
2837
+ }
2838
+ );
2839
+ return { data };
2840
+ }
2841
+ });
2842
+ var fsWriteResultFormatter = kitcore.defineFormatter({
2843
+ format: ({ item }) => ({
2844
+ title: item.path,
2845
+ details: [
2846
+ { label: "action", text: item.action, style: "normal" },
2847
+ {
2848
+ label: "version",
2849
+ text: String(item.version),
2850
+ style: "normal"
2851
+ },
2852
+ ...item.warnings?.length ? [
2853
+ {
2854
+ label: "warnings",
2855
+ text: item.warnings.join("; "),
2856
+ style: "dim"
2857
+ }
2858
+ ] : []
2859
+ ]
2860
+ })
2861
+ });
2862
+ var WriteVfsFileSchema = zod.z.object({
2863
+ path: absolutePathSchema({ label: "Path" }).describe(
2864
+ "Absolute path of the file (must start with `/`)."
2865
+ ),
2866
+ content: zod.z.string().max(VFS_MAX_CONTENT_BYTES).describe("New file contents. Capped at 10 MB per call."),
2867
+ expectedVersion: zod.z.number().int().min(0).optional().describe(
2868
+ "Optional expected current version for optimistic concurrency. The write fails if the file's actual version differs. Pass `0` to assert the file does not exist yet (versions start at 1)."
2869
+ )
2870
+ }).describe(
2871
+ "Write (create or overwrite) a file in the " + VFS_NAME + ". Paths are absolute (e.g. `/Mine/notes.md`); missing parent directories are created automatically."
2872
+ );
2873
+ var WriteVfsFileItemSchema = FsWriteResultSchema;
2874
+
2875
+ // src/plugins/vfs/writeVfsFile/index.ts
2876
+ var writeVfsFilePlugin = kitcore.defineMethod({
2877
+ ...vfsDefaults,
2878
+ name: "writeVfsFile",
2879
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
2880
+ itemType: "VfsWriteResult",
2881
+ inputSchema: WriteVfsFileSchema,
2882
+ outputSchema: WriteVfsFileItemSchema,
2883
+ output: "item",
2884
+ formatter: fsWriteResultFormatter,
2885
+ run: async ({ imports, input }) => {
2886
+ const body = {
2887
+ path: input.path,
2888
+ content: input.content
2889
+ };
2890
+ if (input.expectedVersion !== void 0) {
2891
+ body.expected_version = input.expectedVersion;
2892
+ }
2893
+ const data = await imports.api.put(
2894
+ `${VFS_PATH_PREFIX}/files`,
2895
+ body,
2896
+ {
2897
+ authRequired: true,
2898
+ resource: { type: "vfs_path", id: input.path }
2899
+ }
2900
+ );
2901
+ return { data };
2902
+ }
2903
+ });
2904
+ var AppendVfsFileSchema = zod.z.object({
2905
+ path: absolutePathSchema({ label: "Path" }).describe(
2906
+ "Absolute path of the file (must start with `/`)."
2907
+ ),
2908
+ content: zod.z.string().max(VFS_MAX_CONTENT_BYTES).describe(
2909
+ "Content to append. Capped at 10 MB per call, and the resulting file must also fit under 10 MB."
2910
+ )
2911
+ }).describe(
2912
+ "Append content to a file in the " + VFS_NAME + ". Creates the file if it doesn't exist; missing parent directories are created automatically. Safer than reading the file and rewriting it \u2014 appends server-side without a read/write round-trip. Paths are absolute (e.g. `/Mine/log.md`)."
2913
+ );
2914
+ var AppendVfsFileItemSchema = FsWriteResultSchema;
2915
+
2916
+ // src/plugins/vfs/appendVfsFile/index.ts
2917
+ var appendVfsFilePlugin = kitcore.defineMethod({
2918
+ ...vfsDefaults,
2919
+ name: "appendVfsFile",
2920
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
2921
+ itemType: "VfsWriteResult",
2922
+ inputSchema: AppendVfsFileSchema,
2923
+ outputSchema: AppendVfsFileItemSchema,
2924
+ output: "item",
2925
+ formatter: fsWriteResultFormatter,
2926
+ run: async ({ imports, input }) => {
2927
+ const data = await imports.api.post(
2928
+ `${VFS_PATH_PREFIX}/files/append`,
2929
+ { path: input.path, content: input.content },
2930
+ {
2931
+ authRequired: true,
2932
+ resource: { type: "vfs_path", id: input.path }
2933
+ }
2934
+ );
2935
+ return { data };
2936
+ }
2937
+ });
2938
+ var CopyVfsFileSchema = zod.z.object({
2939
+ from: absolutePathSchema({ label: "from" }).describe(
2940
+ "Absolute path of the source file."
2941
+ ),
2942
+ to: absolutePathSchema({
2943
+ label: "to",
2944
+ example: "/Mine/notes-copy.md"
2945
+ }).describe("Absolute path of the destination file."),
2946
+ overwrite: zod.z.boolean().optional().describe(
2947
+ "When `true`, replace any existing file at `to`. Default `false` fails if `to` already exists."
2948
+ ),
2949
+ expectedVersion: zod.z.number().int().min(1).optional().describe(
2950
+ "Optional version pin for the destination. Requires `overwrite: true` and an existing file at `to`; the replace only succeeds if the destination's current version matches, otherwise the call fails."
2951
+ )
2952
+ }).describe(
2953
+ "Copy a file to a new path in the " + VFS_NAME + ". Both `from` and `to` are absolute file paths (e.g. `/Mine/notes.md`), not directories."
2954
+ );
2955
+ var CopyVfsFileItemSchema = FsWriteResultSchema;
2956
+
2957
+ // src/plugins/vfs/copyVfsFile/index.ts
2958
+ var copyVfsFilePlugin = kitcore.defineMethod({
2959
+ ...vfsDefaults,
2960
+ name: "copyVfsFile",
2961
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
2962
+ itemType: "VfsWriteResult",
2963
+ inputSchema: CopyVfsFileSchema,
2964
+ outputSchema: CopyVfsFileItemSchema,
2965
+ output: "item",
2966
+ formatter: fsWriteResultFormatter,
2967
+ run: async ({ imports, input }) => {
2968
+ const body = { from: input.from, to: input.to };
2969
+ if (input.overwrite !== void 0) body.overwrite = input.overwrite;
2970
+ if (input.expectedVersion !== void 0) {
2971
+ body.expected_version = input.expectedVersion;
2972
+ }
2973
+ const data = await imports.api.post(
2974
+ `${VFS_PATH_PREFIX}/files/copy`,
2975
+ body,
2976
+ {
2977
+ authRequired: true,
2978
+ resource: { type: "vfs_path", id: input.from }
2979
+ }
2980
+ );
2981
+ return { data };
2982
+ }
2983
+ });
2984
+ var ListVfsDirectorySchema = zod.z.object({
2985
+ path: absolutePathSchema({ label: "Path", example: "/Mine" }).describe(
2986
+ "Absolute path of the directory (must start with `/`)."
2987
+ ),
2988
+ pageSize: zod.z.number().int().min(1).max(500).optional().describe("Entries per page (default 50, max 500)."),
2989
+ maxItems: zod.z.number().int().min(1).optional().describe("Maximum total entries to return across all pages."),
2990
+ cursor: zod.z.string().optional().describe("Cursor to resume from, as returned in `nextCursor`.")
2991
+ }).describe(
2992
+ "List one page of a directory's contents in the " + VFS_NAME + ". Paths are absolute (e.g. `/Mine`). Pass the previous page's `nextCursor` back in `cursor` to fetch the next page."
2993
+ );
2994
+
2995
+ // src/plugins/vfs/listVfsDirectory/index.ts
2996
+ var listVfsDirectoryPlugin = kitcore.defineMethod({
2997
+ ...vfsDefaults,
2998
+ name: "listVfsDirectory",
2999
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
3000
+ type: "list",
3001
+ itemType: "VfsDirectoryEntry",
3002
+ inputSchema: ListVfsDirectorySchema,
3003
+ outputSchema: FsDirectoryEntrySchema,
3004
+ output: "list",
3005
+ formatter: fsDirectoryEntryFormatter,
3006
+ run: async ({ imports, input }) => {
3007
+ const searchParams = { path: input.path };
3008
+ if (input.pageSize !== void 0) {
3009
+ searchParams.limit = String(input.pageSize);
3010
+ }
3011
+ if (input.cursor !== void 0) {
3012
+ searchParams.cursor = input.cursor;
3013
+ }
3014
+ const page = await imports.api.get(
3015
+ `${VFS_PATH_PREFIX}/directories`,
3016
+ {
3017
+ authRequired: true,
3018
+ searchParams,
3019
+ resource: { type: "vfs_path", id: input.path }
3020
+ }
3021
+ );
3022
+ return {
3023
+ data: page.results,
3024
+ nextCursor: page.meta.next_cursor ?? void 0
3025
+ };
3026
+ }
3027
+ });
3028
+ var CreateVfsDirectorySchema = zod.z.object({
3029
+ path: absolutePathSchema({
3030
+ label: "Path",
3031
+ example: "/Mine/notes"
3032
+ }).describe("Absolute path of the directory (must start with `/`).")
3033
+ }).describe(
3034
+ "Create a directory in the " + VFS_NAME + ". Paths are absolute (e.g. `/Mine/notes`). Idempotent \u2014 safe to call on an existing directory."
3035
+ );
3036
+ var CreateVfsDirectoryItemSchema = FsMkdirResultSchema;
3037
+
3038
+ // src/plugins/vfs/createVfsDirectory/index.ts
3039
+ var createVfsDirectoryPlugin = kitcore.defineMethod({
3040
+ ...vfsDefaults,
3041
+ name: "createVfsDirectory",
3042
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
3043
+ itemType: "VfsMkdirResult",
3044
+ inputSchema: CreateVfsDirectorySchema,
3045
+ outputSchema: CreateVfsDirectoryItemSchema,
3046
+ output: "item",
3047
+ run: async ({ imports, input }) => {
3048
+ const data = await imports.api.put(
3049
+ `${VFS_PATH_PREFIX}/directories`,
3050
+ { path: input.path },
3051
+ {
3052
+ authRequired: true,
3053
+ resource: { type: "vfs_path", id: input.path }
3054
+ }
3055
+ );
3056
+ return { data };
3057
+ }
3058
+ });
3059
+ var StatVfsPathSchema = zod.z.object({
3060
+ path: absolutePathSchema({ label: "Path" }).describe(
3061
+ "Absolute path to stat (must start with `/`)."
3062
+ )
3063
+ }).describe(
3064
+ "Inspect metadata for any path (file, directory, shortcut, or stream) in the " + VFS_NAME + ". Paths are absolute (e.g. `/Mine/notes.md`). Check the `type` field before reading fields that only exist for certain types."
3065
+ );
3066
+ var StatVfsPathItemSchema = FsDirectoryEntrySchema;
3067
+
3068
+ // src/plugins/vfs/statVfsPath/index.ts
3069
+ var statVfsPathPlugin = kitcore.defineMethod({
3070
+ ...vfsDefaults,
3071
+ name: "statVfsPath",
3072
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
3073
+ itemType: "VfsStat",
3074
+ inputSchema: StatVfsPathSchema,
3075
+ outputSchema: StatVfsPathItemSchema,
3076
+ output: "item",
3077
+ formatter: fsDirectoryEntryFormatter,
3078
+ run: async ({ imports, input }) => {
3079
+ const data = await imports.api.get(
3080
+ `${VFS_PATH_PREFIX}/paths`,
3081
+ {
3082
+ authRequired: true,
3083
+ searchParams: { path: input.path },
3084
+ resource: { type: "vfs_path", id: input.path }
3085
+ }
3086
+ );
3087
+ return { data };
3088
+ }
3089
+ });
3090
+ var DeleteVfsPathSchema = zod.z.object({
3091
+ path: absolutePathSchema({ label: "Path" }).describe(
3092
+ "Absolute path to delete (must start with `/`)."
3093
+ )
3094
+ }).describe(
3095
+ "Delete a file or directory in the " + VFS_NAME + ". Works on either; paths are absolute (e.g. `/Mine/notes.md`). Deletes are recoverable \u2014 contact Zapier support to restore an entry."
3096
+ );
3097
+ var DeleteVfsPathItemSchema = FsDeleteResultSchema;
3098
+
3099
+ // src/plugins/vfs/deleteVfsPath/index.ts
3100
+ var deleteVfsPathPlugin = kitcore.defineMethod({
3101
+ ...vfsDefaults,
3102
+ name: "deleteVfsPath",
3103
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
3104
+ type: "delete",
3105
+ itemType: "VfsDeleteResult",
3106
+ // `type: "delete"` defaults the documented return to `{ success: boolean }`,
3107
+ // but this method returns `{ data: { path } }`; name the real item type.
3108
+ returnType: "VfsDeleteResultItem",
3109
+ // Match the other delete methods: prompt in the CLI before removing a path.
3110
+ confirm: "delete",
3111
+ inputSchema: DeleteVfsPathSchema,
3112
+ outputSchema: DeleteVfsPathItemSchema,
3113
+ output: "item",
3114
+ run: async ({ imports, input }) => {
3115
+ const data = await imports.api.delete(
3116
+ `${VFS_PATH_PREFIX}/paths`,
3117
+ void 0,
3118
+ {
3119
+ authRequired: true,
3120
+ searchParams: { path: input.path },
3121
+ resource: { type: "vfs_path", id: input.path }
3122
+ }
3123
+ );
3124
+ return { data };
3125
+ }
3126
+ });
3127
+ var MoveVfsPathSchema = zod.z.object({
3128
+ from: absolutePathSchema({ label: "from" }).describe(
3129
+ "Absolute path of the source entry."
3130
+ ),
3131
+ to: absolutePathSchema({
3132
+ label: "to",
3133
+ example: "/Mine/archive/notes.md"
3134
+ }).describe("New absolute path for the entry.")
3135
+ }).describe(
3136
+ "Move (rename) a file or directory in the " + VFS_NAME + ". Both `from` and `to` are absolute paths (e.g. `/Mine/notes.md`). Fails if an entry already exists at `to` \u2014 delete or rename it first."
3137
+ );
3138
+ var MoveVfsPathItemSchema = FsMoveResultSchema;
3139
+
3140
+ // src/plugins/vfs/moveVfsPath/index.ts
3141
+ var moveVfsPathPlugin = kitcore.defineMethod({
3142
+ ...vfsDefaults,
3143
+ name: "moveVfsPath",
3144
+ imports: [chunkHMEY72T6_cjs.apiPluginRef],
3145
+ itemType: "VfsMoveResult",
3146
+ inputSchema: MoveVfsPathSchema,
3147
+ outputSchema: MoveVfsPathItemSchema,
3148
+ output: "item",
3149
+ run: async ({ imports, input }) => {
3150
+ const data = await imports.api.post(
3151
+ `${VFS_PATH_PREFIX}/paths/move`,
3152
+ { from: input.from, to: input.to },
3153
+ {
3154
+ authRequired: true,
3155
+ resource: { type: "vfs_path", id: input.from }
3156
+ }
3157
+ );
3158
+ return { data };
3159
+ }
3160
+ });
2694
3161
 
2695
3162
  // src/experimental.ts
2696
3163
  var zapierExperimentalSdkPlugin = kitcore.definePlugin({
2697
3164
  namespace: "zapier",
2698
3165
  name: "experimental-sdk",
2699
3166
  exports: [
2700
- chunkY7CGEGII_cjs.zapierSdkPlugin,
3167
+ chunkHMEY72T6_cjs.zapierSdkPlugin,
2701
3168
  // Code substrate (experimental). `list*` plugins are exported before their
2702
3169
  // `get*` / mutation siblings because per-row resolvers reach the listing
2703
3170
  // methods.
@@ -2739,1133 +3206,1145 @@ var zapierExperimentalSdkPlugin = kitcore.definePlugin({
2739
3206
  getAgenticManagementConfigPlugin,
2740
3207
  updateAgenticManagementConfigPlugin,
2741
3208
  getAgenticManagementIntentPlugin,
2742
- updateAgenticManagementIntentPlugin
3209
+ updateAgenticManagementIntentPlugin,
3210
+ // VFS (experimental). Also routed through the Public API Gateway — see the
3211
+ // `/vfs` entry in api/routing/config.ts. `list*` is exported before the
3212
+ // other methods per the same listing-first convention as code substrate.
3213
+ listVfsDirectoryPlugin,
3214
+ readVfsFilePlugin,
3215
+ writeVfsFilePlugin,
3216
+ appendVfsFilePlugin,
3217
+ copyVfsFilePlugin,
3218
+ createVfsDirectoryPlugin,
3219
+ statVfsPathPlugin,
3220
+ deleteVfsPathPlugin,
3221
+ moveVfsPathPlugin
2743
3222
  ]
2744
3223
  });
2745
3224
  function createZapierSdk(options = {}) {
2746
3225
  return kitcore.createSdk(zapierExperimentalSdkPlugin, {
2747
3226
  configuration: {
2748
- [chunkY7CGEGII_cjs.SDK_OPTIONS_ID]: options,
2749
- [kitcore.CORE_OPTIONS_ID]: chunkY7CGEGII_cjs.zapierCoreOptions
3227
+ [chunkHMEY72T6_cjs.SDK_OPTIONS_ID]: options,
3228
+ [kitcore.CORE_OPTIONS_ID]: chunkHMEY72T6_cjs.zapierCoreOptions
2750
3229
  }
2751
3230
  });
2752
3231
  }
2753
3232
 
2754
3233
  Object.defineProperty(exports, "ACTION_RUNS_PATH", {
2755
3234
  enumerable: true,
2756
- get: function () { return chunkY7CGEGII_cjs.ACTION_RUNS_PATH; }
3235
+ get: function () { return chunkHMEY72T6_cjs.ACTION_RUNS_PATH; }
2757
3236
  });
2758
3237
  Object.defineProperty(exports, "API_ID", {
2759
3238
  enumerable: true,
2760
- get: function () { return chunkY7CGEGII_cjs.API_ID; }
3239
+ get: function () { return chunkHMEY72T6_cjs.API_ID; }
2761
3240
  });
2762
3241
  Object.defineProperty(exports, "ActionKeyPropertySchema", {
2763
3242
  enumerable: true,
2764
- get: function () { return chunkY7CGEGII_cjs.ActionKeyPropertySchema; }
3243
+ get: function () { return chunkHMEY72T6_cjs.ActionKeyPropertySchema; }
2765
3244
  });
2766
3245
  Object.defineProperty(exports, "ActionPropertySchema", {
2767
3246
  enumerable: true,
2768
- get: function () { return chunkY7CGEGII_cjs.ActionPropertySchema; }
3247
+ get: function () { return chunkHMEY72T6_cjs.ActionPropertySchema; }
2769
3248
  });
2770
3249
  Object.defineProperty(exports, "ActionTimeoutMillisecondsPropertySchema", {
2771
3250
  enumerable: true,
2772
- get: function () { return chunkY7CGEGII_cjs.ActionTimeoutMillisecondsPropertySchema; }
3251
+ get: function () { return chunkHMEY72T6_cjs.ActionTimeoutMillisecondsPropertySchema; }
2773
3252
  });
2774
3253
  Object.defineProperty(exports, "ActionTimeoutSecondsPropertySchema", {
2775
3254
  enumerable: true,
2776
- get: function () { return chunkY7CGEGII_cjs.ActionTimeoutSecondsPropertySchema; }
3255
+ get: function () { return chunkHMEY72T6_cjs.ActionTimeoutSecondsPropertySchema; }
2777
3256
  });
2778
3257
  Object.defineProperty(exports, "ActionTypePropertySchema", {
2779
3258
  enumerable: true,
2780
- get: function () { return chunkY7CGEGII_cjs.ActionTypePropertySchema; }
3259
+ get: function () { return chunkHMEY72T6_cjs.ActionTypePropertySchema; }
2781
3260
  });
2782
3261
  Object.defineProperty(exports, "AppKeyPropertySchema", {
2783
3262
  enumerable: true,
2784
- get: function () { return chunkY7CGEGII_cjs.AppKeyPropertySchema; }
3263
+ get: function () { return chunkHMEY72T6_cjs.AppKeyPropertySchema; }
2785
3264
  });
2786
3265
  Object.defineProperty(exports, "AppPropertySchema", {
2787
3266
  enumerable: true,
2788
- get: function () { return chunkY7CGEGII_cjs.AppPropertySchema; }
3267
+ get: function () { return chunkHMEY72T6_cjs.AppPropertySchema; }
2789
3268
  });
2790
3269
  Object.defineProperty(exports, "AppsPropertySchema", {
2791
3270
  enumerable: true,
2792
- get: function () { return chunkY7CGEGII_cjs.AppsPropertySchema; }
3271
+ get: function () { return chunkHMEY72T6_cjs.AppsPropertySchema; }
2793
3272
  });
2794
3273
  Object.defineProperty(exports, "AuthMechanism", {
2795
3274
  enumerable: true,
2796
- get: function () { return chunkY7CGEGII_cjs.AuthMechanism; }
3275
+ get: function () { return chunkHMEY72T6_cjs.AuthMechanism; }
2797
3276
  });
2798
3277
  Object.defineProperty(exports, "AuthenticationIdPropertySchema", {
2799
3278
  enumerable: true,
2800
- get: function () { return chunkY7CGEGII_cjs.AuthenticationIdPropertySchema; }
3279
+ get: function () { return chunkHMEY72T6_cjs.AuthenticationIdPropertySchema; }
2801
3280
  });
2802
3281
  Object.defineProperty(exports, "BaseSdkOptionsSchema", {
2803
3282
  enumerable: true,
2804
- get: function () { return chunkY7CGEGII_cjs.BaseSdkOptionsSchema; }
3283
+ get: function () { return chunkHMEY72T6_cjs.BaseSdkOptionsSchema; }
2805
3284
  });
2806
3285
  Object.defineProperty(exports, "CONNECTIONS_ID", {
2807
3286
  enumerable: true,
2808
- get: function () { return chunkY7CGEGII_cjs.CONNECTIONS_ID; }
3287
+ get: function () { return chunkHMEY72T6_cjs.CONNECTIONS_ID; }
2809
3288
  });
2810
3289
  Object.defineProperty(exports, "CONTEXT", {
2811
3290
  enumerable: true,
2812
- get: function () { return chunkY7CGEGII_cjs.CONTEXT; }
3291
+ get: function () { return chunkHMEY72T6_cjs.CONTEXT; }
2813
3292
  });
2814
3293
  Object.defineProperty(exports, "CONTEXT_CACHE_MAX_SIZE", {
2815
3294
  enumerable: true,
2816
- get: function () { return chunkY7CGEGII_cjs.CONTEXT_CACHE_MAX_SIZE; }
3295
+ get: function () { return chunkHMEY72T6_cjs.CONTEXT_CACHE_MAX_SIZE; }
2817
3296
  });
2818
3297
  Object.defineProperty(exports, "CONTEXT_CACHE_TTL_MILLISECONDS", {
2819
3298
  enumerable: true,
2820
- get: function () { return chunkY7CGEGII_cjs.CONTEXT_CACHE_TTL_MILLISECONDS; }
3299
+ get: function () { return chunkHMEY72T6_cjs.CONTEXT_CACHE_TTL_MILLISECONDS; }
2821
3300
  });
2822
3301
  Object.defineProperty(exports, "CORE_ERROR_SYMBOL", {
2823
3302
  enumerable: true,
2824
- get: function () { return chunkY7CGEGII_cjs.CORE_ERROR_SYMBOL; }
3303
+ get: function () { return chunkHMEY72T6_cjs.CORE_ERROR_SYMBOL; }
2825
3304
  });
2826
3305
  Object.defineProperty(exports, "CORE_OPTIONS_ID", {
2827
3306
  enumerable: true,
2828
- get: function () { return chunkY7CGEGII_cjs.CORE_OPTIONS_ID; }
3307
+ get: function () { return chunkHMEY72T6_cjs.CORE_OPTIONS_ID; }
2829
3308
  });
2830
3309
  Object.defineProperty(exports, "CORE_SIGNAL_SYMBOL", {
2831
3310
  enumerable: true,
2832
- get: function () { return chunkY7CGEGII_cjs.CORE_SIGNAL_SYMBOL; }
3311
+ get: function () { return chunkHMEY72T6_cjs.CORE_SIGNAL_SYMBOL; }
2833
3312
  });
2834
3313
  Object.defineProperty(exports, "ClientCredentialsObjectSchema", {
2835
3314
  enumerable: true,
2836
- get: function () { return chunkY7CGEGII_cjs.ClientCredentialsObjectSchema; }
3315
+ get: function () { return chunkHMEY72T6_cjs.ClientCredentialsObjectSchema; }
2837
3316
  });
2838
3317
  Object.defineProperty(exports, "ConnectionEntrySchema", {
2839
3318
  enumerable: true,
2840
- get: function () { return chunkY7CGEGII_cjs.ConnectionEntrySchema; }
3319
+ get: function () { return chunkHMEY72T6_cjs.ConnectionEntrySchema; }
2841
3320
  });
2842
3321
  Object.defineProperty(exports, "ConnectionIdPropertySchema", {
2843
3322
  enumerable: true,
2844
- get: function () { return chunkY7CGEGII_cjs.ConnectionIdPropertySchema; }
3323
+ get: function () { return chunkHMEY72T6_cjs.ConnectionIdPropertySchema; }
2845
3324
  });
2846
3325
  Object.defineProperty(exports, "ConnectionPropertySchema", {
2847
3326
  enumerable: true,
2848
- get: function () { return chunkY7CGEGII_cjs.ConnectionPropertySchema; }
3327
+ get: function () { return chunkHMEY72T6_cjs.ConnectionPropertySchema; }
2849
3328
  });
2850
3329
  Object.defineProperty(exports, "ConnectionsMapSchema", {
2851
3330
  enumerable: true,
2852
- get: function () { return chunkY7CGEGII_cjs.ConnectionsMapSchema; }
3331
+ get: function () { return chunkHMEY72T6_cjs.ConnectionsMapSchema; }
2853
3332
  });
2854
3333
  Object.defineProperty(exports, "ConnectionsPropertySchema", {
2855
3334
  enumerable: true,
2856
- get: function () { return chunkY7CGEGII_cjs.ConnectionsPropertySchema; }
3335
+ get: function () { return chunkHMEY72T6_cjs.ConnectionsPropertySchema; }
2857
3336
  });
2858
3337
  Object.defineProperty(exports, "CoreCancelledSignal", {
2859
3338
  enumerable: true,
2860
- get: function () { return chunkY7CGEGII_cjs.CoreCancelledSignal; }
3339
+ get: function () { return chunkHMEY72T6_cjs.CoreCancelledSignal; }
2861
3340
  });
2862
3341
  Object.defineProperty(exports, "CoreDisposeError", {
2863
3342
  enumerable: true,
2864
- get: function () { return chunkY7CGEGII_cjs.CoreDisposeError; }
3343
+ get: function () { return chunkHMEY72T6_cjs.CoreDisposeError; }
2865
3344
  });
2866
3345
  Object.defineProperty(exports, "CoreErrorCode", {
2867
3346
  enumerable: true,
2868
- get: function () { return chunkY7CGEGII_cjs.CoreErrorCode; }
3347
+ get: function () { return chunkHMEY72T6_cjs.CoreErrorCode; }
2869
3348
  });
2870
3349
  Object.defineProperty(exports, "CoreSignal", {
2871
3350
  enumerable: true,
2872
- get: function () { return chunkY7CGEGII_cjs.CoreSignal; }
3351
+ get: function () { return chunkHMEY72T6_cjs.CoreSignal; }
2873
3352
  });
2874
3353
  Object.defineProperty(exports, "CredentialsFunctionSchema", {
2875
3354
  enumerable: true,
2876
- get: function () { return chunkY7CGEGII_cjs.CredentialsFunctionSchema; }
3355
+ get: function () { return chunkHMEY72T6_cjs.CredentialsFunctionSchema; }
2877
3356
  });
2878
3357
  Object.defineProperty(exports, "CredentialsObjectSchema", {
2879
3358
  enumerable: true,
2880
- get: function () { return chunkY7CGEGII_cjs.CredentialsObjectSchema; }
3359
+ get: function () { return chunkHMEY72T6_cjs.CredentialsObjectSchema; }
2881
3360
  });
2882
3361
  Object.defineProperty(exports, "CredentialsSchema", {
2883
3362
  enumerable: true,
2884
- get: function () { return chunkY7CGEGII_cjs.CredentialsSchema; }
3363
+ get: function () { return chunkHMEY72T6_cjs.CredentialsSchema; }
2885
3364
  });
2886
3365
  Object.defineProperty(exports, "DEFAULT_ACTION_TIMEOUT_MILLISECONDS", {
2887
3366
  enumerable: true,
2888
- get: function () { return chunkY7CGEGII_cjs.DEFAULT_ACTION_TIMEOUT_MILLISECONDS; }
3367
+ get: function () { return chunkHMEY72T6_cjs.DEFAULT_ACTION_TIMEOUT_MILLISECONDS; }
2889
3368
  });
2890
3369
  Object.defineProperty(exports, "DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS", {
2891
3370
  enumerable: true,
2892
- get: function () { return chunkY7CGEGII_cjs.DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS; }
3371
+ get: function () { return chunkHMEY72T6_cjs.DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS; }
2893
3372
  });
2894
3373
  Object.defineProperty(exports, "DEFAULT_CONFIG_PATH", {
2895
3374
  enumerable: true,
2896
- get: function () { return chunkY7CGEGII_cjs.DEFAULT_CONFIG_PATH; }
3375
+ get: function () { return chunkHMEY72T6_cjs.DEFAULT_CONFIG_PATH; }
2897
3376
  });
2898
3377
  Object.defineProperty(exports, "DEFAULT_MAX_APPROVAL_RETRIES", {
2899
3378
  enumerable: true,
2900
- get: function () { return chunkY7CGEGII_cjs.DEFAULT_MAX_APPROVAL_RETRIES; }
3379
+ get: function () { return chunkHMEY72T6_cjs.DEFAULT_MAX_APPROVAL_RETRIES; }
2901
3380
  });
2902
3381
  Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
2903
3382
  enumerable: true,
2904
- get: function () { return chunkY7CGEGII_cjs.DEFAULT_PAGE_SIZE; }
3383
+ get: function () { return chunkHMEY72T6_cjs.DEFAULT_PAGE_SIZE; }
2905
3384
  });
2906
3385
  Object.defineProperty(exports, "DEPRECATION_NOTICE_EVENT", {
2907
3386
  enumerable: true,
2908
- get: function () { return chunkY7CGEGII_cjs.DEPRECATION_NOTICE_EVENT; }
3387
+ get: function () { return chunkHMEY72T6_cjs.DEPRECATION_NOTICE_EVENT; }
2909
3388
  });
2910
3389
  Object.defineProperty(exports, "DebugPropertySchema", {
2911
3390
  enumerable: true,
2912
- get: function () { return chunkY7CGEGII_cjs.DebugPropertySchema; }
3391
+ get: function () { return chunkHMEY72T6_cjs.DebugPropertySchema; }
2913
3392
  });
2914
3393
  Object.defineProperty(exports, "DrainTriggerInboxSchema", {
2915
3394
  enumerable: true,
2916
- get: function () { return chunkY7CGEGII_cjs.DrainTriggerInboxSchema; }
3395
+ get: function () { return chunkHMEY72T6_cjs.DrainTriggerInboxSchema; }
2917
3396
  });
2918
3397
  Object.defineProperty(exports, "EVENT_EMISSION_ID", {
2919
3398
  enumerable: true,
2920
- get: function () { return chunkY7CGEGII_cjs.EVENT_EMISSION_ID; }
3399
+ get: function () { return chunkHMEY72T6_cjs.EVENT_EMISSION_ID; }
2921
3400
  });
2922
3401
  Object.defineProperty(exports, "FieldsPropertySchema", {
2923
3402
  enumerable: true,
2924
- get: function () { return chunkY7CGEGII_cjs.FieldsPropertySchema; }
3403
+ get: function () { return chunkHMEY72T6_cjs.FieldsPropertySchema; }
2925
3404
  });
2926
3405
  Object.defineProperty(exports, "InputFieldPropertySchema", {
2927
3406
  enumerable: true,
2928
- get: function () { return chunkY7CGEGII_cjs.InputFieldPropertySchema; }
3407
+ get: function () { return chunkHMEY72T6_cjs.InputFieldPropertySchema; }
2929
3408
  });
2930
3409
  Object.defineProperty(exports, "InputsPropertySchema", {
2931
3410
  enumerable: true,
2932
- get: function () { return chunkY7CGEGII_cjs.InputsPropertySchema; }
3411
+ get: function () { return chunkHMEY72T6_cjs.InputsPropertySchema; }
2933
3412
  });
2934
3413
  Object.defineProperty(exports, "LeaseLimitPropertySchema", {
2935
3414
  enumerable: true,
2936
- get: function () { return chunkY7CGEGII_cjs.LeaseLimitPropertySchema; }
3415
+ get: function () { return chunkHMEY72T6_cjs.LeaseLimitPropertySchema; }
2937
3416
  });
2938
3417
  Object.defineProperty(exports, "LeasePropertySchema", {
2939
3418
  enumerable: true,
2940
- get: function () { return chunkY7CGEGII_cjs.LeasePropertySchema; }
3419
+ get: function () { return chunkHMEY72T6_cjs.LeasePropertySchema; }
2941
3420
  });
2942
3421
  Object.defineProperty(exports, "LeaseSecondsPropertySchema", {
2943
3422
  enumerable: true,
2944
- get: function () { return chunkY7CGEGII_cjs.LeaseSecondsPropertySchema; }
3423
+ get: function () { return chunkHMEY72T6_cjs.LeaseSecondsPropertySchema; }
2945
3424
  });
2946
3425
  Object.defineProperty(exports, "LimitPropertySchema", {
2947
3426
  enumerable: true,
2948
- get: function () { return chunkY7CGEGII_cjs.LimitPropertySchema; }
3427
+ get: function () { return chunkHMEY72T6_cjs.LimitPropertySchema; }
2949
3428
  });
2950
3429
  Object.defineProperty(exports, "MANIFEST_ID", {
2951
3430
  enumerable: true,
2952
- get: function () { return chunkY7CGEGII_cjs.MANIFEST_ID; }
3431
+ get: function () { return chunkHMEY72T6_cjs.MANIFEST_ID; }
2953
3432
  });
2954
3433
  Object.defineProperty(exports, "MAX_CONCURRENCY_LIMIT", {
2955
3434
  enumerable: true,
2956
- get: function () { return chunkY7CGEGII_cjs.MAX_CONCURRENCY_LIMIT; }
3435
+ get: function () { return chunkHMEY72T6_cjs.MAX_CONCURRENCY_LIMIT; }
2957
3436
  });
2958
3437
  Object.defineProperty(exports, "MAX_PAGE_LIMIT", {
2959
3438
  enumerable: true,
2960
- get: function () { return chunkY7CGEGII_cjs.MAX_PAGE_LIMIT; }
3439
+ get: function () { return chunkHMEY72T6_cjs.MAX_PAGE_LIMIT; }
2961
3440
  });
2962
3441
  Object.defineProperty(exports, "OffsetPropertySchema", {
2963
3442
  enumerable: true,
2964
- get: function () { return chunkY7CGEGII_cjs.OffsetPropertySchema; }
3443
+ get: function () { return chunkHMEY72T6_cjs.OffsetPropertySchema; }
2965
3444
  });
2966
3445
  Object.defineProperty(exports, "OutputPropertySchema", {
2967
3446
  enumerable: true,
2968
- get: function () { return chunkY7CGEGII_cjs.OutputPropertySchema; }
3447
+ get: function () { return chunkHMEY72T6_cjs.OutputPropertySchema; }
2969
3448
  });
2970
3449
  Object.defineProperty(exports, "ParamsPropertySchema", {
2971
3450
  enumerable: true,
2972
- get: function () { return chunkY7CGEGII_cjs.ParamsPropertySchema; }
3451
+ get: function () { return chunkHMEY72T6_cjs.ParamsPropertySchema; }
2973
3452
  });
2974
3453
  Object.defineProperty(exports, "PkceCredentialsObjectSchema", {
2975
3454
  enumerable: true,
2976
- get: function () { return chunkY7CGEGII_cjs.PkceCredentialsObjectSchema; }
3455
+ get: function () { return chunkHMEY72T6_cjs.PkceCredentialsObjectSchema; }
2977
3456
  });
2978
3457
  Object.defineProperty(exports, "RESOLVE_CREDENTIALS_ID", {
2979
3458
  enumerable: true,
2980
- get: function () { return chunkY7CGEGII_cjs.RESOLVE_CREDENTIALS_ID; }
3459
+ get: function () { return chunkHMEY72T6_cjs.RESOLVE_CREDENTIALS_ID; }
2981
3460
  });
2982
3461
  Object.defineProperty(exports, "RecordPropertySchema", {
2983
3462
  enumerable: true,
2984
- get: function () { return chunkY7CGEGII_cjs.RecordPropertySchema; }
3463
+ get: function () { return chunkHMEY72T6_cjs.RecordPropertySchema; }
2985
3464
  });
2986
3465
  Object.defineProperty(exports, "RecordsPropertySchema", {
2987
3466
  enumerable: true,
2988
- get: function () { return chunkY7CGEGII_cjs.RecordsPropertySchema; }
3467
+ get: function () { return chunkHMEY72T6_cjs.RecordsPropertySchema; }
2989
3468
  });
2990
3469
  Object.defineProperty(exports, "RelayFetchSchema", {
2991
3470
  enumerable: true,
2992
- get: function () { return chunkY7CGEGII_cjs.RelayFetchSchema; }
3471
+ get: function () { return chunkHMEY72T6_cjs.RelayFetchSchema; }
2993
3472
  });
2994
3473
  Object.defineProperty(exports, "RelayRequestSchema", {
2995
3474
  enumerable: true,
2996
- get: function () { return chunkY7CGEGII_cjs.RelayRequestSchema; }
3475
+ get: function () { return chunkHMEY72T6_cjs.RelayRequestSchema; }
2997
3476
  });
2998
3477
  Object.defineProperty(exports, "ResolvedCredentialsSchema", {
2999
3478
  enumerable: true,
3000
- get: function () { return chunkY7CGEGII_cjs.ResolvedCredentialsSchema; }
3479
+ get: function () { return chunkHMEY72T6_cjs.ResolvedCredentialsSchema; }
3001
3480
  });
3002
3481
  Object.defineProperty(exports, "SDK_OPTIONS_ID", {
3003
3482
  enumerable: true,
3004
- get: function () { return chunkY7CGEGII_cjs.SDK_OPTIONS_ID; }
3483
+ get: function () { return chunkHMEY72T6_cjs.SDK_OPTIONS_ID; }
3005
3484
  });
3006
3485
  Object.defineProperty(exports, "TablePropertySchema", {
3007
3486
  enumerable: true,
3008
- get: function () { return chunkY7CGEGII_cjs.TablePropertySchema; }
3487
+ get: function () { return chunkHMEY72T6_cjs.TablePropertySchema; }
3009
3488
  });
3010
3489
  Object.defineProperty(exports, "TablesPropertySchema", {
3011
3490
  enumerable: true,
3012
- get: function () { return chunkY7CGEGII_cjs.TablesPropertySchema; }
3491
+ get: function () { return chunkHMEY72T6_cjs.TablesPropertySchema; }
3013
3492
  });
3014
3493
  Object.defineProperty(exports, "TriggerInboxKeyPropertySchema", {
3015
3494
  enumerable: true,
3016
- get: function () { return chunkY7CGEGII_cjs.TriggerInboxKeyPropertySchema; }
3495
+ get: function () { return chunkHMEY72T6_cjs.TriggerInboxKeyPropertySchema; }
3017
3496
  });
3018
3497
  Object.defineProperty(exports, "TriggerInboxNamePropertySchema", {
3019
3498
  enumerable: true,
3020
- get: function () { return chunkY7CGEGII_cjs.TriggerInboxNamePropertySchema; }
3499
+ get: function () { return chunkHMEY72T6_cjs.TriggerInboxNamePropertySchema; }
3021
3500
  });
3022
3501
  Object.defineProperty(exports, "TriggerInboxPropertySchema", {
3023
3502
  enumerable: true,
3024
- get: function () { return chunkY7CGEGII_cjs.TriggerInboxPropertySchema; }
3503
+ get: function () { return chunkHMEY72T6_cjs.TriggerInboxPropertySchema; }
3025
3504
  });
3026
3505
  Object.defineProperty(exports, "WatchTriggerInboxSchema", {
3027
3506
  enumerable: true,
3028
- get: function () { return chunkY7CGEGII_cjs.WatchTriggerInboxSchema; }
3507
+ get: function () { return chunkHMEY72T6_cjs.WatchTriggerInboxSchema; }
3029
3508
  });
3030
3509
  Object.defineProperty(exports, "ZAPIER_BASE_URL", {
3031
3510
  enumerable: true,
3032
- get: function () { return chunkY7CGEGII_cjs.ZAPIER_BASE_URL; }
3511
+ get: function () { return chunkHMEY72T6_cjs.ZAPIER_BASE_URL; }
3033
3512
  });
3034
3513
  Object.defineProperty(exports, "ZAPIER_MAX_CONCURRENT_REQUESTS", {
3035
3514
  enumerable: true,
3036
- get: function () { return chunkY7CGEGII_cjs.ZAPIER_MAX_CONCURRENT_REQUESTS; }
3515
+ get: function () { return chunkHMEY72T6_cjs.ZAPIER_MAX_CONCURRENT_REQUESTS; }
3037
3516
  });
3038
3517
  Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRIES", {
3039
3518
  enumerable: true,
3040
- get: function () { return chunkY7CGEGII_cjs.ZAPIER_MAX_NETWORK_RETRIES; }
3519
+ get: function () { return chunkHMEY72T6_cjs.ZAPIER_MAX_NETWORK_RETRIES; }
3041
3520
  });
3042
3521
  Object.defineProperty(exports, "ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS", {
3043
3522
  enumerable: true,
3044
- get: function () { return chunkY7CGEGII_cjs.ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS; }
3523
+ get: function () { return chunkHMEY72T6_cjs.ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS; }
3045
3524
  });
3046
3525
  Object.defineProperty(exports, "ZapierAbortDrainSignal", {
3047
3526
  enumerable: true,
3048
- get: function () { return chunkY7CGEGII_cjs.ZapierAbortDrainSignal; }
3527
+ get: function () { return chunkHMEY72T6_cjs.ZapierAbortDrainSignal; }
3049
3528
  });
3050
3529
  Object.defineProperty(exports, "ZapierActionError", {
3051
3530
  enumerable: true,
3052
- get: function () { return chunkY7CGEGII_cjs.ZapierActionError; }
3531
+ get: function () { return chunkHMEY72T6_cjs.ZapierActionError; }
3053
3532
  });
3054
3533
  Object.defineProperty(exports, "ZapierApiError", {
3055
3534
  enumerable: true,
3056
- get: function () { return chunkY7CGEGII_cjs.ZapierApiError; }
3535
+ get: function () { return chunkHMEY72T6_cjs.ZapierApiError; }
3057
3536
  });
3058
3537
  Object.defineProperty(exports, "ZapierAppNotFoundError", {
3059
3538
  enumerable: true,
3060
- get: function () { return chunkY7CGEGII_cjs.ZapierAppNotFoundError; }
3539
+ get: function () { return chunkHMEY72T6_cjs.ZapierAppNotFoundError; }
3061
3540
  });
3062
3541
  Object.defineProperty(exports, "ZapierApprovalError", {
3063
3542
  enumerable: true,
3064
- get: function () { return chunkY7CGEGII_cjs.ZapierApprovalError; }
3543
+ get: function () { return chunkHMEY72T6_cjs.ZapierApprovalError; }
3065
3544
  });
3066
3545
  Object.defineProperty(exports, "ZapierAuthenticationError", {
3067
3546
  enumerable: true,
3068
- get: function () { return chunkY7CGEGII_cjs.ZapierAuthenticationError; }
3547
+ get: function () { return chunkHMEY72T6_cjs.ZapierAuthenticationError; }
3069
3548
  });
3070
3549
  Object.defineProperty(exports, "ZapierBundleError", {
3071
3550
  enumerable: true,
3072
- get: function () { return chunkY7CGEGII_cjs.ZapierBundleError; }
3551
+ get: function () { return chunkHMEY72T6_cjs.ZapierBundleError; }
3073
3552
  });
3074
3553
  Object.defineProperty(exports, "ZapierConfigurationError", {
3075
3554
  enumerable: true,
3076
- get: function () { return chunkY7CGEGII_cjs.ZapierConfigurationError; }
3555
+ get: function () { return chunkHMEY72T6_cjs.ZapierConfigurationError; }
3077
3556
  });
3078
3557
  Object.defineProperty(exports, "ZapierConflictError", {
3079
3558
  enumerable: true,
3080
- get: function () { return chunkY7CGEGII_cjs.ZapierConflictError; }
3559
+ get: function () { return chunkHMEY72T6_cjs.ZapierConflictError; }
3081
3560
  });
3082
3561
  Object.defineProperty(exports, "ZapierError", {
3083
3562
  enumerable: true,
3084
- get: function () { return chunkY7CGEGII_cjs.ZapierError; }
3563
+ get: function () { return chunkHMEY72T6_cjs.ZapierError; }
3085
3564
  });
3086
3565
  Object.defineProperty(exports, "ZapierNotFoundError", {
3087
3566
  enumerable: true,
3088
- get: function () { return chunkY7CGEGII_cjs.ZapierNotFoundError; }
3567
+ get: function () { return chunkHMEY72T6_cjs.ZapierNotFoundError; }
3089
3568
  });
3090
3569
  Object.defineProperty(exports, "ZapierRateLimitError", {
3091
3570
  enumerable: true,
3092
- get: function () { return chunkY7CGEGII_cjs.ZapierRateLimitError; }
3571
+ get: function () { return chunkHMEY72T6_cjs.ZapierRateLimitError; }
3093
3572
  });
3094
3573
  Object.defineProperty(exports, "ZapierRelayError", {
3095
3574
  enumerable: true,
3096
- get: function () { return chunkY7CGEGII_cjs.ZapierRelayError; }
3575
+ get: function () { return chunkHMEY72T6_cjs.ZapierRelayError; }
3097
3576
  });
3098
3577
  Object.defineProperty(exports, "ZapierReleaseTriggerMessageSignal", {
3099
3578
  enumerable: true,
3100
- get: function () { return chunkY7CGEGII_cjs.ZapierReleaseTriggerMessageSignal; }
3579
+ get: function () { return chunkHMEY72T6_cjs.ZapierReleaseTriggerMessageSignal; }
3101
3580
  });
3102
3581
  Object.defineProperty(exports, "ZapierResourceNotFoundError", {
3103
3582
  enumerable: true,
3104
- get: function () { return chunkY7CGEGII_cjs.ZapierResourceNotFoundError; }
3583
+ get: function () { return chunkHMEY72T6_cjs.ZapierResourceNotFoundError; }
3105
3584
  });
3106
3585
  Object.defineProperty(exports, "ZapierSignal", {
3107
3586
  enumerable: true,
3108
- get: function () { return chunkY7CGEGII_cjs.ZapierSignal; }
3587
+ get: function () { return chunkHMEY72T6_cjs.ZapierSignal; }
3109
3588
  });
3110
3589
  Object.defineProperty(exports, "ZapierTimeoutError", {
3111
3590
  enumerable: true,
3112
- get: function () { return chunkY7CGEGII_cjs.ZapierTimeoutError; }
3591
+ get: function () { return chunkHMEY72T6_cjs.ZapierTimeoutError; }
3113
3592
  });
3114
3593
  Object.defineProperty(exports, "ZapierUnknownError", {
3115
3594
  enumerable: true,
3116
- get: function () { return chunkY7CGEGII_cjs.ZapierUnknownError; }
3595
+ get: function () { return chunkHMEY72T6_cjs.ZapierUnknownError; }
3117
3596
  });
3118
3597
  Object.defineProperty(exports, "ZapierValidationError", {
3119
3598
  enumerable: true,
3120
- get: function () { return chunkY7CGEGII_cjs.ZapierValidationError; }
3599
+ get: function () { return chunkHMEY72T6_cjs.ZapierValidationError; }
3121
3600
  });
3122
3601
  Object.defineProperty(exports, "actionKeyResolver", {
3123
3602
  enumerable: true,
3124
- get: function () { return chunkY7CGEGII_cjs.actionKeyResolver; }
3603
+ get: function () { return chunkHMEY72T6_cjs.actionKeyResolver; }
3125
3604
  });
3126
3605
  Object.defineProperty(exports, "actionTypeResolver", {
3127
3606
  enumerable: true,
3128
- get: function () { return chunkY7CGEGII_cjs.actionTypeResolver; }
3607
+ get: function () { return chunkHMEY72T6_cjs.actionTypeResolver; }
3129
3608
  });
3130
3609
  Object.defineProperty(exports, "addPlugin", {
3131
3610
  enumerable: true,
3132
- get: function () { return chunkY7CGEGII_cjs.addPlugin; }
3611
+ get: function () { return chunkHMEY72T6_cjs.addPlugin; }
3133
3612
  });
3134
3613
  Object.defineProperty(exports, "apiPlugin", {
3135
3614
  enumerable: true,
3136
- get: function () { return chunkY7CGEGII_cjs.apiPlugin; }
3615
+ get: function () { return chunkHMEY72T6_cjs.apiPlugin; }
3137
3616
  });
3138
3617
  Object.defineProperty(exports, "apiPluginRef", {
3139
3618
  enumerable: true,
3140
- get: function () { return chunkY7CGEGII_cjs.apiPluginRef; }
3619
+ get: function () { return chunkHMEY72T6_cjs.apiPluginRef; }
3141
3620
  });
3142
3621
  Object.defineProperty(exports, "appKeyResolver", {
3143
3622
  enumerable: true,
3144
- get: function () { return chunkY7CGEGII_cjs.appKeyResolver; }
3623
+ get: function () { return chunkHMEY72T6_cjs.appKeyResolver; }
3145
3624
  });
3146
3625
  Object.defineProperty(exports, "appsPlugin", {
3147
3626
  enumerable: true,
3148
- get: function () { return chunkY7CGEGII_cjs.appsPlugin; }
3627
+ get: function () { return chunkHMEY72T6_cjs.appsPlugin; }
3149
3628
  });
3150
3629
  Object.defineProperty(exports, "batch", {
3151
3630
  enumerable: true,
3152
- get: function () { return chunkY7CGEGII_cjs.batch; }
3631
+ get: function () { return chunkHMEY72T6_cjs.batch; }
3153
3632
  });
3154
3633
  Object.defineProperty(exports, "buildApplicationLifecycleEvent", {
3155
3634
  enumerable: true,
3156
- get: function () { return chunkY7CGEGII_cjs.buildApplicationLifecycleEvent; }
3635
+ get: function () { return chunkHMEY72T6_cjs.buildApplicationLifecycleEvent; }
3157
3636
  });
3158
3637
  Object.defineProperty(exports, "buildCapabilityMessage", {
3159
3638
  enumerable: true,
3160
- get: function () { return chunkY7CGEGII_cjs.buildCapabilityMessage; }
3639
+ get: function () { return chunkHMEY72T6_cjs.buildCapabilityMessage; }
3161
3640
  });
3162
3641
  Object.defineProperty(exports, "buildErrorEvent", {
3163
3642
  enumerable: true,
3164
- get: function () { return chunkY7CGEGII_cjs.buildErrorEvent; }
3643
+ get: function () { return chunkHMEY72T6_cjs.buildErrorEvent; }
3165
3644
  });
3166
3645
  Object.defineProperty(exports, "buildErrorEventWithContext", {
3167
3646
  enumerable: true,
3168
- get: function () { return chunkY7CGEGII_cjs.buildErrorEventWithContext; }
3647
+ get: function () { return chunkHMEY72T6_cjs.buildErrorEventWithContext; }
3169
3648
  });
3170
3649
  Object.defineProperty(exports, "buildMethodCalledEvent", {
3171
3650
  enumerable: true,
3172
- get: function () { return chunkY7CGEGII_cjs.buildMethodCalledEvent; }
3651
+ get: function () { return chunkHMEY72T6_cjs.buildMethodCalledEvent; }
3173
3652
  });
3174
3653
  Object.defineProperty(exports, "cleanupEventListeners", {
3175
3654
  enumerable: true,
3176
- get: function () { return chunkY7CGEGII_cjs.cleanupEventListeners; }
3655
+ get: function () { return chunkHMEY72T6_cjs.cleanupEventListeners; }
3177
3656
  });
3178
3657
  Object.defineProperty(exports, "clearTokenCache", {
3179
3658
  enumerable: true,
3180
- get: function () { return chunkY7CGEGII_cjs.clearTokenCache; }
3659
+ get: function () { return chunkHMEY72T6_cjs.clearTokenCache; }
3181
3660
  });
3182
3661
  Object.defineProperty(exports, "clientCredentialsNameResolver", {
3183
3662
  enumerable: true,
3184
- get: function () { return chunkY7CGEGII_cjs.clientCredentialsNameResolver; }
3663
+ get: function () { return chunkHMEY72T6_cjs.clientCredentialsNameResolver; }
3185
3664
  });
3186
3665
  Object.defineProperty(exports, "clientIdResolver", {
3187
3666
  enumerable: true,
3188
- get: function () { return chunkY7CGEGII_cjs.clientIdResolver; }
3667
+ get: function () { return chunkHMEY72T6_cjs.clientIdResolver; }
3189
3668
  });
3190
3669
  Object.defineProperty(exports, "composePlugins", {
3191
3670
  enumerable: true,
3192
- get: function () { return chunkY7CGEGII_cjs.composePlugins; }
3671
+ get: function () { return chunkHMEY72T6_cjs.composePlugins; }
3193
3672
  });
3194
3673
  Object.defineProperty(exports, "connectionIdGenericResolver", {
3195
3674
  enumerable: true,
3196
- get: function () { return chunkY7CGEGII_cjs.connectionIdGenericResolver; }
3675
+ get: function () { return chunkHMEY72T6_cjs.connectionIdGenericResolver; }
3197
3676
  });
3198
3677
  Object.defineProperty(exports, "connectionIdResolver", {
3199
3678
  enumerable: true,
3200
- get: function () { return chunkY7CGEGII_cjs.connectionIdResolver; }
3679
+ get: function () { return chunkHMEY72T6_cjs.connectionIdResolver; }
3201
3680
  });
3202
3681
  Object.defineProperty(exports, "connectionsPlugin", {
3203
3682
  enumerable: true,
3204
- get: function () { return chunkY7CGEGII_cjs.connectionsPlugin; }
3683
+ get: function () { return chunkHMEY72T6_cjs.connectionsPlugin; }
3205
3684
  });
3206
3685
  Object.defineProperty(exports, "connectionsPluginRef", {
3207
3686
  enumerable: true,
3208
- get: function () { return chunkY7CGEGII_cjs.connectionsPluginRef; }
3687
+ get: function () { return chunkHMEY72T6_cjs.connectionsPluginRef; }
3209
3688
  });
3210
3689
  Object.defineProperty(exports, "createActionRunPlugin", {
3211
3690
  enumerable: true,
3212
- get: function () { return chunkY7CGEGII_cjs.createActionRunPlugin; }
3691
+ get: function () { return chunkHMEY72T6_cjs.createActionRunPlugin; }
3213
3692
  });
3214
3693
  Object.defineProperty(exports, "createBaseEvent", {
3215
3694
  enumerable: true,
3216
- get: function () { return chunkY7CGEGII_cjs.createBaseEvent; }
3695
+ get: function () { return chunkHMEY72T6_cjs.createBaseEvent; }
3217
3696
  });
3218
3697
  Object.defineProperty(exports, "createClientCredentialsPlugin", {
3219
3698
  enumerable: true,
3220
- get: function () { return chunkY7CGEGII_cjs.createClientCredentialsPlugin; }
3699
+ get: function () { return chunkHMEY72T6_cjs.createClientCredentialsPlugin; }
3221
3700
  });
3222
3701
  Object.defineProperty(exports, "createController", {
3223
3702
  enumerable: true,
3224
- get: function () { return chunkY7CGEGII_cjs.createController; }
3703
+ get: function () { return chunkHMEY72T6_cjs.createController; }
3225
3704
  });
3226
3705
  Object.defineProperty(exports, "createCorePlugin", {
3227
3706
  enumerable: true,
3228
- get: function () { return chunkY7CGEGII_cjs.createCorePlugin; }
3707
+ get: function () { return chunkHMEY72T6_cjs.createCorePlugin; }
3229
3708
  });
3230
3709
  Object.defineProperty(exports, "createFunction", {
3231
3710
  enumerable: true,
3232
- get: function () { return chunkY7CGEGII_cjs.createFunction; }
3711
+ get: function () { return chunkHMEY72T6_cjs.createFunction; }
3233
3712
  });
3234
3713
  Object.defineProperty(exports, "createMemoryCache", {
3235
3714
  enumerable: true,
3236
- get: function () { return chunkY7CGEGII_cjs.createMemoryCache; }
3715
+ get: function () { return chunkHMEY72T6_cjs.createMemoryCache; }
3237
3716
  });
3238
3717
  Object.defineProperty(exports, "createPaginatedFunction", {
3239
3718
  enumerable: true,
3240
- get: function () { return chunkY7CGEGII_cjs.createPaginatedFunction; }
3719
+ get: function () { return chunkHMEY72T6_cjs.createPaginatedFunction; }
3241
3720
  });
3242
3721
  Object.defineProperty(exports, "createPaginatedPluginMethod", {
3243
3722
  enumerable: true,
3244
- get: function () { return chunkY7CGEGII_cjs.createPaginatedPluginMethod; }
3723
+ get: function () { return chunkHMEY72T6_cjs.createPaginatedPluginMethod; }
3245
3724
  });
3246
3725
  Object.defineProperty(exports, "createPluginMethod", {
3247
3726
  enumerable: true,
3248
- get: function () { return chunkY7CGEGII_cjs.createPluginMethod; }
3727
+ get: function () { return chunkHMEY72T6_cjs.createPluginMethod; }
3249
3728
  });
3250
3729
  Object.defineProperty(exports, "createPluginStack", {
3251
3730
  enumerable: true,
3252
- get: function () { return chunkY7CGEGII_cjs.createPluginStack; }
3731
+ get: function () { return chunkHMEY72T6_cjs.createPluginStack; }
3253
3732
  });
3254
3733
  Object.defineProperty(exports, "createSdk", {
3255
3734
  enumerable: true,
3256
- get: function () { return chunkY7CGEGII_cjs.createSdk; }
3735
+ get: function () { return chunkHMEY72T6_cjs.createSdk; }
3257
3736
  });
3258
3737
  Object.defineProperty(exports, "createTableFieldsPlugin", {
3259
3738
  enumerable: true,
3260
- get: function () { return chunkY7CGEGII_cjs.createTableFieldsPlugin; }
3739
+ get: function () { return chunkHMEY72T6_cjs.createTableFieldsPlugin; }
3261
3740
  });
3262
3741
  Object.defineProperty(exports, "createTablePlugin", {
3263
3742
  enumerable: true,
3264
- get: function () { return chunkY7CGEGII_cjs.createTablePlugin; }
3743
+ get: function () { return chunkHMEY72T6_cjs.createTablePlugin; }
3265
3744
  });
3266
3745
  Object.defineProperty(exports, "createTableRecordsPlugin", {
3267
3746
  enumerable: true,
3268
- get: function () { return chunkY7CGEGII_cjs.createTableRecordsPlugin; }
3747
+ get: function () { return chunkHMEY72T6_cjs.createTableRecordsPlugin; }
3269
3748
  });
3270
3749
  Object.defineProperty(exports, "createZapierApi", {
3271
3750
  enumerable: true,
3272
- get: function () { return chunkY7CGEGII_cjs.createZapierApi; }
3751
+ get: function () { return chunkHMEY72T6_cjs.createZapierApi; }
3273
3752
  });
3274
3753
  Object.defineProperty(exports, "createZapierSdkWithoutRegistry", {
3275
3754
  enumerable: true,
3276
- get: function () { return chunkY7CGEGII_cjs.createZapierSdkWithoutRegistry; }
3755
+ get: function () { return chunkHMEY72T6_cjs.createZapierSdkWithoutRegistry; }
3277
3756
  });
3278
3757
  Object.defineProperty(exports, "declareMethod", {
3279
3758
  enumerable: true,
3280
- get: function () { return chunkY7CGEGII_cjs.declareMethod; }
3759
+ get: function () { return chunkHMEY72T6_cjs.declareMethod; }
3281
3760
  });
3282
3761
  Object.defineProperty(exports, "declareOptionalProperty", {
3283
3762
  enumerable: true,
3284
- get: function () { return chunkY7CGEGII_cjs.declareOptionalProperty; }
3763
+ get: function () { return chunkHMEY72T6_cjs.declareOptionalProperty; }
3285
3764
  });
3286
3765
  Object.defineProperty(exports, "declarePlugin", {
3287
3766
  enumerable: true,
3288
- get: function () { return chunkY7CGEGII_cjs.declarePlugin; }
3767
+ get: function () { return chunkHMEY72T6_cjs.declarePlugin; }
3289
3768
  });
3290
3769
  Object.defineProperty(exports, "declareProperty", {
3291
3770
  enumerable: true,
3292
- get: function () { return chunkY7CGEGII_cjs.declareProperty; }
3771
+ get: function () { return chunkHMEY72T6_cjs.declareProperty; }
3293
3772
  });
3294
3773
  Object.defineProperty(exports, "defineFormatter", {
3295
3774
  enumerable: true,
3296
- get: function () { return chunkY7CGEGII_cjs.defineFormatter; }
3775
+ get: function () { return chunkHMEY72T6_cjs.defineFormatter; }
3297
3776
  });
3298
3777
  Object.defineProperty(exports, "defineLegacyMerge", {
3299
3778
  enumerable: true,
3300
- get: function () { return chunkY7CGEGII_cjs.defineLegacyMerge; }
3779
+ get: function () { return chunkHMEY72T6_cjs.defineLegacyMerge; }
3301
3780
  });
3302
3781
  Object.defineProperty(exports, "defineMethod", {
3303
3782
  enumerable: true,
3304
- get: function () { return chunkY7CGEGII_cjs.defineMethod; }
3783
+ get: function () { return chunkHMEY72T6_cjs.defineMethod; }
3305
3784
  });
3306
3785
  Object.defineProperty(exports, "defineMethodOverride", {
3307
3786
  enumerable: true,
3308
- get: function () { return chunkY7CGEGII_cjs.defineMethodOverride; }
3787
+ get: function () { return chunkHMEY72T6_cjs.defineMethodOverride; }
3309
3788
  });
3310
3789
  Object.defineProperty(exports, "defineOverride", {
3311
3790
  enumerable: true,
3312
- get: function () { return chunkY7CGEGII_cjs.defineOverride; }
3791
+ get: function () { return chunkHMEY72T6_cjs.defineOverride; }
3313
3792
  });
3314
3793
  Object.defineProperty(exports, "definePlugin", {
3315
3794
  enumerable: true,
3316
- get: function () { return chunkY7CGEGII_cjs.definePlugin; }
3795
+ get: function () { return chunkHMEY72T6_cjs.definePlugin; }
3317
3796
  });
3318
3797
  Object.defineProperty(exports, "defineProperty", {
3319
3798
  enumerable: true,
3320
- get: function () { return chunkY7CGEGII_cjs.defineProperty; }
3799
+ get: function () { return chunkHMEY72T6_cjs.defineProperty; }
3321
3800
  });
3322
3801
  Object.defineProperty(exports, "defineResolver", {
3323
3802
  enumerable: true,
3324
- get: function () { return chunkY7CGEGII_cjs.defineResolver; }
3803
+ get: function () { return chunkHMEY72T6_cjs.defineResolver; }
3325
3804
  });
3326
3805
  Object.defineProperty(exports, "deleteClientCredentialsPlugin", {
3327
3806
  enumerable: true,
3328
- get: function () { return chunkY7CGEGII_cjs.deleteClientCredentialsPlugin; }
3807
+ get: function () { return chunkHMEY72T6_cjs.deleteClientCredentialsPlugin; }
3329
3808
  });
3330
3809
  Object.defineProperty(exports, "deleteTableFieldsPlugin", {
3331
3810
  enumerable: true,
3332
- get: function () { return chunkY7CGEGII_cjs.deleteTableFieldsPlugin; }
3811
+ get: function () { return chunkHMEY72T6_cjs.deleteTableFieldsPlugin; }
3333
3812
  });
3334
3813
  Object.defineProperty(exports, "deleteTablePlugin", {
3335
3814
  enumerable: true,
3336
- get: function () { return chunkY7CGEGII_cjs.deleteTablePlugin; }
3815
+ get: function () { return chunkHMEY72T6_cjs.deleteTablePlugin; }
3337
3816
  });
3338
3817
  Object.defineProperty(exports, "deleteTableRecordsPlugin", {
3339
3818
  enumerable: true,
3340
- get: function () { return chunkY7CGEGII_cjs.deleteTableRecordsPlugin; }
3819
+ get: function () { return chunkHMEY72T6_cjs.deleteTableRecordsPlugin; }
3341
3820
  });
3342
3821
  Object.defineProperty(exports, "disposeSdk", {
3343
3822
  enumerable: true,
3344
- get: function () { return chunkY7CGEGII_cjs.disposeSdk; }
3823
+ get: function () { return chunkHMEY72T6_cjs.disposeSdk; }
3345
3824
  });
3346
3825
  Object.defineProperty(exports, "durableRunIdResolver", {
3347
3826
  enumerable: true,
3348
- get: function () { return chunkY7CGEGII_cjs.durableRunIdResolver; }
3827
+ get: function () { return chunkHMEY72T6_cjs.durableRunIdResolver; }
3349
3828
  });
3350
3829
  Object.defineProperty(exports, "eventEmissionHookPlugin", {
3351
3830
  enumerable: true,
3352
- get: function () { return chunkY7CGEGII_cjs.eventEmissionHookPlugin; }
3831
+ get: function () { return chunkHMEY72T6_cjs.eventEmissionHookPlugin; }
3353
3832
  });
3354
3833
  Object.defineProperty(exports, "eventEmissionPlugin", {
3355
3834
  enumerable: true,
3356
- get: function () { return chunkY7CGEGII_cjs.eventEmissionPlugin; }
3835
+ get: function () { return chunkHMEY72T6_cjs.eventEmissionPlugin; }
3357
3836
  });
3358
3837
  Object.defineProperty(exports, "eventEmissionPluginRef", {
3359
3838
  enumerable: true,
3360
- get: function () { return chunkY7CGEGII_cjs.eventEmissionPluginRef; }
3839
+ get: function () { return chunkHMEY72T6_cjs.eventEmissionPluginRef; }
3361
3840
  });
3362
3841
  Object.defineProperty(exports, "fetchPlugin", {
3363
3842
  enumerable: true,
3364
- get: function () { return chunkY7CGEGII_cjs.fetchPlugin; }
3843
+ get: function () { return chunkHMEY72T6_cjs.fetchPlugin; }
3365
3844
  });
3366
3845
  Object.defineProperty(exports, "findFirstConnectionPlugin", {
3367
3846
  enumerable: true,
3368
- get: function () { return chunkY7CGEGII_cjs.findFirstConnectionPlugin; }
3847
+ get: function () { return chunkHMEY72T6_cjs.findFirstConnectionPlugin; }
3369
3848
  });
3370
3849
  Object.defineProperty(exports, "findManifestEntry", {
3371
3850
  enumerable: true,
3372
- get: function () { return chunkY7CGEGII_cjs.findManifestEntry; }
3851
+ get: function () { return chunkHMEY72T6_cjs.findManifestEntry; }
3373
3852
  });
3374
3853
  Object.defineProperty(exports, "findUniqueConnectionPlugin", {
3375
3854
  enumerable: true,
3376
- get: function () { return chunkY7CGEGII_cjs.findUniqueConnectionPlugin; }
3855
+ get: function () { return chunkHMEY72T6_cjs.findUniqueConnectionPlugin; }
3377
3856
  });
3378
3857
  Object.defineProperty(exports, "formatErrorMessage", {
3379
3858
  enumerable: true,
3380
- get: function () { return chunkY7CGEGII_cjs.formatErrorMessage; }
3859
+ get: function () { return chunkHMEY72T6_cjs.formatErrorMessage; }
3381
3860
  });
3382
3861
  Object.defineProperty(exports, "fromFunctionPlugin", {
3383
3862
  enumerable: true,
3384
- get: function () { return chunkY7CGEGII_cjs.fromFunctionPlugin; }
3863
+ get: function () { return chunkHMEY72T6_cjs.fromFunctionPlugin; }
3385
3864
  });
3386
3865
  Object.defineProperty(exports, "generateEventId", {
3387
3866
  enumerable: true,
3388
- get: function () { return chunkY7CGEGII_cjs.generateEventId; }
3867
+ get: function () { return chunkHMEY72T6_cjs.generateEventId; }
3389
3868
  });
3390
3869
  Object.defineProperty(exports, "getActionInputFieldsSchemaPlugin", {
3391
3870
  enumerable: true,
3392
- get: function () { return chunkY7CGEGII_cjs.getActionInputFieldsSchemaPlugin; }
3871
+ get: function () { return chunkHMEY72T6_cjs.getActionInputFieldsSchemaPlugin; }
3393
3872
  });
3394
3873
  Object.defineProperty(exports, "getActionPlugin", {
3395
3874
  enumerable: true,
3396
- get: function () { return chunkY7CGEGII_cjs.getActionPlugin; }
3875
+ get: function () { return chunkHMEY72T6_cjs.getActionPlugin; }
3397
3876
  });
3398
3877
  Object.defineProperty(exports, "getActionRunPlugin", {
3399
3878
  enumerable: true,
3400
- get: function () { return chunkY7CGEGII_cjs.getActionRunPlugin; }
3879
+ get: function () { return chunkHMEY72T6_cjs.getActionRunPlugin; }
3401
3880
  });
3402
3881
  Object.defineProperty(exports, "getAgent", {
3403
3882
  enumerable: true,
3404
- get: function () { return chunkY7CGEGII_cjs.getAgent; }
3883
+ get: function () { return chunkHMEY72T6_cjs.getAgent; }
3405
3884
  });
3406
3885
  Object.defineProperty(exports, "getAppPlugin", {
3407
3886
  enumerable: true,
3408
- get: function () { return chunkY7CGEGII_cjs.getAppPlugin; }
3887
+ get: function () { return chunkHMEY72T6_cjs.getAppPlugin; }
3409
3888
  });
3410
3889
  Object.defineProperty(exports, "getBaseUrlFromCredentials", {
3411
3890
  enumerable: true,
3412
- get: function () { return chunkY7CGEGII_cjs.getBaseUrlFromCredentials; }
3891
+ get: function () { return chunkHMEY72T6_cjs.getBaseUrlFromCredentials; }
3413
3892
  });
3414
3893
  Object.defineProperty(exports, "getCallerContext", {
3415
3894
  enumerable: true,
3416
- get: function () { return chunkY7CGEGII_cjs.getCallerContext; }
3895
+ get: function () { return chunkHMEY72T6_cjs.getCallerContext; }
3417
3896
  });
3418
3897
  Object.defineProperty(exports, "getCiPlatform", {
3419
3898
  enumerable: true,
3420
- get: function () { return chunkY7CGEGII_cjs.getCiPlatform; }
3899
+ get: function () { return chunkHMEY72T6_cjs.getCiPlatform; }
3421
3900
  });
3422
3901
  Object.defineProperty(exports, "getClientIdFromCredentials", {
3423
3902
  enumerable: true,
3424
- get: function () { return chunkY7CGEGII_cjs.getClientIdFromCredentials; }
3903
+ get: function () { return chunkHMEY72T6_cjs.getClientIdFromCredentials; }
3425
3904
  });
3426
3905
  Object.defineProperty(exports, "getConnectionPlugin", {
3427
3906
  enumerable: true,
3428
- get: function () { return chunkY7CGEGII_cjs.getConnectionPlugin; }
3907
+ get: function () { return chunkHMEY72T6_cjs.getConnectionPlugin; }
3429
3908
  });
3430
3909
  Object.defineProperty(exports, "getContext", {
3431
3910
  enumerable: true,
3432
- get: function () { return chunkY7CGEGII_cjs.getContext; }
3911
+ get: function () { return chunkHMEY72T6_cjs.getContext; }
3433
3912
  });
3434
3913
  Object.defineProperty(exports, "getCoreErrorCause", {
3435
3914
  enumerable: true,
3436
- get: function () { return chunkY7CGEGII_cjs.getCoreErrorCause; }
3915
+ get: function () { return chunkHMEY72T6_cjs.getCoreErrorCause; }
3437
3916
  });
3438
3917
  Object.defineProperty(exports, "getCoreErrorCode", {
3439
3918
  enumerable: true,
3440
- get: function () { return chunkY7CGEGII_cjs.getCoreErrorCode; }
3919
+ get: function () { return chunkHMEY72T6_cjs.getCoreErrorCode; }
3441
3920
  });
3442
3921
  Object.defineProperty(exports, "getCpuTime", {
3443
3922
  enumerable: true,
3444
- get: function () { return chunkY7CGEGII_cjs.getCpuTime; }
3923
+ get: function () { return chunkHMEY72T6_cjs.getCpuTime; }
3445
3924
  });
3446
3925
  Object.defineProperty(exports, "getCurrentTimestamp", {
3447
3926
  enumerable: true,
3448
- get: function () { return chunkY7CGEGII_cjs.getCurrentTimestamp; }
3927
+ get: function () { return chunkHMEY72T6_cjs.getCurrentTimestamp; }
3449
3928
  });
3450
3929
  Object.defineProperty(exports, "getMemoryUsage", {
3451
3930
  enumerable: true,
3452
- get: function () { return chunkY7CGEGII_cjs.getMemoryUsage; }
3931
+ get: function () { return chunkHMEY72T6_cjs.getMemoryUsage; }
3453
3932
  });
3454
3933
  Object.defineProperty(exports, "getNegatable", {
3455
3934
  enumerable: true,
3456
- get: function () { return chunkY7CGEGII_cjs.getNegatable; }
3935
+ get: function () { return chunkHMEY72T6_cjs.getNegatable; }
3457
3936
  });
3458
3937
  Object.defineProperty(exports, "getOrCreateApiClient", {
3459
3938
  enumerable: true,
3460
- get: function () { return chunkY7CGEGII_cjs.getOrCreateApiClient; }
3939
+ get: function () { return chunkHMEY72T6_cjs.getOrCreateApiClient; }
3461
3940
  });
3462
3941
  Object.defineProperty(exports, "getOsInfo", {
3463
3942
  enumerable: true,
3464
- get: function () { return chunkY7CGEGII_cjs.getOsInfo; }
3943
+ get: function () { return chunkHMEY72T6_cjs.getOsInfo; }
3465
3944
  });
3466
3945
  Object.defineProperty(exports, "getPlatformVersions", {
3467
3946
  enumerable: true,
3468
- get: function () { return chunkY7CGEGII_cjs.getPlatformVersions; }
3947
+ get: function () { return chunkHMEY72T6_cjs.getPlatformVersions; }
3469
3948
  });
3470
3949
  Object.defineProperty(exports, "getPreferredManifestEntryKey", {
3471
3950
  enumerable: true,
3472
- get: function () { return chunkY7CGEGII_cjs.getPreferredManifestEntryKey; }
3951
+ get: function () { return chunkHMEY72T6_cjs.getPreferredManifestEntryKey; }
3473
3952
  });
3474
3953
  Object.defineProperty(exports, "getProfilePlugin", {
3475
3954
  enumerable: true,
3476
- get: function () { return chunkY7CGEGII_cjs.getProfilePlugin; }
3955
+ get: function () { return chunkHMEY72T6_cjs.getProfilePlugin; }
3477
3956
  });
3478
3957
  Object.defineProperty(exports, "getRegistryPlugin", {
3479
3958
  enumerable: true,
3480
- get: function () { return chunkY7CGEGII_cjs.getRegistryPlugin; }
3959
+ get: function () { return chunkHMEY72T6_cjs.getRegistryPlugin; }
3481
3960
  });
3482
3961
  Object.defineProperty(exports, "getReleaseId", {
3483
3962
  enumerable: true,
3484
- get: function () { return chunkY7CGEGII_cjs.getReleaseId; }
3963
+ get: function () { return chunkHMEY72T6_cjs.getReleaseId; }
3485
3964
  });
3486
3965
  Object.defineProperty(exports, "getTablePlugin", {
3487
3966
  enumerable: true,
3488
- get: function () { return chunkY7CGEGII_cjs.getTablePlugin; }
3967
+ get: function () { return chunkHMEY72T6_cjs.getTablePlugin; }
3489
3968
  });
3490
3969
  Object.defineProperty(exports, "getTableRecordPlugin", {
3491
3970
  enumerable: true,
3492
- get: function () { return chunkY7CGEGII_cjs.getTableRecordPlugin; }
3971
+ get: function () { return chunkHMEY72T6_cjs.getTableRecordPlugin; }
3493
3972
  });
3494
3973
  Object.defineProperty(exports, "getTokenFromCliLogin", {
3495
3974
  enumerable: true,
3496
- get: function () { return chunkY7CGEGII_cjs.getTokenFromCliLogin; }
3975
+ get: function () { return chunkHMEY72T6_cjs.getTokenFromCliLogin; }
3497
3976
  });
3498
3977
  Object.defineProperty(exports, "getTtyContext", {
3499
3978
  enumerable: true,
3500
- get: function () { return chunkY7CGEGII_cjs.getTtyContext; }
3979
+ get: function () { return chunkHMEY72T6_cjs.getTtyContext; }
3501
3980
  });
3502
3981
  Object.defineProperty(exports, "getZapierApprovalMode", {
3503
3982
  enumerable: true,
3504
- get: function () { return chunkY7CGEGII_cjs.getZapierApprovalMode; }
3983
+ get: function () { return chunkHMEY72T6_cjs.getZapierApprovalMode; }
3505
3984
  });
3506
3985
  Object.defineProperty(exports, "getZapierCausationId", {
3507
3986
  enumerable: true,
3508
- get: function () { return chunkY7CGEGII_cjs.getZapierCausationId; }
3987
+ get: function () { return chunkHMEY72T6_cjs.getZapierCausationId; }
3509
3988
  });
3510
3989
  Object.defineProperty(exports, "getZapierCorrelationId", {
3511
3990
  enumerable: true,
3512
- get: function () { return chunkY7CGEGII_cjs.getZapierCorrelationId; }
3991
+ get: function () { return chunkHMEY72T6_cjs.getZapierCorrelationId; }
3513
3992
  });
3514
3993
  Object.defineProperty(exports, "getZapierDefaultApprovalMode", {
3515
3994
  enumerable: true,
3516
- get: function () { return chunkY7CGEGII_cjs.getZapierDefaultApprovalMode; }
3995
+ get: function () { return chunkHMEY72T6_cjs.getZapierDefaultApprovalMode; }
3517
3996
  });
3518
3997
  Object.defineProperty(exports, "getZapierOpenAutoModeApprovalsInBrowser", {
3519
3998
  enumerable: true,
3520
- get: function () { return chunkY7CGEGII_cjs.getZapierOpenAutoModeApprovalsInBrowser; }
3999
+ get: function () { return chunkHMEY72T6_cjs.getZapierOpenAutoModeApprovalsInBrowser; }
3521
4000
  });
3522
4001
  Object.defineProperty(exports, "getZapierSdkService", {
3523
4002
  enumerable: true,
3524
- get: function () { return chunkY7CGEGII_cjs.getZapierSdkService; }
4003
+ get: function () { return chunkHMEY72T6_cjs.getZapierSdkService; }
3525
4004
  });
3526
4005
  Object.defineProperty(exports, "injectCliLogin", {
3527
4006
  enumerable: true,
3528
- get: function () { return chunkY7CGEGII_cjs.injectCliLogin; }
4007
+ get: function () { return chunkHMEY72T6_cjs.injectCliLogin; }
3529
4008
  });
3530
4009
  Object.defineProperty(exports, "inputFieldKeyResolver", {
3531
4010
  enumerable: true,
3532
- get: function () { return chunkY7CGEGII_cjs.inputFieldKeyResolver; }
4011
+ get: function () { return chunkHMEY72T6_cjs.inputFieldKeyResolver; }
3533
4012
  });
3534
4013
  Object.defineProperty(exports, "inputsAllOptionalResolver", {
3535
4014
  enumerable: true,
3536
- get: function () { return chunkY7CGEGII_cjs.inputsAllOptionalResolver; }
4015
+ get: function () { return chunkHMEY72T6_cjs.inputsAllOptionalResolver; }
3537
4016
  });
3538
4017
  Object.defineProperty(exports, "inputsResolver", {
3539
4018
  enumerable: true,
3540
- get: function () { return chunkY7CGEGII_cjs.inputsResolver; }
4019
+ get: function () { return chunkHMEY72T6_cjs.inputsResolver; }
3541
4020
  });
3542
4021
  Object.defineProperty(exports, "invalidateCachedToken", {
3543
4022
  enumerable: true,
3544
- get: function () { return chunkY7CGEGII_cjs.invalidateCachedToken; }
4023
+ get: function () { return chunkHMEY72T6_cjs.invalidateCachedToken; }
3545
4024
  });
3546
4025
  Object.defineProperty(exports, "invalidateCredentialsToken", {
3547
4026
  enumerable: true,
3548
- get: function () { return chunkY7CGEGII_cjs.invalidateCredentialsToken; }
4027
+ get: function () { return chunkHMEY72T6_cjs.invalidateCredentialsToken; }
3549
4028
  });
3550
4029
  Object.defineProperty(exports, "isCi", {
3551
4030
  enumerable: true,
3552
- get: function () { return chunkY7CGEGII_cjs.isCi; }
4031
+ get: function () { return chunkHMEY72T6_cjs.isCi; }
3553
4032
  });
3554
4033
  Object.defineProperty(exports, "isCliLoginAvailable", {
3555
4034
  enumerable: true,
3556
- get: function () { return chunkY7CGEGII_cjs.isCliLoginAvailable; }
4035
+ get: function () { return chunkHMEY72T6_cjs.isCliLoginAvailable; }
3557
4036
  });
3558
4037
  Object.defineProperty(exports, "isClientCredentials", {
3559
4038
  enumerable: true,
3560
- get: function () { return chunkY7CGEGII_cjs.isClientCredentials; }
4039
+ get: function () { return chunkHMEY72T6_cjs.isClientCredentials; }
3561
4040
  });
3562
4041
  Object.defineProperty(exports, "isCoreCancelledSignal", {
3563
4042
  enumerable: true,
3564
- get: function () { return chunkY7CGEGII_cjs.isCoreCancelledSignal; }
4043
+ get: function () { return chunkHMEY72T6_cjs.isCoreCancelledSignal; }
3565
4044
  });
3566
4045
  Object.defineProperty(exports, "isCoreError", {
3567
4046
  enumerable: true,
3568
- get: function () { return chunkY7CGEGII_cjs.isCoreError; }
4047
+ get: function () { return chunkHMEY72T6_cjs.isCoreError; }
3569
4048
  });
3570
4049
  Object.defineProperty(exports, "isCoreSignal", {
3571
4050
  enumerable: true,
3572
- get: function () { return chunkY7CGEGII_cjs.isCoreSignal; }
4051
+ get: function () { return chunkHMEY72T6_cjs.isCoreSignal; }
3573
4052
  });
3574
4053
  Object.defineProperty(exports, "isCredentialsFunction", {
3575
4054
  enumerable: true,
3576
- get: function () { return chunkY7CGEGII_cjs.isCredentialsFunction; }
4055
+ get: function () { return chunkHMEY72T6_cjs.isCredentialsFunction; }
3577
4056
  });
3578
4057
  Object.defineProperty(exports, "isCredentialsObject", {
3579
4058
  enumerable: true,
3580
- get: function () { return chunkY7CGEGII_cjs.isCredentialsObject; }
4059
+ get: function () { return chunkHMEY72T6_cjs.isCredentialsObject; }
3581
4060
  });
3582
4061
  Object.defineProperty(exports, "isPermanentHttpError", {
3583
4062
  enumerable: true,
3584
- get: function () { return chunkY7CGEGII_cjs.isPermanentHttpError; }
4063
+ get: function () { return chunkHMEY72T6_cjs.isPermanentHttpError; }
3585
4064
  });
3586
4065
  Object.defineProperty(exports, "isPkceCredentials", {
3587
4066
  enumerable: true,
3588
- get: function () { return chunkY7CGEGII_cjs.isPkceCredentials; }
4067
+ get: function () { return chunkHMEY72T6_cjs.isPkceCredentials; }
3589
4068
  });
3590
4069
  Object.defineProperty(exports, "isPositional", {
3591
4070
  enumerable: true,
3592
- get: function () { return chunkY7CGEGII_cjs.isPositional; }
4071
+ get: function () { return chunkHMEY72T6_cjs.isPositional; }
3593
4072
  });
3594
4073
  Object.defineProperty(exports, "isZapierAbortDrainSignal", {
3595
4074
  enumerable: true,
3596
- get: function () { return chunkY7CGEGII_cjs.isZapierAbortDrainSignal; }
4075
+ get: function () { return chunkHMEY72T6_cjs.isZapierAbortDrainSignal; }
3597
4076
  });
3598
4077
  Object.defineProperty(exports, "isZapierActionError", {
3599
4078
  enumerable: true,
3600
- get: function () { return chunkY7CGEGII_cjs.isZapierActionError; }
4079
+ get: function () { return chunkHMEY72T6_cjs.isZapierActionError; }
3601
4080
  });
3602
4081
  Object.defineProperty(exports, "isZapierAppNotFoundError", {
3603
4082
  enumerable: true,
3604
- get: function () { return chunkY7CGEGII_cjs.isZapierAppNotFoundError; }
4083
+ get: function () { return chunkHMEY72T6_cjs.isZapierAppNotFoundError; }
3605
4084
  });
3606
4085
  Object.defineProperty(exports, "isZapierApprovalError", {
3607
4086
  enumerable: true,
3608
- get: function () { return chunkY7CGEGII_cjs.isZapierApprovalError; }
4087
+ get: function () { return chunkHMEY72T6_cjs.isZapierApprovalError; }
3609
4088
  });
3610
4089
  Object.defineProperty(exports, "isZapierAuthenticationError", {
3611
4090
  enumerable: true,
3612
- get: function () { return chunkY7CGEGII_cjs.isZapierAuthenticationError; }
4091
+ get: function () { return chunkHMEY72T6_cjs.isZapierAuthenticationError; }
3613
4092
  });
3614
4093
  Object.defineProperty(exports, "isZapierBundleError", {
3615
4094
  enumerable: true,
3616
- get: function () { return chunkY7CGEGII_cjs.isZapierBundleError; }
4095
+ get: function () { return chunkHMEY72T6_cjs.isZapierBundleError; }
3617
4096
  });
3618
4097
  Object.defineProperty(exports, "isZapierConflictError", {
3619
4098
  enumerable: true,
3620
- get: function () { return chunkY7CGEGII_cjs.isZapierConflictError; }
4099
+ get: function () { return chunkHMEY72T6_cjs.isZapierConflictError; }
3621
4100
  });
3622
4101
  Object.defineProperty(exports, "isZapierError", {
3623
4102
  enumerable: true,
3624
- get: function () { return chunkY7CGEGII_cjs.isZapierError; }
4103
+ get: function () { return chunkHMEY72T6_cjs.isZapierError; }
3625
4104
  });
3626
4105
  Object.defineProperty(exports, "isZapierNotFoundError", {
3627
4106
  enumerable: true,
3628
- get: function () { return chunkY7CGEGII_cjs.isZapierNotFoundError; }
4107
+ get: function () { return chunkHMEY72T6_cjs.isZapierNotFoundError; }
3629
4108
  });
3630
4109
  Object.defineProperty(exports, "isZapierRateLimitError", {
3631
4110
  enumerable: true,
3632
- get: function () { return chunkY7CGEGII_cjs.isZapierRateLimitError; }
4111
+ get: function () { return chunkHMEY72T6_cjs.isZapierRateLimitError; }
3633
4112
  });
3634
4113
  Object.defineProperty(exports, "isZapierReleaseTriggerMessageSignal", {
3635
4114
  enumerable: true,
3636
- get: function () { return chunkY7CGEGII_cjs.isZapierReleaseTriggerMessageSignal; }
4115
+ get: function () { return chunkHMEY72T6_cjs.isZapierReleaseTriggerMessageSignal; }
3637
4116
  });
3638
4117
  Object.defineProperty(exports, "isZapierResourceNotFoundError", {
3639
4118
  enumerable: true,
3640
- get: function () { return chunkY7CGEGII_cjs.isZapierResourceNotFoundError; }
4119
+ get: function () { return chunkHMEY72T6_cjs.isZapierResourceNotFoundError; }
3641
4120
  });
3642
4121
  Object.defineProperty(exports, "isZapierSignal", {
3643
4122
  enumerable: true,
3644
- get: function () { return chunkY7CGEGII_cjs.isZapierSignal; }
4123
+ get: function () { return chunkHMEY72T6_cjs.isZapierSignal; }
3645
4124
  });
3646
4125
  Object.defineProperty(exports, "isZapierTimeoutError", {
3647
4126
  enumerable: true,
3648
- get: function () { return chunkY7CGEGII_cjs.isZapierTimeoutError; }
4127
+ get: function () { return chunkHMEY72T6_cjs.isZapierTimeoutError; }
3649
4128
  });
3650
4129
  Object.defineProperty(exports, "isZapierValidationError", {
3651
4130
  enumerable: true,
3652
- get: function () { return chunkY7CGEGII_cjs.isZapierValidationError; }
4131
+ get: function () { return chunkHMEY72T6_cjs.isZapierValidationError; }
3653
4132
  });
3654
4133
  Object.defineProperty(exports, "listActionInputFieldChoicesPlugin", {
3655
4134
  enumerable: true,
3656
- get: function () { return chunkY7CGEGII_cjs.listActionInputFieldChoicesPlugin; }
4135
+ get: function () { return chunkHMEY72T6_cjs.listActionInputFieldChoicesPlugin; }
3657
4136
  });
3658
4137
  Object.defineProperty(exports, "listActionInputFieldsPlugin", {
3659
4138
  enumerable: true,
3660
- get: function () { return chunkY7CGEGII_cjs.listActionInputFieldsPlugin; }
4139
+ get: function () { return chunkHMEY72T6_cjs.listActionInputFieldsPlugin; }
3661
4140
  });
3662
4141
  Object.defineProperty(exports, "listActionsPlugin", {
3663
4142
  enumerable: true,
3664
- get: function () { return chunkY7CGEGII_cjs.listActionsPlugin; }
4143
+ get: function () { return chunkHMEY72T6_cjs.listActionsPlugin; }
3665
4144
  });
3666
4145
  Object.defineProperty(exports, "listAppsPlugin", {
3667
4146
  enumerable: true,
3668
- get: function () { return chunkY7CGEGII_cjs.listAppsPlugin; }
4147
+ get: function () { return chunkHMEY72T6_cjs.listAppsPlugin; }
3669
4148
  });
3670
4149
  Object.defineProperty(exports, "listClientCredentialsPlugin", {
3671
4150
  enumerable: true,
3672
- get: function () { return chunkY7CGEGII_cjs.listClientCredentialsPlugin; }
4151
+ get: function () { return chunkHMEY72T6_cjs.listClientCredentialsPlugin; }
3673
4152
  });
3674
4153
  Object.defineProperty(exports, "listConnectionsPlugin", {
3675
4154
  enumerable: true,
3676
- get: function () { return chunkY7CGEGII_cjs.listConnectionsPlugin; }
4155
+ get: function () { return chunkHMEY72T6_cjs.listConnectionsPlugin; }
3677
4156
  });
3678
4157
  Object.defineProperty(exports, "listTableFieldsPlugin", {
3679
4158
  enumerable: true,
3680
- get: function () { return chunkY7CGEGII_cjs.listTableFieldsPlugin; }
4159
+ get: function () { return chunkHMEY72T6_cjs.listTableFieldsPlugin; }
3681
4160
  });
3682
4161
  Object.defineProperty(exports, "listTableRecordsPlugin", {
3683
4162
  enumerable: true,
3684
- get: function () { return chunkY7CGEGII_cjs.listTableRecordsPlugin; }
4163
+ get: function () { return chunkHMEY72T6_cjs.listTableRecordsPlugin; }
3685
4164
  });
3686
4165
  Object.defineProperty(exports, "listTablesPlugin", {
3687
4166
  enumerable: true,
3688
- get: function () { return chunkY7CGEGII_cjs.listTablesPlugin; }
4167
+ get: function () { return chunkHMEY72T6_cjs.listTablesPlugin; }
3689
4168
  });
3690
4169
  Object.defineProperty(exports, "logDeprecation", {
3691
4170
  enumerable: true,
3692
- get: function () { return chunkY7CGEGII_cjs.logDeprecation; }
4171
+ get: function () { return chunkHMEY72T6_cjs.logDeprecation; }
3693
4172
  });
3694
4173
  Object.defineProperty(exports, "manifestPlugin", {
3695
4174
  enumerable: true,
3696
- get: function () { return chunkY7CGEGII_cjs.manifestPlugin; }
4175
+ get: function () { return chunkHMEY72T6_cjs.manifestPlugin; }
3697
4176
  });
3698
4177
  Object.defineProperty(exports, "manifestPluginRef", {
3699
4178
  enumerable: true,
3700
- get: function () { return chunkY7CGEGII_cjs.manifestPluginRef; }
4179
+ get: function () { return chunkHMEY72T6_cjs.manifestPluginRef; }
3701
4180
  });
3702
4181
  Object.defineProperty(exports, "omitExports", {
3703
4182
  enumerable: true,
3704
- get: function () { return chunkY7CGEGII_cjs.omitExports; }
4183
+ get: function () { return chunkHMEY72T6_cjs.omitExports; }
3705
4184
  });
3706
4185
  Object.defineProperty(exports, "operationAnnotatorPlugin", {
3707
4186
  enumerable: true,
3708
- get: function () { return chunkY7CGEGII_cjs.operationAnnotatorPlugin; }
4187
+ get: function () { return chunkHMEY72T6_cjs.operationAnnotatorPlugin; }
3709
4188
  });
3710
4189
  Object.defineProperty(exports, "parseConcurrencyEnvVar", {
3711
4190
  enumerable: true,
3712
- get: function () { return chunkY7CGEGII_cjs.parseConcurrencyEnvVar; }
4191
+ get: function () { return chunkHMEY72T6_cjs.parseConcurrencyEnvVar; }
3713
4192
  });
3714
4193
  Object.defineProperty(exports, "readManifestFromFile", {
3715
4194
  enumerable: true,
3716
- get: function () { return chunkY7CGEGII_cjs.readManifestFromFile; }
4195
+ get: function () { return chunkHMEY72T6_cjs.readManifestFromFile; }
3717
4196
  });
3718
4197
  Object.defineProperty(exports, "registryPlugin", {
3719
4198
  enumerable: true,
3720
- get: function () { return chunkY7CGEGII_cjs.registryPlugin; }
4199
+ get: function () { return chunkHMEY72T6_cjs.registryPlugin; }
3721
4200
  });
3722
4201
  Object.defineProperty(exports, "requestPlugin", {
3723
4202
  enumerable: true,
3724
- get: function () { return chunkY7CGEGII_cjs.requestPlugin; }
4203
+ get: function () { return chunkHMEY72T6_cjs.requestPlugin; }
3725
4204
  });
3726
4205
  Object.defineProperty(exports, "resetDeprecationWarnings", {
3727
4206
  enumerable: true,
3728
- get: function () { return chunkY7CGEGII_cjs.resetDeprecationWarnings; }
4207
+ get: function () { return chunkHMEY72T6_cjs.resetDeprecationWarnings; }
3729
4208
  });
3730
4209
  Object.defineProperty(exports, "resolveAuth", {
3731
4210
  enumerable: true,
3732
- get: function () { return chunkY7CGEGII_cjs.resolveAuth; }
4211
+ get: function () { return chunkHMEY72T6_cjs.resolveAuth; }
3733
4212
  });
3734
4213
  Object.defineProperty(exports, "resolveAuthToken", {
3735
4214
  enumerable: true,
3736
- get: function () { return chunkY7CGEGII_cjs.resolveAuthToken; }
4215
+ get: function () { return chunkHMEY72T6_cjs.resolveAuthToken; }
3737
4216
  });
3738
4217
  Object.defineProperty(exports, "resolveCredentials", {
3739
4218
  enumerable: true,
3740
- get: function () { return chunkY7CGEGII_cjs.resolveCredentials; }
4219
+ get: function () { return chunkHMEY72T6_cjs.resolveCredentials; }
3741
4220
  });
3742
4221
  Object.defineProperty(exports, "resolveCredentialsFromEnv", {
3743
4222
  enumerable: true,
3744
- get: function () { return chunkY7CGEGII_cjs.resolveCredentialsFromEnv; }
4223
+ get: function () { return chunkHMEY72T6_cjs.resolveCredentialsFromEnv; }
3745
4224
  });
3746
4225
  Object.defineProperty(exports, "resolveCredentialsPlugin", {
3747
4226
  enumerable: true,
3748
- get: function () { return chunkY7CGEGII_cjs.resolveCredentialsPlugin; }
4227
+ get: function () { return chunkHMEY72T6_cjs.resolveCredentialsPlugin; }
3749
4228
  });
3750
4229
  Object.defineProperty(exports, "resolveCredentialsPluginRef", {
3751
4230
  enumerable: true,
3752
- get: function () { return chunkY7CGEGII_cjs.resolveCredentialsPluginRef; }
4231
+ get: function () { return chunkHMEY72T6_cjs.resolveCredentialsPluginRef; }
3753
4232
  });
3754
4233
  Object.defineProperty(exports, "resolvePlugin", {
3755
4234
  enumerable: true,
3756
- get: function () { return chunkY7CGEGII_cjs.resolvePlugin; }
4235
+ get: function () { return chunkHMEY72T6_cjs.resolvePlugin; }
3757
4236
  });
3758
4237
  Object.defineProperty(exports, "runActionPlugin", {
3759
4238
  enumerable: true,
3760
- get: function () { return chunkY7CGEGII_cjs.runActionPlugin; }
4239
+ get: function () { return chunkHMEY72T6_cjs.runActionPlugin; }
3761
4240
  });
3762
4241
  Object.defineProperty(exports, "runInMethodScope", {
3763
4242
  enumerable: true,
3764
- get: function () { return chunkY7CGEGII_cjs.runInMethodScope; }
4243
+ get: function () { return chunkHMEY72T6_cjs.runInMethodScope; }
3765
4244
  });
3766
4245
  Object.defineProperty(exports, "runWithCallerContext", {
3767
4246
  enumerable: true,
3768
- get: function () { return chunkY7CGEGII_cjs.runWithCallerContext; }
4247
+ get: function () { return chunkHMEY72T6_cjs.runWithCallerContext; }
3769
4248
  });
3770
4249
  Object.defineProperty(exports, "runWithTelemetryContext", {
3771
4250
  enumerable: true,
3772
- get: function () { return chunkY7CGEGII_cjs.runWithTelemetryContext; }
4251
+ get: function () { return chunkHMEY72T6_cjs.runWithTelemetryContext; }
3773
4252
  });
3774
4253
  Object.defineProperty(exports, "sdkOptionsPluginRef", {
3775
4254
  enumerable: true,
3776
- get: function () { return chunkY7CGEGII_cjs.sdkOptionsPluginRef; }
4255
+ get: function () { return chunkHMEY72T6_cjs.sdkOptionsPluginRef; }
3777
4256
  });
3778
4257
  Object.defineProperty(exports, "selectExports", {
3779
4258
  enumerable: true,
3780
- get: function () { return chunkY7CGEGII_cjs.selectExports; }
4259
+ get: function () { return chunkHMEY72T6_cjs.selectExports; }
3781
4260
  });
3782
4261
  Object.defineProperty(exports, "tableFieldIdsResolver", {
3783
4262
  enumerable: true,
3784
- get: function () { return chunkY7CGEGII_cjs.tableFieldIdsResolver; }
4263
+ get: function () { return chunkHMEY72T6_cjs.tableFieldIdsResolver; }
3785
4264
  });
3786
4265
  Object.defineProperty(exports, "tableFieldsResolver", {
3787
4266
  enumerable: true,
3788
- get: function () { return chunkY7CGEGII_cjs.tableFieldsResolver; }
4267
+ get: function () { return chunkHMEY72T6_cjs.tableFieldsResolver; }
3789
4268
  });
3790
4269
  Object.defineProperty(exports, "tableFiltersResolver", {
3791
4270
  enumerable: true,
3792
- get: function () { return chunkY7CGEGII_cjs.tableFiltersResolver; }
4271
+ get: function () { return chunkHMEY72T6_cjs.tableFiltersResolver; }
3793
4272
  });
3794
4273
  Object.defineProperty(exports, "tableIdResolver", {
3795
4274
  enumerable: true,
3796
- get: function () { return chunkY7CGEGII_cjs.tableIdResolver; }
4275
+ get: function () { return chunkHMEY72T6_cjs.tableIdResolver; }
3797
4276
  });
3798
4277
  Object.defineProperty(exports, "tableNameResolver", {
3799
4278
  enumerable: true,
3800
- get: function () { return chunkY7CGEGII_cjs.tableNameResolver; }
4279
+ get: function () { return chunkHMEY72T6_cjs.tableNameResolver; }
3801
4280
  });
3802
4281
  Object.defineProperty(exports, "tableRecordIdResolver", {
3803
4282
  enumerable: true,
3804
- get: function () { return chunkY7CGEGII_cjs.tableRecordIdResolver; }
4283
+ get: function () { return chunkHMEY72T6_cjs.tableRecordIdResolver; }
3805
4284
  });
3806
4285
  Object.defineProperty(exports, "tableRecordIdsResolver", {
3807
4286
  enumerable: true,
3808
- get: function () { return chunkY7CGEGII_cjs.tableRecordIdsResolver; }
4287
+ get: function () { return chunkHMEY72T6_cjs.tableRecordIdsResolver; }
3809
4288
  });
3810
4289
  Object.defineProperty(exports, "tableRecordsResolver", {
3811
4290
  enumerable: true,
3812
- get: function () { return chunkY7CGEGII_cjs.tableRecordsResolver; }
4291
+ get: function () { return chunkHMEY72T6_cjs.tableRecordsResolver; }
3813
4292
  });
3814
4293
  Object.defineProperty(exports, "tableSortResolver", {
3815
4294
  enumerable: true,
3816
- get: function () { return chunkY7CGEGII_cjs.tableSortResolver; }
4295
+ get: function () { return chunkHMEY72T6_cjs.tableSortResolver; }
3817
4296
  });
3818
4297
  Object.defineProperty(exports, "tableUpdateRecordsResolver", {
3819
4298
  enumerable: true,
3820
- get: function () { return chunkY7CGEGII_cjs.tableUpdateRecordsResolver; }
4299
+ get: function () { return chunkHMEY72T6_cjs.tableUpdateRecordsResolver; }
3821
4300
  });
3822
4301
  Object.defineProperty(exports, "toSnakeCase", {
3823
4302
  enumerable: true,
3824
- get: function () { return chunkY7CGEGII_cjs.toSnakeCase; }
4303
+ get: function () { return chunkHMEY72T6_cjs.toSnakeCase; }
3825
4304
  });
3826
4305
  Object.defineProperty(exports, "toTitleCase", {
3827
4306
  enumerable: true,
3828
- get: function () { return chunkY7CGEGII_cjs.toTitleCase; }
4307
+ get: function () { return chunkHMEY72T6_cjs.toTitleCase; }
3829
4308
  });
3830
4309
  Object.defineProperty(exports, "triggerInboxResolver", {
3831
4310
  enumerable: true,
3832
- get: function () { return chunkY7CGEGII_cjs.triggerInboxResolver; }
4311
+ get: function () { return chunkHMEY72T6_cjs.triggerInboxResolver; }
3833
4312
  });
3834
4313
  Object.defineProperty(exports, "triggerMessagesResolver", {
3835
4314
  enumerable: true,
3836
- get: function () { return chunkY7CGEGII_cjs.triggerMessagesResolver; }
4315
+ get: function () { return chunkHMEY72T6_cjs.triggerMessagesResolver; }
3837
4316
  });
3838
4317
  Object.defineProperty(exports, "updateTableRecordsPlugin", {
3839
4318
  enumerable: true,
3840
- get: function () { return chunkY7CGEGII_cjs.updateTableRecordsPlugin; }
4319
+ get: function () { return chunkHMEY72T6_cjs.updateTableRecordsPlugin; }
3841
4320
  });
3842
4321
  Object.defineProperty(exports, "workflowDraftIdResolver", {
3843
4322
  enumerable: true,
3844
- get: function () { return chunkY7CGEGII_cjs.workflowDraftIdResolver; }
4323
+ get: function () { return chunkHMEY72T6_cjs.workflowDraftIdResolver; }
3845
4324
  });
3846
4325
  Object.defineProperty(exports, "workflowIdResolver", {
3847
4326
  enumerable: true,
3848
- get: function () { return chunkY7CGEGII_cjs.workflowIdResolver; }
4327
+ get: function () { return chunkHMEY72T6_cjs.workflowIdResolver; }
3849
4328
  });
3850
4329
  Object.defineProperty(exports, "workflowRunIdResolver", {
3851
4330
  enumerable: true,
3852
- get: function () { return chunkY7CGEGII_cjs.workflowRunIdResolver; }
4331
+ get: function () { return chunkHMEY72T6_cjs.workflowRunIdResolver; }
3853
4332
  });
3854
4333
  Object.defineProperty(exports, "workflowVersionIdResolver", {
3855
4334
  enumerable: true,
3856
- get: function () { return chunkY7CGEGII_cjs.workflowVersionIdResolver; }
4335
+ get: function () { return chunkHMEY72T6_cjs.workflowVersionIdResolver; }
3857
4336
  });
3858
4337
  Object.defineProperty(exports, "zapierAdaptError", {
3859
4338
  enumerable: true,
3860
- get: function () { return chunkY7CGEGII_cjs.zapierAdaptError; }
4339
+ get: function () { return chunkHMEY72T6_cjs.zapierAdaptError; }
3861
4340
  });
3862
4341
  Object.defineProperty(exports, "zapierCoreOptions", {
3863
4342
  enumerable: true,
3864
- get: function () { return chunkY7CGEGII_cjs.zapierCoreOptions; }
4343
+ get: function () { return chunkHMEY72T6_cjs.zapierCoreOptions; }
3865
4344
  });
3866
4345
  Object.defineProperty(exports, "zapierSdkPlugin", {
3867
4346
  enumerable: true,
3868
- get: function () { return chunkY7CGEGII_cjs.zapierSdkPlugin; }
4347
+ get: function () { return chunkHMEY72T6_cjs.zapierSdkPlugin; }
3869
4348
  });
3870
4349
  exports.createZapierSdk = createZapierSdk;
3871
4350
  exports.zapierExperimentalSdkPlugin = zapierExperimentalSdkPlugin;