@zapier/zapier-sdk 0.111.2 → 0.112.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,52 @@
1
1
  # @zapier/zapier-sdk
2
2
 
3
+ ## 0.112.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 2102c00: **Removed the legacy function-plugin surface.** A plugin is now always a
8
+ descriptor built by `define*` / `declare*`, never a `(sdk) => provides`
9
+ function. These exports shipped deprecated with runtime warnings and are now
10
+ gone:
11
+
12
+ | Removed | Use instead |
13
+ | ---------------------------------------------------- | ----------------------------------------------------------------------- |
14
+ | `createPluginStack`, `composePlugins` | `definePlugin({ name, exports })` and `createSdk(root)` |
15
+ | `createPluginMethod`, `createPaginatedPluginMethod` | `defineMethod({ output: "item" })` / `defineMethod({ output: "list" })` |
16
+ | `createCorePlugin(options)` | `createSdk(root, { configuration: { [CORE_OPTIONS_ID]: options } })` |
17
+ | `fromFunctionPlugin`, `defineLegacyMerge` | `createSdk(root)` on a descriptor root |
18
+ | `definePlugin(fn)` (the function form) | `defineMethod` / `defineProperty` / `definePlugin({ ... })` |
19
+ | `registryPlugin` | nothing: `createZapierSdk` already surfaces `getRegistry` |
20
+ | `Plugin<TSdk, TProvides>` (the function-plugin type) | `Plugin` now names the descriptor a `define*` call returns |
21
+ | `PluginProvides` type | `PluginSurface<typeof plugin>` for a plugin's own surface |
22
+ | `OutputFormatter` type | `defineFormatter`, whose result is a `Formatter` |
23
+
24
+ Also removed, with no deprecation warning: `createFunction` and
25
+ `createPaginatedFunction`. Only a function plugin could use their output. Author
26
+ with `defineMethod({ output: "item" })` or `defineMethod({ output: "list" })`
27
+ instead.
28
+ - `addPlugin(sdk, plugin)` refuses a function argument.
29
+ - `sdk.context.meta` is gone. Read `sdk.getRegistry()` instead.
30
+ - `sdk.context` has no index signature, so `sdk.context.anything` no longer
31
+ typechecks.
32
+
33
+ `sdk.getRegistry()` is unchanged.
34
+
35
+ Added `getRegistry(sdk, packageFilter?)`, a free function that reads the same
36
+ registry without the accessor being on the surface, and its `RegistryResult`
37
+ type. Added `formatExtensionPluginFailure(error)`, the message a host shows when
38
+ `addPlugin` refuses an extension. Re-exported `Plugin` from kitcore, the type of any `define*` result.
39
+
40
+ Re-exported `MethodMeta` and `PropertyMeta`, the description fields a method
41
+ or a property carries. `PluginMeta` stays as a deprecated alias of `MethodMeta`,
42
+ now an exact field list with no index signature, so a `satisfies
43
+ Partial<PluginMeta>` that sets a field outside it no longer compiles.
44
+
45
+ ### Patch Changes
46
+
47
+ - Updated dependencies [2102c00]
48
+ - @zapier/kitcore@0.21.0
49
+
3
50
  ## 0.111.2
4
51
 
5
52
  ### Patch Changes
@@ -2807,7 +2807,7 @@ function logRouteOverride({
2807
2807
  }
2808
2808
 
2809
2809
  // src/sdk-version.ts
2810
- var SDK_VERSION = (typeof process !== "undefined" && process.env ? "0.111.2" : void 0) || "unknown";
2810
+ var SDK_VERSION = (typeof process !== "undefined" && process.env ? "0.112.0" : void 0) || "unknown";
2811
2811
 
2812
2812
  // src/utils/open-url.ts
2813
2813
  var nodePrefix = "node:";
@@ -7478,8 +7478,7 @@ var appsPlugin = kitcore.defineProperty({
7478
7478
  type: "list",
7479
7479
  inputSchema: ActionExecutionInputSchema,
7480
7480
  itemType: "ActionResult",
7481
- outputSchema: ActionResultItemSchema,
7482
- skipOutputValidation: true
7481
+ outputSchema: ActionResultItemSchema
7483
7482
  }
7484
7483
  ]
7485
7484
  });
