@zapier/zapier-sdk 0.84.3 → 0.85.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/AGENTS.md +3 -1
- package/CHANGELOG.md +12 -0
- package/README.md +205 -177
- package/dist/experimental.cjs +31 -33
- package/dist/experimental.d.mts +26 -2
- package/dist/experimental.d.ts +26 -2
- package/dist/experimental.mjs +31 -33
- package/dist/{index-B6Hbs-2p.d.mts → index-BxgeAXDh.d.mts} +67 -12
- package/dist/{index-B6Hbs-2p.d.ts → index-BxgeAXDh.d.ts} +67 -12
- package/dist/index.cjs +31 -33
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +31 -33
- package/package.json +3 -3
package/dist/experimental.cjs
CHANGED
|
@@ -410,51 +410,36 @@ function decodeConcatCursor(incoming) {
|
|
|
410
410
|
}
|
|
411
411
|
return { index: 0, cursor: incoming };
|
|
412
412
|
}
|
|
413
|
-
function
|
|
413
|
+
async function concatLists({
|
|
414
414
|
sources,
|
|
415
415
|
pageSize = 100,
|
|
416
416
|
cursor
|
|
417
417
|
}) {
|
|
418
418
|
if (sources.length === 0) {
|
|
419
|
-
|
|
420
|
-
return Object.assign(Promise.resolve(empty), {
|
|
421
|
-
[Symbol.asyncIterator]: async function* () {
|
|
422
|
-
yield empty;
|
|
423
|
-
}
|
|
424
|
-
});
|
|
419
|
+
return { data: [] };
|
|
425
420
|
}
|
|
426
421
|
const pageFunction = async (options) => {
|
|
427
|
-
let { index, cursor:
|
|
422
|
+
let { index, cursor: listCursor } = decodeConcatCursor(options.cursor);
|
|
428
423
|
while (index < sources.length) {
|
|
429
|
-
const page = await sources[index]({ cursor:
|
|
430
|
-
const
|
|
431
|
-
if (page.data.length === 0 && !
|
|
424
|
+
const page = await sources[index]({ cursor: listCursor });
|
|
425
|
+
const hasMoreInList = page.nextCursor != null;
|
|
426
|
+
if (page.data.length === 0 && !hasMoreInList) {
|
|
432
427
|
index++;
|
|
433
|
-
|
|
428
|
+
listCursor = void 0;
|
|
434
429
|
continue;
|
|
435
430
|
}
|
|
436
431
|
return {
|
|
437
432
|
data: page.data,
|
|
438
|
-
nextCursor:
|
|
433
|
+
nextCursor: hasMoreInList ? encodeConcatCursor(index, page.nextCursor) : index < sources.length - 1 ? encodeConcatCursor(index + 1, void 0) : void 0
|
|
439
434
|
};
|
|
440
435
|
}
|
|
441
436
|
return { data: [] };
|
|
442
437
|
};
|
|
443
|
-
const
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
return result.value;
|
|
449
|
-
});
|
|
450
|
-
return Object.assign(firstPagePromise, {
|
|
451
|
-
[Symbol.asyncIterator]: async function* () {
|
|
452
|
-
yield await firstPagePromise;
|
|
453
|
-
for await (const page of { [Symbol.asyncIterator]: () => iterator }) {
|
|
454
|
-
yield page;
|
|
455
|
-
}
|
|
456
|
-
}
|
|
457
|
-
});
|
|
438
|
+
const result = await paginateBuffered(pageFunction, {
|
|
439
|
+
pageSize,
|
|
440
|
+
cursor
|
|
441
|
+
}).next();
|
|
442
|
+
return result.done ? { data: [] } : result.value;
|
|
458
443
|
}
|
|
459
444
|
var parseOrThrow = (schema, input, { adaptError } = {}) => {
|
|
460
445
|
const result = schema.safeParse(input);
|
|
@@ -789,6 +774,13 @@ function createPaginatedFunction(coreFn, options) {
|
|
|
789
774
|
[Symbol.asyncIterator]() {
|
|
790
775
|
return pageStream;
|
|
791
776
|
},
|
|
777
|
+
pages: function() {
|
|
778
|
+
return {
|
|
779
|
+
[Symbol.asyncIterator]() {
|
|
780
|
+
return pageStream;
|
|
781
|
+
}
|
|
782
|
+
};
|
|
783
|
+
},
|
|
792
784
|
items: function() {
|
|
793
785
|
return {
|
|
794
786
|
[Symbol.asyncIterator]: async function* () {
|
|
@@ -5283,7 +5275,7 @@ function parseDeprecationDate(value) {
|
|
|
5283
5275
|
}
|
|
5284
5276
|
|
|
5285
5277
|
// src/sdk-version.ts
|
|
5286
|
-
var SDK_VERSION = (typeof process !== "undefined" && process.env ? "0.
|
|
5278
|
+
var SDK_VERSION = (typeof process !== "undefined" && process.env ? "0.85.0" : void 0) || "unknown";
|
|
5287
5279
|
|
|
5288
5280
|
// src/utils/open-url.ts
|
|
5289
5281
|
var nodePrefix = "node:";
|
|
@@ -7018,6 +7010,7 @@ function transformConnectionItem(item) {
|
|
|
7018
7010
|
is_private: item.is_private,
|
|
7019
7011
|
shared_with_all: item.shared_with_all,
|
|
7020
7012
|
title: item.title,
|
|
7013
|
+
slug: item.slug,
|
|
7021
7014
|
lastchanged: item.lastchanged,
|
|
7022
7015
|
is_stale: item.is_stale,
|
|
7023
7016
|
is_shared: item.is_shared,
|
|
@@ -8589,13 +8582,13 @@ var tableIdResolver = defineResolver({
|
|
|
8589
8582
|
listItems: ({ imports, context, cursor }) => {
|
|
8590
8583
|
const includeShared = context?.includeShared;
|
|
8591
8584
|
if (includeShared) {
|
|
8592
|
-
return
|
|
8585
|
+
return concatLists({
|
|
8593
8586
|
sources: [
|
|
8594
|
-
({ cursor:
|
|
8595
|
-
({ cursor:
|
|
8587
|
+
({ cursor: listCursor }) => imports.listTablesInternal({ cursor: listCursor }),
|
|
8588
|
+
({ cursor: listCursor }) => imports.listTablesInternal({
|
|
8596
8589
|
includeShared: true,
|
|
8597
8590
|
includePersonal: false,
|
|
8598
|
-
cursor:
|
|
8591
|
+
cursor: listCursor
|
|
8599
8592
|
})
|
|
8600
8593
|
],
|
|
8601
8594
|
cursor
|
|
@@ -10040,6 +10033,11 @@ var ConnectionItemSchema = connections.ConnectionItemSchema;
|
|
|
10040
10033
|
// src/formatters/connection.ts
|
|
10041
10034
|
function formatConnectionItem(item) {
|
|
10042
10035
|
const details = [];
|
|
10036
|
+
const appKey = item.app_key ?? "unknown";
|
|
10037
|
+
details.push({
|
|
10038
|
+
text: item.slug ? `App: ${appKey} | App Slug: ${item.slug}` : `App: ${appKey}`,
|
|
10039
|
+
style: "accent"
|
|
10040
|
+
});
|
|
10043
10041
|
if (item.identifier) {
|
|
10044
10042
|
details.push({
|
|
10045
10043
|
text: `Identifier: ${item.identifier}`,
|
package/dist/experimental.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as BaseSdkOptions, A as AggregatePlugin, M as MethodPlugin, R as RegistryResult, L as LeafSummary, P as PropertyPlugin, S as SdkContext, a as ApiClient, b as PluginSummary, c as PaginatedSdkResult, d as ManifestProvider, C as ConnectionsProvider, e as CapabilitiesContext, F as FieldsetItem, Z as ZapierFetchInitOptions, f as CoreOptions, g as ActionProxy, h as ZapierSdkApps, D as DeleteTriggerInboxResult, i as DrainTriggerInboxOptions, W as WatchTriggerInboxOptions, j as Manifest, E as EventCallback, k as EventEmissionConfig, l as ZapierCache, m as ListActionsOptions, n as ListActionInputFieldsOptions, o as ListActionInputFieldChoicesOptions, G as GetActionInputFieldsSchemaOptions, T as TriggerInboxCommandSharedFields } from './index-
|
|
2
|
-
export { dL as API_ID, J as Action, dH as ActionEntry, d4 as ActionExecutionOptions, U as ActionExecutionResult, V as ActionField, X as ActionFieldChoice, bH as ActionItem, ci as ActionKeyProperty, bR as ActionKeyPropertySchema, cj as ActionProperty, bS as ActionPropertySchema, br as ActionResolverItem, cu as ActionTimeoutMsProperty, c1 as ActionTimeoutMsPropertySchema, bs as ActionTypeItem, ch as ActionTypeProperty, bQ as ActionTypePropertySchema, d1 as ApiError, ev as ApiEvent, dJ as ApiPluginOptions, K as App, d5 as AppFactoryInput, bF as AppItem, cf as AppKeyProperty, bO as AppKeyPropertySchema, cg as AppProperty, bP as AppPropertySchema, fy as ApplicationLifecycleEventData, cZ as ApprovalStatus, cz as AppsProperty, c6 as AppsPropertySchema, aB as ArrayResolver, eu as AuthEvent, eg as AuthMechanism, cn as AuthenticationIdProperty, bV as AuthenticationIdPropertySchema, fG as BaseEvent, ba as BaseSdkOptionsSchema, a$ as BatchOptions, ax as BoundFormatter, eX as CONNECTIONS_ID, ac as CONTEXT, ds as CONTEXT_CACHE_MAX_SIZE, dr as CONTEXT_CACHE_TTL_MS, be as CORE_ERROR_SYMBOL, b7 as CORE_OPTIONS_ID, bj as CORE_SIGNAL_SYMBOL, aX as CallerContext, Q as Choice, eA as ClientCredentialsObject, eL as ClientCredentialsObjectSchema, $ as Connection, eT as ConnectionEntry, eS as ConnectionEntrySchema, cl as ConnectionIdProperty, bU as ConnectionIdPropertySchema, bG as ConnectionItem, cm as ConnectionProperty, bW as ConnectionPropertySchema, eV as ConnectionsMap, eU as ConnectionsMapSchema, cB as ConnectionsProperty, c8 as ConnectionsPropertySchema, a0 as ConnectionsResponse, aN as ControllerAction, aO as ControllerAnswerFn, aP as ControllerChoice, aR as ControllerMethodDescription, aQ as ControllerMethodSummary, aS as ControllerParameterDescription, aM as ControllerQuestion, bh as CoreCancelledSignal, aa as CoreDisposeError, bf as CoreErrorCode, bg as CoreSignal, ex as Credentials, eQ as CredentialsFunction, eP as CredentialsFunctionSchema, ez as CredentialsObject, eN as CredentialsObjectSchema, eR as CredentialsSchema, f2 as DEFAULT_ACTION_TIMEOUT_MS, fb as DEFAULT_APPROVAL_TIMEOUT_MS, dF as DEFAULT_CONFIG_PATH, fc as DEFAULT_MAX_APPROVAL_RETRIES, f1 as DEFAULT_PAGE_SIZE, bD as DEPRECATION_NOTICE_EVENT, cs as DebugProperty, b$ as DebugPropertySchema, bE as DeprecationNoticePayload, u as DrainTriggerInboxCallback, v as DrainTriggerInboxErrorObserver, q as DrainTriggerInboxSchema, aF as DynamicListResolver, aJ as DynamicMember, aE as DynamicResolver, aG as DynamicSearchResolver, fs as EVENT_EMISSION_ID, fz as EnhancedErrorEventData, cI as ErrorOptions, fx as EventContext, fq as EventEmissionContext, fr as EventEmitter, fw as EventTransport, d6 as FetchPluginProvides, O as Field, cy as FieldsProperty, c5 as FieldsPropertySchema, aH as FieldsResolver, H as FindFirstAuthenticationPluginProvides, I as FindUniqueAuthenticationPluginProvides, aw as FormattedItem, ay as Formatter, b9 as FunctionDeprecation, b8 as FunctionRegistryEntry, z as GetAuthenticationPluginProvides, bJ as InfoFieldItem, bI as InputFieldItem, ck as InputFieldProperty, bT as InputFieldPropertySchema, co as InputsProperty, bX as InputsPropertySchema, bC as JsonSseMessage, cH as LeaseLimitProperty, ce as LeaseLimitPropertySchema, cF as LeaseProperty, cc as LeasePropertySchema, cG as LeaseSecondsProperty, cd as LeaseSecondsPropertySchema, w as LeasedTriggerMessageItem, cp as LimitProperty, bY as LimitPropertySchema, dd as ListActionInputFieldsPluginProvides, db as ListActionsPluginProvides, d9 as ListAppsPluginProvides, y as ListAuthenticationsPluginProvides, dh as ListConnectionsPluginProvides, ew as LoadingEvent, dA as MANIFEST_ID, f5 as MAX_CONCURRENCY_LIMIT, f0 as MAX_PAGE_LIMIT, dG as ManifestEntry, dw as ManifestPluginOptions, fH as MethodCalledEvent, fA as MethodCalledEventData, bm as MethodOverridePlugin, aI as ModelResolver, N as Need, Y as NeedsRequest, _ as NeedsResponse, cq as OffsetProperty, bZ as OffsetPropertySchema, az as OutputFormatter, cr as OutputProperty, b_ as OutputPropertySchema, bN as PaginatedSdkFunction, ct as ParamsProperty, c0 as ParamsPropertySchema, eB as PkceCredentialsObject, eM as PkceCredentialsObjectSchema, bk as Plugin, p as PluginMeta, bl as PluginProvides, aK as PluginSurface, bx as PollOptions, a3 as PositionalMetadata, dO as RESOLVE_CREDENTIALS_ID, cX as RateLimitInfo, cw as RecordProperty, c3 as RecordPropertySchema, cx as RecordsProperty, c4 as RecordsPropertySchema, b4 as RelayFetchSchema, b3 as RelayRequestSchema, bw as RequestOptions, ef as ResolveAuthTokenOptions, eW as ResolveConnection, dK as ResolveCredentialsFn, eG as ResolveCredentialsOptions, bt as ResolvedAppLocator, eh as ResolvedAuth, ey as ResolvedCredentials, eO as ResolvedCredentialsSchema, aA as Resolver, aC as ResolverMetadata, bK as RootFieldItem, du as RunActionPluginProvides, au as SDK_OPTIONS_ID, et as SdkEvent, bM as SdkPage, bB as SseMessage, aD as StaticResolver, cv as TableProperty, c2 as TablePropertySchema, cA as TablesProperty, c7 as TablesPropertySchema, cD as TriggerInboxKeyProperty, ca as TriggerInboxKeyPropertySchema, cE as TriggerInboxNameProperty, cb as TriggerInboxNamePropertySchema, cC as TriggerInboxProperty, c9 as TriggerInboxPropertySchema, x as TriggerMessageStatus, dD as UpdateManifestEntryOptions, dE as UpdateManifestEntryResult, a1 as UserProfile, bL as UserProfileItem, r as WatchTriggerInboxSchema, e_ as ZAPIER_BASE_URL, f7 as ZAPIER_MAX_CONCURRENT_REQUESTS, f3 as ZAPIER_MAX_NETWORK_RETRIES, f4 as ZAPIER_MAX_NETWORK_RETRY_DELAY_MS, s as ZapierAbortDrainSignal, cV as ZapierActionError, cO as ZapierApiError, cP as ZapierAppNotFoundError, c_ as ZapierApprovalError, cM as ZapierAuthenticationError, cT as ZapierBundleError, eq as ZapierCacheEntry, er as ZapierCacheSetOptions, cS as ZapierConfigurationError, cW as ZapierConflictError, cJ as ZapierError, cQ as ZapierNotFoundError, cY as ZapierRateLimitError, c$ as ZapierRelayError, t as ZapierReleaseTriggerMessageSignal, cR as ZapierResourceNotFoundError, d2 as ZapierSignal, cU as ZapierTimeoutError, cL as ZapierUnknownError, cK as ZapierValidationError, dT as actionKeyResolver, dS as actionTypeResolver, a8 as addPlugin, dN as apiPlugin, dM as apiPluginRef, dR as appKeyResolver, d3 as appsPlugin, a_ as batch, fB as buildApplicationLifecycleEvent, b0 as buildCapabilityMessage, fD as buildErrorEvent, fC as buildErrorEventWithContext, fF as buildMethodCalledEvent, fp as cleanupEventListeners, ei as clearTokenCache, dZ as clientCredentialsNameResolver, d_ as clientIdResolver, bq as composePlugins, dV as connectionIdGenericResolver, dU as connectionIdResolver, eZ as connectionsPlugin, eY as connectionsPluginRef, fE as createBaseEvent, dj as createClientCredentialsPlugin, aL as createController, a7 as createCorePlugin, a4 as createFunction, es as createMemoryCache, a5 as createPaginatedFunction, bp as createPaginatedPluginMethod, bo as createPluginMethod, a6 as createPluginStack, ab as createSdk, fi as createTableFieldsPlugin, ff as createTablePlugin, fm as createTableRecordsPlugin, by as createZapierApi, b5 as createZapierSdkWithoutRegistry, an as declareMethod, ap as declareOptionalProperty, ah as declarePlugin, ao as declareProperty, am as defineFormatter, af as defineLegacyMerge, ai as defineMethod, aj as defineMethodOverride, bn as definePlugin, ak as defineProperty, al as defineResolver, dk as deleteClientCredentialsPlugin, fj as deleteTableFieldsPlugin, fg as deleteTablePlugin, fn as deleteTableRecordsPlugin, a9 as disposeSdk, e2 as durableRunIdResolver, fv as eventEmissionHookPlugin, fu as eventEmissionPlugin, ft as eventEmissionPluginRef, d7 as fetchPlugin, dp as findFirstConnectionPlugin, dz as findManifestEntry, dq as findUniqueConnectionPlugin, d0 as formatErrorMessage, ae as fromFunctionPlugin, fI as generateEventId, df as getActionInputFieldsSchemaPlugin, dm as getActionPlugin, bu as getAgent, dl as getAppPlugin, eJ as getBaseUrlFromCredentials, aV as getCallerContext, fO as getCiPlatform, eK as getClientIdFromCredentials, dn as getConnectionPlugin, ag as getContext, bd as getCoreErrorCause, bc as getCoreErrorCode, fQ as getCpuTime, fJ as getCurrentTimestamp, fP as getMemoryUsage, bz as getOrCreateApiClient, fL as getOsInfo, fM as getPlatformVersions, dy as getPreferredManifestEntryKey, dI as getProfilePlugin, as as getRegistryPlugin, fK as getReleaseId, fe as getTablePlugin, fk as getTableRecordPlugin, em as getTokenFromCliLogin, fR as getTtyContext, f8 as getZapierApprovalMode, fa as getZapierDefaultApprovalMode, f9 as getZapierOpenAutoModeApprovalsInBrowser, e$ as getZapierSdkService, ek as injectCliLogin, dY as inputFieldKeyResolver, dX as inputsAllOptionalResolver, dW as inputsResolver, ej as invalidateCachedToken, ep as invalidateCredentialsToken, fN as isCi, el as isCliLoginAvailable, eC as isClientCredentials, bb as isCoreError, bi as isCoreSignal, eF as isCredentialsFunction, eE as isCredentialsObject, bA as isPermanentHttpError, eD as isPkceCredentials, a2 as isPositional, de as listActionInputFieldChoicesPlugin, dc as listActionInputFieldsPlugin, da as listActionsPlugin, d8 as listAppsPlugin, di as listClientCredentialsPlugin, dg as listConnectionsPlugin, fh as listTableFieldsPlugin, fl as listTableRecordsPlugin, fd as listTablesPlugin, b1 as logDeprecation, dC as manifestPlugin, dB as manifestPluginRef, ar as omitExports, f6 as parseConcurrencyEnvVar, dx as readManifestFromFile, bv as registryPlugin, dv as requestPlugin, b2 as resetDeprecationWarnings, en as resolveAuth, eo as resolveAuthToken, eI as resolveCredentials, eH as resolveCredentialsFromEnv, dQ as resolveCredentialsPlugin, dP as resolveCredentialsPluginRef, ad as resolvePlugin, dt as runActionPlugin, aT as runInMethodScope, aW as runWithCallerContext, aU as runWithTelemetryContext, av as sdkOptionsPluginRef, aq as selectExports, e8 as tableFieldIdsResolver, ea as tableFieldsResolver, ed as tableFiltersResolver, d$ as tableIdResolver, e9 as tableNameResolver, e6 as tableRecordIdResolver, e7 as tableRecordIdsResolver, eb as tableRecordsResolver, ee as tableSortResolver, ec as tableUpdateRecordsResolver, aY as toSnakeCase, aZ as toTitleCase, e0 as triggerInboxResolver, e5 as triggerMessagesResolver, fo as updateTableRecordsPlugin, e1 as workflowIdResolver, e4 as workflowRunIdResolver, e3 as workflowVersionIdResolver, cN as zapierAdaptError, b6 as zapierCoreOptions, at as zapierSdkPlugin } from './index-B6Hbs-2p.mjs';
|
|
1
|
+
import { B as BaseSdkOptions, A as AggregatePlugin, M as MethodPlugin, R as RegistryResult, L as LeafSummary, P as PropertyPlugin, S as SdkContext, a as ApiClient, b as PluginSummary, c as PaginatedSdkResult, d as ManifestProvider, C as ConnectionsProvider, e as CapabilitiesContext, F as FieldsetItem, Z as ZapierFetchInitOptions, f as CoreOptions, g as ActionProxy, h as ZapierSdkApps, D as DeleteTriggerInboxResult, i as DrainTriggerInboxOptions, W as WatchTriggerInboxOptions, j as Manifest, E as EventCallback, k as EventEmissionConfig, l as ZapierCache, m as ListActionsOptions, n as ListActionInputFieldsOptions, o as ListActionInputFieldChoicesOptions, G as GetActionInputFieldsSchemaOptions, T as TriggerInboxCommandSharedFields } from './index-BxgeAXDh.mjs';
|
|
2
|
+
export { dL as API_ID, J as Action, dH as ActionEntry, d4 as ActionExecutionOptions, U as ActionExecutionResult, V as ActionField, X as ActionFieldChoice, bH as ActionItem, ci as ActionKeyProperty, bR as ActionKeyPropertySchema, cj as ActionProperty, bS as ActionPropertySchema, br as ActionResolverItem, cu as ActionTimeoutMsProperty, c1 as ActionTimeoutMsPropertySchema, bs as ActionTypeItem, ch as ActionTypeProperty, bQ as ActionTypePropertySchema, d1 as ApiError, ev as ApiEvent, dJ as ApiPluginOptions, K as App, d5 as AppFactoryInput, bF as AppItem, cf as AppKeyProperty, bO as AppKeyPropertySchema, cg as AppProperty, bP as AppPropertySchema, fy as ApplicationLifecycleEventData, cZ as ApprovalStatus, cz as AppsProperty, c6 as AppsPropertySchema, aB as ArrayResolver, eu as AuthEvent, eg as AuthMechanism, cn as AuthenticationIdProperty, bV as AuthenticationIdPropertySchema, fG as BaseEvent, ba as BaseSdkOptionsSchema, a$ as BatchOptions, ax as BoundFormatter, eX as CONNECTIONS_ID, ac as CONTEXT, ds as CONTEXT_CACHE_MAX_SIZE, dr as CONTEXT_CACHE_TTL_MS, be as CORE_ERROR_SYMBOL, b7 as CORE_OPTIONS_ID, bj as CORE_SIGNAL_SYMBOL, aX as CallerContext, Q as Choice, eA as ClientCredentialsObject, eL as ClientCredentialsObjectSchema, $ as Connection, eT as ConnectionEntry, eS as ConnectionEntrySchema, cl as ConnectionIdProperty, bU as ConnectionIdPropertySchema, bG as ConnectionItem, cm as ConnectionProperty, bW as ConnectionPropertySchema, eV as ConnectionsMap, eU as ConnectionsMapSchema, cB as ConnectionsProperty, c8 as ConnectionsPropertySchema, a0 as ConnectionsResponse, aN as ControllerAction, aO as ControllerAnswerFn, aP as ControllerChoice, aR as ControllerMethodDescription, aQ as ControllerMethodSummary, aS as ControllerParameterDescription, aM as ControllerQuestion, bh as CoreCancelledSignal, aa as CoreDisposeError, bf as CoreErrorCode, bg as CoreSignal, ex as Credentials, eQ as CredentialsFunction, eP as CredentialsFunctionSchema, ez as CredentialsObject, eN as CredentialsObjectSchema, eR as CredentialsSchema, f2 as DEFAULT_ACTION_TIMEOUT_MS, fb as DEFAULT_APPROVAL_TIMEOUT_MS, dF as DEFAULT_CONFIG_PATH, fc as DEFAULT_MAX_APPROVAL_RETRIES, f1 as DEFAULT_PAGE_SIZE, bD as DEPRECATION_NOTICE_EVENT, cs as DebugProperty, b$ as DebugPropertySchema, bE as DeprecationNoticePayload, u as DrainTriggerInboxCallback, v as DrainTriggerInboxErrorObserver, q as DrainTriggerInboxSchema, aF as DynamicListResolver, aJ as DynamicMember, aE as DynamicResolver, aG as DynamicSearchResolver, fs as EVENT_EMISSION_ID, fz as EnhancedErrorEventData, cI as ErrorOptions, fx as EventContext, fq as EventEmissionContext, fr as EventEmitter, fw as EventTransport, d6 as FetchPluginProvides, O as Field, cy as FieldsProperty, c5 as FieldsPropertySchema, aH as FieldsResolver, H as FindFirstAuthenticationPluginProvides, I as FindUniqueAuthenticationPluginProvides, aw as FormattedItem, ay as Formatter, b9 as FunctionDeprecation, b8 as FunctionRegistryEntry, z as GetAuthenticationPluginProvides, bJ as InfoFieldItem, bI as InputFieldItem, ck as InputFieldProperty, bT as InputFieldPropertySchema, co as InputsProperty, bX as InputsPropertySchema, bC as JsonSseMessage, cH as LeaseLimitProperty, ce as LeaseLimitPropertySchema, cF as LeaseProperty, cc as LeasePropertySchema, cG as LeaseSecondsProperty, cd as LeaseSecondsPropertySchema, w as LeasedTriggerMessageItem, cp as LimitProperty, bY as LimitPropertySchema, dd as ListActionInputFieldsPluginProvides, db as ListActionsPluginProvides, d9 as ListAppsPluginProvides, y as ListAuthenticationsPluginProvides, dh as ListConnectionsPluginProvides, ew as LoadingEvent, dA as MANIFEST_ID, f5 as MAX_CONCURRENCY_LIMIT, f0 as MAX_PAGE_LIMIT, dG as ManifestEntry, dw as ManifestPluginOptions, fH as MethodCalledEvent, fA as MethodCalledEventData, bm as MethodOverridePlugin, aI as ModelResolver, N as Need, Y as NeedsRequest, _ as NeedsResponse, cq as OffsetProperty, bZ as OffsetPropertySchema, az as OutputFormatter, cr as OutputProperty, b_ as OutputPropertySchema, bN as PaginatedSdkFunction, ct as ParamsProperty, c0 as ParamsPropertySchema, eB as PkceCredentialsObject, eM as PkceCredentialsObjectSchema, bk as Plugin, p as PluginMeta, bl as PluginProvides, aK as PluginSurface, bx as PollOptions, a3 as PositionalMetadata, dO as RESOLVE_CREDENTIALS_ID, cX as RateLimitInfo, cw as RecordProperty, c3 as RecordPropertySchema, cx as RecordsProperty, c4 as RecordsPropertySchema, b4 as RelayFetchSchema, b3 as RelayRequestSchema, bw as RequestOptions, ef as ResolveAuthTokenOptions, eW as ResolveConnection, dK as ResolveCredentialsFn, eG as ResolveCredentialsOptions, bt as ResolvedAppLocator, eh as ResolvedAuth, ey as ResolvedCredentials, eO as ResolvedCredentialsSchema, aA as Resolver, aC as ResolverMetadata, bK as RootFieldItem, du as RunActionPluginProvides, au as SDK_OPTIONS_ID, et as SdkEvent, bM as SdkPage, bB as SseMessage, aD as StaticResolver, cv as TableProperty, c2 as TablePropertySchema, cA as TablesProperty, c7 as TablesPropertySchema, cD as TriggerInboxKeyProperty, ca as TriggerInboxKeyPropertySchema, cE as TriggerInboxNameProperty, cb as TriggerInboxNamePropertySchema, cC as TriggerInboxProperty, c9 as TriggerInboxPropertySchema, x as TriggerMessageStatus, dD as UpdateManifestEntryOptions, dE as UpdateManifestEntryResult, a1 as UserProfile, bL as UserProfileItem, r as WatchTriggerInboxSchema, e_ as ZAPIER_BASE_URL, f7 as ZAPIER_MAX_CONCURRENT_REQUESTS, f3 as ZAPIER_MAX_NETWORK_RETRIES, f4 as ZAPIER_MAX_NETWORK_RETRY_DELAY_MS, s as ZapierAbortDrainSignal, cV as ZapierActionError, cO as ZapierApiError, cP as ZapierAppNotFoundError, c_ as ZapierApprovalError, cM as ZapierAuthenticationError, cT as ZapierBundleError, eq as ZapierCacheEntry, er as ZapierCacheSetOptions, cS as ZapierConfigurationError, cW as ZapierConflictError, cJ as ZapierError, cQ as ZapierNotFoundError, cY as ZapierRateLimitError, c$ as ZapierRelayError, t as ZapierReleaseTriggerMessageSignal, cR as ZapierResourceNotFoundError, d2 as ZapierSignal, cU as ZapierTimeoutError, cL as ZapierUnknownError, cK as ZapierValidationError, dT as actionKeyResolver, dS as actionTypeResolver, a8 as addPlugin, dN as apiPlugin, dM as apiPluginRef, dR as appKeyResolver, d3 as appsPlugin, a_ as batch, fB as buildApplicationLifecycleEvent, b0 as buildCapabilityMessage, fD as buildErrorEvent, fC as buildErrorEventWithContext, fF as buildMethodCalledEvent, fp as cleanupEventListeners, ei as clearTokenCache, dZ as clientCredentialsNameResolver, d_ as clientIdResolver, bq as composePlugins, dV as connectionIdGenericResolver, dU as connectionIdResolver, eZ as connectionsPlugin, eY as connectionsPluginRef, fE as createBaseEvent, dj as createClientCredentialsPlugin, aL as createController, a7 as createCorePlugin, a4 as createFunction, es as createMemoryCache, a5 as createPaginatedFunction, bp as createPaginatedPluginMethod, bo as createPluginMethod, a6 as createPluginStack, ab as createSdk, fi as createTableFieldsPlugin, ff as createTablePlugin, fm as createTableRecordsPlugin, by as createZapierApi, b5 as createZapierSdkWithoutRegistry, an as declareMethod, ap as declareOptionalProperty, ah as declarePlugin, ao as declareProperty, am as defineFormatter, af as defineLegacyMerge, ai as defineMethod, aj as defineMethodOverride, bn as definePlugin, ak as defineProperty, al as defineResolver, dk as deleteClientCredentialsPlugin, fj as deleteTableFieldsPlugin, fg as deleteTablePlugin, fn as deleteTableRecordsPlugin, a9 as disposeSdk, e2 as durableRunIdResolver, fv as eventEmissionHookPlugin, fu as eventEmissionPlugin, ft as eventEmissionPluginRef, d7 as fetchPlugin, dp as findFirstConnectionPlugin, dz as findManifestEntry, dq as findUniqueConnectionPlugin, d0 as formatErrorMessage, ae as fromFunctionPlugin, fI as generateEventId, df as getActionInputFieldsSchemaPlugin, dm as getActionPlugin, bu as getAgent, dl as getAppPlugin, eJ as getBaseUrlFromCredentials, aV as getCallerContext, fO as getCiPlatform, eK as getClientIdFromCredentials, dn as getConnectionPlugin, ag as getContext, bd as getCoreErrorCause, bc as getCoreErrorCode, fQ as getCpuTime, fJ as getCurrentTimestamp, fP as getMemoryUsage, bz as getOrCreateApiClient, fL as getOsInfo, fM as getPlatformVersions, dy as getPreferredManifestEntryKey, dI as getProfilePlugin, as as getRegistryPlugin, fK as getReleaseId, fe as getTablePlugin, fk as getTableRecordPlugin, em as getTokenFromCliLogin, fR as getTtyContext, f8 as getZapierApprovalMode, fa as getZapierDefaultApprovalMode, f9 as getZapierOpenAutoModeApprovalsInBrowser, e$ as getZapierSdkService, ek as injectCliLogin, dY as inputFieldKeyResolver, dX as inputsAllOptionalResolver, dW as inputsResolver, ej as invalidateCachedToken, ep as invalidateCredentialsToken, fN as isCi, el as isCliLoginAvailable, eC as isClientCredentials, bb as isCoreError, bi as isCoreSignal, eF as isCredentialsFunction, eE as isCredentialsObject, bA as isPermanentHttpError, eD as isPkceCredentials, a2 as isPositional, de as listActionInputFieldChoicesPlugin, dc as listActionInputFieldsPlugin, da as listActionsPlugin, d8 as listAppsPlugin, di as listClientCredentialsPlugin, dg as listConnectionsPlugin, fh as listTableFieldsPlugin, fl as listTableRecordsPlugin, fd as listTablesPlugin, b1 as logDeprecation, dC as manifestPlugin, dB as manifestPluginRef, ar as omitExports, f6 as parseConcurrencyEnvVar, dx as readManifestFromFile, bv as registryPlugin, dv as requestPlugin, b2 as resetDeprecationWarnings, en as resolveAuth, eo as resolveAuthToken, eI as resolveCredentials, eH as resolveCredentialsFromEnv, dQ as resolveCredentialsPlugin, dP as resolveCredentialsPluginRef, ad as resolvePlugin, dt as runActionPlugin, aT as runInMethodScope, aW as runWithCallerContext, aU as runWithTelemetryContext, av as sdkOptionsPluginRef, aq as selectExports, e8 as tableFieldIdsResolver, ea as tableFieldsResolver, ed as tableFiltersResolver, d$ as tableIdResolver, e9 as tableNameResolver, e6 as tableRecordIdResolver, e7 as tableRecordIdsResolver, eb as tableRecordsResolver, ee as tableSortResolver, ec as tableUpdateRecordsResolver, aY as toSnakeCase, aZ as toTitleCase, e0 as triggerInboxResolver, e5 as triggerMessagesResolver, fo as updateTableRecordsPlugin, e1 as workflowIdResolver, e4 as workflowRunIdResolver, e3 as workflowVersionIdResolver, cN as zapierAdaptError, b6 as zapierCoreOptions, at as zapierSdkPlugin } from './index-BxgeAXDh.mjs';
|
|
3
3
|
import * as zod from 'zod';
|
|
4
4
|
import * as zod_v4_core from 'zod/v4/core';
|
|
5
5
|
import '@zapier/zapier-sdk-core/v0/schemas/connections';
|
|
@@ -332,6 +332,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
332
332
|
id: string;
|
|
333
333
|
account_id: string;
|
|
334
334
|
title?: string | null | undefined;
|
|
335
|
+
slug?: string | null | undefined;
|
|
335
336
|
lastchanged?: string | undefined;
|
|
336
337
|
destination_selected_api?: string | null | undefined;
|
|
337
338
|
is_stale?: string | undefined;
|
|
@@ -369,6 +370,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
369
370
|
id: string;
|
|
370
371
|
account_id: string;
|
|
371
372
|
title?: string | null | undefined;
|
|
373
|
+
slug?: string | null | undefined;
|
|
372
374
|
lastchanged?: string | undefined;
|
|
373
375
|
destination_selected_api?: string | null | undefined;
|
|
374
376
|
is_stale?: string | undefined;
|
|
@@ -412,6 +414,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
412
414
|
id: string;
|
|
413
415
|
account_id: string;
|
|
414
416
|
title?: string | null | undefined;
|
|
417
|
+
slug?: string | null | undefined;
|
|
415
418
|
lastchanged?: string | undefined;
|
|
416
419
|
destination_selected_api?: string | null | undefined;
|
|
417
420
|
is_stale?: string | undefined;
|
|
@@ -463,6 +466,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
463
466
|
id: string;
|
|
464
467
|
account_id: string;
|
|
465
468
|
title?: string | null | undefined;
|
|
469
|
+
slug?: string | null | undefined;
|
|
466
470
|
lastchanged?: string | undefined;
|
|
467
471
|
destination_selected_api?: string | null | undefined;
|
|
468
472
|
is_stale?: string | undefined;
|
|
@@ -505,6 +509,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
505
509
|
id: string;
|
|
506
510
|
account_id: string;
|
|
507
511
|
title?: string | null | undefined;
|
|
512
|
+
slug?: string | null | undefined;
|
|
508
513
|
lastchanged?: string | undefined;
|
|
509
514
|
destination_selected_api?: string | null | undefined;
|
|
510
515
|
is_stale?: string | undefined;
|
|
@@ -556,6 +561,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
556
561
|
id: string;
|
|
557
562
|
account_id: string;
|
|
558
563
|
title?: string | null | undefined;
|
|
564
|
+
slug?: string | null | undefined;
|
|
559
565
|
lastchanged?: string | undefined;
|
|
560
566
|
destination_selected_api?: string | null | undefined;
|
|
561
567
|
is_stale?: string | undefined;
|
|
@@ -608,6 +614,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
608
614
|
id: string;
|
|
609
615
|
account_id: string;
|
|
610
616
|
title?: string | null | undefined;
|
|
617
|
+
slug?: string | null | undefined;
|
|
611
618
|
lastchanged?: string | undefined;
|
|
612
619
|
destination_selected_api?: string | null | undefined;
|
|
613
620
|
is_stale?: string | undefined;
|
|
@@ -658,6 +665,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
658
665
|
id: string;
|
|
659
666
|
account_id: string;
|
|
660
667
|
title?: string | null | undefined;
|
|
668
|
+
slug?: string | null | undefined;
|
|
661
669
|
lastchanged?: string | undefined;
|
|
662
670
|
destination_selected_api?: string | null | undefined;
|
|
663
671
|
is_stale?: string | undefined;
|
|
@@ -695,6 +703,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
695
703
|
id: string;
|
|
696
704
|
account_id: string;
|
|
697
705
|
title?: string | null | undefined;
|
|
706
|
+
slug?: string | null | undefined;
|
|
698
707
|
lastchanged?: string | undefined;
|
|
699
708
|
destination_selected_api?: string | null | undefined;
|
|
700
709
|
is_stale?: string | undefined;
|
|
@@ -731,6 +740,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
731
740
|
id: string;
|
|
732
741
|
account_id: string;
|
|
733
742
|
title?: string | null | undefined;
|
|
743
|
+
slug?: string | null | undefined;
|
|
734
744
|
lastchanged?: string | undefined;
|
|
735
745
|
destination_selected_api?: string | null | undefined;
|
|
736
746
|
is_stale?: string | undefined;
|
|
@@ -774,6 +784,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
774
784
|
id: string;
|
|
775
785
|
account_id: string;
|
|
776
786
|
title?: string | null | undefined;
|
|
787
|
+
slug?: string | null | undefined;
|
|
777
788
|
lastchanged?: string | undefined;
|
|
778
789
|
destination_selected_api?: string | null | undefined;
|
|
779
790
|
is_stale?: string | undefined;
|
|
@@ -815,6 +826,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
815
826
|
id: string;
|
|
816
827
|
account_id: string;
|
|
817
828
|
title?: string | null | undefined;
|
|
829
|
+
slug?: string | null | undefined;
|
|
818
830
|
lastchanged?: string | undefined;
|
|
819
831
|
destination_selected_api?: string | null | undefined;
|
|
820
832
|
is_stale?: string | undefined;
|
|
@@ -866,6 +878,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
866
878
|
id: string;
|
|
867
879
|
account_id: string;
|
|
868
880
|
title?: string | null | undefined;
|
|
881
|
+
slug?: string | null | undefined;
|
|
869
882
|
lastchanged?: string | undefined;
|
|
870
883
|
destination_selected_api?: string | null | undefined;
|
|
871
884
|
is_stale?: string | undefined;
|
|
@@ -908,6 +921,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
908
921
|
id: string;
|
|
909
922
|
account_id: string;
|
|
910
923
|
title?: string | null | undefined;
|
|
924
|
+
slug?: string | null | undefined;
|
|
911
925
|
lastchanged?: string | undefined;
|
|
912
926
|
destination_selected_api?: string | null | undefined;
|
|
913
927
|
is_stale?: string | undefined;
|
|
@@ -949,6 +963,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
949
963
|
id: string;
|
|
950
964
|
account_id: string;
|
|
951
965
|
title?: string | null | undefined;
|
|
966
|
+
slug?: string | null | undefined;
|
|
952
967
|
lastchanged?: string | undefined;
|
|
953
968
|
destination_selected_api?: string | null | undefined;
|
|
954
969
|
is_stale?: string | undefined;
|
|
@@ -1000,6 +1015,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
1000
1015
|
id: string;
|
|
1001
1016
|
account_id: string;
|
|
1002
1017
|
title?: string | null | undefined;
|
|
1018
|
+
slug?: string | null | undefined;
|
|
1003
1019
|
lastchanged?: string | undefined;
|
|
1004
1020
|
destination_selected_api?: string | null | undefined;
|
|
1005
1021
|
is_stale?: string | undefined;
|
|
@@ -3492,6 +3508,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3492
3508
|
id: string;
|
|
3493
3509
|
account_id: string;
|
|
3494
3510
|
title?: string | null | undefined;
|
|
3511
|
+
slug?: string | null | undefined;
|
|
3495
3512
|
lastchanged?: string | undefined;
|
|
3496
3513
|
destination_selected_api?: string | null | undefined;
|
|
3497
3514
|
is_stale?: string | undefined;
|
|
@@ -3528,6 +3545,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3528
3545
|
id: string;
|
|
3529
3546
|
account_id: string;
|
|
3530
3547
|
title?: string | null | undefined;
|
|
3548
|
+
slug?: string | null | undefined;
|
|
3531
3549
|
lastchanged?: string | undefined;
|
|
3532
3550
|
destination_selected_api?: string | null | undefined;
|
|
3533
3551
|
is_stale?: string | undefined;
|
|
@@ -3570,6 +3588,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3570
3588
|
id: string;
|
|
3571
3589
|
account_id: string;
|
|
3572
3590
|
title?: string | null | undefined;
|
|
3591
|
+
slug?: string | null | undefined;
|
|
3573
3592
|
lastchanged?: string | undefined;
|
|
3574
3593
|
destination_selected_api?: string | null | undefined;
|
|
3575
3594
|
is_stale?: string | undefined;
|
|
@@ -3612,6 +3631,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3612
3631
|
id: string;
|
|
3613
3632
|
account_id: string;
|
|
3614
3633
|
title?: string | null | undefined;
|
|
3634
|
+
slug?: string | null | undefined;
|
|
3615
3635
|
lastchanged?: string | undefined;
|
|
3616
3636
|
destination_selected_api?: string | null | undefined;
|
|
3617
3637
|
is_stale?: string | undefined;
|
|
@@ -3664,6 +3684,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3664
3684
|
id: string;
|
|
3665
3685
|
account_id: string;
|
|
3666
3686
|
title?: string | null | undefined;
|
|
3687
|
+
slug?: string | null | undefined;
|
|
3667
3688
|
lastchanged?: string | undefined;
|
|
3668
3689
|
destination_selected_api?: string | null | undefined;
|
|
3669
3690
|
is_stale?: string | undefined;
|
|
@@ -3700,6 +3721,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3700
3721
|
id: string;
|
|
3701
3722
|
account_id: string;
|
|
3702
3723
|
title?: string | null | undefined;
|
|
3724
|
+
slug?: string | null | undefined;
|
|
3703
3725
|
lastchanged?: string | undefined;
|
|
3704
3726
|
destination_selected_api?: string | null | undefined;
|
|
3705
3727
|
is_stale?: string | undefined;
|
|
@@ -3742,6 +3764,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3742
3764
|
id: string;
|
|
3743
3765
|
account_id: string;
|
|
3744
3766
|
title?: string | null | undefined;
|
|
3767
|
+
slug?: string | null | undefined;
|
|
3745
3768
|
lastchanged?: string | undefined;
|
|
3746
3769
|
destination_selected_api?: string | null | undefined;
|
|
3747
3770
|
is_stale?: string | undefined;
|
|
@@ -3784,6 +3807,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3784
3807
|
id: string;
|
|
3785
3808
|
account_id: string;
|
|
3786
3809
|
title?: string | null | undefined;
|
|
3810
|
+
slug?: string | null | undefined;
|
|
3787
3811
|
lastchanged?: string | undefined;
|
|
3788
3812
|
destination_selected_api?: string | null | undefined;
|
|
3789
3813
|
is_stale?: string | undefined;
|
package/dist/experimental.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as BaseSdkOptions, A as AggregatePlugin, M as MethodPlugin, R as RegistryResult, L as LeafSummary, P as PropertyPlugin, S as SdkContext, a as ApiClient, b as PluginSummary, c as PaginatedSdkResult, d as ManifestProvider, C as ConnectionsProvider, e as CapabilitiesContext, F as FieldsetItem, Z as ZapierFetchInitOptions, f as CoreOptions, g as ActionProxy, h as ZapierSdkApps, D as DeleteTriggerInboxResult, i as DrainTriggerInboxOptions, W as WatchTriggerInboxOptions, j as Manifest, E as EventCallback, k as EventEmissionConfig, l as ZapierCache, m as ListActionsOptions, n as ListActionInputFieldsOptions, o as ListActionInputFieldChoicesOptions, G as GetActionInputFieldsSchemaOptions, T as TriggerInboxCommandSharedFields } from './index-
|
|
2
|
-
export { dL as API_ID, J as Action, dH as ActionEntry, d4 as ActionExecutionOptions, U as ActionExecutionResult, V as ActionField, X as ActionFieldChoice, bH as ActionItem, ci as ActionKeyProperty, bR as ActionKeyPropertySchema, cj as ActionProperty, bS as ActionPropertySchema, br as ActionResolverItem, cu as ActionTimeoutMsProperty, c1 as ActionTimeoutMsPropertySchema, bs as ActionTypeItem, ch as ActionTypeProperty, bQ as ActionTypePropertySchema, d1 as ApiError, ev as ApiEvent, dJ as ApiPluginOptions, K as App, d5 as AppFactoryInput, bF as AppItem, cf as AppKeyProperty, bO as AppKeyPropertySchema, cg as AppProperty, bP as AppPropertySchema, fy as ApplicationLifecycleEventData, cZ as ApprovalStatus, cz as AppsProperty, c6 as AppsPropertySchema, aB as ArrayResolver, eu as AuthEvent, eg as AuthMechanism, cn as AuthenticationIdProperty, bV as AuthenticationIdPropertySchema, fG as BaseEvent, ba as BaseSdkOptionsSchema, a$ as BatchOptions, ax as BoundFormatter, eX as CONNECTIONS_ID, ac as CONTEXT, ds as CONTEXT_CACHE_MAX_SIZE, dr as CONTEXT_CACHE_TTL_MS, be as CORE_ERROR_SYMBOL, b7 as CORE_OPTIONS_ID, bj as CORE_SIGNAL_SYMBOL, aX as CallerContext, Q as Choice, eA as ClientCredentialsObject, eL as ClientCredentialsObjectSchema, $ as Connection, eT as ConnectionEntry, eS as ConnectionEntrySchema, cl as ConnectionIdProperty, bU as ConnectionIdPropertySchema, bG as ConnectionItem, cm as ConnectionProperty, bW as ConnectionPropertySchema, eV as ConnectionsMap, eU as ConnectionsMapSchema, cB as ConnectionsProperty, c8 as ConnectionsPropertySchema, a0 as ConnectionsResponse, aN as ControllerAction, aO as ControllerAnswerFn, aP as ControllerChoice, aR as ControllerMethodDescription, aQ as ControllerMethodSummary, aS as ControllerParameterDescription, aM as ControllerQuestion, bh as CoreCancelledSignal, aa as CoreDisposeError, bf as CoreErrorCode, bg as CoreSignal, ex as Credentials, eQ as CredentialsFunction, eP as CredentialsFunctionSchema, ez as CredentialsObject, eN as CredentialsObjectSchema, eR as CredentialsSchema, f2 as DEFAULT_ACTION_TIMEOUT_MS, fb as DEFAULT_APPROVAL_TIMEOUT_MS, dF as DEFAULT_CONFIG_PATH, fc as DEFAULT_MAX_APPROVAL_RETRIES, f1 as DEFAULT_PAGE_SIZE, bD as DEPRECATION_NOTICE_EVENT, cs as DebugProperty, b$ as DebugPropertySchema, bE as DeprecationNoticePayload, u as DrainTriggerInboxCallback, v as DrainTriggerInboxErrorObserver, q as DrainTriggerInboxSchema, aF as DynamicListResolver, aJ as DynamicMember, aE as DynamicResolver, aG as DynamicSearchResolver, fs as EVENT_EMISSION_ID, fz as EnhancedErrorEventData, cI as ErrorOptions, fx as EventContext, fq as EventEmissionContext, fr as EventEmitter, fw as EventTransport, d6 as FetchPluginProvides, O as Field, cy as FieldsProperty, c5 as FieldsPropertySchema, aH as FieldsResolver, H as FindFirstAuthenticationPluginProvides, I as FindUniqueAuthenticationPluginProvides, aw as FormattedItem, ay as Formatter, b9 as FunctionDeprecation, b8 as FunctionRegistryEntry, z as GetAuthenticationPluginProvides, bJ as InfoFieldItem, bI as InputFieldItem, ck as InputFieldProperty, bT as InputFieldPropertySchema, co as InputsProperty, bX as InputsPropertySchema, bC as JsonSseMessage, cH as LeaseLimitProperty, ce as LeaseLimitPropertySchema, cF as LeaseProperty, cc as LeasePropertySchema, cG as LeaseSecondsProperty, cd as LeaseSecondsPropertySchema, w as LeasedTriggerMessageItem, cp as LimitProperty, bY as LimitPropertySchema, dd as ListActionInputFieldsPluginProvides, db as ListActionsPluginProvides, d9 as ListAppsPluginProvides, y as ListAuthenticationsPluginProvides, dh as ListConnectionsPluginProvides, ew as LoadingEvent, dA as MANIFEST_ID, f5 as MAX_CONCURRENCY_LIMIT, f0 as MAX_PAGE_LIMIT, dG as ManifestEntry, dw as ManifestPluginOptions, fH as MethodCalledEvent, fA as MethodCalledEventData, bm as MethodOverridePlugin, aI as ModelResolver, N as Need, Y as NeedsRequest, _ as NeedsResponse, cq as OffsetProperty, bZ as OffsetPropertySchema, az as OutputFormatter, cr as OutputProperty, b_ as OutputPropertySchema, bN as PaginatedSdkFunction, ct as ParamsProperty, c0 as ParamsPropertySchema, eB as PkceCredentialsObject, eM as PkceCredentialsObjectSchema, bk as Plugin, p as PluginMeta, bl as PluginProvides, aK as PluginSurface, bx as PollOptions, a3 as PositionalMetadata, dO as RESOLVE_CREDENTIALS_ID, cX as RateLimitInfo, cw as RecordProperty, c3 as RecordPropertySchema, cx as RecordsProperty, c4 as RecordsPropertySchema, b4 as RelayFetchSchema, b3 as RelayRequestSchema, bw as RequestOptions, ef as ResolveAuthTokenOptions, eW as ResolveConnection, dK as ResolveCredentialsFn, eG as ResolveCredentialsOptions, bt as ResolvedAppLocator, eh as ResolvedAuth, ey as ResolvedCredentials, eO as ResolvedCredentialsSchema, aA as Resolver, aC as ResolverMetadata, bK as RootFieldItem, du as RunActionPluginProvides, au as SDK_OPTIONS_ID, et as SdkEvent, bM as SdkPage, bB as SseMessage, aD as StaticResolver, cv as TableProperty, c2 as TablePropertySchema, cA as TablesProperty, c7 as TablesPropertySchema, cD as TriggerInboxKeyProperty, ca as TriggerInboxKeyPropertySchema, cE as TriggerInboxNameProperty, cb as TriggerInboxNamePropertySchema, cC as TriggerInboxProperty, c9 as TriggerInboxPropertySchema, x as TriggerMessageStatus, dD as UpdateManifestEntryOptions, dE as UpdateManifestEntryResult, a1 as UserProfile, bL as UserProfileItem, r as WatchTriggerInboxSchema, e_ as ZAPIER_BASE_URL, f7 as ZAPIER_MAX_CONCURRENT_REQUESTS, f3 as ZAPIER_MAX_NETWORK_RETRIES, f4 as ZAPIER_MAX_NETWORK_RETRY_DELAY_MS, s as ZapierAbortDrainSignal, cV as ZapierActionError, cO as ZapierApiError, cP as ZapierAppNotFoundError, c_ as ZapierApprovalError, cM as ZapierAuthenticationError, cT as ZapierBundleError, eq as ZapierCacheEntry, er as ZapierCacheSetOptions, cS as ZapierConfigurationError, cW as ZapierConflictError, cJ as ZapierError, cQ as ZapierNotFoundError, cY as ZapierRateLimitError, c$ as ZapierRelayError, t as ZapierReleaseTriggerMessageSignal, cR as ZapierResourceNotFoundError, d2 as ZapierSignal, cU as ZapierTimeoutError, cL as ZapierUnknownError, cK as ZapierValidationError, dT as actionKeyResolver, dS as actionTypeResolver, a8 as addPlugin, dN as apiPlugin, dM as apiPluginRef, dR as appKeyResolver, d3 as appsPlugin, a_ as batch, fB as buildApplicationLifecycleEvent, b0 as buildCapabilityMessage, fD as buildErrorEvent, fC as buildErrorEventWithContext, fF as buildMethodCalledEvent, fp as cleanupEventListeners, ei as clearTokenCache, dZ as clientCredentialsNameResolver, d_ as clientIdResolver, bq as composePlugins, dV as connectionIdGenericResolver, dU as connectionIdResolver, eZ as connectionsPlugin, eY as connectionsPluginRef, fE as createBaseEvent, dj as createClientCredentialsPlugin, aL as createController, a7 as createCorePlugin, a4 as createFunction, es as createMemoryCache, a5 as createPaginatedFunction, bp as createPaginatedPluginMethod, bo as createPluginMethod, a6 as createPluginStack, ab as createSdk, fi as createTableFieldsPlugin, ff as createTablePlugin, fm as createTableRecordsPlugin, by as createZapierApi, b5 as createZapierSdkWithoutRegistry, an as declareMethod, ap as declareOptionalProperty, ah as declarePlugin, ao as declareProperty, am as defineFormatter, af as defineLegacyMerge, ai as defineMethod, aj as defineMethodOverride, bn as definePlugin, ak as defineProperty, al as defineResolver, dk as deleteClientCredentialsPlugin, fj as deleteTableFieldsPlugin, fg as deleteTablePlugin, fn as deleteTableRecordsPlugin, a9 as disposeSdk, e2 as durableRunIdResolver, fv as eventEmissionHookPlugin, fu as eventEmissionPlugin, ft as eventEmissionPluginRef, d7 as fetchPlugin, dp as findFirstConnectionPlugin, dz as findManifestEntry, dq as findUniqueConnectionPlugin, d0 as formatErrorMessage, ae as fromFunctionPlugin, fI as generateEventId, df as getActionInputFieldsSchemaPlugin, dm as getActionPlugin, bu as getAgent, dl as getAppPlugin, eJ as getBaseUrlFromCredentials, aV as getCallerContext, fO as getCiPlatform, eK as getClientIdFromCredentials, dn as getConnectionPlugin, ag as getContext, bd as getCoreErrorCause, bc as getCoreErrorCode, fQ as getCpuTime, fJ as getCurrentTimestamp, fP as getMemoryUsage, bz as getOrCreateApiClient, fL as getOsInfo, fM as getPlatformVersions, dy as getPreferredManifestEntryKey, dI as getProfilePlugin, as as getRegistryPlugin, fK as getReleaseId, fe as getTablePlugin, fk as getTableRecordPlugin, em as getTokenFromCliLogin, fR as getTtyContext, f8 as getZapierApprovalMode, fa as getZapierDefaultApprovalMode, f9 as getZapierOpenAutoModeApprovalsInBrowser, e$ as getZapierSdkService, ek as injectCliLogin, dY as inputFieldKeyResolver, dX as inputsAllOptionalResolver, dW as inputsResolver, ej as invalidateCachedToken, ep as invalidateCredentialsToken, fN as isCi, el as isCliLoginAvailable, eC as isClientCredentials, bb as isCoreError, bi as isCoreSignal, eF as isCredentialsFunction, eE as isCredentialsObject, bA as isPermanentHttpError, eD as isPkceCredentials, a2 as isPositional, de as listActionInputFieldChoicesPlugin, dc as listActionInputFieldsPlugin, da as listActionsPlugin, d8 as listAppsPlugin, di as listClientCredentialsPlugin, dg as listConnectionsPlugin, fh as listTableFieldsPlugin, fl as listTableRecordsPlugin, fd as listTablesPlugin, b1 as logDeprecation, dC as manifestPlugin, dB as manifestPluginRef, ar as omitExports, f6 as parseConcurrencyEnvVar, dx as readManifestFromFile, bv as registryPlugin, dv as requestPlugin, b2 as resetDeprecationWarnings, en as resolveAuth, eo as resolveAuthToken, eI as resolveCredentials, eH as resolveCredentialsFromEnv, dQ as resolveCredentialsPlugin, dP as resolveCredentialsPluginRef, ad as resolvePlugin, dt as runActionPlugin, aT as runInMethodScope, aW as runWithCallerContext, aU as runWithTelemetryContext, av as sdkOptionsPluginRef, aq as selectExports, e8 as tableFieldIdsResolver, ea as tableFieldsResolver, ed as tableFiltersResolver, d$ as tableIdResolver, e9 as tableNameResolver, e6 as tableRecordIdResolver, e7 as tableRecordIdsResolver, eb as tableRecordsResolver, ee as tableSortResolver, ec as tableUpdateRecordsResolver, aY as toSnakeCase, aZ as toTitleCase, e0 as triggerInboxResolver, e5 as triggerMessagesResolver, fo as updateTableRecordsPlugin, e1 as workflowIdResolver, e4 as workflowRunIdResolver, e3 as workflowVersionIdResolver, cN as zapierAdaptError, b6 as zapierCoreOptions, at as zapierSdkPlugin } from './index-B6Hbs-2p.js';
|
|
1
|
+
import { B as BaseSdkOptions, A as AggregatePlugin, M as MethodPlugin, R as RegistryResult, L as LeafSummary, P as PropertyPlugin, S as SdkContext, a as ApiClient, b as PluginSummary, c as PaginatedSdkResult, d as ManifestProvider, C as ConnectionsProvider, e as CapabilitiesContext, F as FieldsetItem, Z as ZapierFetchInitOptions, f as CoreOptions, g as ActionProxy, h as ZapierSdkApps, D as DeleteTriggerInboxResult, i as DrainTriggerInboxOptions, W as WatchTriggerInboxOptions, j as Manifest, E as EventCallback, k as EventEmissionConfig, l as ZapierCache, m as ListActionsOptions, n as ListActionInputFieldsOptions, o as ListActionInputFieldChoicesOptions, G as GetActionInputFieldsSchemaOptions, T as TriggerInboxCommandSharedFields } from './index-BxgeAXDh.js';
|
|
2
|
+
export { dL as API_ID, J as Action, dH as ActionEntry, d4 as ActionExecutionOptions, U as ActionExecutionResult, V as ActionField, X as ActionFieldChoice, bH as ActionItem, ci as ActionKeyProperty, bR as ActionKeyPropertySchema, cj as ActionProperty, bS as ActionPropertySchema, br as ActionResolverItem, cu as ActionTimeoutMsProperty, c1 as ActionTimeoutMsPropertySchema, bs as ActionTypeItem, ch as ActionTypeProperty, bQ as ActionTypePropertySchema, d1 as ApiError, ev as ApiEvent, dJ as ApiPluginOptions, K as App, d5 as AppFactoryInput, bF as AppItem, cf as AppKeyProperty, bO as AppKeyPropertySchema, cg as AppProperty, bP as AppPropertySchema, fy as ApplicationLifecycleEventData, cZ as ApprovalStatus, cz as AppsProperty, c6 as AppsPropertySchema, aB as ArrayResolver, eu as AuthEvent, eg as AuthMechanism, cn as AuthenticationIdProperty, bV as AuthenticationIdPropertySchema, fG as BaseEvent, ba as BaseSdkOptionsSchema, a$ as BatchOptions, ax as BoundFormatter, eX as CONNECTIONS_ID, ac as CONTEXT, ds as CONTEXT_CACHE_MAX_SIZE, dr as CONTEXT_CACHE_TTL_MS, be as CORE_ERROR_SYMBOL, b7 as CORE_OPTIONS_ID, bj as CORE_SIGNAL_SYMBOL, aX as CallerContext, Q as Choice, eA as ClientCredentialsObject, eL as ClientCredentialsObjectSchema, $ as Connection, eT as ConnectionEntry, eS as ConnectionEntrySchema, cl as ConnectionIdProperty, bU as ConnectionIdPropertySchema, bG as ConnectionItem, cm as ConnectionProperty, bW as ConnectionPropertySchema, eV as ConnectionsMap, eU as ConnectionsMapSchema, cB as ConnectionsProperty, c8 as ConnectionsPropertySchema, a0 as ConnectionsResponse, aN as ControllerAction, aO as ControllerAnswerFn, aP as ControllerChoice, aR as ControllerMethodDescription, aQ as ControllerMethodSummary, aS as ControllerParameterDescription, aM as ControllerQuestion, bh as CoreCancelledSignal, aa as CoreDisposeError, bf as CoreErrorCode, bg as CoreSignal, ex as Credentials, eQ as CredentialsFunction, eP as CredentialsFunctionSchema, ez as CredentialsObject, eN as CredentialsObjectSchema, eR as CredentialsSchema, f2 as DEFAULT_ACTION_TIMEOUT_MS, fb as DEFAULT_APPROVAL_TIMEOUT_MS, dF as DEFAULT_CONFIG_PATH, fc as DEFAULT_MAX_APPROVAL_RETRIES, f1 as DEFAULT_PAGE_SIZE, bD as DEPRECATION_NOTICE_EVENT, cs as DebugProperty, b$ as DebugPropertySchema, bE as DeprecationNoticePayload, u as DrainTriggerInboxCallback, v as DrainTriggerInboxErrorObserver, q as DrainTriggerInboxSchema, aF as DynamicListResolver, aJ as DynamicMember, aE as DynamicResolver, aG as DynamicSearchResolver, fs as EVENT_EMISSION_ID, fz as EnhancedErrorEventData, cI as ErrorOptions, fx as EventContext, fq as EventEmissionContext, fr as EventEmitter, fw as EventTransport, d6 as FetchPluginProvides, O as Field, cy as FieldsProperty, c5 as FieldsPropertySchema, aH as FieldsResolver, H as FindFirstAuthenticationPluginProvides, I as FindUniqueAuthenticationPluginProvides, aw as FormattedItem, ay as Formatter, b9 as FunctionDeprecation, b8 as FunctionRegistryEntry, z as GetAuthenticationPluginProvides, bJ as InfoFieldItem, bI as InputFieldItem, ck as InputFieldProperty, bT as InputFieldPropertySchema, co as InputsProperty, bX as InputsPropertySchema, bC as JsonSseMessage, cH as LeaseLimitProperty, ce as LeaseLimitPropertySchema, cF as LeaseProperty, cc as LeasePropertySchema, cG as LeaseSecondsProperty, cd as LeaseSecondsPropertySchema, w as LeasedTriggerMessageItem, cp as LimitProperty, bY as LimitPropertySchema, dd as ListActionInputFieldsPluginProvides, db as ListActionsPluginProvides, d9 as ListAppsPluginProvides, y as ListAuthenticationsPluginProvides, dh as ListConnectionsPluginProvides, ew as LoadingEvent, dA as MANIFEST_ID, f5 as MAX_CONCURRENCY_LIMIT, f0 as MAX_PAGE_LIMIT, dG as ManifestEntry, dw as ManifestPluginOptions, fH as MethodCalledEvent, fA as MethodCalledEventData, bm as MethodOverridePlugin, aI as ModelResolver, N as Need, Y as NeedsRequest, _ as NeedsResponse, cq as OffsetProperty, bZ as OffsetPropertySchema, az as OutputFormatter, cr as OutputProperty, b_ as OutputPropertySchema, bN as PaginatedSdkFunction, ct as ParamsProperty, c0 as ParamsPropertySchema, eB as PkceCredentialsObject, eM as PkceCredentialsObjectSchema, bk as Plugin, p as PluginMeta, bl as PluginProvides, aK as PluginSurface, bx as PollOptions, a3 as PositionalMetadata, dO as RESOLVE_CREDENTIALS_ID, cX as RateLimitInfo, cw as RecordProperty, c3 as RecordPropertySchema, cx as RecordsProperty, c4 as RecordsPropertySchema, b4 as RelayFetchSchema, b3 as RelayRequestSchema, bw as RequestOptions, ef as ResolveAuthTokenOptions, eW as ResolveConnection, dK as ResolveCredentialsFn, eG as ResolveCredentialsOptions, bt as ResolvedAppLocator, eh as ResolvedAuth, ey as ResolvedCredentials, eO as ResolvedCredentialsSchema, aA as Resolver, aC as ResolverMetadata, bK as RootFieldItem, du as RunActionPluginProvides, au as SDK_OPTIONS_ID, et as SdkEvent, bM as SdkPage, bB as SseMessage, aD as StaticResolver, cv as TableProperty, c2 as TablePropertySchema, cA as TablesProperty, c7 as TablesPropertySchema, cD as TriggerInboxKeyProperty, ca as TriggerInboxKeyPropertySchema, cE as TriggerInboxNameProperty, cb as TriggerInboxNamePropertySchema, cC as TriggerInboxProperty, c9 as TriggerInboxPropertySchema, x as TriggerMessageStatus, dD as UpdateManifestEntryOptions, dE as UpdateManifestEntryResult, a1 as UserProfile, bL as UserProfileItem, r as WatchTriggerInboxSchema, e_ as ZAPIER_BASE_URL, f7 as ZAPIER_MAX_CONCURRENT_REQUESTS, f3 as ZAPIER_MAX_NETWORK_RETRIES, f4 as ZAPIER_MAX_NETWORK_RETRY_DELAY_MS, s as ZapierAbortDrainSignal, cV as ZapierActionError, cO as ZapierApiError, cP as ZapierAppNotFoundError, c_ as ZapierApprovalError, cM as ZapierAuthenticationError, cT as ZapierBundleError, eq as ZapierCacheEntry, er as ZapierCacheSetOptions, cS as ZapierConfigurationError, cW as ZapierConflictError, cJ as ZapierError, cQ as ZapierNotFoundError, cY as ZapierRateLimitError, c$ as ZapierRelayError, t as ZapierReleaseTriggerMessageSignal, cR as ZapierResourceNotFoundError, d2 as ZapierSignal, cU as ZapierTimeoutError, cL as ZapierUnknownError, cK as ZapierValidationError, dT as actionKeyResolver, dS as actionTypeResolver, a8 as addPlugin, dN as apiPlugin, dM as apiPluginRef, dR as appKeyResolver, d3 as appsPlugin, a_ as batch, fB as buildApplicationLifecycleEvent, b0 as buildCapabilityMessage, fD as buildErrorEvent, fC as buildErrorEventWithContext, fF as buildMethodCalledEvent, fp as cleanupEventListeners, ei as clearTokenCache, dZ as clientCredentialsNameResolver, d_ as clientIdResolver, bq as composePlugins, dV as connectionIdGenericResolver, dU as connectionIdResolver, eZ as connectionsPlugin, eY as connectionsPluginRef, fE as createBaseEvent, dj as createClientCredentialsPlugin, aL as createController, a7 as createCorePlugin, a4 as createFunction, es as createMemoryCache, a5 as createPaginatedFunction, bp as createPaginatedPluginMethod, bo as createPluginMethod, a6 as createPluginStack, ab as createSdk, fi as createTableFieldsPlugin, ff as createTablePlugin, fm as createTableRecordsPlugin, by as createZapierApi, b5 as createZapierSdkWithoutRegistry, an as declareMethod, ap as declareOptionalProperty, ah as declarePlugin, ao as declareProperty, am as defineFormatter, af as defineLegacyMerge, ai as defineMethod, aj as defineMethodOverride, bn as definePlugin, ak as defineProperty, al as defineResolver, dk as deleteClientCredentialsPlugin, fj as deleteTableFieldsPlugin, fg as deleteTablePlugin, fn as deleteTableRecordsPlugin, a9 as disposeSdk, e2 as durableRunIdResolver, fv as eventEmissionHookPlugin, fu as eventEmissionPlugin, ft as eventEmissionPluginRef, d7 as fetchPlugin, dp as findFirstConnectionPlugin, dz as findManifestEntry, dq as findUniqueConnectionPlugin, d0 as formatErrorMessage, ae as fromFunctionPlugin, fI as generateEventId, df as getActionInputFieldsSchemaPlugin, dm as getActionPlugin, bu as getAgent, dl as getAppPlugin, eJ as getBaseUrlFromCredentials, aV as getCallerContext, fO as getCiPlatform, eK as getClientIdFromCredentials, dn as getConnectionPlugin, ag as getContext, bd as getCoreErrorCause, bc as getCoreErrorCode, fQ as getCpuTime, fJ as getCurrentTimestamp, fP as getMemoryUsage, bz as getOrCreateApiClient, fL as getOsInfo, fM as getPlatformVersions, dy as getPreferredManifestEntryKey, dI as getProfilePlugin, as as getRegistryPlugin, fK as getReleaseId, fe as getTablePlugin, fk as getTableRecordPlugin, em as getTokenFromCliLogin, fR as getTtyContext, f8 as getZapierApprovalMode, fa as getZapierDefaultApprovalMode, f9 as getZapierOpenAutoModeApprovalsInBrowser, e$ as getZapierSdkService, ek as injectCliLogin, dY as inputFieldKeyResolver, dX as inputsAllOptionalResolver, dW as inputsResolver, ej as invalidateCachedToken, ep as invalidateCredentialsToken, fN as isCi, el as isCliLoginAvailable, eC as isClientCredentials, bb as isCoreError, bi as isCoreSignal, eF as isCredentialsFunction, eE as isCredentialsObject, bA as isPermanentHttpError, eD as isPkceCredentials, a2 as isPositional, de as listActionInputFieldChoicesPlugin, dc as listActionInputFieldsPlugin, da as listActionsPlugin, d8 as listAppsPlugin, di as listClientCredentialsPlugin, dg as listConnectionsPlugin, fh as listTableFieldsPlugin, fl as listTableRecordsPlugin, fd as listTablesPlugin, b1 as logDeprecation, dC as manifestPlugin, dB as manifestPluginRef, ar as omitExports, f6 as parseConcurrencyEnvVar, dx as readManifestFromFile, bv as registryPlugin, dv as requestPlugin, b2 as resetDeprecationWarnings, en as resolveAuth, eo as resolveAuthToken, eI as resolveCredentials, eH as resolveCredentialsFromEnv, dQ as resolveCredentialsPlugin, dP as resolveCredentialsPluginRef, ad as resolvePlugin, dt as runActionPlugin, aT as runInMethodScope, aW as runWithCallerContext, aU as runWithTelemetryContext, av as sdkOptionsPluginRef, aq as selectExports, e8 as tableFieldIdsResolver, ea as tableFieldsResolver, ed as tableFiltersResolver, d$ as tableIdResolver, e9 as tableNameResolver, e6 as tableRecordIdResolver, e7 as tableRecordIdsResolver, eb as tableRecordsResolver, ee as tableSortResolver, ec as tableUpdateRecordsResolver, aY as toSnakeCase, aZ as toTitleCase, e0 as triggerInboxResolver, e5 as triggerMessagesResolver, fo as updateTableRecordsPlugin, e1 as workflowIdResolver, e4 as workflowRunIdResolver, e3 as workflowVersionIdResolver, cN as zapierAdaptError, b6 as zapierCoreOptions, at as zapierSdkPlugin } from './index-BxgeAXDh.js';
|
|
3
3
|
import * as zod from 'zod';
|
|
4
4
|
import * as zod_v4_core from 'zod/v4/core';
|
|
5
5
|
import '@zapier/zapier-sdk-core/v0/schemas/connections';
|
|
@@ -332,6 +332,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
332
332
|
id: string;
|
|
333
333
|
account_id: string;
|
|
334
334
|
title?: string | null | undefined;
|
|
335
|
+
slug?: string | null | undefined;
|
|
335
336
|
lastchanged?: string | undefined;
|
|
336
337
|
destination_selected_api?: string | null | undefined;
|
|
337
338
|
is_stale?: string | undefined;
|
|
@@ -369,6 +370,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
369
370
|
id: string;
|
|
370
371
|
account_id: string;
|
|
371
372
|
title?: string | null | undefined;
|
|
373
|
+
slug?: string | null | undefined;
|
|
372
374
|
lastchanged?: string | undefined;
|
|
373
375
|
destination_selected_api?: string | null | undefined;
|
|
374
376
|
is_stale?: string | undefined;
|
|
@@ -412,6 +414,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
412
414
|
id: string;
|
|
413
415
|
account_id: string;
|
|
414
416
|
title?: string | null | undefined;
|
|
417
|
+
slug?: string | null | undefined;
|
|
415
418
|
lastchanged?: string | undefined;
|
|
416
419
|
destination_selected_api?: string | null | undefined;
|
|
417
420
|
is_stale?: string | undefined;
|
|
@@ -463,6 +466,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
463
466
|
id: string;
|
|
464
467
|
account_id: string;
|
|
465
468
|
title?: string | null | undefined;
|
|
469
|
+
slug?: string | null | undefined;
|
|
466
470
|
lastchanged?: string | undefined;
|
|
467
471
|
destination_selected_api?: string | null | undefined;
|
|
468
472
|
is_stale?: string | undefined;
|
|
@@ -505,6 +509,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
505
509
|
id: string;
|
|
506
510
|
account_id: string;
|
|
507
511
|
title?: string | null | undefined;
|
|
512
|
+
slug?: string | null | undefined;
|
|
508
513
|
lastchanged?: string | undefined;
|
|
509
514
|
destination_selected_api?: string | null | undefined;
|
|
510
515
|
is_stale?: string | undefined;
|
|
@@ -556,6 +561,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
556
561
|
id: string;
|
|
557
562
|
account_id: string;
|
|
558
563
|
title?: string | null | undefined;
|
|
564
|
+
slug?: string | null | undefined;
|
|
559
565
|
lastchanged?: string | undefined;
|
|
560
566
|
destination_selected_api?: string | null | undefined;
|
|
561
567
|
is_stale?: string | undefined;
|
|
@@ -608,6 +614,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
608
614
|
id: string;
|
|
609
615
|
account_id: string;
|
|
610
616
|
title?: string | null | undefined;
|
|
617
|
+
slug?: string | null | undefined;
|
|
611
618
|
lastchanged?: string | undefined;
|
|
612
619
|
destination_selected_api?: string | null | undefined;
|
|
613
620
|
is_stale?: string | undefined;
|
|
@@ -658,6 +665,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
658
665
|
id: string;
|
|
659
666
|
account_id: string;
|
|
660
667
|
title?: string | null | undefined;
|
|
668
|
+
slug?: string | null | undefined;
|
|
661
669
|
lastchanged?: string | undefined;
|
|
662
670
|
destination_selected_api?: string | null | undefined;
|
|
663
671
|
is_stale?: string | undefined;
|
|
@@ -695,6 +703,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
695
703
|
id: string;
|
|
696
704
|
account_id: string;
|
|
697
705
|
title?: string | null | undefined;
|
|
706
|
+
slug?: string | null | undefined;
|
|
698
707
|
lastchanged?: string | undefined;
|
|
699
708
|
destination_selected_api?: string | null | undefined;
|
|
700
709
|
is_stale?: string | undefined;
|
|
@@ -731,6 +740,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
731
740
|
id: string;
|
|
732
741
|
account_id: string;
|
|
733
742
|
title?: string | null | undefined;
|
|
743
|
+
slug?: string | null | undefined;
|
|
734
744
|
lastchanged?: string | undefined;
|
|
735
745
|
destination_selected_api?: string | null | undefined;
|
|
736
746
|
is_stale?: string | undefined;
|
|
@@ -774,6 +784,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
774
784
|
id: string;
|
|
775
785
|
account_id: string;
|
|
776
786
|
title?: string | null | undefined;
|
|
787
|
+
slug?: string | null | undefined;
|
|
777
788
|
lastchanged?: string | undefined;
|
|
778
789
|
destination_selected_api?: string | null | undefined;
|
|
779
790
|
is_stale?: string | undefined;
|
|
@@ -815,6 +826,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
815
826
|
id: string;
|
|
816
827
|
account_id: string;
|
|
817
828
|
title?: string | null | undefined;
|
|
829
|
+
slug?: string | null | undefined;
|
|
818
830
|
lastchanged?: string | undefined;
|
|
819
831
|
destination_selected_api?: string | null | undefined;
|
|
820
832
|
is_stale?: string | undefined;
|
|
@@ -866,6 +878,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
866
878
|
id: string;
|
|
867
879
|
account_id: string;
|
|
868
880
|
title?: string | null | undefined;
|
|
881
|
+
slug?: string | null | undefined;
|
|
869
882
|
lastchanged?: string | undefined;
|
|
870
883
|
destination_selected_api?: string | null | undefined;
|
|
871
884
|
is_stale?: string | undefined;
|
|
@@ -908,6 +921,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
908
921
|
id: string;
|
|
909
922
|
account_id: string;
|
|
910
923
|
title?: string | null | undefined;
|
|
924
|
+
slug?: string | null | undefined;
|
|
911
925
|
lastchanged?: string | undefined;
|
|
912
926
|
destination_selected_api?: string | null | undefined;
|
|
913
927
|
is_stale?: string | undefined;
|
|
@@ -949,6 +963,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
949
963
|
id: string;
|
|
950
964
|
account_id: string;
|
|
951
965
|
title?: string | null | undefined;
|
|
966
|
+
slug?: string | null | undefined;
|
|
952
967
|
lastchanged?: string | undefined;
|
|
953
968
|
destination_selected_api?: string | null | undefined;
|
|
954
969
|
is_stale?: string | undefined;
|
|
@@ -1000,6 +1015,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
1000
1015
|
id: string;
|
|
1001
1016
|
account_id: string;
|
|
1002
1017
|
title?: string | null | undefined;
|
|
1018
|
+
slug?: string | null | undefined;
|
|
1003
1019
|
lastchanged?: string | undefined;
|
|
1004
1020
|
destination_selected_api?: string | null | undefined;
|
|
1005
1021
|
is_stale?: string | undefined;
|
|
@@ -3492,6 +3508,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3492
3508
|
id: string;
|
|
3493
3509
|
account_id: string;
|
|
3494
3510
|
title?: string | null | undefined;
|
|
3511
|
+
slug?: string | null | undefined;
|
|
3495
3512
|
lastchanged?: string | undefined;
|
|
3496
3513
|
destination_selected_api?: string | null | undefined;
|
|
3497
3514
|
is_stale?: string | undefined;
|
|
@@ -3528,6 +3545,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3528
3545
|
id: string;
|
|
3529
3546
|
account_id: string;
|
|
3530
3547
|
title?: string | null | undefined;
|
|
3548
|
+
slug?: string | null | undefined;
|
|
3531
3549
|
lastchanged?: string | undefined;
|
|
3532
3550
|
destination_selected_api?: string | null | undefined;
|
|
3533
3551
|
is_stale?: string | undefined;
|
|
@@ -3570,6 +3588,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3570
3588
|
id: string;
|
|
3571
3589
|
account_id: string;
|
|
3572
3590
|
title?: string | null | undefined;
|
|
3591
|
+
slug?: string | null | undefined;
|
|
3573
3592
|
lastchanged?: string | undefined;
|
|
3574
3593
|
destination_selected_api?: string | null | undefined;
|
|
3575
3594
|
is_stale?: string | undefined;
|
|
@@ -3612,6 +3631,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3612
3631
|
id: string;
|
|
3613
3632
|
account_id: string;
|
|
3614
3633
|
title?: string | null | undefined;
|
|
3634
|
+
slug?: string | null | undefined;
|
|
3615
3635
|
lastchanged?: string | undefined;
|
|
3616
3636
|
destination_selected_api?: string | null | undefined;
|
|
3617
3637
|
is_stale?: string | undefined;
|
|
@@ -3664,6 +3684,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3664
3684
|
id: string;
|
|
3665
3685
|
account_id: string;
|
|
3666
3686
|
title?: string | null | undefined;
|
|
3687
|
+
slug?: string | null | undefined;
|
|
3667
3688
|
lastchanged?: string | undefined;
|
|
3668
3689
|
destination_selected_api?: string | null | undefined;
|
|
3669
3690
|
is_stale?: string | undefined;
|
|
@@ -3700,6 +3721,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3700
3721
|
id: string;
|
|
3701
3722
|
account_id: string;
|
|
3702
3723
|
title?: string | null | undefined;
|
|
3724
|
+
slug?: string | null | undefined;
|
|
3703
3725
|
lastchanged?: string | undefined;
|
|
3704
3726
|
destination_selected_api?: string | null | undefined;
|
|
3705
3727
|
is_stale?: string | undefined;
|
|
@@ -3742,6 +3764,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3742
3764
|
id: string;
|
|
3743
3765
|
account_id: string;
|
|
3744
3766
|
title?: string | null | undefined;
|
|
3767
|
+
slug?: string | null | undefined;
|
|
3745
3768
|
lastchanged?: string | undefined;
|
|
3746
3769
|
destination_selected_api?: string | null | undefined;
|
|
3747
3770
|
is_stale?: string | undefined;
|
|
@@ -3784,6 +3807,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
3784
3807
|
id: string;
|
|
3785
3808
|
account_id: string;
|
|
3786
3809
|
title?: string | null | undefined;
|
|
3810
|
+
slug?: string | null | undefined;
|
|
3787
3811
|
lastchanged?: string | undefined;
|
|
3788
3812
|
destination_selected_api?: string | null | undefined;
|
|
3789
3813
|
is_stale?: string | undefined;
|