@zapier/zapier-sdk 0.91.0 → 0.92.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 +24 -0
- package/README.md +16 -15
- package/dist/{chunk-RO34ZWKR.cjs → chunk-F5I2GDLO.cjs} +274 -26
- package/dist/{chunk-SZBWDVX3.mjs → chunk-G52V3IGZ.mjs} +274 -26
- package/dist/experimental.cjs +476 -374
- package/dist/experimental.d.mts +140 -3
- package/dist/experimental.d.ts +140 -3
- package/dist/experimental.mjs +105 -3
- package/dist/{index-BBBkZ80x.d.mts → index-ixzNJW7G.d.mts} +211 -4
- package/dist/{index-BBBkZ80x.d.ts → index-ixzNJW7G.d.ts} +211 -4
- package/dist/index.cjs +272 -272
- 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
|
@@ -186,9 +186,33 @@ declare module "zod" {
|
|
|
186
186
|
}
|
|
187
187
|
}
|
|
188
188
|
|
|
189
|
+
/**
|
|
190
|
+
* The response `meta` sidecar, shared by both output modes: an item method's
|
|
191
|
+
* `{ data, meta }` envelope and a list method's page carry the same shape, so a
|
|
192
|
+
* caller reads a framework report the same way regardless of the mode it came
|
|
193
|
+
* from.
|
|
194
|
+
*
|
|
195
|
+
* Every member is optional and framework-owned. A method's `run` returns `data`;
|
|
196
|
+
* the boundary attaches what belongs here.
|
|
197
|
+
*/
|
|
198
|
+
interface ResponseMeta {
|
|
199
|
+
/**
|
|
200
|
+
* What output validation's strip removed from the response, present only when
|
|
201
|
+
* the head enables the `includeOutputValidationDroppedPaths` core option AND
|
|
202
|
+
* something was actually dropped. Paths are relative to `data` in both modes
|
|
203
|
+
* (`a.b` for an item), with array elements collapsed to one `[]` segment and
|
|
204
|
+
* unioned (`[].b` on a page, `items[].b` for an array inside an item), matching
|
|
205
|
+
* connectors' format.
|
|
206
|
+
*/
|
|
207
|
+
outputValidation?: {
|
|
208
|
+
droppedPaths: string[];
|
|
209
|
+
};
|
|
210
|
+
}
|
|
211
|
+
|
|
189
212
|
/**
|
|
190
213
|
* Pagination shapes used by the plugin framework.
|
|
191
214
|
*/
|
|
215
|
+
|
|
192
216
|
/**
|
|
193
217
|
* Single page of a paginated SDK list result. Returned from the page-level
|
|
194
218
|
* promise and yielded from the page-level async iterable.
|
|
@@ -196,6 +220,10 @@ declare module "zod" {
|
|
|
196
220
|
interface SdkPage<T = unknown> {
|
|
197
221
|
data: T[];
|
|
198
222
|
nextCursor?: string;
|
|
223
|
+
/** Additive per-page framework sidecar, the same shape an item method's
|
|
224
|
+
* envelope carries. Framework-set, not something a handler or `adaptPage`
|
|
225
|
+
* returns. See {@link ResponseMeta}. */
|
|
226
|
+
meta?: ResponseMeta;
|
|
199
227
|
}
|
|
200
228
|
/**
|
|
201
229
|
* Return type of every paginated SDK method. The documented surface is:
|
|
@@ -652,6 +680,13 @@ interface LeafMetaFields {
|
|
|
652
680
|
itemType?: string;
|
|
653
681
|
returnType?: string;
|
|
654
682
|
outputSchema?: z.ZodSchema;
|
|
683
|
+
/** Behavioral opt-out that rides on this config for every `defineMethod`
|
|
684
|
+
* overload (all merge `LeafMetaFields`), the partner of `outputSchema`: when
|
|
685
|
+
* true, the materializer skips validating/stripping the output. It is
|
|
686
|
+
* consumed at build time and stored as a first-class plugin field, NOT folded
|
|
687
|
+
* into the projected meta (hence absent from `LEAF_META_KEYS`), so it stays
|
|
688
|
+
* off the registry / CLI / MCP surface, exactly like `skipInputValidation`. */
|
|
689
|
+
skipOutputValidation?: boolean;
|
|
655
690
|
packages?: string[];
|
|
656
691
|
experimental?: boolean;
|
|
657
692
|
confirm?: "create-secret" | "delete";
|
|
@@ -1148,9 +1183,15 @@ interface MethodPlugin<TName extends string = string, TInput = unknown, TOutput
|
|
|
1148
1183
|
/** True for a `declareMethod` stand-in: a typed reference with no real
|
|
1149
1184
|
* implementation. A real plugin under the same id satisfies it. */
|
|
1150
1185
|
standIn?: boolean;
|
|
1151
|
-
/** True for a `
|
|
1152
|
-
*
|
|
1186
|
+
/** True for a `declareOptionalMethod` stand-in: dependents bind `undefined` if
|
|
1187
|
+
* no real plugin satisfies it, and `PluginSurface` types the binding
|
|
1188
|
+
* `| undefined`. */
|
|
1153
1189
|
optional?: boolean;
|
|
1190
|
+
/** Present on a `declareDefault` wrapper: this entry is the DEFAULT provider
|
|
1191
|
+
* for its id (preempted by any explicit provider). Its value is the wrapped
|
|
1192
|
+
* plugin, so two defaults for one id dedup (same source) or conflict
|
|
1193
|
+
* (different source). */
|
|
1194
|
+
defaultSource?: AnyLeafPlugin;
|
|
1154
1195
|
imports: readonly AnyPlugin[];
|
|
1155
1196
|
/** Binding-name to plugin-id edges, normalized from `imports`;
|
|
1156
1197
|
* what the `imports` bag is built from. */
|
|
@@ -1172,6 +1213,10 @@ interface MethodPlugin<TName extends string = string, TInput = unknown, TOutput
|
|
|
1172
1213
|
* For raw methods that own their own validation and must not have their input
|
|
1173
1214
|
* transformed, e.g. `fetch` passing a `RequestInit` bag through unchanged. */
|
|
1174
1215
|
skipInputValidation?: boolean;
|
|
1216
|
+
/** When true, the materializer skips validating/stripping `run`'s output
|
|
1217
|
+
* against `meta.outputSchema` (the schema stays for projection). The output
|
|
1218
|
+
* partner of {@link MethodPlugin.skipInputValidation}. */
|
|
1219
|
+
skipOutputValidation?: boolean;
|
|
1175
1220
|
/** Descriptive metadata for the registry / CLI / MCP / docs (carry-only at
|
|
1176
1221
|
* runtime). */
|
|
1177
1222
|
meta?: LeafMeta;
|
|
@@ -1286,6 +1331,11 @@ interface PropertyPlugin<TName extends string = string, TValue = unknown> {
|
|
|
1286
1331
|
* property satisfies it, dependents bind `undefined` rather than the build
|
|
1287
1332
|
* failing on a missing dependency. */
|
|
1288
1333
|
optional?: boolean;
|
|
1334
|
+
/** Present on a `declareDefault` wrapper: this entry is the DEFAULT provider
|
|
1335
|
+
* for its id (preempted by any explicit provider). Its value is the wrapped
|
|
1336
|
+
* plugin, so two defaults for one id dedup (same source) or conflict
|
|
1337
|
+
* (different source). */
|
|
1338
|
+
defaultSource?: AnyLeafPlugin;
|
|
1289
1339
|
imports: readonly AnyPlugin[];
|
|
1290
1340
|
/** Binding-name to plugin-id edges, normalized from `imports`;
|
|
1291
1341
|
* what the `imports` bag is built from. */
|
|
@@ -1606,7 +1656,11 @@ type ExportSurface<TChild extends AnyLeafPlugin> = TChild extends MethodPlugin<a
|
|
|
1606
1656
|
* bag and `ProvidesOf` is the completeness ledger's phantom ids — both
|
|
1607
1657
|
* different concepts.
|
|
1608
1658
|
*/
|
|
1609
|
-
type PluginSurface<P extends AnyPlugin> = P extends MethodPlugin<infer TName, infer TInput, infer TOutput, infer TPositional> ? {
|
|
1659
|
+
type PluginSurface<P extends AnyPlugin> = P extends MethodPlugin<infer TName, infer TInput, infer TOutput, infer TPositional> ? P extends {
|
|
1660
|
+
optional: true;
|
|
1661
|
+
} ? {
|
|
1662
|
+
[K in TName]: SurfaceCall<TInput, TOutput, TPositional> | undefined;
|
|
1663
|
+
} : {
|
|
1610
1664
|
[K in TName]: SurfaceCall<TInput, TOutput, TPositional>;
|
|
1611
1665
|
} : P extends PropertyPlugin<infer TName, infer TValue> ? {
|
|
1612
1666
|
[K in TName]: TValue;
|
|
@@ -2352,6 +2406,7 @@ declare function defineMethod<const TName extends string, TInput, TResponse exte
|
|
|
2352
2406
|
run: (bag: MethodRunBag<ImportsOf<TImports>, TInput, TState>) => TResponse | Promise<TResponse>;
|
|
2353
2407
|
} & LeafMetaFields): MethodPlugin<TName, TInput, Promise<{
|
|
2354
2408
|
data: TData;
|
|
2409
|
+
meta?: ResponseMeta;
|
|
2355
2410
|
}>> & LeafSummary<TNamespace, TName, TImports>;
|
|
2356
2411
|
declare function defineMethod<const TName extends string, TInput, TResponse extends StrictPage$1<TResponse>, TItem = ItemOf$1<TResponse>, const TImports extends ImportsInput = readonly [], const TNamespace extends string = "", TState = undefined>(config: {
|
|
2357
2412
|
name: TName;
|
|
@@ -2889,6 +2944,15 @@ interface CoreOptions {
|
|
|
2889
2944
|
* reserved for an `on*`-named observer when the unified event bus lands.
|
|
2890
2945
|
*/
|
|
2891
2946
|
logDeprecation?: (warning: DeprecationWarning) => void;
|
|
2947
|
+
/**
|
|
2948
|
+
* Report what output validation stripped, on the response's
|
|
2949
|
+
* `meta.outputValidation.droppedPaths` (the name mirrors that path). Off by
|
|
2950
|
+
* default: the report is a debugging aid for reconciling a schema against the
|
|
2951
|
+
* wire, and a sidecar every caller has to ignore is worse than one a head
|
|
2952
|
+
* turns on while it audits its schemas. Off also skips the recursive
|
|
2953
|
+
* raw-vs-parsed diff, so the strip costs a parse and nothing more.
|
|
2954
|
+
*/
|
|
2955
|
+
includeOutputValidationDroppedPaths?: boolean;
|
|
2892
2956
|
}
|
|
2893
2957
|
/**
|
|
2894
2958
|
* A built-in that reports the live SDK surface as the canonical
|
|
@@ -3450,6 +3514,8 @@ declare function createPaginatedFunction<TUserOptions, TResponse, TItem = ItemTy
|
|
|
3450
3514
|
adaptPage?: (response: TResponse) => SdkPage<NoInfer<TItem>>;
|
|
3451
3515
|
/** Pre-run per-method annotator (see applyAnnotations). */
|
|
3452
3516
|
annotator?: (input: unknown) => Annotations;
|
|
3517
|
+
/** Applied to each canonical page after the shape guard (output validation). */
|
|
3518
|
+
finalizePage?: (page: SdkPage<TItem>) => SdkPage<TItem>;
|
|
3453
3519
|
/** Live read of the method's deprecation meta (see signalDeprecation). */
|
|
3454
3520
|
getDeprecation?: () => FunctionDeprecation | undefined;
|
|
3455
3521
|
}): (options?: TUserOptions & {
|
|
@@ -3807,8 +3873,16 @@ declare class ZapierConflictError extends ZapierError {
|
|
|
3807
3873
|
readonly name = "ZapierConflictError";
|
|
3808
3874
|
readonly code: "ZAPIER_CONFLICT_ERROR";
|
|
3809
3875
|
resourceType?: string;
|
|
3876
|
+
/**
|
|
3877
|
+
* Structured, machine-readable context from the server's JSON:API error
|
|
3878
|
+
* `meta` member — e.g. the open-draft publish guard lists the blocking
|
|
3879
|
+
* drafts under `meta.open_drafts`. Lets callers resolve the conflict
|
|
3880
|
+
* programmatically instead of parsing the message.
|
|
3881
|
+
*/
|
|
3882
|
+
meta?: Record<string, unknown>;
|
|
3810
3883
|
constructor(message: string, options?: ErrorOptions & {
|
|
3811
3884
|
resourceType?: string;
|
|
3885
|
+
meta?: Record<string, unknown>;
|
|
3812
3886
|
});
|
|
3813
3887
|
}
|
|
3814
3888
|
/**
|
|
@@ -5716,6 +5790,7 @@ declare const appsPlugin: PropertyPlugin<"apps", ActionProxy & ZapierSdkApps> &
|
|
|
5716
5790
|
is_important?: boolean | undefined;
|
|
5717
5791
|
app_version?: string | undefined;
|
|
5718
5792
|
};
|
|
5793
|
+
meta?: ResponseMeta;
|
|
5719
5794
|
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
5720
5795
|
app: string;
|
|
5721
5796
|
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
@@ -5945,6 +6020,7 @@ declare const listActionInputFieldsPlugin: MethodPlugin<"listActionInputFields",
|
|
|
5945
6020
|
is_important?: boolean | undefined;
|
|
5946
6021
|
app_version?: string | undefined;
|
|
5947
6022
|
};
|
|
6023
|
+
meta?: ResponseMeta;
|
|
5948
6024
|
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
5949
6025
|
app: string;
|
|
5950
6026
|
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
@@ -6033,6 +6109,7 @@ declare const listActionInputFieldChoicesPlugin: MethodPlugin<"listActionInputFi
|
|
|
6033
6109
|
is_important?: boolean | undefined;
|
|
6034
6110
|
app_version?: string | undefined;
|
|
6035
6111
|
};
|
|
6112
|
+
meta?: ResponseMeta;
|
|
6036
6113
|
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
6037
6114
|
app: string;
|
|
6038
6115
|
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
@@ -6081,6 +6158,7 @@ declare const getActionInputFieldsSchemaPlugin: MethodPlugin<"getActionInputFiel
|
|
|
6081
6158
|
inputs?: Record<string, unknown> | undefined;
|
|
6082
6159
|
}, Promise<{
|
|
6083
6160
|
data: Record<string, unknown>;
|
|
6161
|
+
meta?: ResponseMeta;
|
|
6084
6162
|
}>, readonly []> & LeafSummary<"", "getActionInputFieldsSchema", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
|
|
6085
6163
|
app: string;
|
|
6086
6164
|
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
@@ -6102,6 +6180,7 @@ declare const getActionInputFieldsSchemaPlugin: MethodPlugin<"getActionInputFiel
|
|
|
6102
6180
|
is_important?: boolean | undefined;
|
|
6103
6181
|
app_version?: string | undefined;
|
|
6104
6182
|
};
|
|
6183
|
+
meta?: ResponseMeta;
|
|
6105
6184
|
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
6106
6185
|
app: string;
|
|
6107
6186
|
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
@@ -6221,6 +6300,7 @@ declare const createClientCredentialsPlugin: MethodPlugin<"createClientCredentia
|
|
|
6221
6300
|
name: string;
|
|
6222
6301
|
client_secret: string;
|
|
6223
6302
|
};
|
|
6303
|
+
meta?: ResponseMeta;
|
|
6224
6304
|
}>, readonly []> & LeafSummary<"", "createClientCredentials", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
6225
6305
|
|
|
6226
6306
|
declare const deleteClientCredentialsPlugin: MethodPlugin<"deleteClientCredentials", {
|
|
@@ -6287,6 +6367,7 @@ declare const getAppPlugin: MethodPlugin<"getApp", {
|
|
|
6287
6367
|
image?: string | undefined;
|
|
6288
6368
|
version?: string | undefined;
|
|
6289
6369
|
};
|
|
6370
|
+
meta?: ResponseMeta;
|
|
6290
6371
|
}>, readonly []> & LeafSummary<"", "getApp", readonly [MethodPlugin<"listApps", {
|
|
6291
6372
|
search?: string | undefined;
|
|
6292
6373
|
apps?: string[] | undefined;
|
|
@@ -6374,6 +6455,7 @@ declare const getActionPlugin: MethodPlugin<"getAction", {
|
|
|
6374
6455
|
is_important?: boolean | undefined;
|
|
6375
6456
|
app_version?: string | undefined;
|
|
6376
6457
|
};
|
|
6458
|
+
meta?: ResponseMeta;
|
|
6377
6459
|
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
6378
6460
|
app: string;
|
|
6379
6461
|
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
@@ -6441,6 +6523,7 @@ declare const getConnectionPlugin: MethodPlugin<"getConnection", {
|
|
|
6441
6523
|
app_key?: string | undefined;
|
|
6442
6524
|
app_version?: string | undefined;
|
|
6443
6525
|
};
|
|
6526
|
+
meta?: ResponseMeta;
|
|
6444
6527
|
}>, readonly []> & LeafSummary<"", "getConnection", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
6445
6528
|
|
|
6446
6529
|
declare const findFirstConnectionPlugin: MethodPlugin<"findFirstConnection", {
|
|
@@ -6485,6 +6568,7 @@ declare const findFirstConnectionPlugin: MethodPlugin<"findFirstConnection", {
|
|
|
6485
6568
|
app_key?: string | undefined;
|
|
6486
6569
|
app_version?: string | undefined;
|
|
6487
6570
|
};
|
|
6571
|
+
meta?: ResponseMeta;
|
|
6488
6572
|
}>, readonly []> & LeafSummary<"", "findFirstConnection", readonly [MethodPlugin<"listConnections", {
|
|
6489
6573
|
title?: string | undefined;
|
|
6490
6574
|
search?: string | undefined;
|
|
@@ -6580,6 +6664,7 @@ declare const findUniqueConnectionPlugin: MethodPlugin<"findUniqueConnection", {
|
|
|
6580
6664
|
app_key?: string | undefined;
|
|
6581
6665
|
app_version?: string | undefined;
|
|
6582
6666
|
};
|
|
6667
|
+
meta?: ResponseMeta;
|
|
6583
6668
|
}>, readonly []> & LeafSummary<"", "findUniqueConnection", readonly [MethodPlugin<"listConnections", {
|
|
6584
6669
|
title?: string | undefined;
|
|
6585
6670
|
search?: string | undefined;
|
|
@@ -6794,6 +6879,7 @@ declare const runActionPlugin: MethodPlugin<"runAction", ({
|
|
|
6794
6879
|
is_important?: boolean | undefined;
|
|
6795
6880
|
app_version?: string | undefined;
|
|
6796
6881
|
};
|
|
6882
|
+
meta?: ResponseMeta;
|
|
6797
6883
|
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
6798
6884
|
app: string;
|
|
6799
6885
|
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
@@ -6862,6 +6948,7 @@ declare const getProfilePlugin: MethodPlugin<"getProfile", Record<string, never>
|
|
|
6862
6948
|
email_confirmed: boolean;
|
|
6863
6949
|
timezone: string;
|
|
6864
6950
|
};
|
|
6951
|
+
meta?: ResponseMeta;
|
|
6865
6952
|
}>, readonly []> & LeafSummary<"", "getProfile", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
6866
6953
|
|
|
6867
6954
|
declare const ListActionInputFieldsSchema: z.ZodObject<{
|
|
@@ -7631,6 +7718,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
7631
7718
|
email_confirmed: boolean;
|
|
7632
7719
|
timezone: string;
|
|
7633
7720
|
};
|
|
7721
|
+
meta?: ResponseMeta;
|
|
7634
7722
|
}>;
|
|
7635
7723
|
listApps: (input?: ({
|
|
7636
7724
|
search?: string | undefined;
|
|
@@ -7755,6 +7843,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
7755
7843
|
image?: string | undefined;
|
|
7756
7844
|
version?: string | undefined;
|
|
7757
7845
|
};
|
|
7846
|
+
meta?: ResponseMeta;
|
|
7758
7847
|
}>;
|
|
7759
7848
|
listActions: (input: ({
|
|
7760
7849
|
app: string;
|
|
@@ -7806,6 +7895,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
7806
7895
|
is_important?: boolean | undefined;
|
|
7807
7896
|
app_version?: string | undefined;
|
|
7808
7897
|
};
|
|
7898
|
+
meta?: ResponseMeta;
|
|
7809
7899
|
}>;
|
|
7810
7900
|
listConnections: (input?: ({
|
|
7811
7901
|
title?: string | undefined;
|
|
@@ -7896,6 +7986,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
7896
7986
|
app_key?: string | undefined;
|
|
7897
7987
|
app_version?: string | undefined;
|
|
7898
7988
|
};
|
|
7989
|
+
meta?: ResponseMeta;
|
|
7899
7990
|
}>;
|
|
7900
7991
|
findFirstConnection: (input?: {
|
|
7901
7992
|
title?: string | undefined;
|
|
@@ -7939,6 +8030,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
7939
8030
|
app_key?: string | undefined;
|
|
7940
8031
|
app_version?: string | undefined;
|
|
7941
8032
|
};
|
|
8033
|
+
meta?: ResponseMeta;
|
|
7942
8034
|
}>;
|
|
7943
8035
|
findUniqueConnection: (input?: {
|
|
7944
8036
|
title?: string | undefined;
|
|
@@ -7982,6 +8074,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
7982
8074
|
app_key?: string | undefined;
|
|
7983
8075
|
app_version?: string | undefined;
|
|
7984
8076
|
};
|
|
8077
|
+
meta?: ResponseMeta;
|
|
7985
8078
|
}>;
|
|
7986
8079
|
listAuthentications: (input?: ({
|
|
7987
8080
|
title?: string | undefined;
|
|
@@ -8072,6 +8165,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8072
8165
|
app_key?: string | undefined;
|
|
8073
8166
|
app_version?: string | undefined;
|
|
8074
8167
|
};
|
|
8168
|
+
meta?: ResponseMeta;
|
|
8075
8169
|
}>;
|
|
8076
8170
|
findFirstAuthentication: (input?: {
|
|
8077
8171
|
title?: string | undefined;
|
|
@@ -8115,6 +8209,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8115
8209
|
app_key?: string | undefined;
|
|
8116
8210
|
app_version?: string | undefined;
|
|
8117
8211
|
};
|
|
8212
|
+
meta?: ResponseMeta;
|
|
8118
8213
|
}>;
|
|
8119
8214
|
findUniqueAuthentication: (input?: {
|
|
8120
8215
|
title?: string | undefined;
|
|
@@ -8158,6 +8253,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8158
8253
|
app_key?: string | undefined;
|
|
8159
8254
|
app_version?: string | undefined;
|
|
8160
8255
|
};
|
|
8256
|
+
meta?: ResponseMeta;
|
|
8161
8257
|
}>;
|
|
8162
8258
|
listClientCredentials: (input?: ({
|
|
8163
8259
|
pageSize?: number | undefined;
|
|
@@ -8185,6 +8281,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8185
8281
|
name: string;
|
|
8186
8282
|
client_secret: string;
|
|
8187
8283
|
};
|
|
8284
|
+
meta?: ResponseMeta;
|
|
8188
8285
|
}>;
|
|
8189
8286
|
deleteClientCredentials: (input: {
|
|
8190
8287
|
clientId: string;
|
|
@@ -8200,6 +8297,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8200
8297
|
startedAt: number;
|
|
8201
8298
|
app: string;
|
|
8202
8299
|
};
|
|
8300
|
+
meta?: ResponseMeta;
|
|
8203
8301
|
}>;
|
|
8204
8302
|
waitForNewConnection: (input: {
|
|
8205
8303
|
app: string;
|
|
@@ -8214,6 +8312,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8214
8312
|
app: string;
|
|
8215
8313
|
title?: string | null | undefined;
|
|
8216
8314
|
};
|
|
8315
|
+
meta?: ResponseMeta;
|
|
8217
8316
|
}>;
|
|
8218
8317
|
createConnection: (input: {
|
|
8219
8318
|
app: string;
|
|
@@ -8228,6 +8327,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8228
8327
|
app: string;
|
|
8229
8328
|
title?: string | null | undefined;
|
|
8230
8329
|
};
|
|
8330
|
+
meta?: ResponseMeta;
|
|
8231
8331
|
}>;
|
|
8232
8332
|
listActionInputFields: (input: ({
|
|
8233
8333
|
app: string;
|
|
@@ -8295,6 +8395,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8295
8395
|
inputs?: Record<string, unknown> | undefined;
|
|
8296
8396
|
}) => Promise<{
|
|
8297
8397
|
data: Record<string, unknown>;
|
|
8398
|
+
meta?: ResponseMeta;
|
|
8298
8399
|
}>;
|
|
8299
8400
|
listActionInputFieldChoices: (input: ({
|
|
8300
8401
|
app: string;
|
|
@@ -8399,6 +8500,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8399
8500
|
inputs?: Record<string, unknown> | undefined;
|
|
8400
8501
|
}) => Promise<{
|
|
8401
8502
|
data: Record<string, unknown>;
|
|
8503
|
+
meta?: ResponseMeta;
|
|
8402
8504
|
}>;
|
|
8403
8505
|
listInputFieldChoices: (input: ({
|
|
8404
8506
|
app: string;
|
|
@@ -8532,6 +8634,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8532
8634
|
inputs: Record<string, unknown>;
|
|
8533
8635
|
};
|
|
8534
8636
|
};
|
|
8637
|
+
meta?: ResponseMeta;
|
|
8535
8638
|
}>;
|
|
8536
8639
|
ensureTriggerInbox: (input: {
|
|
8537
8640
|
key: string;
|
|
@@ -8563,6 +8666,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8563
8666
|
inputs: Record<string, unknown>;
|
|
8564
8667
|
};
|
|
8565
8668
|
};
|
|
8669
|
+
meta?: ResponseMeta;
|
|
8566
8670
|
}>;
|
|
8567
8671
|
getTriggerInbox: (input: {
|
|
8568
8672
|
inbox: string;
|
|
@@ -8582,6 +8686,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8582
8686
|
inputs: Record<string, unknown>;
|
|
8583
8687
|
};
|
|
8584
8688
|
};
|
|
8689
|
+
meta?: ResponseMeta;
|
|
8585
8690
|
}>;
|
|
8586
8691
|
updateTriggerInbox: (input: {
|
|
8587
8692
|
inbox: string;
|
|
@@ -8602,6 +8707,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8602
8707
|
inputs: Record<string, unknown>;
|
|
8603
8708
|
};
|
|
8604
8709
|
};
|
|
8710
|
+
meta?: ResponseMeta;
|
|
8605
8711
|
}>;
|
|
8606
8712
|
deleteTriggerInbox: (input: {
|
|
8607
8713
|
inbox: string;
|
|
@@ -8624,6 +8730,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8624
8730
|
inputs: Record<string, unknown>;
|
|
8625
8731
|
};
|
|
8626
8732
|
};
|
|
8733
|
+
meta?: ResponseMeta;
|
|
8627
8734
|
}>;
|
|
8628
8735
|
resumeTriggerInbox: (input: {
|
|
8629
8736
|
inbox: string;
|
|
@@ -8643,6 +8750,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8643
8750
|
inputs: Record<string, unknown>;
|
|
8644
8751
|
};
|
|
8645
8752
|
};
|
|
8753
|
+
meta?: ResponseMeta;
|
|
8646
8754
|
}>;
|
|
8647
8755
|
listTriggerInboxMessages: (input: {
|
|
8648
8756
|
inbox: string;
|
|
@@ -8689,6 +8797,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8689
8797
|
paused_reason: string | null;
|
|
8690
8798
|
};
|
|
8691
8799
|
};
|
|
8800
|
+
meta?: ResponseMeta;
|
|
8692
8801
|
}>;
|
|
8693
8802
|
ackTriggerInboxMessages: (input: {
|
|
8694
8803
|
inbox: string;
|
|
@@ -8708,6 +8817,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8708
8817
|
};
|
|
8709
8818
|
}[];
|
|
8710
8819
|
};
|
|
8820
|
+
meta?: ResponseMeta;
|
|
8711
8821
|
}>;
|
|
8712
8822
|
releaseTriggerInboxMessages: (input: {
|
|
8713
8823
|
inbox: string;
|
|
@@ -8727,6 +8837,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8727
8837
|
};
|
|
8728
8838
|
}[];
|
|
8729
8839
|
};
|
|
8840
|
+
meta?: ResponseMeta;
|
|
8730
8841
|
}>;
|
|
8731
8842
|
drainTriggerInbox: (input: TriggerInboxCommandSharedFields & {
|
|
8732
8843
|
maxMessages?: number;
|
|
@@ -8861,6 +8972,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8861
8972
|
description?: string | undefined;
|
|
8862
8973
|
parent_table_id?: string | undefined;
|
|
8863
8974
|
};
|
|
8975
|
+
meta?: ResponseMeta;
|
|
8864
8976
|
}>;
|
|
8865
8977
|
deleteTable: (input: {
|
|
8866
8978
|
table: string;
|
|
@@ -8884,6 +8996,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8884
8996
|
description?: string | undefined;
|
|
8885
8997
|
parent_table_id?: string | undefined;
|
|
8886
8998
|
};
|
|
8999
|
+
meta?: ResponseMeta;
|
|
8887
9000
|
}>;
|
|
8888
9001
|
listTableFields: (input: {
|
|
8889
9002
|
table: string;
|
|
@@ -8906,6 +9019,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8906
9019
|
config?: Record<string, unknown> | undefined;
|
|
8907
9020
|
deleted_at?: string | null | undefined;
|
|
8908
9021
|
}[];
|
|
9022
|
+
meta?: ResponseMeta;
|
|
8909
9023
|
}>;
|
|
8910
9024
|
createTableFields: (input: {
|
|
8911
9025
|
table: string;
|
|
@@ -8934,6 +9048,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8934
9048
|
config?: Record<string, unknown> | undefined;
|
|
8935
9049
|
deleted_at?: string | null | undefined;
|
|
8936
9050
|
}[];
|
|
9051
|
+
meta?: ResponseMeta;
|
|
8937
9052
|
}>;
|
|
8938
9053
|
deleteTableFields: (input: {
|
|
8939
9054
|
table: string;
|
|
@@ -9004,6 +9119,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
9004
9119
|
edited_at: string;
|
|
9005
9120
|
deleted_at?: string | null | undefined;
|
|
9006
9121
|
};
|
|
9122
|
+
meta?: ResponseMeta;
|
|
9007
9123
|
}>;
|
|
9008
9124
|
createTableRecords: (input: {
|
|
9009
9125
|
table: string;
|
|
@@ -9025,6 +9141,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
9025
9141
|
edited_at: string;
|
|
9026
9142
|
deleted_at?: string | null | undefined;
|
|
9027
9143
|
}[];
|
|
9144
|
+
meta?: ResponseMeta;
|
|
9028
9145
|
}>;
|
|
9029
9146
|
deleteTableRecords: (input: {
|
|
9030
9147
|
table: string;
|
|
@@ -9057,6 +9174,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
9057
9174
|
edited_at: string;
|
|
9058
9175
|
deleted_at?: string | null | undefined;
|
|
9059
9176
|
}[];
|
|
9177
|
+
meta?: ResponseMeta;
|
|
9060
9178
|
}>;
|
|
9061
9179
|
} & {
|
|
9062
9180
|
context: SdkContext;
|
|
@@ -9083,6 +9201,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9083
9201
|
email_confirmed: boolean;
|
|
9084
9202
|
timezone: string;
|
|
9085
9203
|
};
|
|
9204
|
+
meta?: ResponseMeta;
|
|
9086
9205
|
}>, readonly []> & LeafSummary<"", "getProfile", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
9087
9206
|
} & {
|
|
9088
9207
|
listApps: MethodPlugin<"listApps", {
|
|
@@ -9209,6 +9328,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9209
9328
|
image?: string | undefined;
|
|
9210
9329
|
version?: string | undefined;
|
|
9211
9330
|
};
|
|
9331
|
+
meta?: ResponseMeta;
|
|
9212
9332
|
}>, readonly []> & LeafSummary<"", "getApp", readonly [MethodPlugin<"listApps", {
|
|
9213
9333
|
search?: string | undefined;
|
|
9214
9334
|
apps?: string[] | undefined;
|
|
@@ -9326,6 +9446,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9326
9446
|
is_important?: boolean | undefined;
|
|
9327
9447
|
app_version?: string | undefined;
|
|
9328
9448
|
};
|
|
9449
|
+
meta?: ResponseMeta;
|
|
9329
9450
|
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
9330
9451
|
app: string;
|
|
9331
9452
|
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
@@ -9446,6 +9567,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9446
9567
|
app_key?: string | undefined;
|
|
9447
9568
|
app_version?: string | undefined;
|
|
9448
9569
|
};
|
|
9570
|
+
meta?: ResponseMeta;
|
|
9449
9571
|
}>, readonly []> & LeafSummary<"", "getConnection", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
9450
9572
|
} & {
|
|
9451
9573
|
findFirstConnection: MethodPlugin<"findFirstConnection", {
|
|
@@ -9490,6 +9612,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9490
9612
|
app_key?: string | undefined;
|
|
9491
9613
|
app_version?: string | undefined;
|
|
9492
9614
|
};
|
|
9615
|
+
meta?: ResponseMeta;
|
|
9493
9616
|
}>, readonly []> & LeafSummary<"", "findFirstConnection", readonly [MethodPlugin<"listConnections", {
|
|
9494
9617
|
title?: string | undefined;
|
|
9495
9618
|
search?: string | undefined;
|
|
@@ -9585,6 +9708,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9585
9708
|
app_key?: string | undefined;
|
|
9586
9709
|
app_version?: string | undefined;
|
|
9587
9710
|
};
|
|
9711
|
+
meta?: ResponseMeta;
|
|
9588
9712
|
}>, readonly []> & LeafSummary<"", "findUniqueConnection", readonly [MethodPlugin<"listConnections", {
|
|
9589
9713
|
title?: string | undefined;
|
|
9590
9714
|
search?: string | undefined;
|
|
@@ -9779,6 +9903,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9779
9903
|
app_key?: string | undefined;
|
|
9780
9904
|
app_version?: string | undefined;
|
|
9781
9905
|
};
|
|
9906
|
+
meta?: ResponseMeta;
|
|
9782
9907
|
}>, readonly []> & LeafSummary<"", "getAuthentication", readonly [MethodPlugin<"getConnection", {
|
|
9783
9908
|
connection: string | number;
|
|
9784
9909
|
} | {
|
|
@@ -9816,6 +9941,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9816
9941
|
app_key?: string | undefined;
|
|
9817
9942
|
app_version?: string | undefined;
|
|
9818
9943
|
};
|
|
9944
|
+
meta?: ResponseMeta;
|
|
9819
9945
|
}>, readonly []> & LeafSummary<"", "getConnection", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>;
|
|
9820
9946
|
} & {
|
|
9821
9947
|
findFirstAuthentication: MethodPlugin<"findFirstAuthentication", {
|
|
@@ -9860,6 +9986,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9860
9986
|
app_key?: string | undefined;
|
|
9861
9987
|
app_version?: string | undefined;
|
|
9862
9988
|
};
|
|
9989
|
+
meta?: ResponseMeta;
|
|
9863
9990
|
}>, readonly []> & LeafSummary<"", "findFirstAuthentication", readonly [MethodPlugin<"findFirstConnection", {
|
|
9864
9991
|
title?: string | undefined;
|
|
9865
9992
|
search?: string | undefined;
|
|
@@ -9902,6 +10029,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9902
10029
|
app_key?: string | undefined;
|
|
9903
10030
|
app_version?: string | undefined;
|
|
9904
10031
|
};
|
|
10032
|
+
meta?: ResponseMeta;
|
|
9905
10033
|
}>, readonly []> & LeafSummary<"", "findFirstConnection", readonly [MethodPlugin<"listConnections", {
|
|
9906
10034
|
title?: string | undefined;
|
|
9907
10035
|
search?: string | undefined;
|
|
@@ -9997,6 +10125,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9997
10125
|
app_key?: string | undefined;
|
|
9998
10126
|
app_version?: string | undefined;
|
|
9999
10127
|
};
|
|
10128
|
+
meta?: ResponseMeta;
|
|
10000
10129
|
}>, readonly []> & LeafSummary<"", "findUniqueAuthentication", readonly [MethodPlugin<"findUniqueConnection", {
|
|
10001
10130
|
title?: string | undefined;
|
|
10002
10131
|
search?: string | undefined;
|
|
@@ -10039,6 +10168,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10039
10168
|
app_key?: string | undefined;
|
|
10040
10169
|
app_version?: string | undefined;
|
|
10041
10170
|
};
|
|
10171
|
+
meta?: ResponseMeta;
|
|
10042
10172
|
}>, readonly []> & LeafSummary<"", "findUniqueConnection", readonly [MethodPlugin<"listConnections", {
|
|
10043
10173
|
title?: string | undefined;
|
|
10044
10174
|
search?: string | undefined;
|
|
@@ -10119,6 +10249,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10119
10249
|
name: string;
|
|
10120
10250
|
client_secret: string;
|
|
10121
10251
|
};
|
|
10252
|
+
meta?: ResponseMeta;
|
|
10122
10253
|
}>, readonly []> & LeafSummary<"", "createClientCredentials", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
10123
10254
|
} & {
|
|
10124
10255
|
deleteClientCredentials: MethodPlugin<"deleteClientCredentials", {
|
|
@@ -10136,6 +10267,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10136
10267
|
startedAt: number;
|
|
10137
10268
|
app: string;
|
|
10138
10269
|
};
|
|
10270
|
+
meta?: ResponseMeta;
|
|
10139
10271
|
}>, readonly []> & LeafSummary<"", "getConnectionStartUrl", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
10140
10272
|
} & {
|
|
10141
10273
|
waitForNewConnection: MethodPlugin<"waitForNewConnection", {
|
|
@@ -10151,6 +10283,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10151
10283
|
app: string;
|
|
10152
10284
|
title?: string | null | undefined;
|
|
10153
10285
|
};
|
|
10286
|
+
meta?: ResponseMeta;
|
|
10154
10287
|
}>, readonly []> & LeafSummary<"", "waitForNewConnection", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
10155
10288
|
} & {
|
|
10156
10289
|
createConnection: MethodPlugin<"createConnection", {
|
|
@@ -10166,6 +10299,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10166
10299
|
app: string;
|
|
10167
10300
|
title?: string | null | undefined;
|
|
10168
10301
|
};
|
|
10302
|
+
meta?: ResponseMeta;
|
|
10169
10303
|
}>, readonly []> & LeafSummary<"", "createConnection", readonly [MethodPlugin<"getConnectionStartUrl", {
|
|
10170
10304
|
app: string;
|
|
10171
10305
|
}, Promise<{
|
|
@@ -10175,6 +10309,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10175
10309
|
startedAt: number;
|
|
10176
10310
|
app: string;
|
|
10177
10311
|
};
|
|
10312
|
+
meta?: ResponseMeta;
|
|
10178
10313
|
}>, readonly []> & LeafSummary<"", "getConnectionStartUrl", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>, MethodPlugin<"waitForNewConnection", {
|
|
10179
10314
|
app: string;
|
|
10180
10315
|
startedAt: number;
|
|
@@ -10188,6 +10323,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10188
10323
|
app: string;
|
|
10189
10324
|
title?: string | null | undefined;
|
|
10190
10325
|
};
|
|
10326
|
+
meta?: ResponseMeta;
|
|
10191
10327
|
}>, readonly []> & LeafSummary<"", "waitForNewConnection", readonly [PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>]>;
|
|
10192
10328
|
} & {
|
|
10193
10329
|
listActionInputFields: MethodPlugin<"listActionInputFields", ({
|
|
@@ -10258,6 +10394,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10258
10394
|
is_important?: boolean | undefined;
|
|
10259
10395
|
app_version?: string | undefined;
|
|
10260
10396
|
};
|
|
10397
|
+
meta?: ResponseMeta;
|
|
10261
10398
|
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
10262
10399
|
app: string;
|
|
10263
10400
|
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
@@ -10306,6 +10443,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10306
10443
|
inputs?: Record<string, unknown> | undefined;
|
|
10307
10444
|
}, Promise<{
|
|
10308
10445
|
data: Record<string, unknown>;
|
|
10446
|
+
meta?: ResponseMeta;
|
|
10309
10447
|
}>, readonly []> & LeafSummary<"", "getActionInputFieldsSchema", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
|
|
10310
10448
|
app: string;
|
|
10311
10449
|
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
@@ -10327,6 +10465,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10327
10465
|
is_important?: boolean | undefined;
|
|
10328
10466
|
app_version?: string | undefined;
|
|
10329
10467
|
};
|
|
10468
|
+
meta?: ResponseMeta;
|
|
10330
10469
|
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
10331
10470
|
app: string;
|
|
10332
10471
|
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
@@ -10414,6 +10553,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10414
10553
|
is_important?: boolean | undefined;
|
|
10415
10554
|
app_version?: string | undefined;
|
|
10416
10555
|
};
|
|
10556
|
+
meta?: ResponseMeta;
|
|
10417
10557
|
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
10418
10558
|
app: string;
|
|
10419
10559
|
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
@@ -10559,6 +10699,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10559
10699
|
is_important?: boolean | undefined;
|
|
10560
10700
|
app_version?: string | undefined;
|
|
10561
10701
|
};
|
|
10702
|
+
meta?: ResponseMeta;
|
|
10562
10703
|
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
10563
10704
|
app: string;
|
|
10564
10705
|
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
@@ -10607,6 +10748,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10607
10748
|
inputs?: Record<string, unknown> | undefined;
|
|
10608
10749
|
}, Promise<{
|
|
10609
10750
|
data: Record<string, unknown>;
|
|
10751
|
+
meta?: ResponseMeta;
|
|
10610
10752
|
}>, readonly []> & LeafSummary<"", "getInputFieldsSchema", readonly [MethodPlugin<"getActionInputFieldsSchema", {
|
|
10611
10753
|
app: string;
|
|
10612
10754
|
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
@@ -10625,6 +10767,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10625
10767
|
inputs?: Record<string, unknown> | undefined;
|
|
10626
10768
|
}, Promise<{
|
|
10627
10769
|
data: Record<string, unknown>;
|
|
10770
|
+
meta?: ResponseMeta;
|
|
10628
10771
|
}>, readonly []> & LeafSummary<"", "getActionInputFieldsSchema", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"getAction", {
|
|
10629
10772
|
app: string;
|
|
10630
10773
|
actionType: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run";
|
|
@@ -10646,6 +10789,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10646
10789
|
is_important?: boolean | undefined;
|
|
10647
10790
|
app_version?: string | undefined;
|
|
10648
10791
|
};
|
|
10792
|
+
meta?: ResponseMeta;
|
|
10649
10793
|
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
10650
10794
|
app: string;
|
|
10651
10795
|
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
@@ -10769,6 +10913,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10769
10913
|
is_important?: boolean | undefined;
|
|
10770
10914
|
app_version?: string | undefined;
|
|
10771
10915
|
};
|
|
10916
|
+
meta?: ResponseMeta;
|
|
10772
10917
|
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
10773
10918
|
app: string;
|
|
10774
10919
|
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
@@ -10851,6 +10996,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10851
10996
|
is_important?: boolean | undefined;
|
|
10852
10997
|
app_version?: string | undefined;
|
|
10853
10998
|
};
|
|
10999
|
+
meta?: ResponseMeta;
|
|
10854
11000
|
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
10855
11001
|
app: string;
|
|
10856
11002
|
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
@@ -10955,6 +11101,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10955
11101
|
is_important?: boolean | undefined;
|
|
10956
11102
|
app_version?: string | undefined;
|
|
10957
11103
|
};
|
|
11104
|
+
meta?: ResponseMeta;
|
|
10958
11105
|
}>, readonly []> & LeafSummary<"", "getAction", readonly [MethodPlugin<"listActions", ({
|
|
10959
11106
|
app: string;
|
|
10960
11107
|
actionType?: "read" | "read_bulk" | "write" | "search" | "search_or_write" | "search_and_write" | "filter" | "run" | undefined;
|
|
@@ -11037,6 +11184,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11037
11184
|
inputs: Record<string, unknown>;
|
|
11038
11185
|
};
|
|
11039
11186
|
};
|
|
11187
|
+
meta?: ResponseMeta;
|
|
11040
11188
|
}>, readonly []> & LeafSummary<"", "createTriggerInbox", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11041
11189
|
} & {
|
|
11042
11190
|
ensureTriggerInbox: MethodPlugin<"ensureTriggerInbox", {
|
|
@@ -11069,6 +11217,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11069
11217
|
inputs: Record<string, unknown>;
|
|
11070
11218
|
};
|
|
11071
11219
|
};
|
|
11220
|
+
meta?: ResponseMeta;
|
|
11072
11221
|
}>, readonly []> & LeafSummary<"", "ensureTriggerInbox", readonly [PropertyPlugin<"connections", ConnectionsProvider> & PluginSummary<"zapier/connections", never>, PropertyPlugin<"manifest", ManifestProvider> & PluginSummary<"zapier/manifest", never>, PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11073
11222
|
} & {
|
|
11074
11223
|
getTriggerInbox: MethodPlugin<"getTriggerInbox", {
|
|
@@ -11089,6 +11238,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11089
11238
|
inputs: Record<string, unknown>;
|
|
11090
11239
|
};
|
|
11091
11240
|
};
|
|
11241
|
+
meta?: ResponseMeta;
|
|
11092
11242
|
}>, readonly []> & LeafSummary<"", "getTriggerInbox", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11093
11243
|
} & {
|
|
11094
11244
|
updateTriggerInbox: MethodPlugin<"updateTriggerInbox", {
|
|
@@ -11110,6 +11260,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11110
11260
|
inputs: Record<string, unknown>;
|
|
11111
11261
|
};
|
|
11112
11262
|
};
|
|
11263
|
+
meta?: ResponseMeta;
|
|
11113
11264
|
}>, readonly []> & LeafSummary<"", "updateTriggerInbox", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11114
11265
|
} & {
|
|
11115
11266
|
deleteTriggerInbox: MethodPlugin<"deleteTriggerInbox", {
|
|
@@ -11134,6 +11285,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11134
11285
|
inputs: Record<string, unknown>;
|
|
11135
11286
|
};
|
|
11136
11287
|
};
|
|
11288
|
+
meta?: ResponseMeta;
|
|
11137
11289
|
}>, readonly []> & LeafSummary<"", "pauseTriggerInbox", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11138
11290
|
} & {
|
|
11139
11291
|
resumeTriggerInbox: MethodPlugin<"resumeTriggerInbox", {
|
|
@@ -11154,6 +11306,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11154
11306
|
inputs: Record<string, unknown>;
|
|
11155
11307
|
};
|
|
11156
11308
|
};
|
|
11309
|
+
meta?: ResponseMeta;
|
|
11157
11310
|
}>, readonly []> & LeafSummary<"", "resumeTriggerInbox", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11158
11311
|
} & {
|
|
11159
11312
|
listTriggerInboxMessages: MethodPlugin<"listTriggerInboxMessages", {
|
|
@@ -11202,6 +11355,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11202
11355
|
paused_reason: string | null;
|
|
11203
11356
|
};
|
|
11204
11357
|
};
|
|
11358
|
+
meta?: ResponseMeta;
|
|
11205
11359
|
}>, readonly []> & LeafSummary<"", "leaseTriggerInboxMessages", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11206
11360
|
} & {
|
|
11207
11361
|
ackTriggerInboxMessages: MethodPlugin<"ackTriggerInboxMessages", {
|
|
@@ -11222,6 +11376,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11222
11376
|
};
|
|
11223
11377
|
}[];
|
|
11224
11378
|
};
|
|
11379
|
+
meta?: ResponseMeta;
|
|
11225
11380
|
}>, readonly []> & LeafSummary<"", "ackTriggerInboxMessages", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11226
11381
|
} & {
|
|
11227
11382
|
releaseTriggerInboxMessages: MethodPlugin<"releaseTriggerInboxMessages", {
|
|
@@ -11242,6 +11397,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11242
11397
|
};
|
|
11243
11398
|
}[];
|
|
11244
11399
|
};
|
|
11400
|
+
meta?: ResponseMeta;
|
|
11245
11401
|
}>, readonly []> & LeafSummary<"", "releaseTriggerInboxMessages", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11246
11402
|
} & {
|
|
11247
11403
|
drainTriggerInbox: MethodPlugin<"drainTriggerInbox", DrainTriggerInboxOptions, Promise<void>, readonly []> & LeafSummary<"", "drainTriggerInbox", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, MethodPlugin<"leaseTriggerInboxMessages", {
|
|
@@ -11269,6 +11425,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11269
11425
|
paused_reason: string | null;
|
|
11270
11426
|
};
|
|
11271
11427
|
};
|
|
11428
|
+
meta?: ResponseMeta;
|
|
11272
11429
|
}>, readonly []> & PluginSummary<"leaseTriggerInboxMessages", never>, MethodPlugin<"ackTriggerInboxMessages", {
|
|
11273
11430
|
inbox: string;
|
|
11274
11431
|
lease: string;
|
|
@@ -11287,6 +11444,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11287
11444
|
};
|
|
11288
11445
|
}[];
|
|
11289
11446
|
};
|
|
11447
|
+
meta?: ResponseMeta;
|
|
11290
11448
|
}>, readonly []> & PluginSummary<"ackTriggerInboxMessages", never>, MethodPlugin<"releaseTriggerInboxMessages", {
|
|
11291
11449
|
inbox: string;
|
|
11292
11450
|
lease: string;
|
|
@@ -11305,6 +11463,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11305
11463
|
};
|
|
11306
11464
|
}[];
|
|
11307
11465
|
};
|
|
11466
|
+
meta?: ResponseMeta;
|
|
11308
11467
|
}>, readonly []> & PluginSummary<"releaseTriggerInboxMessages", never>]>;
|
|
11309
11468
|
} & {
|
|
11310
11469
|
watchTriggerInbox: MethodPlugin<"watchTriggerInbox", WatchTriggerInboxOptions, Promise<void>, readonly []> & LeafSummary<"", "watchTriggerInbox", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, PropertyPlugin<"sdkOptions", {
|
|
@@ -11401,6 +11560,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11401
11560
|
paused_reason: string | null;
|
|
11402
11561
|
};
|
|
11403
11562
|
};
|
|
11563
|
+
meta?: ResponseMeta;
|
|
11404
11564
|
}>, readonly []> & PluginSummary<"leaseTriggerInboxMessages", never>, MethodPlugin<"ackTriggerInboxMessages", {
|
|
11405
11565
|
inbox: string;
|
|
11406
11566
|
lease: string;
|
|
@@ -11419,6 +11579,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11419
11579
|
};
|
|
11420
11580
|
}[];
|
|
11421
11581
|
};
|
|
11582
|
+
meta?: ResponseMeta;
|
|
11422
11583
|
}>, readonly []> & PluginSummary<"ackTriggerInboxMessages", never>, MethodPlugin<"releaseTriggerInboxMessages", {
|
|
11423
11584
|
inbox: string;
|
|
11424
11585
|
lease: string;
|
|
@@ -11437,6 +11598,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11437
11598
|
};
|
|
11438
11599
|
}[];
|
|
11439
11600
|
};
|
|
11601
|
+
meta?: ResponseMeta;
|
|
11440
11602
|
}>, readonly []> & PluginSummary<"releaseTriggerInboxMessages", never>]>;
|
|
11441
11603
|
} & {
|
|
11442
11604
|
listTriggers: MethodPlugin<"listTriggers", {
|
|
@@ -11635,6 +11797,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11635
11797
|
description?: string | undefined;
|
|
11636
11798
|
parent_table_id?: string | undefined;
|
|
11637
11799
|
};
|
|
11800
|
+
meta?: ResponseMeta;
|
|
11638
11801
|
}>, readonly []> & LeafSummary<"", "getTable", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11639
11802
|
} & {
|
|
11640
11803
|
deleteTable: MethodPlugin<"deleteTable", {
|
|
@@ -11660,6 +11823,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11660
11823
|
description?: string | undefined;
|
|
11661
11824
|
parent_table_id?: string | undefined;
|
|
11662
11825
|
};
|
|
11826
|
+
meta?: ResponseMeta;
|
|
11663
11827
|
}>, readonly []> & LeafSummary<"", "createTable", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11664
11828
|
} & {
|
|
11665
11829
|
listTableFields: MethodPlugin<"listTableFields", {
|
|
@@ -11683,6 +11847,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11683
11847
|
config?: Record<string, unknown> | undefined;
|
|
11684
11848
|
deleted_at?: string | null | undefined;
|
|
11685
11849
|
}[];
|
|
11850
|
+
meta?: ResponseMeta;
|
|
11686
11851
|
}>, readonly []> & LeafSummary<"", "listTableFields", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11687
11852
|
} & {
|
|
11688
11853
|
createTableFields: MethodPlugin<"createTableFields", {
|
|
@@ -11712,6 +11877,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11712
11877
|
config?: Record<string, unknown> | undefined;
|
|
11713
11878
|
deleted_at?: string | null | undefined;
|
|
11714
11879
|
}[];
|
|
11880
|
+
meta?: ResponseMeta;
|
|
11715
11881
|
}>, readonly []> & LeafSummary<"", "createTableFields", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11716
11882
|
} & {
|
|
11717
11883
|
deleteTableFields: MethodPlugin<"deleteTableFields", {
|
|
@@ -11785,6 +11951,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11785
11951
|
edited_at: string;
|
|
11786
11952
|
deleted_at?: string | null | undefined;
|
|
11787
11953
|
};
|
|
11954
|
+
meta?: ResponseMeta;
|
|
11788
11955
|
}>, readonly []> & LeafSummary<"", "getTableRecord", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11789
11956
|
} & {
|
|
11790
11957
|
createTableRecords: MethodPlugin<"createTableRecords", {
|
|
@@ -11807,6 +11974,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11807
11974
|
edited_at: string;
|
|
11808
11975
|
deleted_at?: string | null | undefined;
|
|
11809
11976
|
}[];
|
|
11977
|
+
meta?: ResponseMeta;
|
|
11810
11978
|
}>, readonly []> & LeafSummary<"", "createTableRecords", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11811
11979
|
} & {
|
|
11812
11980
|
deleteTableRecords: MethodPlugin<"deleteTableRecords", {
|
|
@@ -11841,6 +12009,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11841
12009
|
edited_at: string;
|
|
11842
12010
|
deleted_at?: string | null | undefined;
|
|
11843
12011
|
}[];
|
|
12012
|
+
meta?: ResponseMeta;
|
|
11844
12013
|
}>, readonly []> & LeafSummary<"", "updateTableRecords", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11845
12014
|
}> & 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">;
|
|
11846
12015
|
declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
@@ -11857,6 +12026,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
11857
12026
|
email_confirmed: boolean;
|
|
11858
12027
|
timezone: string;
|
|
11859
12028
|
};
|
|
12029
|
+
meta?: ResponseMeta;
|
|
11860
12030
|
}>;
|
|
11861
12031
|
listApps: (input?: ({
|
|
11862
12032
|
search?: string | undefined;
|
|
@@ -11981,6 +12151,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
11981
12151
|
image?: string | undefined;
|
|
11982
12152
|
version?: string | undefined;
|
|
11983
12153
|
};
|
|
12154
|
+
meta?: ResponseMeta;
|
|
11984
12155
|
}>;
|
|
11985
12156
|
listActions: (input: ({
|
|
11986
12157
|
app: string;
|
|
@@ -12032,6 +12203,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12032
12203
|
is_important?: boolean | undefined;
|
|
12033
12204
|
app_version?: string | undefined;
|
|
12034
12205
|
};
|
|
12206
|
+
meta?: ResponseMeta;
|
|
12035
12207
|
}>;
|
|
12036
12208
|
listConnections: (input?: ({
|
|
12037
12209
|
title?: string | undefined;
|
|
@@ -12122,6 +12294,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12122
12294
|
app_key?: string | undefined;
|
|
12123
12295
|
app_version?: string | undefined;
|
|
12124
12296
|
};
|
|
12297
|
+
meta?: ResponseMeta;
|
|
12125
12298
|
}>;
|
|
12126
12299
|
findFirstConnection: (input?: {
|
|
12127
12300
|
title?: string | undefined;
|
|
@@ -12165,6 +12338,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12165
12338
|
app_key?: string | undefined;
|
|
12166
12339
|
app_version?: string | undefined;
|
|
12167
12340
|
};
|
|
12341
|
+
meta?: ResponseMeta;
|
|
12168
12342
|
}>;
|
|
12169
12343
|
findUniqueConnection: (input?: {
|
|
12170
12344
|
title?: string | undefined;
|
|
@@ -12208,6 +12382,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12208
12382
|
app_key?: string | undefined;
|
|
12209
12383
|
app_version?: string | undefined;
|
|
12210
12384
|
};
|
|
12385
|
+
meta?: ResponseMeta;
|
|
12211
12386
|
}>;
|
|
12212
12387
|
listAuthentications: (input?: ({
|
|
12213
12388
|
title?: string | undefined;
|
|
@@ -12298,6 +12473,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12298
12473
|
app_key?: string | undefined;
|
|
12299
12474
|
app_version?: string | undefined;
|
|
12300
12475
|
};
|
|
12476
|
+
meta?: ResponseMeta;
|
|
12301
12477
|
}>;
|
|
12302
12478
|
findFirstAuthentication: (input?: {
|
|
12303
12479
|
title?: string | undefined;
|
|
@@ -12341,6 +12517,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12341
12517
|
app_key?: string | undefined;
|
|
12342
12518
|
app_version?: string | undefined;
|
|
12343
12519
|
};
|
|
12520
|
+
meta?: ResponseMeta;
|
|
12344
12521
|
}>;
|
|
12345
12522
|
findUniqueAuthentication: (input?: {
|
|
12346
12523
|
title?: string | undefined;
|
|
@@ -12384,6 +12561,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12384
12561
|
app_key?: string | undefined;
|
|
12385
12562
|
app_version?: string | undefined;
|
|
12386
12563
|
};
|
|
12564
|
+
meta?: ResponseMeta;
|
|
12387
12565
|
}>;
|
|
12388
12566
|
listClientCredentials: (input?: ({
|
|
12389
12567
|
pageSize?: number | undefined;
|
|
@@ -12411,6 +12589,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12411
12589
|
name: string;
|
|
12412
12590
|
client_secret: string;
|
|
12413
12591
|
};
|
|
12592
|
+
meta?: ResponseMeta;
|
|
12414
12593
|
}>;
|
|
12415
12594
|
deleteClientCredentials: (input: {
|
|
12416
12595
|
clientId: string;
|
|
@@ -12426,6 +12605,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12426
12605
|
startedAt: number;
|
|
12427
12606
|
app: string;
|
|
12428
12607
|
};
|
|
12608
|
+
meta?: ResponseMeta;
|
|
12429
12609
|
}>;
|
|
12430
12610
|
waitForNewConnection: (input: {
|
|
12431
12611
|
app: string;
|
|
@@ -12440,6 +12620,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12440
12620
|
app: string;
|
|
12441
12621
|
title?: string | null | undefined;
|
|
12442
12622
|
};
|
|
12623
|
+
meta?: ResponseMeta;
|
|
12443
12624
|
}>;
|
|
12444
12625
|
createConnection: (input: {
|
|
12445
12626
|
app: string;
|
|
@@ -12454,6 +12635,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12454
12635
|
app: string;
|
|
12455
12636
|
title?: string | null | undefined;
|
|
12456
12637
|
};
|
|
12638
|
+
meta?: ResponseMeta;
|
|
12457
12639
|
}>;
|
|
12458
12640
|
listActionInputFields: (input: ({
|
|
12459
12641
|
app: string;
|
|
@@ -12521,6 +12703,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12521
12703
|
inputs?: Record<string, unknown> | undefined;
|
|
12522
12704
|
}) => Promise<{
|
|
12523
12705
|
data: Record<string, unknown>;
|
|
12706
|
+
meta?: ResponseMeta;
|
|
12524
12707
|
}>;
|
|
12525
12708
|
listActionInputFieldChoices: (input: ({
|
|
12526
12709
|
app: string;
|
|
@@ -12625,6 +12808,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12625
12808
|
inputs?: Record<string, unknown> | undefined;
|
|
12626
12809
|
}) => Promise<{
|
|
12627
12810
|
data: Record<string, unknown>;
|
|
12811
|
+
meta?: ResponseMeta;
|
|
12628
12812
|
}>;
|
|
12629
12813
|
listInputFieldChoices: (input: ({
|
|
12630
12814
|
app: string;
|
|
@@ -12758,6 +12942,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12758
12942
|
inputs: Record<string, unknown>;
|
|
12759
12943
|
};
|
|
12760
12944
|
};
|
|
12945
|
+
meta?: ResponseMeta;
|
|
12761
12946
|
}>;
|
|
12762
12947
|
ensureTriggerInbox: (input: {
|
|
12763
12948
|
key: string;
|
|
@@ -12789,6 +12974,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12789
12974
|
inputs: Record<string, unknown>;
|
|
12790
12975
|
};
|
|
12791
12976
|
};
|
|
12977
|
+
meta?: ResponseMeta;
|
|
12792
12978
|
}>;
|
|
12793
12979
|
getTriggerInbox: (input: {
|
|
12794
12980
|
inbox: string;
|
|
@@ -12808,6 +12994,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12808
12994
|
inputs: Record<string, unknown>;
|
|
12809
12995
|
};
|
|
12810
12996
|
};
|
|
12997
|
+
meta?: ResponseMeta;
|
|
12811
12998
|
}>;
|
|
12812
12999
|
updateTriggerInbox: (input: {
|
|
12813
13000
|
inbox: string;
|
|
@@ -12828,6 +13015,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12828
13015
|
inputs: Record<string, unknown>;
|
|
12829
13016
|
};
|
|
12830
13017
|
};
|
|
13018
|
+
meta?: ResponseMeta;
|
|
12831
13019
|
}>;
|
|
12832
13020
|
deleteTriggerInbox: (input: {
|
|
12833
13021
|
inbox: string;
|
|
@@ -12850,6 +13038,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12850
13038
|
inputs: Record<string, unknown>;
|
|
12851
13039
|
};
|
|
12852
13040
|
};
|
|
13041
|
+
meta?: ResponseMeta;
|
|
12853
13042
|
}>;
|
|
12854
13043
|
resumeTriggerInbox: (input: {
|
|
12855
13044
|
inbox: string;
|
|
@@ -12869,6 +13058,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12869
13058
|
inputs: Record<string, unknown>;
|
|
12870
13059
|
};
|
|
12871
13060
|
};
|
|
13061
|
+
meta?: ResponseMeta;
|
|
12872
13062
|
}>;
|
|
12873
13063
|
listTriggerInboxMessages: (input: {
|
|
12874
13064
|
inbox: string;
|
|
@@ -12915,6 +13105,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12915
13105
|
paused_reason: string | null;
|
|
12916
13106
|
};
|
|
12917
13107
|
};
|
|
13108
|
+
meta?: ResponseMeta;
|
|
12918
13109
|
}>;
|
|
12919
13110
|
ackTriggerInboxMessages: (input: {
|
|
12920
13111
|
inbox: string;
|
|
@@ -12934,6 +13125,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12934
13125
|
};
|
|
12935
13126
|
}[];
|
|
12936
13127
|
};
|
|
13128
|
+
meta?: ResponseMeta;
|
|
12937
13129
|
}>;
|
|
12938
13130
|
releaseTriggerInboxMessages: (input: {
|
|
12939
13131
|
inbox: string;
|
|
@@ -12953,6 +13145,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12953
13145
|
};
|
|
12954
13146
|
}[];
|
|
12955
13147
|
};
|
|
13148
|
+
meta?: ResponseMeta;
|
|
12956
13149
|
}>;
|
|
12957
13150
|
drainTriggerInbox: (input: TriggerInboxCommandSharedFields & {
|
|
12958
13151
|
maxMessages?: number;
|
|
@@ -13087,6 +13280,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
13087
13280
|
description?: string | undefined;
|
|
13088
13281
|
parent_table_id?: string | undefined;
|
|
13089
13282
|
};
|
|
13283
|
+
meta?: ResponseMeta;
|
|
13090
13284
|
}>;
|
|
13091
13285
|
deleteTable: (input: {
|
|
13092
13286
|
table: string;
|
|
@@ -13110,6 +13304,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
13110
13304
|
description?: string | undefined;
|
|
13111
13305
|
parent_table_id?: string | undefined;
|
|
13112
13306
|
};
|
|
13307
|
+
meta?: ResponseMeta;
|
|
13113
13308
|
}>;
|
|
13114
13309
|
listTableFields: (input: {
|
|
13115
13310
|
table: string;
|
|
@@ -13132,6 +13327,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
13132
13327
|
config?: Record<string, unknown> | undefined;
|
|
13133
13328
|
deleted_at?: string | null | undefined;
|
|
13134
13329
|
}[];
|
|
13330
|
+
meta?: ResponseMeta;
|
|
13135
13331
|
}>;
|
|
13136
13332
|
createTableFields: (input: {
|
|
13137
13333
|
table: string;
|
|
@@ -13160,6 +13356,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
13160
13356
|
config?: Record<string, unknown> | undefined;
|
|
13161
13357
|
deleted_at?: string | null | undefined;
|
|
13162
13358
|
}[];
|
|
13359
|
+
meta?: ResponseMeta;
|
|
13163
13360
|
}>;
|
|
13164
13361
|
deleteTableFields: (input: {
|
|
13165
13362
|
table: string;
|
|
@@ -13230,6 +13427,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
13230
13427
|
edited_at: string;
|
|
13231
13428
|
deleted_at?: string | null | undefined;
|
|
13232
13429
|
};
|
|
13430
|
+
meta?: ResponseMeta;
|
|
13233
13431
|
}>;
|
|
13234
13432
|
createTableRecords: (input: {
|
|
13235
13433
|
table: string;
|
|
@@ -13251,6 +13449,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
13251
13449
|
edited_at: string;
|
|
13252
13450
|
deleted_at?: string | null | undefined;
|
|
13253
13451
|
}[];
|
|
13452
|
+
meta?: ResponseMeta;
|
|
13254
13453
|
}>;
|
|
13255
13454
|
deleteTableRecords: (input: {
|
|
13256
13455
|
table: string;
|
|
@@ -13283,6 +13482,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
13283
13482
|
edited_at: string;
|
|
13284
13483
|
deleted_at?: string | null | undefined;
|
|
13285
13484
|
}[];
|
|
13485
|
+
meta?: ResponseMeta;
|
|
13286
13486
|
}>;
|
|
13287
13487
|
} & {
|
|
13288
13488
|
context: SdkContext;
|
|
@@ -13695,6 +13895,7 @@ declare const getTablePlugin: MethodPlugin<"getTable", {
|
|
|
13695
13895
|
description?: string | undefined;
|
|
13696
13896
|
parent_table_id?: string | undefined;
|
|
13697
13897
|
};
|
|
13898
|
+
meta?: ResponseMeta;
|
|
13698
13899
|
}>, readonly []> & LeafSummary<"", "getTable", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
13699
13900
|
|
|
13700
13901
|
declare const createTablePlugin: MethodPlugin<"createTable", {
|
|
@@ -13712,6 +13913,7 @@ declare const createTablePlugin: MethodPlugin<"createTable", {
|
|
|
13712
13913
|
description?: string | undefined;
|
|
13713
13914
|
parent_table_id?: string | undefined;
|
|
13714
13915
|
};
|
|
13916
|
+
meta?: ResponseMeta;
|
|
13715
13917
|
}>, readonly []> & LeafSummary<"", "createTable", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
13716
13918
|
|
|
13717
13919
|
declare const deleteTablePlugin: MethodPlugin<"deleteTable", {
|
|
@@ -13743,6 +13945,7 @@ declare const listTableFieldsPlugin: MethodPlugin<"listTableFields", {
|
|
|
13743
13945
|
config?: Record<string, unknown> | undefined;
|
|
13744
13946
|
deleted_at?: string | null | undefined;
|
|
13745
13947
|
}[];
|
|
13948
|
+
meta?: ResponseMeta;
|
|
13746
13949
|
}>, readonly []> & LeafSummary<"", "listTableFields", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
13747
13950
|
|
|
13748
13951
|
declare const createTableFieldsPlugin: MethodPlugin<"createTableFields", {
|
|
@@ -13772,6 +13975,7 @@ declare const createTableFieldsPlugin: MethodPlugin<"createTableFields", {
|
|
|
13772
13975
|
config?: Record<string, unknown> | undefined;
|
|
13773
13976
|
deleted_at?: string | null | undefined;
|
|
13774
13977
|
}[];
|
|
13978
|
+
meta?: ResponseMeta;
|
|
13775
13979
|
}>, readonly []> & LeafSummary<"", "createTableFields", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
13776
13980
|
|
|
13777
13981
|
declare const deleteTableFieldsPlugin: MethodPlugin<"deleteTableFields", {
|
|
@@ -13800,6 +14004,7 @@ declare const getTableRecordPlugin: MethodPlugin<"getTableRecord", {
|
|
|
13800
14004
|
edited_at: string;
|
|
13801
14005
|
deleted_at?: string | null | undefined;
|
|
13802
14006
|
};
|
|
14007
|
+
meta?: ResponseMeta;
|
|
13803
14008
|
}>, readonly []> & LeafSummary<"", "getTableRecord", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
13804
14009
|
|
|
13805
14010
|
declare const listTableRecordsPlugin: MethodPlugin<"listTableRecords", ({
|
|
@@ -13867,6 +14072,7 @@ declare const createTableRecordsPlugin: MethodPlugin<"createTableRecords", {
|
|
|
13867
14072
|
edited_at: string;
|
|
13868
14073
|
deleted_at?: string | null | undefined;
|
|
13869
14074
|
}[];
|
|
14075
|
+
meta?: ResponseMeta;
|
|
13870
14076
|
}>, readonly []> & LeafSummary<"", "createTableRecords", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
13871
14077
|
|
|
13872
14078
|
declare const deleteTableRecordsPlugin: MethodPlugin<"deleteTableRecords", {
|
|
@@ -13901,6 +14107,7 @@ declare const updateTableRecordsPlugin: MethodPlugin<"updateTableRecords", {
|
|
|
13901
14107
|
edited_at: string;
|
|
13902
14108
|
deleted_at?: string | null | undefined;
|
|
13903
14109
|
}[];
|
|
14110
|
+
meta?: ResponseMeta;
|
|
13904
14111
|
}>, readonly []> & LeafSummary<"", "updateTableRecords", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
13905
14112
|
|
|
13906
14113
|
/**
|
|
@@ -13971,4 +14178,4 @@ declare function getAgent(): string | null;
|
|
|
13971
14178
|
*/
|
|
13972
14179
|
declare const registryPlugin: (_sdk: {}) => {};
|
|
13973
14180
|
|
|
13974
|
-
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, resolveCredentials 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, type ResolvedAuth as eA, clearTokenCache as eB, invalidateCachedToken as eC, injectCliLogin as eD, isCliLoginAvailable as eE, getTokenFromCliLogin as eF, resolveAuth as eG, resolveAuthToken as eH, invalidateCredentialsToken as eI, type ZapierCacheEntry as eJ, type ZapierCacheSetOptions as eK, createMemoryCache as eL, type SdkEvent as eM, type AuthEvent as eN, type ApiEvent as eO, type LoadingEvent as eP, type Credentials as eQ, type ResolvedCredentials as eR, type CredentialsObject as eS, type ClientCredentialsObject as eT, type PkceCredentialsObject as eU, isClientCredentials as eV, isPkceCredentials as eW, isCredentialsObject as eX, isCredentialsFunction as eY, type ResolveCredentialsOptions as eZ, resolveCredentialsFromEnv 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, workflowDraftIdResolver as em, workflowRunIdResolver as en, triggerMessagesResolver as eo, tableRecordIdResolver as ep, tableRecordIdsResolver as eq, tableFieldIdsResolver as er, tableNameResolver as es, tableFieldsResolver as et, tableRecordsResolver as eu, tableUpdateRecordsResolver as ev, tableFiltersResolver as ew, tableSortResolver as ex, type ResolveAuthTokenOptions as ey, AuthMechanism as ez, type CoreOptions as f, operationAnnotatorPlugin as f$, getBaseUrlFromCredentials as f0, getClientIdFromCredentials as f1, ClientCredentialsObjectSchema as f2, PkceCredentialsObjectSchema as f3, CredentialsObjectSchema as f4, ResolvedCredentialsSchema as f5, CredentialsFunctionSchema as f6, type CredentialsFunction as f7, CredentialsSchema as f8, ConnectionEntrySchema as f9, listTableFieldsPlugin as fA, createTableFieldsPlugin as fB, deleteTableFieldsPlugin as fC, getTableRecordPlugin as fD, listTableRecordsPlugin as fE, createTableRecordsPlugin as fF, deleteTableRecordsPlugin as fG, updateTableRecordsPlugin as fH, cleanupEventListeners as fI, type EventEmissionContext as fJ, type EventEmitter as fK, EVENT_EMISSION_ID as fL, eventEmissionPluginRef as fM, eventEmissionPlugin as fN, eventEmissionHookPlugin as fO, type EventTransport as fP, type EventContext as fQ, type ApplicationLifecycleEventData as fR, type EnhancedErrorEventData as fS, type MethodCalledEventData as fT, buildApplicationLifecycleEvent as fU, buildErrorEventWithContext as fV, buildErrorEvent as fW, createBaseEvent as fX, buildMethodCalledEvent as fY, type BaseEvent as fZ, type MethodCalledEvent as f_, type ConnectionEntry as fa, ConnectionsMapSchema as fb, type ConnectionsMap as fc, type ResolveConnection as fd, CONNECTIONS_ID as fe, connectionsPluginRef as ff, connectionsPlugin as fg, ZAPIER_BASE_URL as fh, getZapierSdkService as fi, MAX_PAGE_LIMIT as fj, DEFAULT_PAGE_SIZE as fk, DEFAULT_ACTION_TIMEOUT_MILLISECONDS as fl, ZAPIER_MAX_NETWORK_RETRIES as fm, ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS as fn, MAX_CONCURRENCY_LIMIT as fo, parseConcurrencyEnvVar as fp, ZAPIER_MAX_CONCURRENT_REQUESTS as fq, getZapierApprovalMode as fr, getZapierOpenAutoModeApprovalsInBrowser as fs, getZapierDefaultApprovalMode as ft, DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS as fu, DEFAULT_MAX_APPROVAL_RETRIES as fv, listTablesPlugin as fw, getTablePlugin as fx, createTablePlugin as fy, deleteTablePlugin as fz, type ActionProxy as g, generateEventId as g0, getCurrentTimestamp as g1, getReleaseId as g2, getOsInfo as g3, getPlatformVersions as g4, isCi as g5, getCiPlatform as g6, getMemoryUsage as g7, getCpuTime as g8, getTtyContext as g9, createZapierSdk as ga, type ZapierSdkOptions as gb, type ZapierSdk as gc, 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 };
|
|
14181
|
+
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, toSnakeCase 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, createFunction as a7, createPaginatedFunction as a8, createPluginStack as a9, type BoundFormatter as aA, type Formatter as aB, type OutputFormatter as aC, type Resolver$1 as aD, type ArrayResolver$1 as aE, type ResolverMetadata as aF, type StaticResolver$1 as aG, type DynamicResolver$1 as aH, type DynamicListResolver as aI, type DynamicSearchResolver as aJ, type FieldsResolver as aK, type Resolver as aL, type DynamicMember as aM, type PluginSurface as aN, createController as aO, type ControllerQuestion as aP, type ControllerAction as aQ, type ControllerAnswerFn as aR, type ControllerChoice as aS, type ControllerMethodSummary as aT, type ControllerMethodDescription as aU, type ControllerParameterDescription as aV, runInMethodScope as aW, runWithTelemetryContext as aX, getCallerContext as aY, runWithCallerContext as aZ, type CallerContext as a_, createCorePlugin as aa, addPlugin as ab, disposeSdk as ac, CoreDisposeError as ad, createSdk as ae, CONTEXT as af, resolvePlugin as ag, fromFunctionPlugin as ah, defineLegacyMerge as ai, getContext as aj, declarePlugin as ak, defineMethod as al, defineMethodOverride as am, defineProperty as an, defineResolver as ao, defineFormatter as ap, declareMethod as aq, declareProperty as ar, declareOptionalProperty as as, selectExports as at, omitExports as au, getRegistryPlugin as av, zapierSdkPlugin as aw, SDK_OPTIONS_ID as ax, sdkOptionsPluginRef as ay, type FormattedItem as az, type ApiClient as b, InputsPropertySchema as b$, toTitleCase as b0, batch as b1, type BatchOptions as b2, buildCapabilityMessage as b3, logDeprecation as b4, resetDeprecationWarnings as b5, RelayRequestSchema as b6, RelayFetchSchema as b7, createZapierSdkWithoutRegistry as b8, zapierCoreOptions as b9, type RequestOptions as bA, type PollOptions as bB, createZapierApi as bC, getOrCreateApiClient as bD, isPermanentHttpError as bE, type SseMessage as bF, type JsonSseMessage as bG, DEPRECATION_NOTICE_EVENT as bH, type DeprecationNoticePayload as bI, type AppItem as bJ, type ConnectionItem as bK, type ActionItem$1 as bL, type InputFieldItem as bM, type InfoFieldItem as bN, type RootFieldItem as bO, type UserProfileItem as bP, type SdkPage as bQ, type PaginatedSdkFunction as bR, AppKeyPropertySchema as bS, AppPropertySchema as bT, ActionTypePropertySchema as bU, ActionKeyPropertySchema as bV, ActionPropertySchema as bW, InputFieldPropertySchema as bX, ConnectionIdPropertySchema as bY, AuthenticationIdPropertySchema as bZ, ConnectionPropertySchema as b_, CORE_OPTIONS_ID as ba, type FunctionRegistryEntry as bb, type FunctionDeprecation as bc, BaseSdkOptionsSchema as bd, isCoreError as be, getCoreErrorCode as bf, getCoreErrorCause as bg, CORE_ERROR_SYMBOL as bh, CoreErrorCode as bi, CoreSignal as bj, CoreCancelledSignal as bk, isCoreSignal as bl, isCoreCancelledSignal as bm, CORE_SIGNAL_SYMBOL as bn, type Plugin as bo, type PluginProvides as bp, type MethodOverridePlugin as bq, definePlugin as br, createPluginMethod as bs, createPaginatedPluginMethod as bt, composePlugins as bu, type ActionItem as bv, type ActionTypeItem as bw, type ResolvedAppLocator as bx, getAgent as by, registryPlugin as bz, type PluginSummary as c, ZapierActionError as c$, LimitPropertySchema as c0, OffsetPropertySchema as c1, OutputPropertySchema as c2, DebugPropertySchema as c3, ParamsPropertySchema as c4, ActionTimeoutSecondsPropertySchema as c5, ActionTimeoutMillisecondsPropertySchema as c6, TablePropertySchema as c7, RecordPropertySchema as c8, RecordsPropertySchema as c9, type ActionTimeoutMillisecondsProperty as cA, type TableProperty as cB, type RecordProperty as cC, type RecordsProperty as cD, type FieldsProperty as cE, type AppsProperty as cF, type TablesProperty as cG, type ConnectionsProperty as cH, type TriggerInboxProperty as cI, type TriggerInboxKeyProperty as cJ, type TriggerInboxNameProperty as cK, type LeaseProperty as cL, type LeaseSecondsProperty as cM, type LeaseLimitProperty as cN, type ErrorOptions as cO, ZapierError as cP, ZapierValidationError as cQ, ZapierUnknownError as cR, ZapierAuthenticationError as cS, zapierAdaptError as cT, ZapierApiError as cU, ZapierAppNotFoundError as cV, ZapierNotFoundError as cW, ZapierResourceNotFoundError as cX, ZapierConfigurationError as cY, ZapierBundleError as cZ, ZapierTimeoutError as c_, FieldsPropertySchema as ca, AppsPropertySchema as cb, TablesPropertySchema as cc, ConnectionsPropertySchema as cd, TriggerInboxPropertySchema as ce, TriggerInboxKeyPropertySchema as cf, TriggerInboxNamePropertySchema as cg, LeasePropertySchema as ch, LeaseSecondsPropertySchema as ci, LeaseLimitPropertySchema as cj, type AppKeyProperty as ck, type AppProperty as cl, type ActionTypeProperty as cm, type ActionKeyProperty as cn, type ActionProperty as co, type InputFieldProperty as cp, type ConnectionIdProperty as cq, type ConnectionProperty as cr, type AuthenticationIdProperty as cs, type InputsProperty as ct, type LimitProperty as cu, type OffsetProperty as cv, type OutputProperty as cw, type DebugProperty as cx, type ParamsProperty as cy, type ActionTimeoutSecondsProperty as cz, type PaginatedSdkResult as d, getProfilePlugin as d$, ZapierConflictError as d0, type RateLimitInfo as d1, ZapierRateLimitError as d2, type ApprovalStatus as d3, ZapierApprovalError as d4, ZapierRelayError as d5, isZapierError as d6, isZapierValidationError as d7, isZapierAuthenticationError as d8, isZapierAppNotFoundError as d9, listConnectionsPlugin as dA, type ListConnectionsPluginProvides as dB, listClientCredentialsPlugin as dC, createClientCredentialsPlugin as dD, deleteClientCredentialsPlugin as dE, getAppPlugin as dF, getActionPlugin as dG, getConnectionPlugin as dH, findFirstConnectionPlugin as dI, findUniqueConnectionPlugin as dJ, CONTEXT_CACHE_TTL_MILLISECONDS as dK, CONTEXT_CACHE_MAX_SIZE as dL, runActionPlugin as dM, type RunActionPluginProvides as dN, requestPlugin as dO, type ManifestPluginOptions as dP, readManifestFromFile as dQ, getPreferredManifestEntryKey as dR, findManifestEntry as dS, MANIFEST_ID as dT, manifestPluginRef as dU, manifestPlugin as dV, type UpdateManifestEntryOptions as dW, type UpdateManifestEntryResult as dX, DEFAULT_CONFIG_PATH as dY, type ManifestEntry as dZ, type ActionEntry as d_, isZapierNotFoundError as da, isZapierResourceNotFoundError as db, isZapierConflictError as dc, isZapierTimeoutError as dd, isZapierBundleError as de, isZapierActionError as df, isZapierRateLimitError as dg, isZapierApprovalError as dh, formatErrorMessage as di, type CoreApiError as dj, ZapierSignal as dk, isZapierSignal as dl, appsPlugin as dm, type ActionExecutionOptions as dn, type AppFactoryInput as dp, type FetchPluginProvides as dq, fetchPlugin as dr, listAppsPlugin as ds, type ListAppsPluginProvides as dt, listActionsPlugin as du, type ListActionsPluginProvides as dv, listActionInputFieldsPlugin as dw, type ListActionInputFieldsPluginProvides as dx, listActionInputFieldChoicesPlugin as dy, getActionInputFieldsSchemaPlugin as dz, type ManifestProvider as e, resolveCredentialsFromEnv as e$, type ApiPluginOptions as e0, type ResolveCredentialsFn as e1, API_ID as e2, apiPluginRef as e3, apiPlugin as e4, RESOLVE_CREDENTIALS_ID as e5, resolveCredentialsPluginRef as e6, resolveCredentialsPlugin as e7, appKeyResolver as e8, actionTypeResolver as e9, AuthMechanism as eA, type ResolvedAuth as eB, clearTokenCache as eC, invalidateCachedToken as eD, injectCliLogin as eE, isCliLoginAvailable as eF, getTokenFromCliLogin as eG, resolveAuth as eH, resolveAuthToken as eI, invalidateCredentialsToken as eJ, type ZapierCacheEntry as eK, type ZapierCacheSetOptions as eL, createMemoryCache as eM, type SdkEvent as eN, type AuthEvent as eO, type ApiEvent as eP, type LoadingEvent as eQ, type Credentials as eR, type ResolvedCredentials as eS, type CredentialsObject as eT, type ClientCredentialsObject as eU, type PkceCredentialsObject as eV, isClientCredentials as eW, isPkceCredentials as eX, isCredentialsObject as eY, isCredentialsFunction as eZ, type ResolveCredentialsOptions as e_, actionKeyResolver as ea, connectionIdResolver as eb, connectionIdGenericResolver as ec, inputsResolver as ed, inputsAllOptionalResolver as ee, inputFieldKeyResolver as ef, clientCredentialsNameResolver as eg, clientIdResolver as eh, tableIdResolver as ei, triggerInboxResolver as ej, workflowIdResolver as ek, durableRunIdResolver as el, workflowVersionIdResolver as em, workflowDraftIdResolver as en, workflowRunIdResolver as eo, triggerMessagesResolver as ep, tableRecordIdResolver as eq, tableRecordIdsResolver as er, tableFieldIdsResolver as es, tableNameResolver as et, tableFieldsResolver as eu, tableRecordsResolver as ev, tableUpdateRecordsResolver as ew, tableFiltersResolver as ex, tableSortResolver as ey, type ResolveAuthTokenOptions as ez, type CapabilitiesContext as f, type MethodCalledEvent as f$, resolveCredentials as f0, getBaseUrlFromCredentials as f1, getClientIdFromCredentials as f2, ClientCredentialsObjectSchema as f3, PkceCredentialsObjectSchema as f4, CredentialsObjectSchema as f5, ResolvedCredentialsSchema as f6, CredentialsFunctionSchema as f7, type CredentialsFunction as f8, CredentialsSchema as f9, deleteTablePlugin as fA, listTableFieldsPlugin as fB, createTableFieldsPlugin as fC, deleteTableFieldsPlugin as fD, getTableRecordPlugin as fE, listTableRecordsPlugin as fF, createTableRecordsPlugin as fG, deleteTableRecordsPlugin as fH, updateTableRecordsPlugin as fI, cleanupEventListeners as fJ, type EventEmissionContext as fK, type EventEmitter as fL, EVENT_EMISSION_ID as fM, eventEmissionPluginRef as fN, eventEmissionPlugin as fO, eventEmissionHookPlugin as fP, type EventTransport as fQ, type EventContext as fR, type ApplicationLifecycleEventData as fS, type EnhancedErrorEventData as fT, type MethodCalledEventData as fU, buildApplicationLifecycleEvent as fV, buildErrorEventWithContext as fW, buildErrorEvent as fX, createBaseEvent as fY, buildMethodCalledEvent as fZ, type BaseEvent as f_, ConnectionEntrySchema as fa, type ConnectionEntry as fb, ConnectionsMapSchema as fc, type ConnectionsMap as fd, type ResolveConnection as fe, CONNECTIONS_ID as ff, connectionsPluginRef as fg, connectionsPlugin as fh, ZAPIER_BASE_URL as fi, getZapierSdkService as fj, MAX_PAGE_LIMIT as fk, DEFAULT_PAGE_SIZE as fl, DEFAULT_ACTION_TIMEOUT_MILLISECONDS as fm, ZAPIER_MAX_NETWORK_RETRIES as fn, ZAPIER_MAX_NETWORK_RETRY_DELAY_MILLISECONDS as fo, MAX_CONCURRENCY_LIMIT as fp, parseConcurrencyEnvVar as fq, ZAPIER_MAX_CONCURRENT_REQUESTS as fr, getZapierApprovalMode as fs, getZapierOpenAutoModeApprovalsInBrowser as ft, getZapierDefaultApprovalMode as fu, DEFAULT_APPROVAL_TIMEOUT_MILLISECONDS as fv, DEFAULT_MAX_APPROVAL_RETRIES as fw, listTablesPlugin as fx, getTablePlugin as fy, createTablePlugin as fz, type CoreOptions as g, operationAnnotatorPlugin as g0, generateEventId as g1, getCurrentTimestamp as g2, getReleaseId as g3, getOsInfo as g4, getPlatformVersions as g5, isCi as g6, getCiPlatform as g7, getMemoryUsage as g8, getCpuTime as g9, getTtyContext as ga, createZapierSdk as gb, type ZapierSdkOptions as gc, type ZapierSdk as gd, 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 };
|