@zapier/zapier-sdk 0.87.0 → 0.88.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 +22 -0
- package/README.md +44 -44
- package/dist/{chunk-275CXIIT.cjs → chunk-AVB4LBN5.cjs} +179 -101
- package/dist/{chunk-XUT7EPI7.mjs → chunk-IXLMFSFV.mjs} +174 -97
- package/dist/define.d.mts +2 -2
- package/dist/define.d.ts +2 -2
- package/dist/experimental.cjs +350 -346
- package/dist/experimental.d.mts +20 -2
- package/dist/experimental.d.ts +20 -2
- package/dist/experimental.mjs +2 -2
- package/dist/{index-CBvczsOD.d.mts → index-CGfO1ZB1.d.mts} +69 -9
- package/dist/{index-CBvczsOD.d.ts → index-CGfO1ZB1.d.ts} +69 -9
- package/dist/index.cjs +278 -274
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
|
@@ -3465,7 +3465,9 @@ declare const OffsetPropertySchema: z.ZodDefault<z.ZodNumber>;
|
|
|
3465
3465
|
declare const OutputPropertySchema: z.ZodString;
|
|
3466
3466
|
declare const DebugPropertySchema: z.ZodDefault<z.ZodBoolean>;
|
|
3467
3467
|
declare const ParamsPropertySchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3468
|
-
declare const
|
|
3468
|
+
declare const ActionTimeoutSecondsPropertySchema: z.ZodOptional<z.ZodNumber>;
|
|
3469
|
+
/** @deprecated Backs the deprecated `timeoutMs` alias; use seconds. */
|
|
3470
|
+
declare const ActionTimeoutMillisecondsPropertySchema: z.ZodOptional<z.ZodNumber>;
|
|
3469
3471
|
declare const TablePropertySchema: z.ZodString & {
|
|
3470
3472
|
_def: z.core.$ZodStringDef & PositionalMetadata;
|
|
3471
3473
|
};
|
|
@@ -3502,7 +3504,8 @@ type OffsetProperty = z.infer<typeof OffsetPropertySchema>;
|
|
|
3502
3504
|
type OutputProperty = z.infer<typeof OutputPropertySchema>;
|
|
3503
3505
|
type DebugProperty = z.infer<typeof DebugPropertySchema>;
|
|
3504
3506
|
type ParamsProperty = z.infer<typeof ParamsPropertySchema>;
|
|
3505
|
-
type
|
|
3507
|
+
type ActionTimeoutSecondsProperty = z.infer<typeof ActionTimeoutSecondsPropertySchema>;
|
|
3508
|
+
type ActionTimeoutMillisecondsProperty = z.infer<typeof ActionTimeoutMillisecondsPropertySchema>;
|
|
3506
3509
|
type TableProperty = z.infer<typeof TablePropertySchema>;
|
|
3507
3510
|
type RecordProperty = z.infer<typeof RecordPropertySchema>;
|
|
3508
3511
|
type RecordsProperty = z.infer<typeof RecordsPropertySchema>;
|
|
@@ -3727,8 +3730,8 @@ declare class ZapierRateLimitError extends ZapierError {
|
|
|
3727
3730
|
* - `failed`: The approval reached a terminal processing failure after it was
|
|
3728
3731
|
* created, such as the approved policy being rejected by the permissions
|
|
3729
3732
|
* service.
|
|
3730
|
-
* - `timeout`: Poll mode exceeded `
|
|
3731
|
-
* being resolved.
|
|
3733
|
+
* - `timeout`: Poll mode exceeded `approvalTimeoutSeconds` without the
|
|
3734
|
+
* approval being resolved.
|
|
3732
3735
|
* - `max_retries_exceeded`: A single request triggered more sequential approval
|
|
3733
3736
|
* rounds than `maxApprovalRetries` allows (runaway-loop safeguard).
|
|
3734
3737
|
*/
|
|
@@ -4337,8 +4340,10 @@ declare const eventEmissionPlugin: PropertyPlugin<"eventEmission", {
|
|
|
4337
4340
|
baseUrl?: string | undefined;
|
|
4338
4341
|
trackingBaseUrl?: string | undefined;
|
|
4339
4342
|
maxNetworkRetries?: number | undefined;
|
|
4343
|
+
maxNetworkRetryDelaySeconds?: number | undefined;
|
|
4340
4344
|
maxNetworkRetryDelayMs?: number | undefined;
|
|
4341
4345
|
maxConcurrentRequests?: number | undefined;
|
|
4346
|
+
approvalTimeoutSeconds?: number | undefined;
|
|
4342
4347
|
approvalTimeoutMs?: number | undefined;
|
|
4343
4348
|
maxApprovalRetries?: number | undefined;
|
|
4344
4349
|
approvalMode?: "disabled" | "poll" | "throw" | undefined;
|
|
@@ -4952,6 +4957,10 @@ interface ApiClientOptions {
|
|
|
4952
4957
|
* If the server requests a longer delay, the request fails immediately.
|
|
4953
4958
|
* Default is 60000 (60 seconds).
|
|
4954
4959
|
*/
|
|
4960
|
+
maxNetworkRetryDelayMilliseconds?: number;
|
|
4961
|
+
/**
|
|
4962
|
+
* @deprecated Use `maxNetworkRetryDelayMilliseconds` instead.
|
|
4963
|
+
*/
|
|
4955
4964
|
maxNetworkRetryDelayMs?: number;
|
|
4956
4965
|
/**
|
|
4957
4966
|
* Maximum number of concurrent in-flight HTTP requests per client.
|
|
@@ -4984,6 +4993,10 @@ interface ApiClientOptions {
|
|
|
4984
4993
|
/**
|
|
4985
4994
|
* Timeout in ms for approval polling. Default: 600000 (10 minutes).
|
|
4986
4995
|
*/
|
|
4996
|
+
approvalTimeoutMilliseconds?: number;
|
|
4997
|
+
/**
|
|
4998
|
+
* @deprecated Use `approvalTimeoutMilliseconds` instead.
|
|
4999
|
+
*/
|
|
4987
5000
|
approvalTimeoutMs?: number;
|
|
4988
5001
|
/**
|
|
4989
5002
|
* Maximum number of sequential approval rounds for a single request before
|
|
@@ -5087,7 +5100,13 @@ interface RequestOptions {
|
|
|
5087
5100
|
signal?: AbortSignal;
|
|
5088
5101
|
}
|
|
5089
5102
|
interface PollOptions extends RequestOptions {
|
|
5103
|
+
/** Delay in milliseconds before the first poll request. */
|
|
5104
|
+
initialDelayMilliseconds?: number;
|
|
5105
|
+
/** @deprecated Use `initialDelayMilliseconds` instead. */
|
|
5090
5106
|
initialDelay?: number;
|
|
5107
|
+
/** Overall poll timeout in milliseconds. */
|
|
5108
|
+
timeoutMilliseconds?: number;
|
|
5109
|
+
/** @deprecated Use `timeoutMilliseconds` instead. */
|
|
5091
5110
|
timeoutMs?: number;
|
|
5092
5111
|
successStatus?: number;
|
|
5093
5112
|
pendingStatus?: number;
|
|
@@ -5409,8 +5428,10 @@ declare const manifestPlugin: PropertyPlugin<"manifest", ManifestProvider> & Lea
|
|
|
5409
5428
|
baseUrl?: string | undefined;
|
|
5410
5429
|
trackingBaseUrl?: string | undefined;
|
|
5411
5430
|
maxNetworkRetries?: number | undefined;
|
|
5431
|
+
maxNetworkRetryDelaySeconds?: number | undefined;
|
|
5412
5432
|
maxNetworkRetryDelayMs?: number | undefined;
|
|
5413
5433
|
maxConcurrentRequests?: number | undefined;
|
|
5434
|
+
approvalTimeoutSeconds?: number | undefined;
|
|
5414
5435
|
approvalTimeoutMs?: number | undefined;
|
|
5415
5436
|
maxApprovalRetries?: number | undefined;
|
|
5416
5437
|
approvalMode?: "disabled" | "poll" | "throw" | undefined;
|
|
@@ -5456,6 +5477,7 @@ declare const ActionExecutionInputSchema: z.ZodObject<{
|
|
|
5456
5477
|
connectionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
5457
5478
|
connection: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
5458
5479
|
authenticationId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
5480
|
+
timeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
5459
5481
|
timeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
5460
5482
|
}, z.core.$strip>;
|
|
5461
5483
|
type ActionExecutionOptions = z.infer<typeof ActionExecutionInputSchema>;
|
|
@@ -5517,6 +5539,7 @@ declare const appsPlugin: PropertyPlugin<"apps", ActionProxy & ZapierSdkApps> &
|
|
|
5517
5539
|
connectionId?: string | number | null | undefined;
|
|
5518
5540
|
authenticationId?: string | number | null | undefined;
|
|
5519
5541
|
inputs?: Record<string, unknown> | undefined;
|
|
5542
|
+
timeoutSeconds?: number | undefined;
|
|
5520
5543
|
timeoutMs?: number | undefined;
|
|
5521
5544
|
pageSize?: number | undefined;
|
|
5522
5545
|
maxItems?: number | undefined;
|
|
@@ -5529,6 +5552,7 @@ declare const appsPlugin: PropertyPlugin<"apps", ActionProxy & ZapierSdkApps> &
|
|
|
5529
5552
|
connectionId?: string | number | null | undefined;
|
|
5530
5553
|
authenticationId?: string | number | null | undefined;
|
|
5531
5554
|
inputs?: Record<string, unknown> | undefined;
|
|
5555
|
+
timeoutSeconds?: number | undefined;
|
|
5532
5556
|
timeoutMs?: number | undefined;
|
|
5533
5557
|
pageSize?: number | undefined;
|
|
5534
5558
|
maxItems?: number | undefined;
|
|
@@ -5600,6 +5624,8 @@ interface ZapierFetchInitOptions extends RequestInit {
|
|
|
5600
5624
|
authenticationId?: string | number;
|
|
5601
5625
|
callbackUrl?: string;
|
|
5602
5626
|
/** Maximum seconds to wait for a response, subject to a server-side limit. */
|
|
5627
|
+
maxTimeSeconds?: number;
|
|
5628
|
+
/** @deprecated Use `maxTimeSeconds` instead. */
|
|
5603
5629
|
maxTime?: number;
|
|
5604
5630
|
}
|
|
5605
5631
|
type FetchPluginProvides = PluginSurface<typeof fetchPlugin>;
|
|
@@ -6581,7 +6607,7 @@ interface FindUniqueAuthenticationPluginProvides {
|
|
|
6581
6607
|
findUniqueAuthentication: FindUniqueConnectionSdkFunction["findUniqueConnection"];
|
|
6582
6608
|
}
|
|
6583
6609
|
|
|
6584
|
-
declare const
|
|
6610
|
+
declare const CONTEXT_CACHE_TTL_MILLISECONDS = 60000;
|
|
6585
6611
|
declare const CONTEXT_CACHE_MAX_SIZE = 500;
|
|
6586
6612
|
declare const runActionPlugin: MethodPlugin<"runAction", ({
|
|
6587
6613
|
app: string;
|
|
@@ -6591,6 +6617,7 @@ declare const runActionPlugin: MethodPlugin<"runAction", ({
|
|
|
6591
6617
|
connectionId?: string | number | null | undefined;
|
|
6592
6618
|
authenticationId?: string | number | null | undefined;
|
|
6593
6619
|
inputs?: Record<string, unknown> | undefined;
|
|
6620
|
+
timeoutSeconds?: number | undefined;
|
|
6594
6621
|
timeoutMs?: number | undefined;
|
|
6595
6622
|
pageSize?: number | undefined;
|
|
6596
6623
|
maxItems?: number | undefined;
|
|
@@ -6603,6 +6630,7 @@ declare const runActionPlugin: MethodPlugin<"runAction", ({
|
|
|
6603
6630
|
connectionId?: string | number | null | undefined;
|
|
6604
6631
|
authenticationId?: string | number | null | undefined;
|
|
6605
6632
|
inputs?: Record<string, unknown> | undefined;
|
|
6633
|
+
timeoutSeconds?: number | undefined;
|
|
6606
6634
|
timeoutMs?: number | undefined;
|
|
6607
6635
|
pageSize?: number | undefined;
|
|
6608
6636
|
maxItems?: number | undefined;
|
|
@@ -6850,8 +6878,10 @@ declare const BaseSdkOptionsSchema: z.ZodObject<{
|
|
|
6850
6878
|
baseUrl: z.ZodOptional<z.ZodString>;
|
|
6851
6879
|
trackingBaseUrl: z.ZodOptional<z.ZodString>;
|
|
6852
6880
|
maxNetworkRetries: z.ZodOptional<z.ZodNumber>;
|
|
6881
|
+
maxNetworkRetryDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
6853
6882
|
maxNetworkRetryDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
6854
6883
|
maxConcurrentRequests: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodLiteral<number>]>>;
|
|
6884
|
+
approvalTimeoutSeconds: z.ZodOptional<z.ZodNumber>;
|
|
6855
6885
|
approvalTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
6856
6886
|
maxApprovalRetries: z.ZodOptional<z.ZodNumber>;
|
|
6857
6887
|
approvalMode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6998,8 +7028,10 @@ declare const apiPlugin: PropertyPlugin<"api", ApiClient> & LeafSummary<"zapier"
|
|
|
6998
7028
|
baseUrl?: string | undefined;
|
|
6999
7029
|
trackingBaseUrl?: string | undefined;
|
|
7000
7030
|
maxNetworkRetries?: number | undefined;
|
|
7031
|
+
maxNetworkRetryDelaySeconds?: number | undefined;
|
|
7001
7032
|
maxNetworkRetryDelayMs?: number | undefined;
|
|
7002
7033
|
maxConcurrentRequests?: number | undefined;
|
|
7034
|
+
approvalTimeoutSeconds?: number | undefined;
|
|
7003
7035
|
approvalTimeoutMs?: number | undefined;
|
|
7004
7036
|
maxApprovalRetries?: number | undefined;
|
|
7005
7037
|
approvalMode?: "disabled" | "poll" | "throw" | undefined;
|
|
@@ -7077,8 +7109,10 @@ declare const resolveCredentialsPlugin: PropertyPlugin<"resolveCredentials", Res
|
|
|
7077
7109
|
baseUrl?: string | undefined;
|
|
7078
7110
|
trackingBaseUrl?: string | undefined;
|
|
7079
7111
|
maxNetworkRetries?: number | undefined;
|
|
7112
|
+
maxNetworkRetryDelaySeconds?: number | undefined;
|
|
7080
7113
|
maxNetworkRetryDelayMs?: number | undefined;
|
|
7081
7114
|
maxConcurrentRequests?: number | undefined;
|
|
7115
|
+
approvalTimeoutSeconds?: number | undefined;
|
|
7082
7116
|
approvalTimeoutMs?: number | undefined;
|
|
7083
7117
|
maxApprovalRetries?: number | undefined;
|
|
7084
7118
|
approvalMode?: "disabled" | "poll" | "throw" | undefined;
|
|
@@ -8037,7 +8071,9 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8037
8071
|
waitForNewConnection: (input: {
|
|
8038
8072
|
app: string;
|
|
8039
8073
|
startedAt: number;
|
|
8074
|
+
timeoutSeconds?: number | undefined;
|
|
8040
8075
|
timeoutMs?: number | undefined;
|
|
8076
|
+
pollIntervalMilliseconds?: number | undefined;
|
|
8041
8077
|
pollIntervalMs?: number | undefined;
|
|
8042
8078
|
}) => Promise<{
|
|
8043
8079
|
data: {
|
|
@@ -8049,7 +8085,9 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8049
8085
|
createConnection: (input: {
|
|
8050
8086
|
app: string;
|
|
8051
8087
|
browser: "never" | "auto" | "always";
|
|
8088
|
+
timeoutSeconds?: number | undefined;
|
|
8052
8089
|
timeoutMs?: number | undefined;
|
|
8090
|
+
pollIntervalMilliseconds?: number | undefined;
|
|
8053
8091
|
pollIntervalMs?: number | undefined;
|
|
8054
8092
|
}) => Promise<{
|
|
8055
8093
|
data: {
|
|
@@ -8274,6 +8312,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8274
8312
|
connectionId?: string | number | null | undefined;
|
|
8275
8313
|
authenticationId?: string | number | null | undefined;
|
|
8276
8314
|
inputs?: Record<string, unknown> | undefined;
|
|
8315
|
+
timeoutSeconds?: number | undefined;
|
|
8277
8316
|
timeoutMs?: number | undefined;
|
|
8278
8317
|
pageSize?: number | undefined;
|
|
8279
8318
|
maxItems?: number | undefined;
|
|
@@ -8286,6 +8325,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8286
8325
|
connectionId?: string | number | null | undefined;
|
|
8287
8326
|
authenticationId?: string | number | null | undefined;
|
|
8288
8327
|
inputs?: Record<string, unknown> | undefined;
|
|
8328
|
+
timeoutSeconds?: number | undefined;
|
|
8289
8329
|
timeoutMs?: number | undefined;
|
|
8290
8330
|
pageSize?: number | undefined;
|
|
8291
8331
|
maxItems?: number | undefined;
|
|
@@ -9968,7 +10008,9 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9968
10008
|
waitForNewConnection: MethodPlugin<"waitForNewConnection", {
|
|
9969
10009
|
app: string;
|
|
9970
10010
|
startedAt: number;
|
|
10011
|
+
timeoutSeconds?: number | undefined;
|
|
9971
10012
|
timeoutMs?: number | undefined;
|
|
10013
|
+
pollIntervalMilliseconds?: number | undefined;
|
|
9972
10014
|
pollIntervalMs?: number | undefined;
|
|
9973
10015
|
}, Promise<{
|
|
9974
10016
|
data: {
|
|
@@ -9981,7 +10023,9 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9981
10023
|
createConnection: MethodPlugin<"createConnection", {
|
|
9982
10024
|
app: string;
|
|
9983
10025
|
browser: "never" | "auto" | "always";
|
|
10026
|
+
timeoutSeconds?: number | undefined;
|
|
9984
10027
|
timeoutMs?: number | undefined;
|
|
10028
|
+
pollIntervalMilliseconds?: number | undefined;
|
|
9985
10029
|
pollIntervalMs?: number | undefined;
|
|
9986
10030
|
}, Promise<{
|
|
9987
10031
|
data: {
|
|
@@ -10001,7 +10045,9 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10001
10045
|
}>, readonly []> & LeafSummary<"", "getConnectionStartUrl", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>, MethodPlugin<"waitForNewConnection", {
|
|
10002
10046
|
app: string;
|
|
10003
10047
|
startedAt: number;
|
|
10048
|
+
timeoutSeconds?: number | undefined;
|
|
10004
10049
|
timeoutMs?: number | undefined;
|
|
10050
|
+
pollIntervalMilliseconds?: number | undefined;
|
|
10005
10051
|
pollIntervalMs?: number | undefined;
|
|
10006
10052
|
}, Promise<{
|
|
10007
10053
|
data: {
|
|
@@ -10628,6 +10674,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10628
10674
|
connectionId?: string | number | null | undefined;
|
|
10629
10675
|
authenticationId?: string | number | null | undefined;
|
|
10630
10676
|
inputs?: Record<string, unknown> | undefined;
|
|
10677
|
+
timeoutSeconds?: number | undefined;
|
|
10631
10678
|
timeoutMs?: number | undefined;
|
|
10632
10679
|
pageSize?: number | undefined;
|
|
10633
10680
|
maxItems?: number | undefined;
|
|
@@ -10640,6 +10687,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10640
10687
|
connectionId?: string | number | null | undefined;
|
|
10641
10688
|
authenticationId?: string | number | null | undefined;
|
|
10642
10689
|
inputs?: Record<string, unknown> | undefined;
|
|
10690
|
+
timeoutSeconds?: number | undefined;
|
|
10643
10691
|
timeoutMs?: number | undefined;
|
|
10644
10692
|
pageSize?: number | undefined;
|
|
10645
10693
|
maxItems?: number | undefined;
|
|
@@ -10730,6 +10778,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10730
10778
|
connectionId?: string | number | null | undefined;
|
|
10731
10779
|
authenticationId?: string | number | null | undefined;
|
|
10732
10780
|
inputs?: Record<string, unknown> | undefined;
|
|
10781
|
+
timeoutSeconds?: number | undefined;
|
|
10733
10782
|
timeoutMs?: number | undefined;
|
|
10734
10783
|
pageSize?: number | undefined;
|
|
10735
10784
|
maxItems?: number | undefined;
|
|
@@ -10742,6 +10791,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10742
10791
|
connectionId?: string | number | null | undefined;
|
|
10743
10792
|
authenticationId?: string | number | null | undefined;
|
|
10744
10793
|
inputs?: Record<string, unknown> | undefined;
|
|
10794
|
+
timeoutSeconds?: number | undefined;
|
|
10745
10795
|
timeoutMs?: number | undefined;
|
|
10746
10796
|
pageSize?: number | undefined;
|
|
10747
10797
|
maxItems?: number | undefined;
|
|
@@ -11171,8 +11221,10 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11171
11221
|
baseUrl?: string | undefined;
|
|
11172
11222
|
trackingBaseUrl?: string | undefined;
|
|
11173
11223
|
maxNetworkRetries?: number | undefined;
|
|
11224
|
+
maxNetworkRetryDelaySeconds?: number | undefined;
|
|
11174
11225
|
maxNetworkRetryDelayMs?: number | undefined;
|
|
11175
11226
|
maxConcurrentRequests?: number | undefined;
|
|
11227
|
+
approvalTimeoutSeconds?: number | undefined;
|
|
11176
11228
|
approvalTimeoutMs?: number | undefined;
|
|
11177
11229
|
maxApprovalRetries?: number | undefined;
|
|
11178
11230
|
approvalMode?: "disabled" | "poll" | "throw" | undefined;
|
|
@@ -12245,7 +12297,9 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12245
12297
|
waitForNewConnection: (input: {
|
|
12246
12298
|
app: string;
|
|
12247
12299
|
startedAt: number;
|
|
12300
|
+
timeoutSeconds?: number | undefined;
|
|
12248
12301
|
timeoutMs?: number | undefined;
|
|
12302
|
+
pollIntervalMilliseconds?: number | undefined;
|
|
12249
12303
|
pollIntervalMs?: number | undefined;
|
|
12250
12304
|
}) => Promise<{
|
|
12251
12305
|
data: {
|
|
@@ -12257,7 +12311,9 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12257
12311
|
createConnection: (input: {
|
|
12258
12312
|
app: string;
|
|
12259
12313
|
browser: "never" | "auto" | "always";
|
|
12314
|
+
timeoutSeconds?: number | undefined;
|
|
12260
12315
|
timeoutMs?: number | undefined;
|
|
12316
|
+
pollIntervalMilliseconds?: number | undefined;
|
|
12261
12317
|
pollIntervalMs?: number | undefined;
|
|
12262
12318
|
}) => Promise<{
|
|
12263
12319
|
data: {
|
|
@@ -12482,6 +12538,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12482
12538
|
connectionId?: string | number | null | undefined;
|
|
12483
12539
|
authenticationId?: string | number | null | undefined;
|
|
12484
12540
|
inputs?: Record<string, unknown> | undefined;
|
|
12541
|
+
timeoutSeconds?: number | undefined;
|
|
12485
12542
|
timeoutMs?: number | undefined;
|
|
12486
12543
|
pageSize?: number | undefined;
|
|
12487
12544
|
maxItems?: number | undefined;
|
|
@@ -12494,6 +12551,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12494
12551
|
connectionId?: string | number | null | undefined;
|
|
12495
12552
|
authenticationId?: string | number | null | undefined;
|
|
12496
12553
|
inputs?: Record<string, unknown> | undefined;
|
|
12554
|
+
timeoutSeconds?: number | undefined;
|
|
12497
12555
|
timeoutMs?: number | undefined;
|
|
12498
12556
|
pageSize?: number | undefined;
|
|
12499
12557
|
maxItems?: number | undefined;
|
|
@@ -13163,8 +13221,10 @@ declare const sdkOptionsPluginRef: PropertyPlugin<"sdkOptions", {
|
|
|
13163
13221
|
baseUrl?: string | undefined;
|
|
13164
13222
|
trackingBaseUrl?: string | undefined;
|
|
13165
13223
|
maxNetworkRetries?: number | undefined;
|
|
13224
|
+
maxNetworkRetryDelaySeconds?: number | undefined;
|
|
13166
13225
|
maxNetworkRetryDelayMs?: number | undefined;
|
|
13167
13226
|
maxConcurrentRequests?: number | undefined;
|
|
13227
|
+
approvalTimeoutSeconds?: number | undefined;
|
|
13168
13228
|
approvalTimeoutMs?: number | undefined;
|
|
13169
13229
|
maxApprovalRetries?: number | undefined;
|
|
13170
13230
|
approvalMode?: "disabled" | "poll" | "throw" | undefined;
|
|
@@ -13367,12 +13427,12 @@ declare const DEFAULT_PAGE_SIZE = 100;
|
|
|
13367
13427
|
/**
|
|
13368
13428
|
* Default timeout for action execution (in milliseconds)
|
|
13369
13429
|
*/
|
|
13370
|
-
declare const
|
|
13430
|
+
declare const DEFAULT_ACTION_TIMEOUT_MILLISECONDS = 180000;
|
|
13371
13431
|
/**
|
|
13372
13432
|
* Network retry configuration from environment variables
|
|
13373
13433
|
*/
|
|
13374
13434
|
declare const ZAPIER_MAX_NETWORK_RETRIES: number;
|
|
13375
|
-
declare const
|
|
13435
|
+
declare const ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS: number;
|
|
13376
13436
|
/**
|
|
13377
13437
|
* Upper bound on the concurrency cap. Anything beyond this is almost
|
|
13378
13438
|
* certainly a configuration mistake and would also bypass IEEE 754 safe
|
|
@@ -13416,7 +13476,7 @@ declare function getZapierDefaultApprovalMode(): "poll" | "throw";
|
|
|
13416
13476
|
/**
|
|
13417
13477
|
* Default timeout for approval polling (10 minutes)
|
|
13418
13478
|
*/
|
|
13419
|
-
declare const
|
|
13479
|
+
declare const DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS: number;
|
|
13420
13480
|
/**
|
|
13421
13481
|
* Default cap on chained approval retries for a single request. Multiple
|
|
13422
13482
|
* sequential approvals can occur when more than one policy gates the same
|
|
@@ -13776,4 +13836,4 @@ declare function getAgent(): string | null;
|
|
|
13776
13836
|
*/
|
|
13777
13837
|
declare const registryPlugin: (_sdk: {}) => {};
|
|
13778
13838
|
|
|
13779
|
-
export { type NeedsRequest as $, type AggregatePlugin as A, type BaseSdkOptions as B, type ConnectionsProvider as C, type DeleteTriggerInboxResult as D, type EventCallback as E, type FieldsetItem as F, type GetActionInputFieldsSchemaOptions as G, type ListAuthenticationsPluginProvides as H, type GetAuthenticationPluginProvides as I, type FindFirstAuthenticationPluginProvides as J, type FindUniqueAuthenticationPluginProvides as K, type LeafSummary as L, type MethodPlugin as M, type Action as N, type App as O, type PropertyPlugin as P, type Need as Q, type RegistryResult as R, type SdkContext as S, type TriggerInboxCommandSharedFields as T, type Field as U, type Choice as V, type WatchTriggerInboxOptions as W, type ActionExecutionResult as X, type ActionField as Y, type ZapierFetchInitOptions as Z, type ActionFieldChoice as _, type ApiClient as a, toTitleCase as a$, type NeedsResponse as a0, type Connection as a1, type ConnectionsResponse as a2, type UserProfile as a3, isPositional as a4, type PositionalMetadata as a5, createFunction as a6, createPaginatedFunction as a7, createPluginStack as a8, createCorePlugin as a9, type Formatter as aA, type OutputFormatter as aB, type Resolver$1 as aC, type ArrayResolver$1 as aD, type ResolverMetadata as aE, type StaticResolver$1 as aF, type DynamicResolver$1 as aG, type DynamicListResolver as aH, type DynamicSearchResolver as aI, type FieldsResolver as aJ, type Resolver as aK, type DynamicMember as aL, type PluginSurface as aM, createController as aN, type ControllerQuestion as aO, type ControllerAction as aP, type ControllerAnswerFn as aQ, type ControllerChoice as aR, type ControllerMethodSummary as aS, type ControllerMethodDescription as aT, type ControllerParameterDescription as aU, runInMethodScope as aV, runWithTelemetryContext as aW, getCallerContext as aX, runWithCallerContext as aY, type CallerContext as aZ, toSnakeCase as a_, addPlugin as aa, disposeSdk as ab, CoreDisposeError as ac, createSdk as ad, CONTEXT as ae, resolvePlugin as af, fromFunctionPlugin as ag, defineLegacyMerge as ah, getContext as ai, declarePlugin as aj, defineMethod as ak, defineMethodOverride as al, defineProperty as am, defineResolver as an, defineFormatter as ao, declareMethod as ap, declareProperty as aq, declareOptionalProperty as ar, selectExports as as, omitExports as at, getRegistryPlugin as au, zapierSdkPlugin as av, SDK_OPTIONS_ID as aw, sdkOptionsPluginRef as ax, type FormattedItem as ay, type BoundFormatter as az, type PluginSummary as b, LimitPropertySchema as b$, batch as b0, type BatchOptions as b1, buildCapabilityMessage as b2, logDeprecation as b3, resetDeprecationWarnings as b4, RelayRequestSchema as b5, RelayFetchSchema as b6, createZapierSdkWithoutRegistry as b7, zapierCoreOptions as b8, CORE_OPTIONS_ID as b9, type PollOptions as bA, createZapierApi as bB, getOrCreateApiClient as bC, isPermanentHttpError as bD, type SseMessage as bE, type JsonSseMessage as bF, DEPRECATION_NOTICE_EVENT as bG, type DeprecationNoticePayload as bH, type AppItem as bI, type ConnectionItem as bJ, type ActionItem$1 as bK, type InputFieldItem as bL, type InfoFieldItem as bM, type RootFieldItem as bN, type UserProfileItem as bO, type SdkPage as bP, type PaginatedSdkFunction as bQ, AppKeyPropertySchema as bR, AppPropertySchema as bS, ActionTypePropertySchema as bT, ActionKeyPropertySchema as bU, ActionPropertySchema as bV, InputFieldPropertySchema as bW, ConnectionIdPropertySchema as bX, AuthenticationIdPropertySchema as bY, ConnectionPropertySchema as bZ, InputsPropertySchema as b_, type FunctionRegistryEntry as ba, type FunctionDeprecation as bb, BaseSdkOptionsSchema as bc, isCoreError as bd, getCoreErrorCode as be, getCoreErrorCause as bf, CORE_ERROR_SYMBOL as bg, CoreErrorCode as bh, CoreSignal as bi, CoreCancelledSignal as bj, isCoreSignal as bk, isCoreCancelledSignal as bl, CORE_SIGNAL_SYMBOL as bm, type Plugin as bn, type PluginProvides as bo, type MethodOverridePlugin as bp, definePlugin as bq, createPluginMethod as br, createPaginatedPluginMethod as bs, composePlugins as bt, type ActionItem as bu, type ActionTypeItem as bv, type ResolvedAppLocator as bw, getAgent as bx, registryPlugin as by, type RequestOptions as bz, type PaginatedSdkResult as c, ZapierRateLimitError as c$, OffsetPropertySchema as c0, OutputPropertySchema as c1, DebugPropertySchema as c2, ParamsPropertySchema as c3, ActionTimeoutMsPropertySchema as c4, TablePropertySchema as c5, RecordPropertySchema as c6, RecordsPropertySchema as c7, FieldsPropertySchema as c8, AppsPropertySchema as c9, type RecordsProperty as cA, type FieldsProperty as cB, type AppsProperty as cC, type TablesProperty as cD, type ConnectionsProperty as cE, type TriggerInboxProperty as cF, type TriggerInboxKeyProperty as cG, type TriggerInboxNameProperty as cH, type LeaseProperty as cI, type LeaseSecondsProperty as cJ, type LeaseLimitProperty as cK, type ErrorOptions as cL, ZapierError as cM, ZapierValidationError as cN, ZapierUnknownError as cO, ZapierAuthenticationError as cP, zapierAdaptError as cQ, ZapierApiError as cR, ZapierAppNotFoundError as cS, ZapierNotFoundError as cT, ZapierResourceNotFoundError as cU, ZapierConfigurationError as cV, ZapierBundleError as cW, ZapierTimeoutError as cX, ZapierActionError as cY, ZapierConflictError as cZ, type RateLimitInfo as c_, TablesPropertySchema as ca, ConnectionsPropertySchema as cb, TriggerInboxPropertySchema as cc, TriggerInboxKeyPropertySchema as cd, TriggerInboxNamePropertySchema as ce, LeasePropertySchema as cf, LeaseSecondsPropertySchema as cg, LeaseLimitPropertySchema as ch, type AppKeyProperty as ci, type AppProperty as cj, type ActionTypeProperty as ck, type ActionKeyProperty as cl, type ActionProperty as cm, type InputFieldProperty as cn, type ConnectionIdProperty as co, type ConnectionProperty as cp, type AuthenticationIdProperty as cq, type InputsProperty as cr, type LimitProperty as cs, type OffsetProperty as ct, type OutputProperty as cu, type DebugProperty as cv, type ParamsProperty as cw, type ActionTimeoutMsProperty as cx, type TableProperty as cy, type RecordProperty as cz, type ManifestProvider as d, API_ID as d$, type ApprovalStatus as d0, ZapierApprovalError as d1, ZapierRelayError as d2, isZapierError as d3, isZapierValidationError as d4, isZapierAuthenticationError as d5, isZapierAppNotFoundError as d6, isZapierNotFoundError as d7, isZapierResourceNotFoundError as d8, isZapierConflictError as d9, createClientCredentialsPlugin as dA, deleteClientCredentialsPlugin as dB, getAppPlugin as dC, getActionPlugin as dD, getConnectionPlugin as dE, findFirstConnectionPlugin as dF, findUniqueConnectionPlugin as dG, CONTEXT_CACHE_TTL_MS as dH, CONTEXT_CACHE_MAX_SIZE as dI, runActionPlugin as dJ, type RunActionPluginProvides as dK, requestPlugin as dL, type ManifestPluginOptions as dM, readManifestFromFile as dN, getPreferredManifestEntryKey as dO, findManifestEntry as dP, MANIFEST_ID as dQ, manifestPluginRef as dR, manifestPlugin as dS, type UpdateManifestEntryOptions as dT, type UpdateManifestEntryResult as dU, DEFAULT_CONFIG_PATH as dV, type ManifestEntry as dW, type ActionEntry as dX, getProfilePlugin as dY, type ApiPluginOptions as dZ, type ResolveCredentialsFn as d_, isZapierTimeoutError as da, isZapierBundleError as db, isZapierActionError as dc, isZapierRateLimitError as dd, isZapierApprovalError as de, formatErrorMessage as df, type CoreApiError as dg, ZapierSignal as dh, isZapierSignal as di, appsPlugin as dj, type ActionExecutionOptions as dk, type AppFactoryInput as dl, type FetchPluginProvides as dm, fetchPlugin as dn, listAppsPlugin as dp, type ListAppsPluginProvides as dq, listActionsPlugin as dr, type ListActionsPluginProvides as ds, listActionInputFieldsPlugin as dt, type ListActionInputFieldsPluginProvides as du, listActionInputFieldChoicesPlugin as dv, getActionInputFieldsSchemaPlugin as dw, listConnectionsPlugin as dx, type ListConnectionsPluginProvides as dy, listClientCredentialsPlugin as dz, type CapabilitiesContext as e, ClientCredentialsObjectSchema as e$, apiPluginRef as e0, apiPlugin as e1, RESOLVE_CREDENTIALS_ID as e2, resolveCredentialsPluginRef as e3, resolveCredentialsPlugin as e4, appKeyResolver as e5, actionTypeResolver as e6, actionKeyResolver as e7, connectionIdResolver as e8, connectionIdGenericResolver as e9, injectCliLogin as eA, isCliLoginAvailable as eB, getTokenFromCliLogin as eC, resolveAuth as eD, resolveAuthToken as eE, invalidateCredentialsToken as eF, type ZapierCacheEntry as eG, type ZapierCacheSetOptions as eH, createMemoryCache as eI, type SdkEvent as eJ, type AuthEvent as eK, type ApiEvent as eL, type LoadingEvent as eM, type Credentials as eN, type ResolvedCredentials as eO, type CredentialsObject as eP, type ClientCredentialsObject as eQ, type PkceCredentialsObject as eR, isClientCredentials as eS, isPkceCredentials as eT, isCredentialsObject as eU, isCredentialsFunction as eV, type ResolveCredentialsOptions as eW, resolveCredentialsFromEnv as eX, resolveCredentials as eY, getBaseUrlFromCredentials as eZ, getClientIdFromCredentials as e_, inputsResolver as ea, inputsAllOptionalResolver as eb, inputFieldKeyResolver as ec, clientCredentialsNameResolver as ed, clientIdResolver as ee, tableIdResolver as ef, triggerInboxResolver as eg, workflowIdResolver as eh, durableRunIdResolver as ei, workflowVersionIdResolver as ej, workflowRunIdResolver as ek, triggerMessagesResolver as el, tableRecordIdResolver as em, tableRecordIdsResolver as en, tableFieldIdsResolver as eo, tableNameResolver as ep, tableFieldsResolver as eq, tableRecordsResolver as er, tableUpdateRecordsResolver as es, tableFiltersResolver as et, tableSortResolver as eu, type ResolveAuthTokenOptions as ev, AuthMechanism as ew, type ResolvedAuth as ex, clearTokenCache as ey, invalidateCachedToken as ez, type CoreOptions as f, getOsInfo as f$, PkceCredentialsObjectSchema as f0, CredentialsObjectSchema as f1, ResolvedCredentialsSchema as f2, CredentialsFunctionSchema as f3, type CredentialsFunction as f4, CredentialsSchema as f5, ConnectionEntrySchema as f6, type ConnectionEntry as f7, ConnectionsMapSchema as f8, type ConnectionsMap as f9, getTableRecordPlugin as fA, listTableRecordsPlugin as fB, createTableRecordsPlugin as fC, deleteTableRecordsPlugin as fD, updateTableRecordsPlugin as fE, cleanupEventListeners as fF, type EventEmissionContext as fG, type EventEmitter as fH, EVENT_EMISSION_ID as fI, eventEmissionPluginRef as fJ, eventEmissionPlugin as fK, eventEmissionHookPlugin as fL, type EventTransport as fM, type EventContext as fN, type ApplicationLifecycleEventData as fO, type EnhancedErrorEventData as fP, type MethodCalledEventData as fQ, buildApplicationLifecycleEvent as fR, buildErrorEventWithContext as fS, buildErrorEvent as fT, createBaseEvent as fU, buildMethodCalledEvent as fV, type BaseEvent as fW, type MethodCalledEvent as fX, generateEventId as fY, getCurrentTimestamp as fZ, getReleaseId as f_, type ResolveConnection as fa, CONNECTIONS_ID as fb, connectionsPluginRef as fc, connectionsPlugin as fd, ZAPIER_BASE_URL as fe, getZapierSdkService as ff, MAX_PAGE_LIMIT as fg, DEFAULT_PAGE_SIZE as fh, DEFAULT_ACTION_TIMEOUT_MS as fi, ZAPIER_MAX_NETWORK_RETRIES as fj, ZAPIER_MAX_NETWORK_RETRY_DELAY_MS as fk, MAX_CONCURRENCY_LIMIT as fl, parseConcurrencyEnvVar as fm, ZAPIER_MAX_CONCURRENT_REQUESTS as fn, getZapierApprovalMode as fo, getZapierOpenAutoModeApprovalsInBrowser as fp, getZapierDefaultApprovalMode as fq, DEFAULT_APPROVAL_TIMEOUT_MS as fr, DEFAULT_MAX_APPROVAL_RETRIES as fs, listTablesPlugin as ft, getTablePlugin as fu, createTablePlugin as fv, deleteTablePlugin as fw, listTableFieldsPlugin as fx, createTableFieldsPlugin as fy, deleteTableFieldsPlugin as fz, type ActionProxy as g, getPlatformVersions as g0, isCi as g1, getCiPlatform as g2, getMemoryUsage as g3, getCpuTime as g4, getTtyContext as g5, createZapierSdk as g6, type ZapierSdkOptions as g7, type ZapierSdk as g8, type ZapierSdkApps as h, type DrainTriggerInboxOptions as i, type Manifest as j, type EventEmissionConfig as k, type ZapierCache as l, type ListActionsOptions as m, type ListActionInputFieldsOptions as n, type ListActionInputFieldChoicesOptions as o, type PluginMeta as p, DrainTriggerInboxSchema as q, WatchTriggerInboxSchema as r, ZapierAbortDrainSignal as s, ZapierReleaseTriggerMessageSignal as t, isZapierAbortDrainSignal as u, isZapierReleaseTriggerMessageSignal as v, type DrainTriggerInboxCallback as w, type DrainTriggerInboxErrorObserver as x, type LeasedTriggerMessageItem as y, type TriggerMessageStatus as z };
|
|
13839
|
+
export { type NeedsRequest as $, type AggregatePlugin as A, type BaseSdkOptions as B, type ConnectionsProvider as C, type DeleteTriggerInboxResult as D, type EventCallback as E, type FieldsetItem as F, type GetActionInputFieldsSchemaOptions as G, type ListAuthenticationsPluginProvides as H, type GetAuthenticationPluginProvides as I, type FindFirstAuthenticationPluginProvides as J, type FindUniqueAuthenticationPluginProvides as K, type LeafSummary as L, type MethodPlugin as M, type Action as N, type App as O, type PropertyPlugin as P, type Need as Q, type RegistryResult as R, type SdkContext as S, type TriggerInboxCommandSharedFields as T, type Field as U, type Choice as V, type WatchTriggerInboxOptions as W, type ActionExecutionResult as X, type ActionField as Y, type ZapierFetchInitOptions as Z, type ActionFieldChoice as _, type ApiClient as a, toTitleCase as a$, type NeedsResponse as a0, type Connection as a1, type ConnectionsResponse as a2, type UserProfile as a3, isPositional as a4, type PositionalMetadata as a5, createFunction as a6, createPaginatedFunction as a7, createPluginStack as a8, createCorePlugin as a9, type Formatter as aA, type OutputFormatter as aB, type Resolver$1 as aC, type ArrayResolver$1 as aD, type ResolverMetadata as aE, type StaticResolver$1 as aF, type DynamicResolver$1 as aG, type DynamicListResolver as aH, type DynamicSearchResolver as aI, type FieldsResolver as aJ, type Resolver as aK, type DynamicMember as aL, type PluginSurface as aM, createController as aN, type ControllerQuestion as aO, type ControllerAction as aP, type ControllerAnswerFn as aQ, type ControllerChoice as aR, type ControllerMethodSummary as aS, type ControllerMethodDescription as aT, type ControllerParameterDescription as aU, runInMethodScope as aV, runWithTelemetryContext as aW, getCallerContext as aX, runWithCallerContext as aY, type CallerContext as aZ, toSnakeCase as a_, addPlugin as aa, disposeSdk as ab, CoreDisposeError as ac, createSdk as ad, CONTEXT as ae, resolvePlugin as af, fromFunctionPlugin as ag, defineLegacyMerge as ah, getContext as ai, declarePlugin as aj, defineMethod as ak, defineMethodOverride as al, defineProperty as am, defineResolver as an, defineFormatter as ao, declareMethod as ap, declareProperty as aq, declareOptionalProperty as ar, selectExports as as, omitExports as at, getRegistryPlugin as au, zapierSdkPlugin as av, SDK_OPTIONS_ID as aw, sdkOptionsPluginRef as ax, type FormattedItem as ay, type BoundFormatter as az, type PluginSummary as b, LimitPropertySchema as b$, batch as b0, type BatchOptions as b1, buildCapabilityMessage as b2, logDeprecation as b3, resetDeprecationWarnings as b4, RelayRequestSchema as b5, RelayFetchSchema as b6, createZapierSdkWithoutRegistry as b7, zapierCoreOptions as b8, CORE_OPTIONS_ID as b9, type PollOptions as bA, createZapierApi as bB, getOrCreateApiClient as bC, isPermanentHttpError as bD, type SseMessage as bE, type JsonSseMessage as bF, DEPRECATION_NOTICE_EVENT as bG, type DeprecationNoticePayload as bH, type AppItem as bI, type ConnectionItem as bJ, type ActionItem$1 as bK, type InputFieldItem as bL, type InfoFieldItem as bM, type RootFieldItem as bN, type UserProfileItem as bO, type SdkPage as bP, type PaginatedSdkFunction as bQ, AppKeyPropertySchema as bR, AppPropertySchema as bS, ActionTypePropertySchema as bT, ActionKeyPropertySchema as bU, ActionPropertySchema as bV, InputFieldPropertySchema as bW, ConnectionIdPropertySchema as bX, AuthenticationIdPropertySchema as bY, ConnectionPropertySchema as bZ, InputsPropertySchema as b_, type FunctionRegistryEntry as ba, type FunctionDeprecation as bb, BaseSdkOptionsSchema as bc, isCoreError as bd, getCoreErrorCode as be, getCoreErrorCause as bf, CORE_ERROR_SYMBOL as bg, CoreErrorCode as bh, CoreSignal as bi, CoreCancelledSignal as bj, isCoreSignal as bk, isCoreCancelledSignal as bl, CORE_SIGNAL_SYMBOL as bm, type Plugin as bn, type PluginProvides as bo, type MethodOverridePlugin as bp, definePlugin as bq, createPluginMethod as br, createPaginatedPluginMethod as bs, composePlugins as bt, type ActionItem as bu, type ActionTypeItem as bv, type ResolvedAppLocator as bw, getAgent as bx, registryPlugin as by, type RequestOptions as bz, type PaginatedSdkResult as c, ZapierConflictError as c$, OffsetPropertySchema as c0, OutputPropertySchema as c1, DebugPropertySchema as c2, ParamsPropertySchema as c3, ActionTimeoutSecondsPropertySchema as c4, ActionTimeoutMillisecondsPropertySchema as c5, TablePropertySchema as c6, RecordPropertySchema as c7, RecordsPropertySchema as c8, FieldsPropertySchema as c9, type TableProperty as cA, type RecordProperty as cB, type RecordsProperty as cC, type FieldsProperty as cD, type AppsProperty as cE, type TablesProperty as cF, type ConnectionsProperty as cG, type TriggerInboxProperty as cH, type TriggerInboxKeyProperty as cI, type TriggerInboxNameProperty as cJ, type LeaseProperty as cK, type LeaseSecondsProperty as cL, type LeaseLimitProperty as cM, type ErrorOptions as cN, ZapierError as cO, ZapierValidationError as cP, ZapierUnknownError as cQ, ZapierAuthenticationError as cR, zapierAdaptError as cS, ZapierApiError as cT, ZapierAppNotFoundError as cU, ZapierNotFoundError as cV, ZapierResourceNotFoundError as cW, ZapierConfigurationError as cX, ZapierBundleError as cY, ZapierTimeoutError as cZ, ZapierActionError as c_, AppsPropertySchema as ca, TablesPropertySchema as cb, ConnectionsPropertySchema as cc, TriggerInboxPropertySchema as cd, TriggerInboxKeyPropertySchema as ce, TriggerInboxNamePropertySchema as cf, LeasePropertySchema as cg, LeaseSecondsPropertySchema as ch, LeaseLimitPropertySchema as ci, type AppKeyProperty as cj, type AppProperty as ck, type ActionTypeProperty as cl, type ActionKeyProperty as cm, type ActionProperty as cn, type InputFieldProperty as co, type ConnectionIdProperty as cp, type ConnectionProperty as cq, type AuthenticationIdProperty as cr, type InputsProperty as cs, type LimitProperty as ct, type OffsetProperty as cu, type OutputProperty as cv, type DebugProperty as cw, type ParamsProperty as cx, type ActionTimeoutSecondsProperty as cy, type ActionTimeoutMillisecondsProperty as cz, type ManifestProvider as d, type ApiPluginOptions as d$, type RateLimitInfo as d0, ZapierRateLimitError as d1, type ApprovalStatus as d2, ZapierApprovalError as d3, ZapierRelayError as d4, isZapierError as d5, isZapierValidationError as d6, isZapierAuthenticationError as d7, isZapierAppNotFoundError as d8, isZapierNotFoundError as d9, type ListConnectionsPluginProvides as dA, listClientCredentialsPlugin as dB, createClientCredentialsPlugin as dC, deleteClientCredentialsPlugin as dD, getAppPlugin as dE, getActionPlugin as dF, getConnectionPlugin as dG, findFirstConnectionPlugin as dH, findUniqueConnectionPlugin as dI, CONTEXT_CACHE_TTL_MILLISECONDS as dJ, CONTEXT_CACHE_MAX_SIZE as dK, runActionPlugin as dL, type RunActionPluginProvides as dM, requestPlugin as dN, type ManifestPluginOptions as dO, readManifestFromFile as dP, getPreferredManifestEntryKey as dQ, findManifestEntry as dR, MANIFEST_ID as dS, manifestPluginRef as dT, manifestPlugin as dU, type UpdateManifestEntryOptions as dV, type UpdateManifestEntryResult as dW, DEFAULT_CONFIG_PATH as dX, type ManifestEntry as dY, type ActionEntry as dZ, getProfilePlugin as d_, isZapierResourceNotFoundError as da, isZapierConflictError as db, isZapierTimeoutError as dc, isZapierBundleError as dd, isZapierActionError as de, isZapierRateLimitError as df, isZapierApprovalError as dg, formatErrorMessage as dh, type CoreApiError as di, ZapierSignal as dj, isZapierSignal as dk, appsPlugin as dl, type ActionExecutionOptions as dm, type AppFactoryInput as dn, type FetchPluginProvides as dp, fetchPlugin as dq, listAppsPlugin as dr, type ListAppsPluginProvides as ds, listActionsPlugin as dt, type ListActionsPluginProvides as du, listActionInputFieldsPlugin as dv, type ListActionInputFieldsPluginProvides as dw, listActionInputFieldChoicesPlugin as dx, getActionInputFieldsSchemaPlugin as dy, listConnectionsPlugin as dz, type CapabilitiesContext as e, getBaseUrlFromCredentials as e$, type ResolveCredentialsFn as e0, API_ID as e1, apiPluginRef as e2, apiPlugin as e3, RESOLVE_CREDENTIALS_ID as e4, resolveCredentialsPluginRef as e5, resolveCredentialsPlugin as e6, appKeyResolver as e7, actionTypeResolver as e8, actionKeyResolver as e9, clearTokenCache as eA, invalidateCachedToken as eB, injectCliLogin as eC, isCliLoginAvailable as eD, getTokenFromCliLogin as eE, resolveAuth as eF, resolveAuthToken as eG, invalidateCredentialsToken as eH, type ZapierCacheEntry as eI, type ZapierCacheSetOptions as eJ, createMemoryCache as eK, type SdkEvent as eL, type AuthEvent as eM, type ApiEvent as eN, type LoadingEvent as eO, type Credentials as eP, type ResolvedCredentials as eQ, type CredentialsObject as eR, type ClientCredentialsObject as eS, type PkceCredentialsObject as eT, isClientCredentials as eU, isPkceCredentials as eV, isCredentialsObject as eW, isCredentialsFunction as eX, type ResolveCredentialsOptions as eY, resolveCredentialsFromEnv as eZ, resolveCredentials as e_, connectionIdResolver as ea, connectionIdGenericResolver as eb, inputsResolver as ec, inputsAllOptionalResolver as ed, inputFieldKeyResolver as ee, clientCredentialsNameResolver as ef, clientIdResolver as eg, tableIdResolver as eh, triggerInboxResolver as ei, workflowIdResolver as ej, durableRunIdResolver as ek, workflowVersionIdResolver as el, workflowRunIdResolver as em, triggerMessagesResolver as en, tableRecordIdResolver as eo, tableRecordIdsResolver as ep, tableFieldIdsResolver as eq, tableNameResolver as er, tableFieldsResolver as es, tableRecordsResolver as et, tableUpdateRecordsResolver as eu, tableFiltersResolver as ev, tableSortResolver as ew, type ResolveAuthTokenOptions as ex, AuthMechanism as ey, type ResolvedAuth as ez, type CoreOptions as f, getCurrentTimestamp as f$, getClientIdFromCredentials as f0, ClientCredentialsObjectSchema as f1, PkceCredentialsObjectSchema as f2, CredentialsObjectSchema as f3, ResolvedCredentialsSchema as f4, CredentialsFunctionSchema as f5, type CredentialsFunction as f6, CredentialsSchema as f7, ConnectionEntrySchema as f8, type ConnectionEntry as f9, createTableFieldsPlugin as fA, deleteTableFieldsPlugin as fB, getTableRecordPlugin as fC, listTableRecordsPlugin as fD, createTableRecordsPlugin as fE, deleteTableRecordsPlugin as fF, updateTableRecordsPlugin as fG, cleanupEventListeners as fH, type EventEmissionContext as fI, type EventEmitter as fJ, EVENT_EMISSION_ID as fK, eventEmissionPluginRef as fL, eventEmissionPlugin as fM, eventEmissionHookPlugin as fN, type EventTransport as fO, type EventContext as fP, type ApplicationLifecycleEventData as fQ, type EnhancedErrorEventData as fR, type MethodCalledEventData as fS, buildApplicationLifecycleEvent as fT, buildErrorEventWithContext as fU, buildErrorEvent as fV, createBaseEvent as fW, buildMethodCalledEvent as fX, type BaseEvent as fY, type MethodCalledEvent as fZ, generateEventId as f_, ConnectionsMapSchema as fa, type ConnectionsMap as fb, type ResolveConnection as fc, CONNECTIONS_ID as fd, connectionsPluginRef as fe, connectionsPlugin as ff, ZAPIER_BASE_URL as fg, getZapierSdkService as fh, MAX_PAGE_LIMIT as fi, DEFAULT_PAGE_SIZE as fj, DEFAULT_ACTION_TIMEOUT_MILLISECONDS as fk, ZAPIER_MAX_NETWORK_RETRIES as fl, ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS as fm, MAX_CONCURRENCY_LIMIT as fn, parseConcurrencyEnvVar as fo, ZAPIER_MAX_CONCURRENT_REQUESTS as fp, getZapierApprovalMode as fq, getZapierOpenAutoModeApprovalsInBrowser as fr, getZapierDefaultApprovalMode as fs, DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS as ft, DEFAULT_MAX_APPROVAL_RETRIES as fu, listTablesPlugin as fv, getTablePlugin as fw, createTablePlugin as fx, deleteTablePlugin as fy, listTableFieldsPlugin as fz, type ActionProxy as g, getReleaseId as g0, getOsInfo as g1, getPlatformVersions as g2, isCi as g3, getCiPlatform as g4, getMemoryUsage as g5, getCpuTime as g6, getTtyContext as g7, createZapierSdk as g8, type ZapierSdkOptions as g9, type ZapierSdk as ga, type ZapierSdkApps as h, type DrainTriggerInboxOptions as i, type Manifest as j, type EventEmissionConfig as k, type ZapierCache as l, type ListActionsOptions as m, type ListActionInputFieldsOptions as n, type ListActionInputFieldChoicesOptions as o, type PluginMeta as p, DrainTriggerInboxSchema as q, WatchTriggerInboxSchema as r, ZapierAbortDrainSignal as s, ZapierReleaseTriggerMessageSignal as t, isZapierAbortDrainSignal as u, isZapierReleaseTriggerMessageSignal as v, type DrainTriggerInboxCallback as w, type DrainTriggerInboxErrorObserver as x, type LeasedTriggerMessageItem as y, type TriggerMessageStatus as z };
|