@zapier/zapier-sdk 0.110.1 → 0.111.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 +12 -0
- package/dist/{chunk-BURXHBSW.cjs → chunk-QTNDD43M.cjs} +16 -2
- package/dist/{chunk-IRHF55YK.mjs → chunk-X2L2CT3Z.mjs} +16 -3
- package/dist/experimental.cjs +430 -389
- package/dist/experimental.d.mts +109 -3
- package/dist/experimental.d.ts +109 -3
- package/dist/experimental.mjs +45 -7
- package/dist/{index-ubhG9-NU.d.mts → index-bCGYDrTW.d.mts} +4 -1
- package/dist/{index-ubhG9-NU.d.ts → index-bCGYDrTW.d.ts} +4 -1
- package/dist/index.cjs +280 -280
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @zapier/zapier-sdk
|
|
2
2
|
|
|
3
|
+
## 0.111.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 604bf7d: Added `"dismissed"` to the exported `ApprovalStatus` union. Approval polls that encounter a dismissed request now throw a `ZapierApprovalError` with `approvalStatus: "dismissed"` and emit an `approval:dismissed` event, instead of failing with an unparseable-response error. `dismissed` is terminal and does not grant access.
|
|
8
|
+
|
|
9
|
+
## 0.110.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 545562b: Experimental `createWorkflow` now supports optional creation-attribution metadata. Created, retrieved, and listed workflows retain attribution returned by the server.
|
|
14
|
+
|
|
3
15
|
## 0.110.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -2799,7 +2799,7 @@ function logRouteOverride({
|
|
|
2799
2799
|
}
|
|
2800
2800
|
|
|
2801
2801
|
// src/sdk-version.ts
|
|
2802
|
-
var SDK_VERSION = (typeof process !== "undefined" && process.env ? "0.
|
|
2802
|
+
var SDK_VERSION = (typeof process !== "undefined" && process.env ? "0.111.0" : void 0) || "unknown";
|
|
2803
2803
|
|
|
2804
2804
|
// src/utils/open-url.ts
|
|
2805
2805
|
var nodePrefix = "node:";
|
|
@@ -2880,7 +2880,8 @@ var ApprovalStatusSchema = zod.z.enum([
|
|
|
2880
2880
|
"pending_approval",
|
|
2881
2881
|
"approved",
|
|
2882
2882
|
"denied",
|
|
2883
|
-
"failed"
|
|
2883
|
+
"failed",
|
|
2884
|
+
"dismissed"
|
|
2884
2885
|
]);
|
|
2885
2886
|
var ApprovalModeSchema = zod.z.enum(["manual", "auto"]);
|
|
2886
2887
|
var CreateApprovalResponseSchema = zod.z.object({
|
|
@@ -3940,6 +3941,18 @@ var ZapierApiClient = class {
|
|
|
3940
3941
|
}
|
|
3941
3942
|
);
|
|
3942
3943
|
}
|
|
3944
|
+
if (pollResult.status === "dismissed") {
|
|
3945
|
+
this.emitEvent("approval:dismissed", {
|
|
3946
|
+
approvalId: approval.id
|
|
3947
|
+
});
|
|
3948
|
+
throw new ZapierApprovalError(
|
|
3949
|
+
"Request dismissed: the approval was cleared without being approved or denied, so access was not granted.",
|
|
3950
|
+
{
|
|
3951
|
+
approvalId: approval.id,
|
|
3952
|
+
status: "dismissed"
|
|
3953
|
+
}
|
|
3954
|
+
);
|
|
3955
|
+
}
|
|
3943
3956
|
if (pollResult.status === "failed") {
|
|
3944
3957
|
this.throwApprovalFailed({
|
|
3945
3958
|
approvalId: approval.id,
|
|
@@ -13424,6 +13437,7 @@ exports.RelayFetchSchema = RelayFetchSchema;
|
|
|
13424
13437
|
exports.RelayRequestSchema = RelayRequestSchema;
|
|
13425
13438
|
exports.ResolvedCredentialsSchema = ResolvedCredentialsSchema;
|
|
13426
13439
|
exports.SDK_OPTIONS_ID = SDK_OPTIONS_ID;
|
|
13440
|
+
exports.SDK_VERSION = SDK_VERSION;
|
|
13427
13441
|
exports.TablePropertySchema = TablePropertySchema;
|
|
13428
13442
|
exports.TablesPropertySchema = TablesPropertySchema;
|
|
13429
13443
|
exports.TriggerInboxKeyPropertySchema = TriggerInboxKeyPropertySchema;
|
|
@@ -2798,7 +2798,7 @@ function logRouteOverride({
|
|
|
2798
2798
|
}
|
|
2799
2799
|
|
|
2800
2800
|
// src/sdk-version.ts
|
|
2801
|
-
var SDK_VERSION = (typeof process !== "undefined" && process.env ? "0.
|
|
2801
|
+
var SDK_VERSION = (typeof process !== "undefined" && process.env ? "0.111.0" : void 0) || "unknown";
|
|
2802
2802
|
|
|
2803
2803
|
// src/utils/open-url.ts
|
|
2804
2804
|
var nodePrefix = "node:";
|
|
@@ -2879,7 +2879,8 @@ var ApprovalStatusSchema = z.enum([
|
|
|
2879
2879
|
"pending_approval",
|
|
2880
2880
|
"approved",
|
|
2881
2881
|
"denied",
|
|
2882
|
-
"failed"
|
|
2882
|
+
"failed",
|
|
2883
|
+
"dismissed"
|
|
2883
2884
|
]);
|
|
2884
2885
|
var ApprovalModeSchema = z.enum(["manual", "auto"]);
|
|
2885
2886
|
var CreateApprovalResponseSchema = z.object({
|
|
@@ -3939,6 +3940,18 @@ var ZapierApiClient = class {
|
|
|
3939
3940
|
}
|
|
3940
3941
|
);
|
|
3941
3942
|
}
|
|
3943
|
+
if (pollResult.status === "dismissed") {
|
|
3944
|
+
this.emitEvent("approval:dismissed", {
|
|
3945
|
+
approvalId: approval.id
|
|
3946
|
+
});
|
|
3947
|
+
throw new ZapierApprovalError(
|
|
3948
|
+
"Request dismissed: the approval was cleared without being approved or denied, so access was not granted.",
|
|
3949
|
+
{
|
|
3950
|
+
approvalId: approval.id,
|
|
3951
|
+
status: "dismissed"
|
|
3952
|
+
}
|
|
3953
|
+
);
|
|
3954
|
+
}
|
|
3942
3955
|
if (pollResult.status === "failed") {
|
|
3943
3956
|
this.throwApprovalFailed({
|
|
3944
3957
|
approvalId: approval.id,
|
|
@@ -13176,4 +13189,4 @@ var registryPlugin = (_sdk) => {
|
|
|
13176
13189
|
return {};
|
|
13177
13190
|
};
|
|
13178
13191
|
|
|
13179
|
-
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, 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 };
|
|
13192
|
+
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 };
|