@zapier/zapier-sdk 0.93.0 → 0.94.1
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 +20 -0
- package/README.md +70 -0
- package/dist/{chunk-S2WSKNCP.cjs → chunk-7NCOFRA6.cjs} +1152 -1006
- package/dist/{chunk-DSWOSGEW.mjs → chunk-XETAS26U.mjs} +1150 -1007
- package/dist/experimental.cjs +389 -377
- package/dist/experimental.d.mts +149 -7
- package/dist/experimental.d.ts +149 -7
- package/dist/experimental.mjs +2 -2
- package/dist/{index-BUPBfgvQ.d.mts → index-DsMsmowr.d.mts} +304 -11
- package/dist/{index-BUPBfgvQ.d.ts → index-DsMsmowr.d.ts} +304 -11
- package/dist/index.cjs +285 -273
- 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
|
@@ -3986,7 +3986,10 @@ declare class ZapierApprovalError extends ZapierError {
|
|
|
3986
3986
|
declare class ZapierRelayError extends ZapierError {
|
|
3987
3987
|
readonly name = "ZapierRelayError";
|
|
3988
3988
|
readonly code: "ZAPIER_RELAY_ERROR";
|
|
3989
|
-
|
|
3989
|
+
retryable?: boolean;
|
|
3990
|
+
constructor(message: string, options?: ErrorOptions & {
|
|
3991
|
+
retryable?: boolean;
|
|
3992
|
+
});
|
|
3990
3993
|
}
|
|
3991
3994
|
/**
|
|
3992
3995
|
* Any Zapier-thrown error (the cross-package-safe equivalent of
|
|
@@ -5791,7 +5794,21 @@ declare const appsPlugin: PropertyPlugin<"apps", ActionProxy & ZapierSdkApps> &
|
|
|
5791
5794
|
pageSize?: number;
|
|
5792
5795
|
} & {
|
|
5793
5796
|
maxItems?: number;
|
|
5794
|
-
}, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"
|
|
5797
|
+
}, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, MethodPlugin<"createActionRun", {
|
|
5798
|
+
app: string;
|
|
5799
|
+
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
5800
|
+
action: string;
|
|
5801
|
+
connection?: string | number | undefined;
|
|
5802
|
+
inputs?: Record<string, unknown> | undefined;
|
|
5803
|
+
page?: string | undefined;
|
|
5804
|
+
callbackUrl?: string | undefined;
|
|
5805
|
+
}, Promise<{
|
|
5806
|
+
data: {
|
|
5807
|
+
id: string;
|
|
5808
|
+
implementation_id: string;
|
|
5809
|
+
};
|
|
5810
|
+
meta?: ResponseMeta;
|
|
5811
|
+
}>, readonly []> & LeafSummary<"", "createActionRun", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
|
|
5795
5812
|
app: string;
|
|
5796
5813
|
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
5797
5814
|
action: string;
|
|
@@ -5841,7 +5858,7 @@ declare const appsPlugin: PropertyPlugin<"apps", ActionProxy & ZapierSdkApps> &
|
|
|
5841
5858
|
id?: string | undefined;
|
|
5842
5859
|
is_important?: boolean | undefined;
|
|
5843
5860
|
app_version?: string | undefined;
|
|
5844
|
-
}>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>]>;
|
|
5861
|
+
}>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>]>]>;
|
|
5845
5862
|
|
|
5846
5863
|
interface ZapierSdkApps {
|
|
5847
5864
|
}
|
|
@@ -6849,6 +6866,91 @@ interface FindUniqueAuthenticationPluginProvides {
|
|
|
6849
6866
|
|
|
6850
6867
|
declare const CONTEXT_CACHE_TTL_MILLISECONDS = 60000;
|
|
6851
6868
|
declare const CONTEXT_CACHE_MAX_SIZE = 500;
|
|
6869
|
+
declare const createActionRunPlugin: MethodPlugin<"createActionRun", {
|
|
6870
|
+
app: string;
|
|
6871
|
+
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
6872
|
+
action: string;
|
|
6873
|
+
connection?: string | number | undefined;
|
|
6874
|
+
inputs?: Record<string, unknown> | undefined;
|
|
6875
|
+
page?: string | undefined;
|
|
6876
|
+
callbackUrl?: string | undefined;
|
|
6877
|
+
}, Promise<{
|
|
6878
|
+
data: {
|
|
6879
|
+
id: string;
|
|
6880
|
+
implementation_id: string;
|
|
6881
|
+
};
|
|
6882
|
+
meta?: ResponseMeta;
|
|
6883
|
+
}>, readonly []> & LeafSummary<"", "createActionRun", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
|
|
6884
|
+
app: string;
|
|
6885
|
+
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
6886
|
+
action: string;
|
|
6887
|
+
} | {
|
|
6888
|
+
appKey: string;
|
|
6889
|
+
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
6890
|
+
actionKey: string;
|
|
6891
|
+
}, Promise<{
|
|
6892
|
+
data: {
|
|
6893
|
+
description: string;
|
|
6894
|
+
key: string;
|
|
6895
|
+
app_key: string;
|
|
6896
|
+
action_type: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
6897
|
+
title: string;
|
|
6898
|
+
type: "action";
|
|
6899
|
+
is_hidden?: boolean | undefined;
|
|
6900
|
+
id?: string | undefined;
|
|
6901
|
+
is_important?: boolean | undefined;
|
|
6902
|
+
app_version?: string | undefined;
|
|
6903
|
+
};
|
|
6904
|
+
meta?: ResponseMeta;
|
|
6905
|
+
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
6906
|
+
app: string;
|
|
6907
|
+
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
6908
|
+
pageSize?: number | undefined;
|
|
6909
|
+
maxItems?: number | undefined;
|
|
6910
|
+
cursor?: string | undefined;
|
|
6911
|
+
} | {
|
|
6912
|
+
appKey: string;
|
|
6913
|
+
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
6914
|
+
pageSize?: number | undefined;
|
|
6915
|
+
maxItems?: number | undefined;
|
|
6916
|
+
cursor?: string | undefined;
|
|
6917
|
+
}) & {
|
|
6918
|
+
cursor?: string;
|
|
6919
|
+
pageSize?: number;
|
|
6920
|
+
} & {
|
|
6921
|
+
maxItems?: number;
|
|
6922
|
+
}, PaginatedSdkResult<{
|
|
6923
|
+
description: string;
|
|
6924
|
+
key: string;
|
|
6925
|
+
app_key: string;
|
|
6926
|
+
action_type: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
6927
|
+
title: string;
|
|
6928
|
+
type: "action";
|
|
6929
|
+
is_hidden?: boolean | undefined;
|
|
6930
|
+
id?: string | undefined;
|
|
6931
|
+
is_important?: boolean | undefined;
|
|
6932
|
+
app_version?: string | undefined;
|
|
6933
|
+
}>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>;
|
|
6934
|
+
type CreateActionRunPluginProvides = PluginSurface<typeof createActionRunPlugin>;
|
|
6935
|
+
|
|
6936
|
+
declare const getActionRunPlugin: MethodPlugin<"getActionRun", {
|
|
6937
|
+
run: string;
|
|
6938
|
+
}, Promise<{
|
|
6939
|
+
data: {
|
|
6940
|
+
id: string;
|
|
6941
|
+
status: string;
|
|
6942
|
+
results: unknown[];
|
|
6943
|
+
errors: {
|
|
6944
|
+
code?: string | undefined;
|
|
6945
|
+
title?: string | null | undefined;
|
|
6946
|
+
detail?: string | undefined;
|
|
6947
|
+
}[];
|
|
6948
|
+
next_page?: string | undefined;
|
|
6949
|
+
};
|
|
6950
|
+
meta?: ResponseMeta;
|
|
6951
|
+
}>, readonly []> & LeafSummary<"", "getActionRun", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
6952
|
+
type GetActionRunPluginProvides = PluginSurface<typeof getActionRunPlugin>;
|
|
6953
|
+
|
|
6852
6954
|
declare const runActionPlugin: MethodPlugin<"runAction", ({
|
|
6853
6955
|
app: string;
|
|
6854
6956
|
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
@@ -6880,7 +6982,21 @@ declare const runActionPlugin: MethodPlugin<"runAction", ({
|
|
|
6880
6982
|
pageSize?: number;
|
|
6881
6983
|
} & {
|
|
6882
6984
|
maxItems?: number;
|
|
6883
|
-
}, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"
|
|
6985
|
+
}, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, MethodPlugin<"createActionRun", {
|
|
6986
|
+
app: string;
|
|
6987
|
+
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
6988
|
+
action: string;
|
|
6989
|
+
connection?: string | number | undefined;
|
|
6990
|
+
inputs?: Record<string, unknown> | undefined;
|
|
6991
|
+
page?: string | undefined;
|
|
6992
|
+
callbackUrl?: string | undefined;
|
|
6993
|
+
}, Promise<{
|
|
6994
|
+
data: {
|
|
6995
|
+
id: string;
|
|
6996
|
+
implementation_id: string;
|
|
6997
|
+
};
|
|
6998
|
+
meta?: ResponseMeta;
|
|
6999
|
+
}>, readonly []> & LeafSummary<"", "createActionRun", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
|
|
6884
7000
|
app: string;
|
|
6885
7001
|
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
6886
7002
|
action: string;
|
|
@@ -6930,7 +7046,7 @@ declare const runActionPlugin: MethodPlugin<"runAction", ({
|
|
|
6930
7046
|
id?: string | undefined;
|
|
6931
7047
|
is_important?: boolean | undefined;
|
|
6932
7048
|
app_version?: string | undefined;
|
|
6933
|
-
}>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>;
|
|
7049
|
+
}>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>]>;
|
|
6934
7050
|
type RunActionPluginProvides = PluginSurface<typeof runActionPlugin>;
|
|
6935
7051
|
|
|
6936
7052
|
/**
|
|
@@ -8562,6 +8678,37 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8562
8678
|
sample?: string | undefined;
|
|
8563
8679
|
value?: string | undefined;
|
|
8564
8680
|
}>;
|
|
8681
|
+
createActionRun: (input: {
|
|
8682
|
+
app: string;
|
|
8683
|
+
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
8684
|
+
action: string;
|
|
8685
|
+
connection?: string | number | undefined;
|
|
8686
|
+
inputs?: Record<string, unknown> | undefined;
|
|
8687
|
+
page?: string | undefined;
|
|
8688
|
+
callbackUrl?: string | undefined;
|
|
8689
|
+
}) => Promise<{
|
|
8690
|
+
data: {
|
|
8691
|
+
id: string;
|
|
8692
|
+
implementation_id: string;
|
|
8693
|
+
};
|
|
8694
|
+
meta?: ResponseMeta;
|
|
8695
|
+
}>;
|
|
8696
|
+
getActionRun: (input: {
|
|
8697
|
+
run: string;
|
|
8698
|
+
}) => Promise<{
|
|
8699
|
+
data: {
|
|
8700
|
+
id: string;
|
|
8701
|
+
status: string;
|
|
8702
|
+
results: unknown[];
|
|
8703
|
+
errors: {
|
|
8704
|
+
code?: string | undefined;
|
|
8705
|
+
title?: string | null | undefined;
|
|
8706
|
+
detail?: string | undefined;
|
|
8707
|
+
}[];
|
|
8708
|
+
next_page?: string | undefined;
|
|
8709
|
+
};
|
|
8710
|
+
meta?: ResponseMeta;
|
|
8711
|
+
}>;
|
|
8565
8712
|
runAction: (input: ({
|
|
8566
8713
|
app: string;
|
|
8567
8714
|
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
@@ -10966,6 +11113,89 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10966
11113
|
is_important?: boolean | undefined;
|
|
10967
11114
|
app_version?: string | undefined;
|
|
10968
11115
|
}>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>]>;
|
|
11116
|
+
} & {
|
|
11117
|
+
createActionRun: MethodPlugin<"createActionRun", {
|
|
11118
|
+
app: string;
|
|
11119
|
+
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
11120
|
+
action: string;
|
|
11121
|
+
connection?: string | number | undefined;
|
|
11122
|
+
inputs?: Record<string, unknown> | undefined;
|
|
11123
|
+
page?: string | undefined;
|
|
11124
|
+
callbackUrl?: string | undefined;
|
|
11125
|
+
}, Promise<{
|
|
11126
|
+
data: {
|
|
11127
|
+
id: string;
|
|
11128
|
+
implementation_id: string;
|
|
11129
|
+
};
|
|
11130
|
+
meta?: ResponseMeta;
|
|
11131
|
+
}>, readonly []> & LeafSummary<"", "createActionRun", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
|
|
11132
|
+
app: string;
|
|
11133
|
+
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
11134
|
+
action: string;
|
|
11135
|
+
} | {
|
|
11136
|
+
appKey: string;
|
|
11137
|
+
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
11138
|
+
actionKey: string;
|
|
11139
|
+
}, Promise<{
|
|
11140
|
+
data: {
|
|
11141
|
+
description: string;
|
|
11142
|
+
key: string;
|
|
11143
|
+
app_key: string;
|
|
11144
|
+
action_type: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
11145
|
+
title: string;
|
|
11146
|
+
type: "action";
|
|
11147
|
+
is_hidden?: boolean | undefined;
|
|
11148
|
+
id?: string | undefined;
|
|
11149
|
+
is_important?: boolean | undefined;
|
|
11150
|
+
app_version?: string | undefined;
|
|
11151
|
+
};
|
|
11152
|
+
meta?: ResponseMeta;
|
|
11153
|
+
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
11154
|
+
app: string;
|
|
11155
|
+
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
11156
|
+
pageSize?: number | undefined;
|
|
11157
|
+
maxItems?: number | undefined;
|
|
11158
|
+
cursor?: string | undefined;
|
|
11159
|
+
} | {
|
|
11160
|
+
appKey: string;
|
|
11161
|
+
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
11162
|
+
pageSize?: number | undefined;
|
|
11163
|
+
maxItems?: number | undefined;
|
|
11164
|
+
cursor?: string | undefined;
|
|
11165
|
+
}) & {
|
|
11166
|
+
cursor?: string;
|
|
11167
|
+
pageSize?: number;
|
|
11168
|
+
} & {
|
|
11169
|
+
maxItems?: number;
|
|
11170
|
+
}, PaginatedSdkResult<{
|
|
11171
|
+
description: string;
|
|
11172
|
+
key: string;
|
|
11173
|
+
app_key: string;
|
|
11174
|
+
action_type: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
11175
|
+
title: string;
|
|
11176
|
+
type: "action";
|
|
11177
|
+
is_hidden?: boolean | undefined;
|
|
11178
|
+
id?: string | undefined;
|
|
11179
|
+
is_important?: boolean | undefined;
|
|
11180
|
+
app_version?: string | undefined;
|
|
11181
|
+
}>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>;
|
|
11182
|
+
} & {
|
|
11183
|
+
getActionRun: MethodPlugin<"getActionRun", {
|
|
11184
|
+
run: string;
|
|
11185
|
+
}, Promise<{
|
|
11186
|
+
data: {
|
|
11187
|
+
id: string;
|
|
11188
|
+
status: string;
|
|
11189
|
+
results: unknown[];
|
|
11190
|
+
errors: {
|
|
11191
|
+
code?: string | undefined;
|
|
11192
|
+
title?: string | null | undefined;
|
|
11193
|
+
detail?: string | undefined;
|
|
11194
|
+
}[];
|
|
11195
|
+
next_page?: string | undefined;
|
|
11196
|
+
};
|
|
11197
|
+
meta?: ResponseMeta;
|
|
11198
|
+
}>, readonly []> & LeafSummary<"", "getActionRun", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
10969
11199
|
} & {
|
|
10970
11200
|
runAction: MethodPlugin<"runAction", ({
|
|
10971
11201
|
app: string;
|
|
@@ -10998,7 +11228,21 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10998
11228
|
pageSize?: number;
|
|
10999
11229
|
} & {
|
|
11000
11230
|
maxItems?: number;
|
|
11001
|
-
}, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"
|
|
11231
|
+
}, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, MethodPlugin<"createActionRun", {
|
|
11232
|
+
app: string;
|
|
11233
|
+
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
11234
|
+
action: string;
|
|
11235
|
+
connection?: string | number | undefined;
|
|
11236
|
+
inputs?: Record<string, unknown> | undefined;
|
|
11237
|
+
page?: string | undefined;
|
|
11238
|
+
callbackUrl?: string | undefined;
|
|
11239
|
+
}, Promise<{
|
|
11240
|
+
data: {
|
|
11241
|
+
id: string;
|
|
11242
|
+
implementation_id: string;
|
|
11243
|
+
};
|
|
11244
|
+
meta?: ResponseMeta;
|
|
11245
|
+
}>, readonly []> & LeafSummary<"", "createActionRun", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
|
|
11002
11246
|
app: string;
|
|
11003
11247
|
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
11004
11248
|
action: string;
|
|
@@ -11048,7 +11292,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11048
11292
|
id?: string | undefined;
|
|
11049
11293
|
is_important?: boolean | undefined;
|
|
11050
11294
|
app_version?: string | undefined;
|
|
11051
|
-
}>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>;
|
|
11295
|
+
}>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>]>;
|
|
11052
11296
|
} & {
|
|
11053
11297
|
fetch: MethodPlugin<"fetch", {
|
|
11054
11298
|
url: string | URL;
|
|
@@ -11103,7 +11347,21 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11103
11347
|
pageSize?: number;
|
|
11104
11348
|
} & {
|
|
11105
11349
|
maxItems?: number;
|
|
11106
|
-
}, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"
|
|
11350
|
+
}, PaginatedSdkResult<unknown>, readonly []> & LeafSummary<"", "runAction", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, MethodPlugin<"createActionRun", {
|
|
11351
|
+
app: string;
|
|
11352
|
+
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
11353
|
+
action: string;
|
|
11354
|
+
connection?: string | number | undefined;
|
|
11355
|
+
inputs?: Record<string, unknown> | undefined;
|
|
11356
|
+
page?: string | undefined;
|
|
11357
|
+
callbackUrl?: string | undefined;
|
|
11358
|
+
}, Promise<{
|
|
11359
|
+
data: {
|
|
11360
|
+
id: string;
|
|
11361
|
+
implementation_id: string;
|
|
11362
|
+
};
|
|
11363
|
+
meta?: ResponseMeta;
|
|
11364
|
+
}>, readonly []> & LeafSummary<"", "createActionRun", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
|
|
11107
11365
|
app: string;
|
|
11108
11366
|
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
11109
11367
|
action: string;
|
|
@@ -11153,7 +11411,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11153
11411
|
id?: string | undefined;
|
|
11154
11412
|
is_important?: boolean | undefined;
|
|
11155
11413
|
app_version?: string | undefined;
|
|
11156
|
-
}>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>]>;
|
|
11414
|
+
}>, readonly []> & LeafSummary<"", "listActions", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>]>]>]>;
|
|
11157
11415
|
} & {
|
|
11158
11416
|
listTriggerInboxes: MethodPlugin<"listTriggerInboxes", {
|
|
11159
11417
|
key?: string | undefined;
|
|
@@ -12034,7 +12292,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
12034
12292
|
}[];
|
|
12035
12293
|
meta?: ResponseMeta;
|
|
12036
12294
|
}>, readonly []> & LeafSummary<"", "updateTableRecords", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
12037
|
-
}> & PluginSummary<never, "fetch" | "zapier/eventEmission" | "apps" | "zapier/manifest" | "zapier/api" | "zapier/resolveCredentials" | "zapier/connections" | "getApp" | "listApps" | "listActions" | "zapier/capabilities" | "listConnections" | "listActionInputFields" | "listActionInputFieldChoices" | "listClientCredentials" | "listTablesInternal" | "listTriggerInboxes" | "listTriggerInboxMessages" | "listTableRecords" | "listTableFields" | "getAction" | "runAction" | "getActionInputFieldsSchema" | "createClientCredentials" | "deleteClientCredentials" | "getConnection" | "findFirstConnection" | "findUniqueConnection" | "listAuthentications" | "getAuthentication" | "findFirstAuthentication" | "findUniqueAuthentication" | "request" | "getProfile" | "getConnectionStartUrl" | "waitForNewConnection" | "createConnection" | "listInputFields" | "listInputFieldChoices" | "getInputFieldsSchema" | "createTriggerInbox" | "ensureTriggerInbox" | "getTriggerInbox" | "updateTriggerInbox" | "deleteTriggerInbox" | "pauseTriggerInbox" | "resumeTriggerInbox" | "leaseTriggerInboxMessages" | "ackTriggerInboxMessages" | "releaseTriggerInboxMessages" | "drainTriggerInbox" | "watchTriggerInbox" | "listTriggers" | "listTriggerInputFields" | "listTriggerInputFieldChoices" | "getTriggerInputFieldsSchema" | "listTables" | "getTable" | "deleteTable" | "createTable" | "createTableFields" | "deleteTableFields" | "getTableRecord" | "createTableRecords" | "deleteTableRecords" | "updateTableRecords" | "kitcore/getRegistry" | "zapier/sdk">;
|
|
12295
|
+
}> & PluginSummary<never, "fetch" | "zapier/eventEmission" | "apps" | "zapier/manifest" | "zapier/api" | "zapier/resolveCredentials" | "zapier/connections" | "getApp" | "listApps" | "listActions" | "zapier/capabilities" | "listConnections" | "listActionInputFields" | "listActionInputFieldChoices" | "listClientCredentials" | "listTablesInternal" | "listTriggerInboxes" | "listTriggerInboxMessages" | "listTableRecords" | "listTableFields" | "getAction" | "createActionRun" | "runAction" | "getActionInputFieldsSchema" | "createClientCredentials" | "deleteClientCredentials" | "getConnection" | "findFirstConnection" | "findUniqueConnection" | "listAuthentications" | "getAuthentication" | "findFirstAuthentication" | "findUniqueAuthentication" | "getActionRun" | "request" | "getProfile" | "getConnectionStartUrl" | "waitForNewConnection" | "createConnection" | "listInputFields" | "listInputFieldChoices" | "getInputFieldsSchema" | "createTriggerInbox" | "ensureTriggerInbox" | "getTriggerInbox" | "updateTriggerInbox" | "deleteTriggerInbox" | "pauseTriggerInbox" | "resumeTriggerInbox" | "leaseTriggerInboxMessages" | "ackTriggerInboxMessages" | "releaseTriggerInboxMessages" | "drainTriggerInbox" | "watchTriggerInbox" | "listTriggers" | "listTriggerInputFields" | "listTriggerInputFieldChoices" | "getTriggerInputFieldsSchema" | "listTables" | "getTable" | "deleteTable" | "createTable" | "createTableFields" | "deleteTableFields" | "getTableRecord" | "createTableRecords" | "deleteTableRecords" | "updateTableRecords" | "kitcore/getRegistry" | "zapier/sdk">;
|
|
12038
12296
|
declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
12039
12297
|
getRegistry: (input?: {
|
|
12040
12298
|
package?: string | undefined;
|
|
@@ -12870,6 +13128,37 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12870
13128
|
sample?: string | undefined;
|
|
12871
13129
|
value?: string | undefined;
|
|
12872
13130
|
}>;
|
|
13131
|
+
createActionRun: (input: {
|
|
13132
|
+
app: string;
|
|
13133
|
+
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
13134
|
+
action: string;
|
|
13135
|
+
connection?: string | number | undefined;
|
|
13136
|
+
inputs?: Record<string, unknown> | undefined;
|
|
13137
|
+
page?: string | undefined;
|
|
13138
|
+
callbackUrl?: string | undefined;
|
|
13139
|
+
}) => Promise<{
|
|
13140
|
+
data: {
|
|
13141
|
+
id: string;
|
|
13142
|
+
implementation_id: string;
|
|
13143
|
+
};
|
|
13144
|
+
meta?: ResponseMeta;
|
|
13145
|
+
}>;
|
|
13146
|
+
getActionRun: (input: {
|
|
13147
|
+
run: string;
|
|
13148
|
+
}) => Promise<{
|
|
13149
|
+
data: {
|
|
13150
|
+
id: string;
|
|
13151
|
+
status: string;
|
|
13152
|
+
results: unknown[];
|
|
13153
|
+
errors: {
|
|
13154
|
+
code?: string | undefined;
|
|
13155
|
+
title?: string | null | undefined;
|
|
13156
|
+
detail?: string | undefined;
|
|
13157
|
+
}[];
|
|
13158
|
+
next_page?: string | undefined;
|
|
13159
|
+
};
|
|
13160
|
+
meta?: ResponseMeta;
|
|
13161
|
+
}>;
|
|
12873
13162
|
runAction: (input: ({
|
|
12874
13163
|
app: string;
|
|
12875
13164
|
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
@@ -13786,6 +14075,10 @@ declare const DEFAULT_PAGE_SIZE = 100;
|
|
|
13786
14075
|
* Default timeout for action execution (in milliseconds)
|
|
13787
14076
|
*/
|
|
13788
14077
|
declare const DEFAULT_ACTION_TIMEOUT_MILLISECONDS = 180000;
|
|
14078
|
+
/**
|
|
14079
|
+
* Actions API collection that action runs are created in and fetched from.
|
|
14080
|
+
*/
|
|
14081
|
+
declare const ACTION_RUNS_PATH = "/zapier/api/actions/v1/runs";
|
|
13789
14082
|
/**
|
|
13790
14083
|
* Network retry configuration from environment variables
|
|
13791
14084
|
*/
|
|
@@ -14201,4 +14494,4 @@ declare function getAgent(): string | null;
|
|
|
14201
14494
|
*/
|
|
14202
14495
|
declare const registryPlugin: (_sdk: {}) => {};
|
|
14203
14496
|
|
|
14204
|
-
export { type ActionFieldChoice 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 TriggerMessageStatus as H, type ListAuthenticationsPluginProvides as I, type GetAuthenticationPluginProvides as J, type FindFirstAuthenticationPluginProvides as K, type LeafSummary as L, type MethodPlugin as M, type FindUniqueAuthenticationPluginProvides as N, type Action as O, type PropertyPlugin as P, type App as Q, type RegistryResult as R, type SdkContext as S, type TriggerInboxCommandSharedFields as T, type Need as U, type Field as V, type WatchTriggerInboxOptions as W, type Choice as X, type ActionExecutionResult as Y, type ZapierFetchInitOptions as Z, type ActionField as _, type ResponseMeta as a, runWithCallerContext as a$, type NeedsRequest as a0, type NeedsResponse as a1, type Connection as a2, type ConnectionsResponse as a3, type UserProfile as a4, isPositional as a5, type PositionalMetadata as a6, getNegatable as a7, type NegatableMetadata as a8, createFunction as a9, sdkOptionsPluginRef as aA, type FormattedItem as aB, type BoundFormatter as aC, type Formatter as aD, type OutputFormatter as aE, type Resolver$1 as aF, type ArrayResolver$1 as aG, type ResolverMetadata as aH, type StaticResolver$1 as aI, type DynamicResolver$1 as aJ, type DynamicListResolver as aK, type DynamicSearchResolver as aL, type FieldsResolver as aM, type Resolver as aN, type DynamicMember as aO, type PluginSurface as aP, createController as aQ, type ControllerQuestion as aR, type ControllerAction as aS, type ControllerAnswerFn as aT, type ControllerChoice as aU, type ControllerMethodSummary as aV, type ControllerMethodDescription as aW, type ControllerParameterDescription as aX, runInMethodScope as aY, runWithTelemetryContext as aZ, getCallerContext as a_, createPaginatedFunction as aa, createPluginStack as ab, createCorePlugin as ac, addPlugin as ad, disposeSdk as ae, CoreDisposeError as af, createSdk as ag, CONTEXT as ah, resolvePlugin as ai, fromFunctionPlugin as aj, defineLegacyMerge as ak, getContext as al, declarePlugin as am, defineMethod as an, defineMethodOverride as ao, defineProperty as ap, defineResolver as aq, defineFormatter as ar, declareMethod as as, declareProperty as at, declareOptionalProperty as au, selectExports as av, omitExports as aw, getRegistryPlugin as ax, zapierSdkPlugin as ay, SDK_OPTIONS_ID as az, type ApiClient as b, AuthenticationIdPropertySchema as b$, type CallerContext as b0, toSnakeCase as b1, toTitleCase as b2, batch as b3, type BatchOptions as b4, buildCapabilityMessage as b5, logDeprecation as b6, resetDeprecationWarnings as b7, RelayRequestSchema as b8, RelayFetchSchema as b9, getAgent as bA, registryPlugin as bB, type RequestOptions as bC, type PollOptions as bD, createZapierApi as bE, getOrCreateApiClient as bF, isPermanentHttpError as bG, type SseMessage as bH, type JsonSseMessage as bI, DEPRECATION_NOTICE_EVENT as bJ, type DeprecationNoticePayload as bK, type AppItem as bL, type ConnectionItem as bM, type ActionItem$1 as bN, type InputFieldItem as bO, type InfoFieldItem as bP, type RootFieldItem as bQ, type UserProfileItem as bR, type SdkPage as bS, type PaginatedSdkFunction as bT, AppKeyPropertySchema as bU, AppPropertySchema as bV, ActionTypePropertySchema as bW, ActionKeyPropertySchema as bX, ActionPropertySchema as bY, InputFieldPropertySchema as bZ, ConnectionIdPropertySchema as b_, createZapierSdkWithoutRegistry as ba, zapierCoreOptions as bb, CORE_OPTIONS_ID as bc, type FunctionRegistryEntry as bd, type FunctionDeprecation as be, BaseSdkOptionsSchema as bf, isCoreError as bg, getCoreErrorCode as bh, getCoreErrorCause as bi, CORE_ERROR_SYMBOL as bj, CoreErrorCode as bk, CoreSignal as bl, CoreCancelledSignal as bm, isCoreSignal as bn, isCoreCancelledSignal as bo, CORE_SIGNAL_SYMBOL as bp, type Plugin as bq, type PluginProvides as br, type MethodOverridePlugin as bs, definePlugin as bt, createPluginMethod as bu, createPaginatedPluginMethod as bv, composePlugins as bw, type ActionItem as bx, type ActionTypeItem as by, type ResolvedAppLocator as bz, type PluginSummary as c, ZapierBundleError as c$, ConnectionPropertySchema as c0, InputsPropertySchema as c1, LimitPropertySchema as c2, OffsetPropertySchema as c3, OutputPropertySchema as c4, DebugPropertySchema as c5, ParamsPropertySchema as c6, ActionTimeoutSecondsPropertySchema as c7, ActionTimeoutMillisecondsPropertySchema as c8, TablePropertySchema as c9, type ParamsProperty as cA, type ActionTimeoutSecondsProperty as cB, type ActionTimeoutMillisecondsProperty as cC, type TableProperty as cD, type RecordProperty as cE, type RecordsProperty as cF, type FieldsProperty as cG, type AppsProperty as cH, type TablesProperty as cI, type ConnectionsProperty as cJ, type TriggerInboxProperty as cK, type TriggerInboxKeyProperty as cL, type TriggerInboxNameProperty as cM, type LeaseProperty as cN, type LeaseSecondsProperty as cO, type LeaseLimitProperty as cP, type ErrorOptions as cQ, ZapierError as cR, ZapierValidationError as cS, ZapierUnknownError as cT, ZapierAuthenticationError as cU, zapierAdaptError as cV, ZapierApiError as cW, ZapierAppNotFoundError as cX, ZapierNotFoundError as cY, ZapierResourceNotFoundError as cZ, ZapierConfigurationError as c_, RecordPropertySchema as ca, RecordsPropertySchema as cb, FieldsPropertySchema as cc, AppsPropertySchema as cd, TablesPropertySchema as ce, ConnectionsPropertySchema as cf, TriggerInboxPropertySchema as cg, TriggerInboxKeyPropertySchema as ch, TriggerInboxNamePropertySchema as ci, LeasePropertySchema as cj, LeaseSecondsPropertySchema as ck, LeaseLimitPropertySchema as cl, type AppKeyProperty as cm, type AppProperty as cn, type ActionTypeProperty as co, type ActionKeyProperty as cp, type ActionProperty as cq, type InputFieldProperty as cr, type ConnectionIdProperty as cs, type ConnectionProperty as ct, type AuthenticationIdProperty as cu, type InputsProperty as cv, type LimitProperty as cw, type OffsetProperty as cx, type OutputProperty as cy, type DebugProperty as cz, type PaginatedSdkResult as d, type ManifestEntry as d$, ZapierTimeoutError as d0, ZapierActionError as d1, ZapierConflictError as d2, type RateLimitInfo as d3, ZapierRateLimitError as d4, type ApprovalStatus as d5, ZapierApprovalError as d6, ZapierRelayError as d7, isZapierError as d8, isZapierValidationError as d9, listActionInputFieldChoicesPlugin as dA, getActionInputFieldsSchemaPlugin as dB, listConnectionsPlugin as dC, type ListConnectionsPluginProvides as dD, listClientCredentialsPlugin as dE, createClientCredentialsPlugin as dF, deleteClientCredentialsPlugin as dG, getAppPlugin as dH, getActionPlugin as dI, getConnectionPlugin as dJ, findFirstConnectionPlugin as dK, findUniqueConnectionPlugin as dL, CONTEXT_CACHE_TTL_MILLISECONDS as dM, CONTEXT_CACHE_MAX_SIZE as dN, runActionPlugin as dO, type RunActionPluginProvides as dP, requestPlugin as dQ, type ManifestPluginOptions as dR, readManifestFromFile as dS, getPreferredManifestEntryKey as dT, findManifestEntry as dU, MANIFEST_ID as dV, manifestPluginRef as dW, manifestPlugin as dX, type UpdateManifestEntryOptions as dY, type UpdateManifestEntryResult as dZ, DEFAULT_CONFIG_PATH as d_, isZapierAuthenticationError as da, isZapierAppNotFoundError as db, isZapierNotFoundError as dc, isZapierResourceNotFoundError as dd, isZapierConflictError as de, isZapierTimeoutError as df, isZapierBundleError as dg, isZapierActionError as dh, isZapierRateLimitError as di, isZapierApprovalError as dj, formatErrorMessage as dk, type CoreApiError as dl, ZapierSignal as dm, isZapierSignal as dn, appsPlugin as dp, type ActionExecutionOptions as dq, type AppFactoryInput as dr, type FetchPluginProvides as ds, fetchPlugin as dt, listAppsPlugin as du, type ListAppsPluginProvides as dv, listActionsPlugin as dw, type ListActionsPluginProvides as dx, listActionInputFieldsPlugin as dy, type ListActionInputFieldsPluginProvides as dz, type ManifestProvider as e, isCredentialsObject as e$, type ActionEntry as e0, getProfilePlugin as e1, type GetProfilePluginProvides as e2, type ApiPluginOptions as e3, type ResolveCredentialsFn as e4, API_ID as e5, apiPluginRef as e6, apiPlugin as e7, RESOLVE_CREDENTIALS_ID as e8, resolveCredentialsPluginRef as e9, tableFiltersResolver as eA, tableSortResolver as eB, type ResolveAuthTokenOptions as eC, AuthMechanism as eD, type ResolvedAuth as eE, clearTokenCache as eF, invalidateCachedToken as eG, injectCliLogin as eH, isCliLoginAvailable as eI, getTokenFromCliLogin as eJ, resolveAuth as eK, resolveAuthToken as eL, invalidateCredentialsToken as eM, type ZapierCacheEntry as eN, type ZapierCacheSetOptions as eO, createMemoryCache as eP, type SdkEvent as eQ, type AuthEvent as eR, type ApiEvent as eS, type LoadingEvent as eT, type Credentials as eU, type ResolvedCredentials as eV, type CredentialsObject as eW, type ClientCredentialsObject as eX, type PkceCredentialsObject as eY, isClientCredentials as eZ, isPkceCredentials as e_, resolveCredentialsPlugin as ea, appKeyResolver as eb, actionTypeResolver as ec, actionKeyResolver as ed, connectionIdResolver as ee, connectionIdGenericResolver as ef, inputsResolver as eg, inputsAllOptionalResolver as eh, inputFieldKeyResolver as ei, clientCredentialsNameResolver as ej, clientIdResolver as ek, tableIdResolver as el, triggerInboxResolver as em, workflowIdResolver as en, durableRunIdResolver as eo, workflowVersionIdResolver as ep, workflowDraftIdResolver as eq, workflowRunIdResolver as er, triggerMessagesResolver as es, tableRecordIdResolver as et, tableRecordIdsResolver as eu, tableFieldIdsResolver as ev, tableNameResolver as ew, tableFieldsResolver as ex, tableRecordsResolver as ey, tableUpdateRecordsResolver as ez, type CapabilitiesContext as f, createBaseEvent as f$, isCredentialsFunction as f0, type ResolveCredentialsOptions as f1, resolveCredentialsFromEnv as f2, resolveCredentials as f3, getBaseUrlFromCredentials as f4, getClientIdFromCredentials as f5, ClientCredentialsObjectSchema as f6, PkceCredentialsObjectSchema as f7, CredentialsObjectSchema as f8, ResolvedCredentialsSchema as f9, listTablesPlugin as fA, getTablePlugin as fB, createTablePlugin as fC, deleteTablePlugin as fD, listTableFieldsPlugin as fE, createTableFieldsPlugin as fF, deleteTableFieldsPlugin as fG, getTableRecordPlugin as fH, listTableRecordsPlugin as fI, createTableRecordsPlugin as fJ, deleteTableRecordsPlugin as fK, updateTableRecordsPlugin as fL, cleanupEventListeners as fM, type EventEmissionContext as fN, type EventEmitter as fO, EVENT_EMISSION_ID as fP, eventEmissionPluginRef as fQ, eventEmissionPlugin as fR, eventEmissionHookPlugin as fS, type EventTransport as fT, type EventContext as fU, type ApplicationLifecycleEventData as fV, type EnhancedErrorEventData as fW, type MethodCalledEventData as fX, buildApplicationLifecycleEvent as fY, buildErrorEventWithContext as fZ, buildErrorEvent as f_, CredentialsFunctionSchema as fa, type CredentialsFunction as fb, CredentialsSchema as fc, ConnectionEntrySchema as fd, type ConnectionEntry as fe, ConnectionsMapSchema as ff, type ConnectionsMap as fg, type ResolveConnection as fh, CONNECTIONS_ID as fi, connectionsPluginRef as fj, connectionsPlugin as fk, ZAPIER_BASE_URL as fl, getZapierSdkService as fm, MAX_PAGE_LIMIT as fn, DEFAULT_PAGE_SIZE as fo, DEFAULT_ACTION_TIMEOUT_MILLISECONDS as fp, ZAPIER_MAX_NETWORK_RETRIES as fq, ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS as fr, MAX_CONCURRENCY_LIMIT as fs, parseConcurrencyEnvVar as ft, ZAPIER_MAX_CONCURRENT_REQUESTS as fu, getZapierApprovalMode as fv, getZapierOpenAutoModeApprovalsInBrowser as fw, getZapierDefaultApprovalMode as fx, DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS as fy, DEFAULT_MAX_APPROVAL_RETRIES as fz, type CoreOptions as g, buildMethodCalledEvent as g0, type BaseEvent as g1, type MethodCalledEvent as g2, operationAnnotatorPlugin as g3, generateEventId as g4, getCurrentTimestamp as g5, getReleaseId as g6, getOsInfo as g7, getPlatformVersions as g8, isCi as g9, getCiPlatform as ga, getMemoryUsage as gb, getCpuTime as gc, getTtyContext as gd, createZapierSdk as ge, type ZapierSdkOptions as gf, type ZapierSdk as gg, type ActionProxy as h, type ZapierSdkApps as i, type DrainTriggerInboxOptions as j, type Manifest as k, type EventEmissionConfig as l, type ZapierCache as m, type ListActionsOptions as n, type ListActionInputFieldsOptions as o, type ListActionInputFieldChoicesOptions as p, type PluginMeta as q, DrainTriggerInboxSchema as r, WatchTriggerInboxSchema as s, ZapierAbortDrainSignal as t, ZapierReleaseTriggerMessageSignal as u, isZapierAbortDrainSignal as v, isZapierReleaseTriggerMessageSignal as w, type DrainTriggerInboxCallback as x, type DrainTriggerInboxErrorObserver as y, type LeasedTriggerMessageItem as z };
|
|
14497
|
+
export { type ActionFieldChoice 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 TriggerMessageStatus as H, type ListAuthenticationsPluginProvides as I, type GetAuthenticationPluginProvides as J, type FindFirstAuthenticationPluginProvides as K, type LeafSummary as L, type MethodPlugin as M, type FindUniqueAuthenticationPluginProvides as N, type Action as O, type PropertyPlugin as P, type App as Q, type RegistryResult as R, type SdkContext as S, type TriggerInboxCommandSharedFields as T, type Need as U, type Field as V, type WatchTriggerInboxOptions as W, type Choice as X, type ActionExecutionResult as Y, type ZapierFetchInitOptions as Z, type ActionField as _, type ResponseMeta as a, runWithCallerContext as a$, type NeedsRequest as a0, type NeedsResponse as a1, type Connection as a2, type ConnectionsResponse as a3, type UserProfile as a4, isPositional as a5, type PositionalMetadata as a6, getNegatable as a7, type NegatableMetadata as a8, createFunction as a9, sdkOptionsPluginRef as aA, type FormattedItem as aB, type BoundFormatter as aC, type Formatter as aD, type OutputFormatter as aE, type Resolver$1 as aF, type ArrayResolver$1 as aG, type ResolverMetadata as aH, type StaticResolver$1 as aI, type DynamicResolver$1 as aJ, type DynamicListResolver as aK, type DynamicSearchResolver as aL, type FieldsResolver as aM, type Resolver as aN, type DynamicMember as aO, type PluginSurface as aP, createController as aQ, type ControllerQuestion as aR, type ControllerAction as aS, type ControllerAnswerFn as aT, type ControllerChoice as aU, type ControllerMethodSummary as aV, type ControllerMethodDescription as aW, type ControllerParameterDescription as aX, runInMethodScope as aY, runWithTelemetryContext as aZ, getCallerContext as a_, createPaginatedFunction as aa, createPluginStack as ab, createCorePlugin as ac, addPlugin as ad, disposeSdk as ae, CoreDisposeError as af, createSdk as ag, CONTEXT as ah, resolvePlugin as ai, fromFunctionPlugin as aj, defineLegacyMerge as ak, getContext as al, declarePlugin as am, defineMethod as an, defineMethodOverride as ao, defineProperty as ap, defineResolver as aq, defineFormatter as ar, declareMethod as as, declareProperty as at, declareOptionalProperty as au, selectExports as av, omitExports as aw, getRegistryPlugin as ax, zapierSdkPlugin as ay, SDK_OPTIONS_ID as az, type ApiClient as b, AuthenticationIdPropertySchema as b$, type CallerContext as b0, toSnakeCase as b1, toTitleCase as b2, batch as b3, type BatchOptions as b4, buildCapabilityMessage as b5, logDeprecation as b6, resetDeprecationWarnings as b7, RelayRequestSchema as b8, RelayFetchSchema as b9, getAgent as bA, registryPlugin as bB, type RequestOptions as bC, type PollOptions as bD, createZapierApi as bE, getOrCreateApiClient as bF, isPermanentHttpError as bG, type SseMessage as bH, type JsonSseMessage as bI, DEPRECATION_NOTICE_EVENT as bJ, type DeprecationNoticePayload as bK, type AppItem as bL, type ConnectionItem as bM, type ActionItem$1 as bN, type InputFieldItem as bO, type InfoFieldItem as bP, type RootFieldItem as bQ, type UserProfileItem as bR, type SdkPage as bS, type PaginatedSdkFunction as bT, AppKeyPropertySchema as bU, AppPropertySchema as bV, ActionTypePropertySchema as bW, ActionKeyPropertySchema as bX, ActionPropertySchema as bY, InputFieldPropertySchema as bZ, ConnectionIdPropertySchema as b_, createZapierSdkWithoutRegistry as ba, zapierCoreOptions as bb, CORE_OPTIONS_ID as bc, type FunctionRegistryEntry as bd, type FunctionDeprecation as be, BaseSdkOptionsSchema as bf, isCoreError as bg, getCoreErrorCode as bh, getCoreErrorCause as bi, CORE_ERROR_SYMBOL as bj, CoreErrorCode as bk, CoreSignal as bl, CoreCancelledSignal as bm, isCoreSignal as bn, isCoreCancelledSignal as bo, CORE_SIGNAL_SYMBOL as bp, type Plugin as bq, type PluginProvides as br, type MethodOverridePlugin as bs, definePlugin as bt, createPluginMethod as bu, createPaginatedPluginMethod as bv, composePlugins as bw, type ActionItem as bx, type ActionTypeItem as by, type ResolvedAppLocator as bz, type PluginSummary as c, ZapierBundleError as c$, ConnectionPropertySchema as c0, InputsPropertySchema as c1, LimitPropertySchema as c2, OffsetPropertySchema as c3, OutputPropertySchema as c4, DebugPropertySchema as c5, ParamsPropertySchema as c6, ActionTimeoutSecondsPropertySchema as c7, ActionTimeoutMillisecondsPropertySchema as c8, TablePropertySchema as c9, type ParamsProperty as cA, type ActionTimeoutSecondsProperty as cB, type ActionTimeoutMillisecondsProperty as cC, type TableProperty as cD, type RecordProperty as cE, type RecordsProperty as cF, type FieldsProperty as cG, type AppsProperty as cH, type TablesProperty as cI, type ConnectionsProperty as cJ, type TriggerInboxProperty as cK, type TriggerInboxKeyProperty as cL, type TriggerInboxNameProperty as cM, type LeaseProperty as cN, type LeaseSecondsProperty as cO, type LeaseLimitProperty as cP, type ErrorOptions as cQ, ZapierError as cR, ZapierValidationError as cS, ZapierUnknownError as cT, ZapierAuthenticationError as cU, zapierAdaptError as cV, ZapierApiError as cW, ZapierAppNotFoundError as cX, ZapierNotFoundError as cY, ZapierResourceNotFoundError as cZ, ZapierConfigurationError as c_, RecordPropertySchema as ca, RecordsPropertySchema as cb, FieldsPropertySchema as cc, AppsPropertySchema as cd, TablesPropertySchema as ce, ConnectionsPropertySchema as cf, TriggerInboxPropertySchema as cg, TriggerInboxKeyPropertySchema as ch, TriggerInboxNamePropertySchema as ci, LeasePropertySchema as cj, LeaseSecondsPropertySchema as ck, LeaseLimitPropertySchema as cl, type AppKeyProperty as cm, type AppProperty as cn, type ActionTypeProperty as co, type ActionKeyProperty as cp, type ActionProperty as cq, type InputFieldProperty as cr, type ConnectionIdProperty as cs, type ConnectionProperty as ct, type AuthenticationIdProperty as cu, type InputsProperty as cv, type LimitProperty as cw, type OffsetProperty as cx, type OutputProperty as cy, type DebugProperty as cz, type PaginatedSdkResult as d, manifestPlugin as d$, ZapierTimeoutError as d0, ZapierActionError as d1, ZapierConflictError as d2, type RateLimitInfo as d3, ZapierRateLimitError as d4, type ApprovalStatus as d5, ZapierApprovalError as d6, ZapierRelayError as d7, isZapierError as d8, isZapierValidationError as d9, listActionInputFieldChoicesPlugin as dA, getActionInputFieldsSchemaPlugin as dB, listConnectionsPlugin as dC, type ListConnectionsPluginProvides as dD, listClientCredentialsPlugin as dE, createClientCredentialsPlugin as dF, deleteClientCredentialsPlugin as dG, getAppPlugin as dH, getActionPlugin as dI, getConnectionPlugin as dJ, findFirstConnectionPlugin as dK, findUniqueConnectionPlugin as dL, CONTEXT_CACHE_TTL_MILLISECONDS as dM, CONTEXT_CACHE_MAX_SIZE as dN, createActionRunPlugin as dO, type CreateActionRunPluginProvides as dP, getActionRunPlugin as dQ, type GetActionRunPluginProvides as dR, runActionPlugin as dS, type RunActionPluginProvides as dT, requestPlugin as dU, type ManifestPluginOptions as dV, readManifestFromFile as dW, getPreferredManifestEntryKey as dX, findManifestEntry as dY, MANIFEST_ID as dZ, manifestPluginRef as d_, isZapierAuthenticationError as da, isZapierAppNotFoundError as db, isZapierNotFoundError as dc, isZapierResourceNotFoundError as dd, isZapierConflictError as de, isZapierTimeoutError as df, isZapierBundleError as dg, isZapierActionError as dh, isZapierRateLimitError as di, isZapierApprovalError as dj, formatErrorMessage as dk, type CoreApiError as dl, ZapierSignal as dm, isZapierSignal as dn, appsPlugin as dp, type ActionExecutionOptions as dq, type AppFactoryInput as dr, type FetchPluginProvides as ds, fetchPlugin as dt, listAppsPlugin as du, type ListAppsPluginProvides as dv, listActionsPlugin as dw, type ListActionsPluginProvides as dx, listActionInputFieldsPlugin as dy, type ListActionInputFieldsPluginProvides as dz, type ManifestProvider as e, type ClientCredentialsObject as e$, type UpdateManifestEntryOptions as e0, type UpdateManifestEntryResult as e1, DEFAULT_CONFIG_PATH as e2, type ManifestEntry as e3, type ActionEntry as e4, getProfilePlugin as e5, type GetProfilePluginProvides as e6, type ApiPluginOptions as e7, type ResolveCredentialsFn as e8, API_ID as e9, tableNameResolver as eA, tableFieldsResolver as eB, tableRecordsResolver as eC, tableUpdateRecordsResolver as eD, tableFiltersResolver as eE, tableSortResolver as eF, type ResolveAuthTokenOptions as eG, AuthMechanism as eH, type ResolvedAuth as eI, clearTokenCache as eJ, invalidateCachedToken as eK, injectCliLogin as eL, isCliLoginAvailable as eM, getTokenFromCliLogin as eN, resolveAuth as eO, resolveAuthToken as eP, invalidateCredentialsToken as eQ, type ZapierCacheEntry as eR, type ZapierCacheSetOptions as eS, createMemoryCache as eT, type SdkEvent as eU, type AuthEvent as eV, type ApiEvent as eW, type LoadingEvent as eX, type Credentials as eY, type ResolvedCredentials as eZ, type CredentialsObject as e_, apiPluginRef as ea, apiPlugin as eb, RESOLVE_CREDENTIALS_ID as ec, resolveCredentialsPluginRef as ed, resolveCredentialsPlugin as ee, appKeyResolver as ef, actionTypeResolver as eg, actionKeyResolver as eh, connectionIdResolver as ei, connectionIdGenericResolver as ej, inputsResolver as ek, inputsAllOptionalResolver as el, inputFieldKeyResolver as em, clientCredentialsNameResolver as en, clientIdResolver as eo, tableIdResolver as ep, triggerInboxResolver as eq, workflowIdResolver as er, durableRunIdResolver as es, workflowVersionIdResolver as et, workflowDraftIdResolver as eu, workflowRunIdResolver as ev, triggerMessagesResolver as ew, tableRecordIdResolver as ex, tableRecordIdsResolver as ey, tableFieldIdsResolver as ez, type CapabilitiesContext as f, type EnhancedErrorEventData as f$, type PkceCredentialsObject as f0, isClientCredentials as f1, isPkceCredentials as f2, isCredentialsObject as f3, isCredentialsFunction as f4, type ResolveCredentialsOptions as f5, resolveCredentialsFromEnv as f6, resolveCredentials as f7, getBaseUrlFromCredentials as f8, getClientIdFromCredentials as f9, getZapierApprovalMode as fA, getZapierOpenAutoModeApprovalsInBrowser as fB, getZapierDefaultApprovalMode as fC, DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS as fD, DEFAULT_MAX_APPROVAL_RETRIES as fE, listTablesPlugin as fF, getTablePlugin as fG, createTablePlugin as fH, deleteTablePlugin as fI, listTableFieldsPlugin as fJ, createTableFieldsPlugin as fK, deleteTableFieldsPlugin as fL, getTableRecordPlugin as fM, listTableRecordsPlugin as fN, createTableRecordsPlugin as fO, deleteTableRecordsPlugin as fP, updateTableRecordsPlugin as fQ, cleanupEventListeners as fR, type EventEmissionContext as fS, type EventEmitter as fT, EVENT_EMISSION_ID as fU, eventEmissionPluginRef as fV, eventEmissionPlugin as fW, eventEmissionHookPlugin as fX, type EventTransport as fY, type EventContext as fZ, type ApplicationLifecycleEventData as f_, ClientCredentialsObjectSchema as fa, PkceCredentialsObjectSchema as fb, CredentialsObjectSchema as fc, ResolvedCredentialsSchema as fd, CredentialsFunctionSchema as fe, type CredentialsFunction as ff, CredentialsSchema as fg, ConnectionEntrySchema as fh, type ConnectionEntry as fi, ConnectionsMapSchema as fj, type ConnectionsMap as fk, type ResolveConnection as fl, CONNECTIONS_ID as fm, connectionsPluginRef as fn, connectionsPlugin as fo, ZAPIER_BASE_URL as fp, getZapierSdkService as fq, MAX_PAGE_LIMIT as fr, DEFAULT_PAGE_SIZE as fs, DEFAULT_ACTION_TIMEOUT_MILLISECONDS as ft, ACTION_RUNS_PATH as fu, ZAPIER_MAX_NETWORK_RETRIES as fv, ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS as fw, MAX_CONCURRENCY_LIMIT as fx, parseConcurrencyEnvVar as fy, ZAPIER_MAX_CONCURRENT_REQUESTS as fz, type CoreOptions as g, type MethodCalledEventData as g0, buildApplicationLifecycleEvent as g1, buildErrorEventWithContext as g2, buildErrorEvent as g3, createBaseEvent as g4, buildMethodCalledEvent as g5, type BaseEvent as g6, type MethodCalledEvent as g7, operationAnnotatorPlugin as g8, generateEventId as g9, getCurrentTimestamp as ga, getReleaseId as gb, getOsInfo as gc, getPlatformVersions as gd, isCi as ge, getCiPlatform as gf, getMemoryUsage as gg, getCpuTime as gh, getTtyContext as gi, createZapierSdk as gj, type ZapierSdkOptions as gk, type ZapierSdk as gl, type ActionProxy as h, type ZapierSdkApps as i, type DrainTriggerInboxOptions as j, type Manifest as k, type EventEmissionConfig as l, type ZapierCache as m, type ListActionsOptions as n, type ListActionInputFieldsOptions as o, type ListActionInputFieldChoicesOptions as p, type PluginMeta as q, DrainTriggerInboxSchema as r, WatchTriggerInboxSchema as s, ZapierAbortDrainSignal as t, ZapierReleaseTriggerMessageSignal as u, isZapierAbortDrainSignal as v, isZapierReleaseTriggerMessageSignal as w, type DrainTriggerInboxCallback as x, type DrainTriggerInboxErrorObserver as y, type LeasedTriggerMessageItem as z };
|