@@ -12945,8 +12944,8 @@ var zapierSdkPlugin = kitcore.definePlugin({
12945
12944
  operationAnnotatorPlugin
12946
12945
  ],
12947
12946
  exports: [
12948
- // The registry reporter: previously synthesized by the legacy merge,
12949
- // now surfaced like any other method.
12947
+ // The registry reporter. A re-exportable built-in, so it is listed here
12948
+ // rather than added by the framework.
12950
12949
  kitcore.getRegistryPlugin,
12951
12950
  getProfilePlugin,
12952
12951
  listAppsPlugin,
@@ -13195,13 +13194,18 @@ var BaseSdkOptionsSchema = zod.z.object({
13195
13194
  // Use credentials instead
13196
13195
  });
13197
13196
 
13198
- // src/plugins/registry/index.ts
13199
- var registryPlugin = (_sdk) => {
13200
- logDeprecation(
13201
- "registryPlugin is deprecated and a no-op; getRegistry is now built into every sdk. Remove .addPlugin(registryPlugin)."
13202
- );
13203
- return {};
13204
- };
13197
+ // src/utils/extension-failure.ts
13198
+ function formatExtensionPluginFailure(error) {
13199
+ const message = describeThrown(error);
13200
+ return `Extension plugin failed to construct: ${message}. Skipping this plugin: nothing it declared was added, and any \`dispose\` it registered was invoked. Plugins the same package already loaded stay loaded. Cleanup after an \`await\` inside a \`dispose\` is not guaranteed, and a side effect from the part that threw cannot be undone, so fix or remove the extension.`;
13201
+ }
13202
+ function describeThrown(error) {
13203
+ try {
13204
+ return error instanceof Error ? error.message : String(error);
13205
+ } catch {
13206
+ return "a thrown value that could not be read";
13207
+ }
13208
+ }
13205
13209
 
13206
13210
  Object.defineProperty(exports, "CONTEXT", {
13207
13211
  enumerable: true,
@@ -13239,38 +13243,10 @@ Object.defineProperty(exports, "addPlugin", {
13239
13243
  enumerable: true,
13240
13244
  get: function () { return kitcore.addPlugin; }
13241
13245
  });
13242
- Object.defineProperty(exports, "composePlugins", {
13243
- enumerable: true,
13244
- get: function () { return kitcore.composePlugins; }
13245
- });
13246
13246
  Object.defineProperty(exports, "createController", {
13247
13247
  enumerable: true,
13248
13248
  get: function () { return kitcore.createController; }
13249
13249
  });
13250
- Object.defineProperty(exports, "createCorePlugin", {
13251
- enumerable: true,
13252
- get: function () { return kitcore.createCorePlugin; }
13253
- });
13254
- Object.defineProperty(exports, "createFunction", {
13255
- enumerable: true,
13256
- get: function () { return kitcore.createFunction; }
13257
- });
13258
- Object.defineProperty(exports, "createPaginatedFunction", {
13259
- enumerable: true,
13260
- get: function () { return kitcore.createPaginatedFunction; }
13261
- });
13262
- Object.defineProperty(exports, "createPaginatedPluginMethod", {
13263
- enumerable: true,
13264
- get: function () { return kitcore.createPaginatedPluginMethod; }
13265
- });
13266
- Object.defineProperty(exports, "createPluginMethod", {
13267
- enumerable: true,
13268
- get: function () { return kitcore.createPluginMethod; }
13269
- });
13270
- Object.defineProperty(exports, "createPluginStack", {
13271
- enumerable: true,
13272
- get: function () { return kitcore.createPluginStack; }
13273
- });
13274
13250
  Object.defineProperty(exports, "createSdk", {
13275
13251
  enumerable: true,
13276
13252
  get: function () { return kitcore.createSdk; }
@@ -13295,10 +13271,6 @@ Object.defineProperty(exports, "defineFormatter", {
13295
13271
  enumerable: true,
13296
13272
  get: function () { return kitcore.defineFormatter; }
13297
13273
  });
13298
- Object.defineProperty(exports, "defineLegacyMerge", {
13299
- enumerable: true,
13300
- get: function () { return kitcore.defineLegacyMerge; }
13301
- });
13302
13274
  Object.defineProperty(exports, "defineMethod", {
13303
13275
  enumerable: true,
13304
13276
  get: function () { return kitcore.defineMethod; }
@@ -13327,10 +13299,6 @@ Object.defineProperty(exports, "disposeSdk", {
13327
13299
  enumerable: true,
13328
13300
  get: function () { return kitcore.disposeSdk; }
13329
13301
  });
13330
- Object.defineProperty(exports, "fromFunctionPlugin", {
13331
- enumerable: true,
13332
- get: function () { return kitcore.fromFunctionPlugin; }
13333
- });
13334
13302
  Object.defineProperty(exports, "getContext", {
13335
13303
  enumerable: true,
13336
13304
  get: function () { return kitcore.getContext; }
@@ -13347,6 +13315,10 @@ Object.defineProperty(exports, "getNegatable", {
13347
13315
  enumerable: true,
13348
13316
  get: function () { return kitcore.getNegatable; }
13349
13317
  });
13318
+ Object.defineProperty(exports, "getRegistry", {
13319
+ enumerable: true,
13320
+ get: function () { return kitcore.getRegistry; }
13321
+ });
13350
13322
  Object.defineProperty(exports, "getRegistryPlugin", {
13351
13323
  enumerable: true,
13352
13324
  get: function () { return kitcore.getRegistryPlugin; }
@@ -13524,6 +13496,7 @@ exports.findFirstConnectionPlugin = findFirstConnectionPlugin;
13524
13496
  exports.findManifestEntry = findManifestEntry;
13525
13497
  exports.findUniqueConnectionPlugin = findUniqueConnectionPlugin;
13526
13498
  exports.formatErrorMessage = formatErrorMessage;
13499
+ exports.formatExtensionPluginFailure = formatExtensionPluginFailure;
13527
13500
  exports.generateEventId = generateEventId;
13528
13501
  exports.getActionInputFieldsSchemaPlugin = getActionInputFieldsSchemaPlugin;
13529
13502
  exports.getActionPlugin = getActionPlugin;
@@ -13597,7 +13570,6 @@ exports.manifestPluginRef = manifestPluginRef;
13597
13570
  exports.operationAnnotatorPlugin = operationAnnotatorPlugin;
13598
13571
  exports.parseConcurrencyEnvVar = parseConcurrencyEnvVar;
13599
13572
  exports.readManifestFromFile = readManifestFromFile;
13600
- exports.registryPlugin = registryPlugin;
13601
13573
  exports.requestPlugin = requestPlugin;
13602
13574
  exports.resetDeprecationWarnings = resetDeprecationWarnings;
13603
13575
  exports.resolveAuth = resolveAuth;
@@ -1,7 +1,7 @@
1
1
  import { __require } from './chunk-Y6FXYEAI.mjs';
2
2
  import { z } from 'zod';
3
3
  import { withPositional, createDeprecationLogger, createAsyncContext, declareOptionalProperty, defineProperty, definePlugin, sendHttpRequestPlugin, retryHttpRequestPlugin, declareProperty, defineMethod, coreOptionsPluginRef, createValidator, defineFormatter, declareMethod, defineResolver, concatLists, openEnum, defineHook, getRegistryPlugin, paginate, toSnakeCase, isCoreError, toTitleCase, CORE_ERROR_SYMBOL, CoreErrorCode, CORE_SIGNAL_SYMBOL, isCoreSignal, createSdk, CORE_OPTIONS_ID, resolvePlugin } from '@zapier/kitcore';
4
- export { CONTEXT, CORE_ERROR_SYMBOL, CORE_OPTIONS_ID, CORE_SIGNAL_SYMBOL, CoreCancelledSignal, CoreDisposeError, CoreErrorCode, CoreSignal, addPlugin, composePlugins, createController, createCorePlugin, createFunction, createPaginatedFunction, createPaginatedPluginMethod, createPluginMethod, createPluginStack, createSdk, declareMethod, declareOptionalProperty, declarePlugin, declareProperty, defineFormatter, defineLegacyMerge, defineMethod, defineMethodOverride, defineOverride, definePlugin, defineProperty, defineResolver, disposeSdk, fromFunctionPlugin, getContext, getCoreErrorCause, getCoreErrorCode, getNegatable, getRegistryPlugin, isCoreCancelledSignal, isCoreError, isCoreSignal, isPositional, omitExports, resolvePlugin, runInMethodScope, runWithTelemetryContext, selectExports, toSnakeCase, toTitleCase } from '@zapier/kitcore';
4
+ export { CONTEXT, CORE_ERROR_SYMBOL, CORE_OPTIONS_ID, CORE_SIGNAL_SYMBOL, CoreCancelledSignal, CoreDisposeError, CoreErrorCode, CoreSignal, addPlugin, createController, createSdk, declareMethod, declareOptionalProperty, declarePlugin, declareProperty, defineFormatter, defineMethod, defineMethodOverride, defineOverride, definePlugin, defineProperty, defineResolver, disposeSdk, getContext, getCoreErrorCause, getCoreErrorCode, getNegatable, getRegistry, getRegistryPlugin, isCoreCancelledSignal, isCoreError, isCoreSignal, isPositional, omitExports, resolvePlugin, runInMethodScope, runWithTelemetryContext, selectExports, toSnakeCase, toTitleCase } from '@zapier/kitcore';
5
5
  import { ConnectionSchema, ConnectionsResponseSchema, ListConnectionsQuerySchema as ListConnectionsQuerySchema$1, ConnectionItemSchema } from '@zapier/zapier-sdk-core/v0/schemas/connections';
6
6
  import { buildHttpRequestContext, buildActionRunContext } from '@zapier/policy-context';
7
7
  import { ListAppsQuerySchema, AppItemSchema as AppItemSchema$1 } from '@zapier/zapier-sdk-core/v0/schemas/apps';
@@ -2806,7 +2806,7 @@ function logRouteOverride({
2806
2806
  }
2807
2807
 
2808
2808
  // src/sdk-version.ts
2809
- var SDK_VERSION = (typeof process !== "undefined" && process.env ? "0.111.2" : void 0) || "unknown";
2809
+ var SDK_VERSION = (typeof process !== "undefined" && process.env ? "0.112.0" : void 0) || "unknown";
2810
2810
 
2811
2811
  // src/utils/open-url.ts
2812
2812
  var nodePrefix = "node:";
@@ -7477,8 +7477,7 @@ var appsPlugin = defineProperty({
7477
7477
  type: "list",
7478
7478
  inputSchema: ActionExecutionInputSchema,
7479
7479
  itemType: "ActionResult",
7480
- outputSchema: ActionResultItemSchema,
7481
- skipOutputValidation: true
7480
+ outputSchema: ActionResultItemSchema
7482
7481
  }
7483
7482
  ]
7484
7483
  });
@@ -12944,8 +12943,8 @@ var zapierSdkPlugin = definePlugin({
12944
12943
  operationAnnotatorPlugin
12945
12944
  ],
12946
12945
  exports: [
12947
- // The registry reporter: previously synthesized by the legacy merge,
12948
- // now surfaced like any other method.
12946
+ // The registry reporter. A re-exportable built-in, so it is listed here
12947
+ // rather than added by the framework.
12949
12948
  getRegistryPlugin,
12950
12949
  getProfilePlugin,
12951
12950
  listAppsPlugin,
@@ -13194,12 +13193,17 @@ var BaseSdkOptionsSchema = z.object({
13194
13193
  // Use credentials instead
13195
13194
  });
13196
13195
 
13197
- // src/plugins/registry/index.ts
13198
- var registryPlugin = (_sdk) => {
13199
- logDeprecation(
13200
- "registryPlugin is deprecated and a no-op; getRegistry is now built into every sdk. Remove .addPlugin(registryPlugin)."
13201
- );
13202
- return {};
13203
- };
13196
+ // src/utils/extension-failure.ts
13197
+ function formatExtensionPluginFailure(error) {
13198
+ const message = describeThrown(error);
13199
+ return `Extension plugin failed to construct: ${message}. Skipping this plugin: nothing it declared was added, and any \`dispose\` it registered was invoked. Plugins the same package already loaded stay loaded. Cleanup after an \`await\` inside a \`dispose\` is not guaranteed, and a side effect from the part that threw cannot be undone, so fix or remove the extension.`;
13200
+ }
13201
+ function describeThrown(error) {
13202
+ try {
13203
+ return error instanceof Error ? error.message : String(error);
13204
+ } catch {
13205
+ return "a thrown value that could not be read";
13206
+ }
13207
+ }
13204
13208
 
13205
- export { ACTION_RUNS_PATH, API_ID, ActionKeyPropertySchema, ActionPropertySchema, ActionTimeoutMillisecondsPropertySchema, ActionTimeoutSecondsPropertySchema, ActionTypePropertySchema, AppKeyPropertySchema, AppPropertySchema, AppsPropertySchema, AuthMechanism, AuthenticationIdPropertySchema, BaseSdkOptionsSchema, CONNECTIONS_ID, CONTEXT_CACHE_MAX_SIZE, CONTEXT_CACHE_TTL_MILLISECONDS, ClientCredentialsObjectSchema, ConnectionEntrySchema, ConnectionIdPropertySchema, ConnectionPropertySchema, ConnectionsMapSchema, ConnectionsPropertySchema, CredentialsFunctionSchema, CredentialsObjectSchema, CredentialsSchema, DEFAULT_ACTION_TIMEOUT_MILLISECONDS, DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS, DEFAULT_CONFIG_PATH, DEFAULT_MAX_APPROVAL_RETRIES, DEFAULT_PAGE_SIZE, DEPRECATION_NOTICE_EVENT, DebugPropertySchema, DrainTriggerInboxSchema, EVENT_EMISSION_ID, FieldsPropertySchema, InputFieldPropertySchema, InputsPropertySchema, LeaseLimitPropertySchema, LeasePropertySchema, LeaseSecondsPropertySchema, LimitPropertySchema, MANIFEST_ID, MAX_CONCURRENCY_LIMIT, MAX_PAGE_LIMIT, OffsetPropertySchema, OutputPropertySchema, ParamsPropertySchema, PkceCredentialsObjectSchema, RESOLVE_CREDENTIALS_ID, RecordPropertySchema, RecordsPropertySchema, RelayFetchSchema, RelayRequestSchema, ResolvedCredentialsSchema, SDK_OPTIONS_ID, SDK_VERSION, TablePropertySchema, TablesPropertySchema, TriggerInboxKeyPropertySchema, TriggerInboxNamePropertySchema, TriggerInboxPropertySchema, WatchTriggerInboxSchema, ZAPIER_BASE_URL, ZAPIER_MAX_CONCURRENT_REQUESTS, ZAPIER_MAX_NETWORK_RETRIES, ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS, ZapierAbortDrainSignal, ZapierActionError, ZapierApiError, ZapierAppNotFoundError, ZapierApprovalError, ZapierAuthenticationError, ZapierBundleError, ZapierConfigurationError, ZapierConflictError, ZapierError, ZapierNotFoundError, ZapierRateLimitError, ZapierRelayError, ZapierReleaseTriggerMessageSignal, ZapierResourceNotFoundError, ZapierSignal, ZapierTimeoutError, ZapierUnknownError, ZapierValidationError, actionKeyResolver, actionTypeResolver, apiPlugin, apiPluginRef, appKeyResolver, appsPlugin, batch, buildApplicationLifecycleEvent, buildCapabilityMessage, buildErrorEvent, buildErrorEventWithContext, buildMethodCalledEvent, cleanupEventListeners, clearTokenCache, clientCredentialsNameResolver, clientIdResolver, connectionIdGenericResolver, connectionIdResolver, connectionsPlugin, connectionsPluginRef, createActionRunPlugin, createBaseEvent, createClientCredentialsPlugin, createMemoryCache, createTableFieldsPlugin, createTablePlugin, createTableRecordsPlugin, createZapierApi, createZapierSdk, createZapierSdkWithoutRegistry, deleteClientCredentialsPlugin, deleteTableFieldsPlugin, deleteTablePlugin, deleteTableRecordsPlugin, durableRunIdResolver, eventEmissionHookPlugin, eventEmissionPlugin, eventEmissionPluginRef, extractErrorDetail, fetchPlugin, findFirstConnectionPlugin, findManifestEntry, findUniqueConnectionPlugin, formatErrorMessage, generateEventId, getActionInputFieldsSchemaPlugin, getActionPlugin, getActionRunPlugin, getAgent, getAppPlugin, getBaseUrlFromCredentials, getCallerContext, getCiPlatform, getClientIdFromCredentials, getConnectionPlugin, getCpuTime, getCurrentTimestamp, getMemoryUsage, getOrCreateApiClient, getOsInfo, getPlatformVersions, getPreferredManifestEntryKey, getProfilePlugin, getReleaseId, getTablePlugin, getTableRecordPlugin, getTokenFromCliLogin, getTtyContext, getZapierApprovalMode, getZapierCausationId, getZapierCorrelationId, getZapierDefaultApprovalMode, getZapierOpenAutoModeApprovalsInBrowser, getZapierSdkService, injectCliLogin, inputFieldKeyResolver, inputsAllOptionalResolver, inputsResolver, invalidateCachedToken, invalidateCredentialsToken, isCi, isCliLoginAvailable, isClientCredentials, isCredentialsFunction, isCredentialsObject, isPermanentHttpError, isPkceCredentials, isZapierAbortDrainSignal, isZapierActionError, isZapierAppNotFoundError, isZapierApprovalError, isZapierAuthenticationError, isZapierBundleError, isZapierConflictError, isZapierError, isZapierNotFoundError, isZapierRateLimitError, isZapierReleaseTriggerMessageSignal, isZapierResourceNotFoundError, isZapierSignal, isZapierTimeoutError, isZapierValidationError, listActionInputFieldChoicesPlugin, listActionInputFieldsPlugin, listActionsPlugin, listAppsPlugin, listClientCredentialsPlugin, listConnectionsPlugin, listTableFieldsPlugin, listTableRecordsPlugin, listTablesPlugin, logDeprecation, manifestPlugin, manifestPluginRef, operationAnnotatorPlugin, parseConcurrencyEnvVar, readManifestFromFile, registryPlugin, requestPlugin, resetDeprecationWarnings, resolveAuth, resolveAuthToken, resolveCredentials, resolveCredentialsFromEnv, resolveCredentialsPlugin, resolveCredentialsPluginRef, runActionPlugin, runWithCallerContext, sdkOptionsPluginRef, tableFieldIdsResolver, tableFieldsResolver, tableFiltersResolver, tableIdResolver, tableNameResolver, tableRecordIdResolver, tableRecordIdsResolver, tableRecordsResolver, tableSortResolver, tableUpdateRecordsResolver, triggerInboxResolver, triggerMessagesResolver, updateTableRecordsPlugin, workflowDraftIdResolver, workflowDraftRevisionResolver, workflowIdResolver, workflowRunIdResolver, workflowVersionIdResolver, zapierAdaptError, zapierCoreOptions, zapierSdkPlugin };
13209
+ export { ACTION_RUNS_PATH, API_ID, ActionKeyPropertySchema, ActionPropertySchema, ActionTimeoutMillisecondsPropertySchema, ActionTimeoutSecondsPropertySchema, ActionTypePropertySchema, AppKeyPropertySchema, AppPropertySchema, AppsPropertySchema, AuthMechanism, AuthenticationIdPropertySchema, BaseSdkOptionsSchema, CONNECTIONS_ID, CONTEXT_CACHE_MAX_SIZE, CONTEXT_CACHE_TTL_MILLISECONDS, ClientCredentialsObjectSchema, ConnectionEntrySchema, ConnectionIdPropertySchema, ConnectionPropertySchema, ConnectionsMapSchema, ConnectionsPropertySchema, CredentialsFunctionSchema, CredentialsObjectSchema, CredentialsSchema, DEFAULT_ACTION_TIMEOUT_MILLISECONDS, DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS, DEFAULT_CONFIG_PATH, DEFAULT_MAX_APPROVAL_RETRIES, DEFAULT_PAGE_SIZE, DEPRECATION_NOTICE_EVENT, DebugPropertySchema, DrainTriggerInboxSchema, EVENT_EMISSION_ID, FieldsPropertySchema, InputFieldPropertySchema, InputsPropertySchema, LeaseLimitPropertySchema, LeasePropertySchema, LeaseSecondsPropertySchema, LimitPropertySchema, MANIFEST_ID, MAX_CONCURRENCY_LIMIT, MAX_PAGE_LIMIT, OffsetPropertySchema, OutputPropertySchema, ParamsPropertySchema, PkceCredentialsObjectSchema, RESOLVE_CREDENTIALS_ID, RecordPropertySchema, RecordsPropertySchema, RelayFetchSchema, RelayRequestSchema, ResolvedCredentialsSchema, SDK_OPTIONS_ID, SDK_VERSION, TablePropertySchema, TablesPropertySchema, TriggerInboxKeyPropertySchema, TriggerInboxNamePropertySchema, TriggerInboxPropertySchema, WatchTriggerInboxSchema, ZAPIER_BASE_URL, ZAPIER_MAX_CONCURRENT_REQUESTS, ZAPIER_MAX_NETWORK_RETRIES, ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS, ZapierAbortDrainSignal, ZapierActionError, ZapierApiError, ZapierAppNotFoundError, ZapierApprovalError, ZapierAuthenticationError, ZapierBundleError, ZapierConfigurationError, ZapierConflictError, ZapierError, ZapierNotFoundError, ZapierRateLimitError, ZapierRelayError, ZapierReleaseTriggerMessageSignal, ZapierResourceNotFoundError, ZapierSignal, ZapierTimeoutError, ZapierUnknownError, ZapierValidationError, actionKeyResolver, actionTypeResolver, apiPlugin, apiPluginRef, appKeyResolver, appsPlugin, batch, buildApplicationLifecycleEvent, buildCapabilityMessage, buildErrorEvent, buildErrorEventWithContext, buildMethodCalledEvent, cleanupEventListeners, clearTokenCache, clientCredentialsNameResolver, clientIdResolver, connectionIdGenericResolver, connectionIdResolver, connectionsPlugin, connectionsPluginRef, createActionRunPlugin, createBaseEvent, createClientCredentialsPlugin, createMemoryCache, createTableFieldsPlugin, createTablePlugin, createTableRecordsPlugin, createZapierApi, createZapierSdk, createZapierSdkWithoutRegistry, deleteClientCredentialsPlugin, deleteTableFieldsPlugin, deleteTablePlugin, deleteTableRecordsPlugin, durableRunIdResolver, eventEmissionHookPlugin, eventEmissionPlugin, eventEmissionPluginRef, extractErrorDetail, fetchPlugin, findFirstConnectionPlugin, findManifestEntry, findUniqueConnectionPlugin, formatErrorMessage, formatExtensionPluginFailure, generateEventId, getActionInputFieldsSchemaPlugin, getActionPlugin, getActionRunPlugin, getAgent, getAppPlugin, getBaseUrlFromCredentials, getCallerContext, getCiPlatform, getClientIdFromCredentials, getConnectionPlugin, getCpuTime, getCurrentTimestamp, getMemoryUsage, getOrCreateApiClient, getOsInfo, getPlatformVersions, getPreferredManifestEntryKey, getProfilePlugin, getReleaseId, getTablePlugin, getTableRecordPlugin, getTokenFromCliLogin, getTtyContext, getZapierApprovalMode, getZapierCausationId, getZapierCorrelationId, getZapierDefaultApprovalMode, getZapierOpenAutoModeApprovalsInBrowser, getZapierSdkService, injectCliLogin, inputFieldKeyResolver, inputsAllOptionalResolver, inputsResolver, invalidateCachedToken, invalidateCredentialsToken, isCi, isCliLoginAvailable, isClientCredentials, isCredentialsFunction, isCredentialsObject, isPermanentHttpError, isPkceCredentials, isZapierAbortDrainSignal, isZapierActionError, isZapierAppNotFoundError, isZapierApprovalError, isZapierAuthenticationError, isZapierBundleError, isZapierConflictError, isZapierError, isZapierNotFoundError, isZapierRateLimitError, isZapierReleaseTriggerMessageSignal, isZapierResourceNotFoundError, isZapierSignal, isZapierTimeoutError, isZapierValidationError, listActionInputFieldChoicesPlugin, listActionInputFieldsPlugin, listActionsPlugin, listAppsPlugin, listClientCredentialsPlugin, listConnectionsPlugin, listTableFieldsPlugin, listTableRecordsPlugin, listTablesPlugin, logDeprecation, manifestPlugin, manifestPluginRef, operationAnnotatorPlugin, parseConcurrencyEnvVar, readManifestFromFile, requestPlugin, resetDeprecationWarnings, resolveAuth, resolveAuthToken, resolveCredentials, resolveCredentialsFromEnv, resolveCredentialsPlugin, resolveCredentialsPluginRef, runActionPlugin, runWithCallerContext, sdkOptionsPluginRef, tableFieldIdsResolver, tableFieldsResolver, tableFiltersResolver, tableIdResolver, tableNameResolver, tableRecordIdResolver, tableRecordIdsResolver, tableRecordsResolver, tableSortResolver, tableUpdateRecordsResolver, triggerInboxResolver, triggerMessagesResolver, updateTableRecordsPlugin, workflowDraftIdResolver, workflowDraftRevisionResolver, workflowIdResolver, workflowRunIdResolver, workflowVersionIdResolver, zapierAdaptError, zapierCoreOptions, zapierSdkPlugin };