@zapier/zapier-sdk 0.84.2 → 0.84.3
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 +6 -0
- package/dist/experimental.cjs +322 -180
- package/dist/experimental.d.mts +30 -4
- package/dist/experimental.d.ts +30 -4
- package/dist/experimental.mjs +322 -180
- package/dist/{index-DxgpC5hV.d.mts → index-B6Hbs-2p.d.mts} +166 -28
- package/dist/{index-DxgpC5hV.d.ts → index-B6Hbs-2p.d.ts} +166 -28
- package/dist/index.cjs +322 -180
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +322 -180
- package/package.json +2 -2
|
@@ -336,15 +336,17 @@ type ListPromptConfig = PromptConfig & {
|
|
|
336
336
|
};
|
|
337
337
|
/**
|
|
338
338
|
* The prompt config the NEW-model resolvers (`defineResolver`) return. It omits
|
|
339
|
-
*
|
|
339
|
+
* four fields the resolution controller does not honor, so authors can't
|
|
340
340
|
* supply a silent no-op:
|
|
341
|
-
* - `name`
|
|
342
|
-
* - `default
|
|
343
|
-
* - `filter`
|
|
344
|
-
*
|
|
345
|
-
*
|
|
346
|
-
|
|
347
|
-
|
|
341
|
+
* - `name` — the framework supplies the answer key (always was overwritten).
|
|
342
|
+
* - `default` — no resolver uses it; the controller has no preselect concept.
|
|
343
|
+
* - `filter` — no resolver uses it; transform values in `listItems` instead.
|
|
344
|
+
* - `validate`— validation is the resolver's top-level `validate`, which
|
|
345
|
+
* never routes through rendering (and gets `imports`).
|
|
346
|
+
* (The legacy `SchemaParameterResolver` still honors `default`/`filter`/
|
|
347
|
+
* `validate`, so the full `PromptConfig` stays for that path.)
|
|
348
|
+
*/
|
|
349
|
+
type ResolverPromptConfig = Omit<PromptConfig, "name" | "default" | "filter" | "validate">;
|
|
348
350
|
interface Resolver$1 {
|
|
349
351
|
type: string;
|
|
350
352
|
depends?: readonly string[] | string[];
|
|
@@ -755,11 +757,27 @@ interface DynamicResolver extends ResolverBase {
|
|
|
755
757
|
cursor?: string;
|
|
756
758
|
}) => ListItemsResult<unknown>;
|
|
757
759
|
prompt?: (bag: {
|
|
760
|
+
/** The CURRENT page's items only — the engine windows the listing one
|
|
761
|
+
* page at a time (an accumulating host may be showing more). Rendering
|
|
762
|
+
* input only; validation is the top-level `validate`. */
|
|
758
763
|
items: unknown[];
|
|
759
764
|
input: Record<string, unknown>;
|
|
760
765
|
/** The value `getContext` returned, if any. */
|
|
761
766
|
context?: unknown;
|
|
762
767
|
}) => ResolverPromptConfig;
|
|
768
|
+
/** Check a chosen/typed value before the engine accepts it. Async with
|
|
769
|
+
* `imports` so it can verify against the source (`tryResolveFromSearch`'s
|
|
770
|
+
* sibling for picks) — never against a loaded page: pagination means the
|
|
771
|
+
* pick can come from a page the engine no longer holds. Return true to
|
|
772
|
+
* accept or a message to re-ask with. A throw is a lookup failure (the
|
|
773
|
+
* host gets retry/cancel), not a rejection. */
|
|
774
|
+
validate?: (bag: {
|
|
775
|
+
imports: Record<string, unknown>;
|
|
776
|
+
value: unknown;
|
|
777
|
+
input: Record<string, unknown>;
|
|
778
|
+
/** The value `getContext` returned, if any. */
|
|
779
|
+
context?: unknown;
|
|
780
|
+
}) => Promise<true | string> | true | string;
|
|
763
781
|
/** Resolve with no user input at all (e.g. a configured default), skipping the
|
|
764
782
|
* prompt. Runs before prompting; used always in non-interactive mode and as a
|
|
765
783
|
* "can we skip asking?" check otherwise. Returns null to fall through to a prompt. */
|
|
@@ -910,6 +928,11 @@ interface BoundDynamicResolver extends BoundResolverBase {
|
|
|
910
928
|
input: Record<string, unknown>;
|
|
911
929
|
context?: unknown;
|
|
912
930
|
}) => ResolverPromptConfig;
|
|
931
|
+
validate?: (bag: {
|
|
932
|
+
value: unknown;
|
|
933
|
+
input: Record<string, unknown>;
|
|
934
|
+
context?: unknown;
|
|
935
|
+
}) => Promise<true | string> | true | string;
|
|
913
936
|
tryResolveWithoutPrompt?: (bag: {
|
|
914
937
|
input: Record<string, unknown>;
|
|
915
938
|
}) => Promise<{
|
|
@@ -2275,6 +2298,18 @@ declare function defineResolver<const TImports extends ImportsInput = readonly [
|
|
|
2275
2298
|
/** The value `getContext` returned, if any. */
|
|
2276
2299
|
context?: TContext;
|
|
2277
2300
|
}) => ResolverPromptConfig;
|
|
2301
|
+
/** Check a chosen/typed value before the engine accepts it. Async with
|
|
2302
|
+
* `imports` so it can verify against the source — never against a loaded
|
|
2303
|
+
* page (the pick can come from a page the engine no longer holds). Return
|
|
2304
|
+
* true to accept or a message to re-ask with; a throw is a lookup failure
|
|
2305
|
+
* (retry/cancel), not a rejection. */
|
|
2306
|
+
validate?: (bag: {
|
|
2307
|
+
imports: ImportsOf<TImports>;
|
|
2308
|
+
value: unknown;
|
|
2309
|
+
input: TInput;
|
|
2310
|
+
/** The value `getContext` returned, if any. */
|
|
2311
|
+
context?: TContext;
|
|
2312
|
+
}) => Promise<true | string> | true | string;
|
|
2278
2313
|
/** Resolve with no user input (e.g. a configured default), skipping the prompt. */
|
|
2279
2314
|
tryResolveWithoutPrompt?: (bag: {
|
|
2280
2315
|
imports: ImportsOf<TImports>;
|
|
@@ -2802,12 +2837,14 @@ interface ControllerAffordance {
|
|
|
2802
2837
|
/** A question the host renders. Discriminated on `type`; the available moves are
|
|
2803
2838
|
* the self-describing `actions` list (single source of truth, no flags).
|
|
2804
2839
|
* `actions` is emitted in recommended presentation order — answer directly
|
|
2805
|
-
* (`choose`/`custom`/`add`), refine (`search`), paginate
|
|
2806
|
-
* (`skip`/`done`), and failure
|
|
2807
|
-
*
|
|
2808
|
-
* widgets (windowed lists,
|
|
2840
|
+
* (`choose`/`custom`/`add`), refine (`search`), paginate
|
|
2841
|
+
* (`next_page`/`previous_page`), decline (`skip`/`done`), and failure
|
|
2842
|
+
* questions offer `retry` then `cancel` — so a minimal host can render the
|
|
2843
|
+
* list verbatim, top to bottom. Hosts with richer widgets (windowed lists,
|
|
2844
|
+
* filter state) may reorder. */
|
|
2809
2845
|
type ControllerQuestion = {
|
|
2810
2846
|
type: "select";
|
|
2847
|
+
path: ControllerPath;
|
|
2811
2848
|
message: string;
|
|
2812
2849
|
/** What this field is, for an agent that lacks the schema. */
|
|
2813
2850
|
description?: string;
|
|
@@ -2830,8 +2867,18 @@ type ControllerQuestion = {
|
|
|
2830
2867
|
* in its lead-with-term prompt (e.g. "Enter or search app (e.g. 'slack')").
|
|
2831
2868
|
* Only meaningful before a search has run. */
|
|
2832
2869
|
placeholder?: string;
|
|
2870
|
+
/** Where these `choices` sit in the paginated listing. `choices` is ONE
|
|
2871
|
+
* page (payloads stay O(page); the engine never re-sends earlier pages).
|
|
2872
|
+
* A window host renders the page and pages with
|
|
2873
|
+
* `next_page`/`previous_page`; an accumulating host appends pages
|
|
2874
|
+
* client-side: same `path` + same `generation` +
|
|
2875
|
+
* advancing `index` means "extend what you showed", and a `generation`
|
|
2876
|
+
* change (a search ran) means "start over". Absent on unpaginated
|
|
2877
|
+
* selects (static enums). */
|
|
2878
|
+
page?: ControllerSelectPage;
|
|
2833
2879
|
} | {
|
|
2834
2880
|
type: "input";
|
|
2881
|
+
path: ControllerPath;
|
|
2835
2882
|
message: string;
|
|
2836
2883
|
description?: string;
|
|
2837
2884
|
inputType: "text" | "password" | "email";
|
|
@@ -2839,6 +2886,7 @@ type ControllerQuestion = {
|
|
|
2839
2886
|
actions: ControllerAffordance[];
|
|
2840
2887
|
} | {
|
|
2841
2888
|
type: "collection";
|
|
2889
|
+
path: ControllerPath;
|
|
2842
2890
|
message: string;
|
|
2843
2891
|
description?: string;
|
|
2844
2892
|
/** Which container kind this decision gates. `array` is the add-another
|
|
@@ -2867,6 +2915,15 @@ type ControllerQuestion = {
|
|
|
2867
2915
|
max?: number;
|
|
2868
2916
|
actions: ControllerAffordance[];
|
|
2869
2917
|
};
|
|
2918
|
+
/** A select question's position in its paginated listing. */
|
|
2919
|
+
interface ControllerSelectPage {
|
|
2920
|
+
/** Increments whenever the listing restarts (a `search` ran, even with the
|
|
2921
|
+
* same term). An accumulating host discards what it has on a new
|
|
2922
|
+
* generation. */
|
|
2923
|
+
generation: number;
|
|
2924
|
+
/** Zero-based page number within this generation. */
|
|
2925
|
+
index: number;
|
|
2926
|
+
}
|
|
2870
2927
|
/** The host's response to a question. The wire shape is frozen: a fuller
|
|
2871
2928
|
* HATEOAS affordance schema would still produce exactly these. */
|
|
2872
2929
|
type ControllerAction = {
|
|
@@ -2876,7 +2933,9 @@ type ControllerAction = {
|
|
|
2876
2933
|
type: "search";
|
|
2877
2934
|
term: string;
|
|
2878
2935
|
} | {
|
|
2879
|
-
type: "
|
|
2936
|
+
type: "next_page";
|
|
2937
|
+
} | {
|
|
2938
|
+
type: "previous_page";
|
|
2880
2939
|
} | {
|
|
2881
2940
|
type: "custom";
|
|
2882
2941
|
value: string;
|
|
@@ -2897,7 +2956,7 @@ type ControllerAction = {
|
|
|
2897
2956
|
type ControllerResult = {
|
|
2898
2957
|
status: "ask";
|
|
2899
2958
|
question: ControllerQuestion;
|
|
2900
|
-
/** The prior answer's validation failure (`
|
|
2959
|
+
/** The prior answer's validation failure (the resolver's `validate`), when
|
|
2901
2960
|
* this is a re-ask. About the last transition, not the question itself. */
|
|
2902
2961
|
error?: string;
|
|
2903
2962
|
} | {
|
|
@@ -2950,9 +3009,10 @@ interface ControllerState {
|
|
|
2950
3009
|
* add/done handling never infers the decision from value presence or
|
|
2951
3010
|
* resolver shape. Absent when `current` is a plain leaf question. */
|
|
2952
3011
|
gate?: "array" | "entry" | "optionals";
|
|
2953
|
-
/**
|
|
2954
|
-
* cursor, never
|
|
2955
|
-
|
|
3012
|
+
/** Where pagination stands for the current dynamic leaf: coordinates only
|
|
3013
|
+
* (cursor trail, generation), never items or live iterators — the page's
|
|
3014
|
+
* items ride the ask's question. */
|
|
3015
|
+
pagination?: ControllerPagination;
|
|
2956
3016
|
/** Whether the host will prompt. Interactive (the default) always asks;
|
|
2957
3017
|
* non-interactive runs `tryResolveWithoutPrompt` to auto-fill what it can
|
|
2958
3018
|
* (e.g. configured defaults) before asking for the rest. */
|
|
@@ -2961,14 +3021,34 @@ interface ControllerState {
|
|
|
2961
3021
|
/** A location in the input tree: top-level `["app"]`, a nested object field
|
|
2962
3022
|
* `["inputs", "channel"]`, or (later) an array item `["records", 0, "id"]`. */
|
|
2963
3023
|
type ControllerPath = (string | number)[];
|
|
2964
|
-
/**
|
|
2965
|
-
*
|
|
2966
|
-
|
|
2967
|
-
|
|
2968
|
-
|
|
3024
|
+
/** Where a listing currently stands: the coordinates that make one page of a
|
|
3025
|
+
* dynamic parameter's candidates fetchable — and re-fetchable — with no
|
|
3026
|
+
* shared in-memory state. `previous_page` and `retry` work by re-issuing a
|
|
3027
|
+
* recorded position. */
|
|
3028
|
+
interface ControllerListingPosition {
|
|
3029
|
+
/** The active search term, when the resolver is search-mode. */
|
|
2969
3030
|
search?: string;
|
|
2970
|
-
/**
|
|
2971
|
-
|
|
3031
|
+
/** Cursor that fetched the current page; `null` is the first page. */
|
|
3032
|
+
pageCursor: string | null;
|
|
3033
|
+
/** Cursors of the pages before this one, oldest first (each entry fetches
|
|
3034
|
+
* that page; `null` is the first page). `previous_page` pops the last. */
|
|
3035
|
+
previousCursors: (string | null)[];
|
|
3036
|
+
/** Increments on every listing restart (each `search`). Surfaced to hosts
|
|
3037
|
+
* via {@link ControllerSelectPage} so accumulators know when to reset. */
|
|
3038
|
+
generation: number;
|
|
3039
|
+
}
|
|
3040
|
+
/** The enumeration in progress for the current dynamic parameter:
|
|
3041
|
+
* coordinates only. The fetched items ride the ask's `question.choices`; the
|
|
3042
|
+
* host carries back these cursors between steps, never the items it was just
|
|
3043
|
+
* shown. Anything the engine needs to redraw (a validate-rejection re-ask) it
|
|
3044
|
+
* re-fetches statelessly from `position`. */
|
|
3045
|
+
interface ControllerPagination {
|
|
3046
|
+
position: ControllerListingPosition;
|
|
3047
|
+
/** Resume point for `next_page`; absent on the last page. */
|
|
3048
|
+
nextCursor?: string;
|
|
3049
|
+
/** The position whose fetch failed, kept so `retry` replays exactly it.
|
|
3050
|
+
* Absent when the page loaded. */
|
|
3051
|
+
retryPosition?: ControllerListingPosition;
|
|
2972
3052
|
}
|
|
2973
3053
|
/**
|
|
2974
3054
|
* The one pluggable seam for the in-process `resolve` sugar. It receives the
|
|
@@ -11189,7 +11269,33 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11189
11269
|
profile_id: string;
|
|
11190
11270
|
description?: string | undefined;
|
|
11191
11271
|
parent_table_id?: string | undefined;
|
|
11192
|
-
}>, readonly []> & LeafSummary<"", "listTables", readonly [
|
|
11272
|
+
}>, readonly []> & LeafSummary<"", "listTables", readonly [MethodPlugin<"listTablesInternal", {
|
|
11273
|
+
tables?: string[] | undefined;
|
|
11274
|
+
tableIds?: string[] | undefined;
|
|
11275
|
+
kind?: "table" | "virtual_table" | "both" | undefined;
|
|
11276
|
+
search?: string | undefined;
|
|
11277
|
+
owner?: string | undefined;
|
|
11278
|
+
includeShared?: boolean | undefined;
|
|
11279
|
+
pageSize?: number | undefined;
|
|
11280
|
+
maxItems?: number | undefined;
|
|
11281
|
+
cursor?: string | undefined;
|
|
11282
|
+
includePersonal?: boolean | undefined;
|
|
11283
|
+
} & {
|
|
11284
|
+
cursor?: string;
|
|
11285
|
+
pageSize?: number;
|
|
11286
|
+
} & {
|
|
11287
|
+
maxItems?: number;
|
|
11288
|
+
}, PaginatedSdkResult<{
|
|
11289
|
+
id: string;
|
|
11290
|
+
name: string;
|
|
11291
|
+
created_at: string;
|
|
11292
|
+
edited_at: string;
|
|
11293
|
+
kind: "table" | "virtual_table";
|
|
11294
|
+
account_id: string;
|
|
11295
|
+
profile_id: string;
|
|
11296
|
+
description?: string | undefined;
|
|
11297
|
+
parent_table_id?: string | undefined;
|
|
11298
|
+
}>, readonly []> & LeafSummary<"", "listTablesInternal", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, PropertyPlugin<"capabilities", CapabilitiesContext> & PluginSummary<"zapier/capabilities", never>]>]>;
|
|
11193
11299
|
} & {
|
|
11194
11300
|
getTable: MethodPlugin<"getTable", {
|
|
11195
11301
|
table: string;
|
|
@@ -11414,7 +11520,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
11414
11520
|
deleted_at?: string | null | undefined;
|
|
11415
11521
|
}[];
|
|
11416
11522
|
}>, readonly []> & LeafSummary<"", "updateTableRecords", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
11417
|
-
}> & PluginSummary<never, "fetch" | "zapier/eventEmission" | "apps" | "zapier/manifest" | "zapier/api" | "zapier/resolveCredentials" | "zapier/connections" | "getApp" | "listApps" | "listActions" | "zapier/capabilities" | "listConnections" | "listActionInputFields" | "listActionInputFieldChoices" | "listClientCredentials" | "
|
|
11523
|
+
}> & 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">;
|
|
11418
11524
|
declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
11419
11525
|
getRegistry: (input?: {
|
|
11420
11526
|
package?: string | undefined;
|
|
@@ -13174,6 +13280,12 @@ declare const DEFAULT_APPROVAL_TIMEOUT_MS: number;
|
|
|
13174
13280
|
*/
|
|
13175
13281
|
declare const DEFAULT_MAX_APPROVAL_RETRIES = 2;
|
|
13176
13282
|
|
|
13283
|
+
/**
|
|
13284
|
+
* Thin delegate over `listTablesInternal`, which carries the implementation
|
|
13285
|
+
* plus the off-surface `includePersonal` option. Awaiting the delegate inside
|
|
13286
|
+
* a list method's `run` yields the requested page; this method's own
|
|
13287
|
+
* paginator restores the full paginated surface.
|
|
13288
|
+
*/
|
|
13177
13289
|
declare const listTablesPlugin: MethodPlugin<"listTables", {
|
|
13178
13290
|
tables?: string[] | undefined;
|
|
13179
13291
|
tableIds?: string[] | undefined;
|
|
@@ -13199,7 +13311,33 @@ declare const listTablesPlugin: MethodPlugin<"listTables", {
|
|
|
13199
13311
|
profile_id: string;
|
|
13200
13312
|
description?: string | undefined;
|
|
13201
13313
|
parent_table_id?: string | undefined;
|
|
13202
|
-
}>, readonly []> & LeafSummary<"", "listTables", readonly [
|
|
13314
|
+
}>, readonly []> & LeafSummary<"", "listTables", readonly [MethodPlugin<"listTablesInternal", {
|
|
13315
|
+
tables?: string[] | undefined;
|
|
13316
|
+
tableIds?: string[] | undefined;
|
|
13317
|
+
kind?: "table" | "virtual_table" | "both" | undefined;
|
|
13318
|
+
search?: string | undefined;
|
|
13319
|
+
owner?: string | undefined;
|
|
13320
|
+
includeShared?: boolean | undefined;
|
|
13321
|
+
pageSize?: number | undefined;
|
|
13322
|
+
maxItems?: number | undefined;
|
|
13323
|
+
cursor?: string | undefined;
|
|
13324
|
+
includePersonal?: boolean | undefined;
|
|
13325
|
+
} & {
|
|
13326
|
+
cursor?: string;
|
|
13327
|
+
pageSize?: number;
|
|
13328
|
+
} & {
|
|
13329
|
+
maxItems?: number;
|
|
13330
|
+
}, PaginatedSdkResult<{
|
|
13331
|
+
id: string;
|
|
13332
|
+
name: string;
|
|
13333
|
+
created_at: string;
|
|
13334
|
+
edited_at: string;
|
|
13335
|
+
kind: "table" | "virtual_table";
|
|
13336
|
+
account_id: string;
|
|
13337
|
+
profile_id: string;
|
|
13338
|
+
description?: string | undefined;
|
|
13339
|
+
parent_table_id?: string | undefined;
|
|
13340
|
+
}>, readonly []> & LeafSummary<"", "listTablesInternal", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>, PropertyPlugin<"capabilities", CapabilitiesContext> & PluginSummary<"zapier/capabilities", never>]>]>;
|
|
13203
13341
|
|
|
13204
13342
|
declare const getTablePlugin: MethodPlugin<"getTable", {
|
|
13205
13343
|
table: string;
|
|
@@ -13493,4 +13631,4 @@ declare function getAgent(): string | null;
|
|
|
13493
13631
|
*/
|
|
13494
13632
|
declare const registryPlugin: (_sdk: {}) => {};
|
|
13495
13633
|
|
|
13496
|
-
export { type Connection 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 FindFirstAuthenticationPluginProvides as H, type FindUniqueAuthenticationPluginProvides as I, type Action as J, type App as K, type LeafSummary as L, type MethodPlugin as M, type Need as N, type Field as O, type PropertyPlugin as P, type Choice as Q, type RegistryResult as R, type SdkContext as S, type TriggerInboxCommandSharedFields as T, type ActionExecutionResult as U, type ActionField as V, type WatchTriggerInboxOptions as W, type ActionFieldChoice as X, type NeedsRequest as Y, type ZapierFetchInitOptions as Z, type NeedsResponse as _, type ApiClient as a, buildCapabilityMessage as a$, type ConnectionsResponse as a0, type UserProfile as a1, isPositional as a2, type PositionalMetadata as a3, createFunction as a4, createPaginatedFunction as a5, createPluginStack as a6, createCorePlugin as a7, addPlugin as a8, disposeSdk as a9, type Resolver$1 as aA, type ArrayResolver$1 as aB, type ResolverMetadata as aC, type StaticResolver$1 as aD, type DynamicResolver$1 as aE, type DynamicListResolver as aF, type DynamicSearchResolver as aG, type FieldsResolver as aH, type Resolver as aI, type DynamicMember as aJ, type PluginSurface as aK, createController as aL, type ControllerQuestion as aM, type ControllerAction as aN, type ControllerAnswerFn as aO, type ControllerMethodSummary as aP, type ControllerMethodDescription as aQ, type ControllerParameterDescription as aR, runInMethodScope as aS, runWithTelemetryContext as aT, getCallerContext as aU, runWithCallerContext as aV, type CallerContext as aW, toSnakeCase as aX, toTitleCase as aY, batch as aZ, type BatchOptions as a_, CoreDisposeError as aa, createSdk as ab, CONTEXT as ac, resolvePlugin as ad, fromFunctionPlugin as ae, defineLegacyMerge as af, getContext as ag, declarePlugin as ah, defineMethod as ai, defineMethodOverride as aj, defineProperty as ak, defineResolver as al, defineFormatter as am, declareMethod as an, declareProperty as ao, declareOptionalProperty as ap, selectExports as aq, omitExports as ar, getRegistryPlugin as as, zapierSdkPlugin as at, SDK_OPTIONS_ID as au, sdkOptionsPluginRef as av, type FormattedItem as aw, type BoundFormatter as ax, type Formatter as ay, type OutputFormatter as az, type PluginSummary as b, ParamsPropertySchema as b$, logDeprecation as b0, resetDeprecationWarnings as b1, RelayRequestSchema as b2, RelayFetchSchema as b3, createZapierSdkWithoutRegistry as b4, zapierCoreOptions as b5, CORE_OPTIONS_ID as b6, type FunctionRegistryEntry as b7, type FunctionDeprecation as b8, BaseSdkOptionsSchema as b9, type SseMessage as bA, type JsonSseMessage as bB, DEPRECATION_NOTICE_EVENT as bC, type DeprecationNoticePayload as bD, type AppItem as bE, type ConnectionItem as bF, type ActionItem$1 as bG, type InputFieldItem as bH, type InfoFieldItem as bI, type RootFieldItem as bJ, type UserProfileItem as bK, type SdkPage as bL, type PaginatedSdkFunction as bM, AppKeyPropertySchema as bN, AppPropertySchema as bO, ActionTypePropertySchema as bP, ActionKeyPropertySchema as bQ, ActionPropertySchema as bR, InputFieldPropertySchema as bS, ConnectionIdPropertySchema as bT, AuthenticationIdPropertySchema as bU, ConnectionPropertySchema as bV, InputsPropertySchema as bW, LimitPropertySchema as bX, OffsetPropertySchema as bY, OutputPropertySchema as bZ, DebugPropertySchema as b_, isCoreError as ba, getCoreErrorCode as bb, getCoreErrorCause as bc, CORE_ERROR_SYMBOL as bd, CoreErrorCode as be, CoreSignal as bf, CoreCancelledSignal as bg, isCoreSignal as bh, CORE_SIGNAL_SYMBOL as bi, type Plugin as bj, type PluginProvides as bk, type MethodOverridePlugin as bl, definePlugin as bm, createPluginMethod as bn, createPaginatedPluginMethod as bo, composePlugins as bp, type ActionItem as bq, type ActionTypeItem as br, type ResolvedAppLocator as bs, getAgent as bt, registryPlugin as bu, type RequestOptions as bv, type PollOptions as bw, createZapierApi as bx, getOrCreateApiClient as by, isPermanentHttpError as bz, type PaginatedSdkResult as c, formatErrorMessage as c$, ActionTimeoutMsPropertySchema as c0, TablePropertySchema as c1, RecordPropertySchema as c2, RecordsPropertySchema as c3, FieldsPropertySchema as c4, AppsPropertySchema as c5, TablesPropertySchema as c6, ConnectionsPropertySchema as c7, TriggerInboxPropertySchema as c8, TriggerInboxKeyPropertySchema as c9, type ConnectionsProperty as cA, type TriggerInboxProperty as cB, type TriggerInboxKeyProperty as cC, type TriggerInboxNameProperty as cD, type LeaseProperty as cE, type LeaseSecondsProperty as cF, type LeaseLimitProperty as cG, type ErrorOptions as cH, ZapierError as cI, ZapierValidationError as cJ, ZapierUnknownError as cK, ZapierAuthenticationError as cL, zapierAdaptError as cM, ZapierApiError as cN, ZapierAppNotFoundError as cO, ZapierNotFoundError as cP, ZapierResourceNotFoundError as cQ, ZapierConfigurationError as cR, ZapierBundleError as cS, ZapierTimeoutError as cT, ZapierActionError as cU, ZapierConflictError as cV, type RateLimitInfo as cW, ZapierRateLimitError as cX, type ApprovalStatus as cY, ZapierApprovalError as cZ, ZapierRelayError as c_, TriggerInboxNamePropertySchema as ca, LeasePropertySchema as cb, LeaseSecondsPropertySchema as cc, LeaseLimitPropertySchema as cd, type AppKeyProperty as ce, type AppProperty as cf, type ActionTypeProperty as cg, type ActionKeyProperty as ch, type ActionProperty as ci, type InputFieldProperty as cj, type ConnectionIdProperty as ck, type ConnectionProperty as cl, type AuthenticationIdProperty as cm, type InputsProperty as cn, type LimitProperty as co, type OffsetProperty as cp, type OutputProperty as cq, type DebugProperty as cr, type ParamsProperty as cs, type ActionTimeoutMsProperty as ct, type TableProperty as cu, type RecordProperty as cv, type RecordsProperty as cw, type FieldsProperty as cx, type AppsProperty as cy, type TablesProperty as cz, type ManifestProvider as d, triggerInboxResolver as d$, type CoreApiError as d0, ZapierSignal as d1, appsPlugin as d2, type ActionExecutionOptions as d3, type AppFactoryInput as d4, type FetchPluginProvides as d5, fetchPlugin as d6, listAppsPlugin as d7, type ListAppsPluginProvides as d8, listActionsPlugin as d9, manifestPluginRef as dA, manifestPlugin as dB, type UpdateManifestEntryOptions as dC, type UpdateManifestEntryResult as dD, DEFAULT_CONFIG_PATH as dE, type ManifestEntry as dF, type ActionEntry as dG, getProfilePlugin as dH, type ApiPluginOptions as dI, type ResolveCredentialsFn as dJ, API_ID as dK, apiPluginRef as dL, apiPlugin as dM, RESOLVE_CREDENTIALS_ID as dN, resolveCredentialsPluginRef as dO, resolveCredentialsPlugin as dP, appKeyResolver as dQ, actionTypeResolver as dR, actionKeyResolver as dS, connectionIdResolver as dT, connectionIdGenericResolver as dU, inputsResolver as dV, inputsAllOptionalResolver as dW, inputFieldKeyResolver as dX, clientCredentialsNameResolver as dY, clientIdResolver as dZ, tableIdResolver as d_, type ListActionsPluginProvides as da, listActionInputFieldsPlugin as db, type ListActionInputFieldsPluginProvides as dc, listActionInputFieldChoicesPlugin as dd, getActionInputFieldsSchemaPlugin as de, listConnectionsPlugin as df, type ListConnectionsPluginProvides as dg, listClientCredentialsPlugin as dh, createClientCredentialsPlugin as di, deleteClientCredentialsPlugin as dj, getAppPlugin as dk, getActionPlugin as dl, getConnectionPlugin as dm, findFirstConnectionPlugin as dn, findUniqueConnectionPlugin as dp, CONTEXT_CACHE_TTL_MS as dq, CONTEXT_CACHE_MAX_SIZE as dr, runActionPlugin as ds, type RunActionPluginProvides as dt, requestPlugin as du, type ManifestPluginOptions as dv, readManifestFromFile as dw, getPreferredManifestEntryKey as dx, findManifestEntry as dy, MANIFEST_ID as dz, type CapabilitiesContext as e, MAX_PAGE_LIMIT as e$, workflowIdResolver as e0, durableRunIdResolver as e1, workflowVersionIdResolver as e2, workflowRunIdResolver as e3, triggerMessagesResolver as e4, tableRecordIdResolver as e5, tableRecordIdsResolver as e6, tableFieldIdsResolver as e7, tableNameResolver as e8, tableFieldsResolver as e9, type PkceCredentialsObject as eA, isClientCredentials as eB, isPkceCredentials as eC, isCredentialsObject as eD, isCredentialsFunction as eE, type ResolveCredentialsOptions as eF, resolveCredentialsFromEnv as eG, resolveCredentials as eH, getBaseUrlFromCredentials as eI, getClientIdFromCredentials as eJ, ClientCredentialsObjectSchema as eK, PkceCredentialsObjectSchema as eL, CredentialsObjectSchema as eM, ResolvedCredentialsSchema as eN, CredentialsFunctionSchema as eO, type CredentialsFunction as eP, CredentialsSchema as eQ, ConnectionEntrySchema as eR, type ConnectionEntry as eS, ConnectionsMapSchema as eT, type ConnectionsMap as eU, type ResolveConnection as eV, CONNECTIONS_ID as eW, connectionsPluginRef as eX, connectionsPlugin as eY, ZAPIER_BASE_URL as eZ, getZapierSdkService as e_, tableRecordsResolver as ea, tableUpdateRecordsResolver as eb, tableFiltersResolver as ec, tableSortResolver as ed, type ResolveAuthTokenOptions as ee, AuthMechanism as ef, type ResolvedAuth as eg, clearTokenCache as eh, invalidateCachedToken as ei, injectCliLogin as ej, isCliLoginAvailable as ek, getTokenFromCliLogin as el, resolveAuth as em, resolveAuthToken as en, invalidateCredentialsToken as eo, type ZapierCacheEntry as ep, type ZapierCacheSetOptions as eq, createMemoryCache as er, type SdkEvent as es, type AuthEvent as et, type ApiEvent as eu, type LoadingEvent as ev, type Credentials as ew, type ResolvedCredentials as ex, type CredentialsObject as ey, type ClientCredentialsObject as ez, type CoreOptions as f, DEFAULT_PAGE_SIZE as f0, DEFAULT_ACTION_TIMEOUT_MS as f1, ZAPIER_MAX_NETWORK_RETRIES as f2, ZAPIER_MAX_NETWORK_RETRY_DELAY_MS as f3, MAX_CONCURRENCY_LIMIT as f4, parseConcurrencyEnvVar as f5, ZAPIER_MAX_CONCURRENT_REQUESTS as f6, getZapierApprovalMode as f7, getZapierOpenAutoModeApprovalsInBrowser as f8, getZapierDefaultApprovalMode as f9, buildApplicationLifecycleEvent as fA, buildErrorEventWithContext as fB, buildErrorEvent as fC, createBaseEvent as fD, buildMethodCalledEvent as fE, type BaseEvent as fF, type MethodCalledEvent as fG, generateEventId as fH, getCurrentTimestamp as fI, getReleaseId as fJ, getOsInfo as fK, getPlatformVersions as fL, isCi as fM, getCiPlatform as fN, getMemoryUsage as fO, getCpuTime as fP, getTtyContext as fQ, createZapierSdk as fR, type ZapierSdkOptions as fS, type ZapierSdk as fT, DEFAULT_APPROVAL_TIMEOUT_MS as fa, DEFAULT_MAX_APPROVAL_RETRIES as fb, listTablesPlugin as fc, getTablePlugin as fd, createTablePlugin as fe, deleteTablePlugin as ff, listTableFieldsPlugin as fg, createTableFieldsPlugin as fh, deleteTableFieldsPlugin as fi, getTableRecordPlugin as fj, listTableRecordsPlugin as fk, createTableRecordsPlugin as fl, deleteTableRecordsPlugin as fm, updateTableRecordsPlugin as fn, cleanupEventListeners as fo, type EventEmissionContext as fp, type EventEmitter as fq, EVENT_EMISSION_ID as fr, eventEmissionPluginRef as fs, eventEmissionPlugin as ft, eventEmissionHookPlugin as fu, type EventTransport as fv, type EventContext as fw, type ApplicationLifecycleEventData as fx, type EnhancedErrorEventData as fy, type MethodCalledEventData as fz, type ActionProxy as g, 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, type DrainTriggerInboxCallback as u, type DrainTriggerInboxErrorObserver as v, type LeasedTriggerMessageItem as w, type TriggerMessageStatus as x, type ListAuthenticationsPluginProvides as y, type GetAuthenticationPluginProvides as z };
|
|
13634
|
+
export { type Connection 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 FindFirstAuthenticationPluginProvides as H, type FindUniqueAuthenticationPluginProvides as I, type Action as J, type App as K, type LeafSummary as L, type MethodPlugin as M, type Need as N, type Field as O, type PropertyPlugin as P, type Choice as Q, type RegistryResult as R, type SdkContext as S, type TriggerInboxCommandSharedFields as T, type ActionExecutionResult as U, type ActionField as V, type WatchTriggerInboxOptions as W, type ActionFieldChoice as X, type NeedsRequest as Y, type ZapierFetchInitOptions as Z, type NeedsResponse as _, type ApiClient as a, type BatchOptions as a$, type ConnectionsResponse as a0, type UserProfile as a1, isPositional as a2, type PositionalMetadata as a3, createFunction as a4, createPaginatedFunction as a5, createPluginStack as a6, createCorePlugin as a7, addPlugin as a8, disposeSdk as a9, type Resolver$1 as aA, type ArrayResolver$1 as aB, type ResolverMetadata as aC, type StaticResolver$1 as aD, type DynamicResolver$1 as aE, type DynamicListResolver as aF, type DynamicSearchResolver as aG, type FieldsResolver as aH, type Resolver as aI, type DynamicMember as aJ, type PluginSurface as aK, createController as aL, type ControllerQuestion as aM, type ControllerAction as aN, type ControllerAnswerFn as aO, type ControllerChoice as aP, type ControllerMethodSummary as aQ, type ControllerMethodDescription as aR, type ControllerParameterDescription as aS, runInMethodScope as aT, runWithTelemetryContext as aU, getCallerContext as aV, runWithCallerContext as aW, type CallerContext as aX, toSnakeCase as aY, toTitleCase as aZ, batch as a_, CoreDisposeError as aa, createSdk as ab, CONTEXT as ac, resolvePlugin as ad, fromFunctionPlugin as ae, defineLegacyMerge as af, getContext as ag, declarePlugin as ah, defineMethod as ai, defineMethodOverride as aj, defineProperty as ak, defineResolver as al, defineFormatter as am, declareMethod as an, declareProperty as ao, declareOptionalProperty as ap, selectExports as aq, omitExports as ar, getRegistryPlugin as as, zapierSdkPlugin as at, SDK_OPTIONS_ID as au, sdkOptionsPluginRef as av, type FormattedItem as aw, type BoundFormatter as ax, type Formatter as ay, type OutputFormatter as az, type PluginSummary as b, DebugPropertySchema as b$, buildCapabilityMessage as b0, logDeprecation as b1, resetDeprecationWarnings as b2, RelayRequestSchema as b3, RelayFetchSchema as b4, createZapierSdkWithoutRegistry as b5, zapierCoreOptions as b6, CORE_OPTIONS_ID as b7, type FunctionRegistryEntry as b8, type FunctionDeprecation as b9, isPermanentHttpError as bA, type SseMessage as bB, type JsonSseMessage as bC, DEPRECATION_NOTICE_EVENT as bD, type DeprecationNoticePayload as bE, type AppItem as bF, type ConnectionItem as bG, type ActionItem$1 as bH, type InputFieldItem as bI, type InfoFieldItem as bJ, type RootFieldItem as bK, type UserProfileItem as bL, type SdkPage as bM, type PaginatedSdkFunction as bN, AppKeyPropertySchema as bO, AppPropertySchema as bP, ActionTypePropertySchema as bQ, ActionKeyPropertySchema as bR, ActionPropertySchema as bS, InputFieldPropertySchema as bT, ConnectionIdPropertySchema as bU, AuthenticationIdPropertySchema as bV, ConnectionPropertySchema as bW, InputsPropertySchema as bX, LimitPropertySchema as bY, OffsetPropertySchema as bZ, OutputPropertySchema as b_, BaseSdkOptionsSchema as ba, isCoreError as bb, getCoreErrorCode as bc, getCoreErrorCause as bd, CORE_ERROR_SYMBOL as be, CoreErrorCode as bf, CoreSignal as bg, CoreCancelledSignal as bh, isCoreSignal as bi, CORE_SIGNAL_SYMBOL as bj, type Plugin as bk, type PluginProvides as bl, type MethodOverridePlugin as bm, definePlugin as bn, createPluginMethod as bo, createPaginatedPluginMethod as bp, composePlugins as bq, type ActionItem as br, type ActionTypeItem as bs, type ResolvedAppLocator as bt, getAgent as bu, registryPlugin as bv, type RequestOptions as bw, type PollOptions as bx, createZapierApi as by, getOrCreateApiClient as bz, type PaginatedSdkResult as c, ZapierRelayError as c$, ParamsPropertySchema as c0, ActionTimeoutMsPropertySchema as c1, TablePropertySchema as c2, RecordPropertySchema as c3, RecordsPropertySchema as c4, FieldsPropertySchema as c5, AppsPropertySchema as c6, TablesPropertySchema as c7, ConnectionsPropertySchema as c8, TriggerInboxPropertySchema as c9, type TablesProperty as cA, type ConnectionsProperty as cB, type TriggerInboxProperty as cC, type TriggerInboxKeyProperty as cD, type TriggerInboxNameProperty as cE, type LeaseProperty as cF, type LeaseSecondsProperty as cG, type LeaseLimitProperty as cH, type ErrorOptions as cI, ZapierError as cJ, ZapierValidationError as cK, ZapierUnknownError as cL, ZapierAuthenticationError as cM, zapierAdaptError as cN, ZapierApiError as cO, ZapierAppNotFoundError as cP, ZapierNotFoundError as cQ, ZapierResourceNotFoundError as cR, ZapierConfigurationError as cS, ZapierBundleError as cT, ZapierTimeoutError as cU, ZapierActionError as cV, ZapierConflictError as cW, type RateLimitInfo as cX, ZapierRateLimitError as cY, type ApprovalStatus as cZ, ZapierApprovalError as c_, TriggerInboxKeyPropertySchema as ca, TriggerInboxNamePropertySchema as cb, LeasePropertySchema as cc, LeaseSecondsPropertySchema as cd, LeaseLimitPropertySchema as ce, type AppKeyProperty as cf, type AppProperty as cg, type ActionTypeProperty as ch, type ActionKeyProperty as ci, type ActionProperty as cj, type InputFieldProperty as ck, type ConnectionIdProperty as cl, type ConnectionProperty as cm, type AuthenticationIdProperty as cn, type InputsProperty as co, type LimitProperty as cp, type OffsetProperty as cq, type OutputProperty as cr, type DebugProperty as cs, type ParamsProperty as ct, type ActionTimeoutMsProperty as cu, type TableProperty as cv, type RecordProperty as cw, type RecordsProperty as cx, type FieldsProperty as cy, type AppsProperty as cz, type ManifestProvider as d, tableIdResolver as d$, formatErrorMessage as d0, type CoreApiError as d1, ZapierSignal as d2, appsPlugin as d3, type ActionExecutionOptions as d4, type AppFactoryInput as d5, type FetchPluginProvides as d6, fetchPlugin as d7, listAppsPlugin as d8, type ListAppsPluginProvides as d9, MANIFEST_ID as dA, manifestPluginRef as dB, manifestPlugin as dC, type UpdateManifestEntryOptions as dD, type UpdateManifestEntryResult as dE, DEFAULT_CONFIG_PATH as dF, type ManifestEntry as dG, type ActionEntry as dH, getProfilePlugin as dI, type ApiPluginOptions as dJ, type ResolveCredentialsFn as dK, API_ID as dL, apiPluginRef as dM, apiPlugin as dN, RESOLVE_CREDENTIALS_ID as dO, resolveCredentialsPluginRef as dP, resolveCredentialsPlugin as dQ, appKeyResolver as dR, actionTypeResolver as dS, actionKeyResolver as dT, connectionIdResolver as dU, connectionIdGenericResolver as dV, inputsResolver as dW, inputsAllOptionalResolver as dX, inputFieldKeyResolver as dY, clientCredentialsNameResolver as dZ, clientIdResolver as d_, listActionsPlugin as da, type ListActionsPluginProvides as db, listActionInputFieldsPlugin as dc, type ListActionInputFieldsPluginProvides as dd, listActionInputFieldChoicesPlugin as de, getActionInputFieldsSchemaPlugin as df, listConnectionsPlugin as dg, type ListConnectionsPluginProvides as dh, listClientCredentialsPlugin as di, createClientCredentialsPlugin as dj, deleteClientCredentialsPlugin as dk, getAppPlugin as dl, getActionPlugin as dm, getConnectionPlugin as dn, findFirstConnectionPlugin as dp, findUniqueConnectionPlugin as dq, CONTEXT_CACHE_TTL_MS as dr, CONTEXT_CACHE_MAX_SIZE as ds, runActionPlugin as dt, type RunActionPluginProvides as du, requestPlugin as dv, type ManifestPluginOptions as dw, readManifestFromFile as dx, getPreferredManifestEntryKey as dy, findManifestEntry as dz, type CapabilitiesContext as e, getZapierSdkService as e$, triggerInboxResolver as e0, workflowIdResolver as e1, durableRunIdResolver as e2, workflowVersionIdResolver as e3, workflowRunIdResolver as e4, triggerMessagesResolver as e5, tableRecordIdResolver as e6, tableRecordIdsResolver as e7, tableFieldIdsResolver as e8, tableNameResolver as e9, type ClientCredentialsObject as eA, type PkceCredentialsObject as eB, isClientCredentials as eC, isPkceCredentials as eD, isCredentialsObject as eE, isCredentialsFunction as eF, type ResolveCredentialsOptions as eG, resolveCredentialsFromEnv as eH, resolveCredentials as eI, getBaseUrlFromCredentials as eJ, getClientIdFromCredentials as eK, ClientCredentialsObjectSchema as eL, PkceCredentialsObjectSchema as eM, CredentialsObjectSchema as eN, ResolvedCredentialsSchema as eO, CredentialsFunctionSchema as eP, type CredentialsFunction as eQ, CredentialsSchema as eR, ConnectionEntrySchema as eS, type ConnectionEntry as eT, ConnectionsMapSchema as eU, type ConnectionsMap as eV, type ResolveConnection as eW, CONNECTIONS_ID as eX, connectionsPluginRef as eY, connectionsPlugin as eZ, ZAPIER_BASE_URL as e_, tableFieldsResolver as ea, tableRecordsResolver as eb, tableUpdateRecordsResolver as ec, tableFiltersResolver as ed, tableSortResolver as ee, type ResolveAuthTokenOptions as ef, AuthMechanism as eg, type ResolvedAuth as eh, clearTokenCache as ei, invalidateCachedToken as ej, injectCliLogin as ek, isCliLoginAvailable as el, getTokenFromCliLogin as em, resolveAuth as en, resolveAuthToken as eo, invalidateCredentialsToken as ep, type ZapierCacheEntry as eq, type ZapierCacheSetOptions as er, createMemoryCache as es, type SdkEvent as et, type AuthEvent as eu, type ApiEvent as ev, type LoadingEvent as ew, type Credentials as ex, type ResolvedCredentials as ey, type CredentialsObject as ez, type CoreOptions as f, MAX_PAGE_LIMIT as f0, DEFAULT_PAGE_SIZE as f1, DEFAULT_ACTION_TIMEOUT_MS as f2, ZAPIER_MAX_NETWORK_RETRIES as f3, ZAPIER_MAX_NETWORK_RETRY_DELAY_MS as f4, MAX_CONCURRENCY_LIMIT as f5, parseConcurrencyEnvVar as f6, ZAPIER_MAX_CONCURRENT_REQUESTS as f7, getZapierApprovalMode as f8, getZapierOpenAutoModeApprovalsInBrowser as f9, type MethodCalledEventData as fA, buildApplicationLifecycleEvent as fB, buildErrorEventWithContext as fC, buildErrorEvent as fD, createBaseEvent as fE, buildMethodCalledEvent as fF, type BaseEvent as fG, type MethodCalledEvent as fH, generateEventId as fI, getCurrentTimestamp as fJ, getReleaseId as fK, getOsInfo as fL, getPlatformVersions as fM, isCi as fN, getCiPlatform as fO, getMemoryUsage as fP, getCpuTime as fQ, getTtyContext as fR, createZapierSdk as fS, type ZapierSdkOptions as fT, type ZapierSdk as fU, getZapierDefaultApprovalMode as fa, DEFAULT_APPROVAL_TIMEOUT_MS as fb, DEFAULT_MAX_APPROVAL_RETRIES as fc, listTablesPlugin as fd, getTablePlugin as fe, createTablePlugin as ff, deleteTablePlugin as fg, listTableFieldsPlugin as fh, createTableFieldsPlugin as fi, deleteTableFieldsPlugin as fj, getTableRecordPlugin as fk, listTableRecordsPlugin as fl, createTableRecordsPlugin as fm, deleteTableRecordsPlugin as fn, updateTableRecordsPlugin as fo, cleanupEventListeners as fp, type EventEmissionContext as fq, type EventEmitter as fr, EVENT_EMISSION_ID as fs, eventEmissionPluginRef as ft, eventEmissionPlugin as fu, eventEmissionHookPlugin as fv, type EventTransport as fw, type EventContext as fx, type ApplicationLifecycleEventData as fy, type EnhancedErrorEventData as fz, type ActionProxy as g, 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, type DrainTriggerInboxCallback as u, type DrainTriggerInboxErrorObserver as v, type LeasedTriggerMessageItem as w, type TriggerMessageStatus as x, type ListAuthenticationsPluginProvides as y, type GetAuthenticationPluginProvides as z };
|