@zapier/zapier-sdk 0.97.1 → 0.98.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 +6 -0
- package/README.md +34 -34
- package/dist/{chunk-X7NGRS4I.mjs → chunk-UJLLXQ3L.mjs} +99 -16
- package/dist/{chunk-MAEVVN2L.cjs → chunk-XZU6XQNV.cjs} +99 -16
- package/dist/experimental.cjs +384 -384
- package/dist/experimental.d.mts +31 -12
- package/dist/experimental.d.ts +31 -12
- package/dist/experimental.mjs +2 -2
- package/dist/{index-DsMsmowr.d.mts → index-Cx7Zjn-B.d.mts} +127 -25
- package/dist/{index-DsMsmowr.d.ts → index-Cx7Zjn-B.d.ts} +127 -25
- package/dist/index.cjs +276 -276
- 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
|
@@ -399,6 +399,19 @@ interface MethodHooks {
|
|
|
399
399
|
onMethodEnd?: OnMethodEnd;
|
|
400
400
|
annotator?: ComposedAnnotator;
|
|
401
401
|
}
|
|
402
|
+
|
|
403
|
+
/**
|
|
404
|
+
* API stability tiers.
|
|
405
|
+
*
|
|
406
|
+
* A plugin declares exactly one level via `PluginMeta.stability`; tier
|
|
407
|
+
* membership (which subpath aggregate exports the plugin) is structural,
|
|
408
|
+
* so nothing here compares levels ordinally. The array is the single
|
|
409
|
+
* source of truth: it derives the {@link StabilityLevel} type, gives the
|
|
410
|
+
* ladder tests their adjacent-tier iteration order, and gives docs a
|
|
411
|
+
* render order.
|
|
412
|
+
*/
|
|
413
|
+
declare const STABILITY_LEVELS: readonly ["stable", "beta", "experimental"];
|
|
414
|
+
type StabilityLevel = (typeof STABILITY_LEVELS)[number];
|
|
402
415
|
interface FormattedItem {
|
|
403
416
|
title: string;
|
|
404
417
|
/**
|
|
@@ -710,6 +723,8 @@ interface LeafMetaFields {
|
|
|
710
723
|
* off the registry / CLI / MCP surface, exactly like `skipInputValidation`. */
|
|
711
724
|
skipOutputValidation?: boolean;
|
|
712
725
|
packages?: string[];
|
|
726
|
+
stability?: StabilityLevel;
|
|
727
|
+
/** @deprecated Use `stability: "experimental"` instead. */
|
|
713
728
|
experimental?: boolean;
|
|
714
729
|
confirm?: "create-secret" | "delete";
|
|
715
730
|
deprecation?: FunctionDeprecation;
|
|
@@ -1871,8 +1886,17 @@ interface FunctionRegistryEntry {
|
|
|
1871
1886
|
resolvers?: Record<string, BoundResolver>;
|
|
1872
1887
|
packages?: string[];
|
|
1873
1888
|
/**
|
|
1874
|
-
*
|
|
1875
|
-
*
|
|
1889
|
+
* API stability tier of the plugin, normalized from `PluginMeta.stability`
|
|
1890
|
+
* (absent means `"stable"`; the legacy `experimental: true` boolean means
|
|
1891
|
+
* `"experimental"`). Always concrete here, so consumers never branch on
|
|
1892
|
+
* `undefined`.
|
|
1893
|
+
*/
|
|
1894
|
+
stability: StabilityLevel;
|
|
1895
|
+
/**
|
|
1896
|
+
* @deprecated Read `stability` instead. Derived as
|
|
1897
|
+
* `stability === "experimental"` — literal by name, so beta reads
|
|
1898
|
+
* `false`; the not-stable warning duty lives in `stability` and the
|
|
1899
|
+
* runtime stability notice.
|
|
1876
1900
|
*/
|
|
1877
1901
|
experimental?: boolean;
|
|
1878
1902
|
/** Confirmation prompt type - prompts user before executing */
|
|
@@ -1968,10 +1992,19 @@ interface PluginMeta<TSdk = unknown> {
|
|
|
1968
1992
|
/** Confirmation prompt type - prompts user before executing */
|
|
1969
1993
|
confirm?: "create-secret" | "delete";
|
|
1970
1994
|
/**
|
|
1971
|
-
*
|
|
1972
|
-
*
|
|
1973
|
-
*
|
|
1974
|
-
*
|
|
1995
|
+
* API stability tier this plugin belongs to. Absent means `"stable"`;
|
|
1996
|
+
* the registry projection normalizes it, so registry consumers always
|
|
1997
|
+
* read a concrete {@link StabilityLevel}. Wrappers keep non-stable
|
|
1998
|
+
* plugins out of their stable build (by gating them behind a `beta` /
|
|
1999
|
+
* `experimental` subpath import) and consumers badge the level in
|
|
2000
|
+
* generated docs, CLI help, and MCP tool descriptions. No runtime
|
|
2001
|
+
* capability check.
|
|
2002
|
+
*/
|
|
2003
|
+
stability?: StabilityLevel;
|
|
2004
|
+
/**
|
|
2005
|
+
* @deprecated Use `stability: "experimental"` instead. Kept as an
|
|
2006
|
+
* input for external authors; `true` normalizes to
|
|
2007
|
+
* `stability: "experimental"` in the registry projection.
|
|
1975
2008
|
*/
|
|
1976
2009
|
experimental?: boolean;
|
|
1977
2010
|
[key: string]: any;
|
|
@@ -2930,6 +2963,16 @@ interface DeprecationWarning {
|
|
|
2930
2963
|
methodName: string;
|
|
2931
2964
|
deprecation: FunctionDeprecation;
|
|
2932
2965
|
}
|
|
2966
|
+
/**
|
|
2967
|
+
* What the boundary reports when a non-stable (beta / experimental) method
|
|
2968
|
+
* is called: the method plus its declared level. `DeprecationWarning`'s
|
|
2969
|
+
* sibling — same self-describing shape, same handler-not-observer contract.
|
|
2970
|
+
*/
|
|
2971
|
+
interface StabilityNotice {
|
|
2972
|
+
type: "stability";
|
|
2973
|
+
methodName: string;
|
|
2974
|
+
stability: StabilityLevel;
|
|
2975
|
+
}
|
|
2933
2976
|
/**
|
|
2934
2977
|
* The well-known id for framework options: heads inject a `CoreOptions` bag
|
|
2935
2978
|
* under it via `createSdk`'s `configuration` (or register a property plugin),
|
|
@@ -2966,6 +3009,16 @@ interface CoreOptions {
|
|
|
2966
3009
|
* reserved for an `on*`-named observer when the unified event bus lands.
|
|
2967
3010
|
*/
|
|
2968
3011
|
logDeprecation?: (warning: DeprecationWarning) => void;
|
|
3012
|
+
/**
|
|
3013
|
+
* `logDeprecation`'s sibling for API stability: the framework signals
|
|
3014
|
+
* every surface call of a method declaring a non-stable `stability`
|
|
3015
|
+
* level (beta / experimental), and this gate decides what happens.
|
|
3016
|
+
* Exactly one: absent falls back to {@link defaultLogStabilityNotice}
|
|
3017
|
+
* (once-per-process per message), supplied replaces it. Runs isolated,
|
|
3018
|
+
* so a throwing handler never breaks the observed call. Internal
|
|
3019
|
+
* delegation never signals, matching the deprecation contract.
|
|
3020
|
+
*/
|
|
3021
|
+
logStabilityNotice?: (notice: StabilityNotice) => void;
|
|
2969
3022
|
/**
|
|
2970
3023
|
* Report what output validation stripped, on the response's
|
|
2971
3024
|
* `meta.outputValidation.droppedPaths` (the name mirrors that path). Off by
|
|
@@ -3500,6 +3553,8 @@ declare function createFunction<TOptions, TResult, TSchemaOptions extends TOptio
|
|
|
3500
3553
|
annotator?: (input: unknown) => Annotations;
|
|
3501
3554
|
/** Live read of the method's deprecation meta (see signalDeprecation). */
|
|
3502
3555
|
getDeprecation?: () => FunctionDeprecation | undefined;
|
|
3556
|
+
/** Live read of the method's stability level (see signalStability). */
|
|
3557
|
+
getStability?: () => StabilityLevel | undefined;
|
|
3503
3558
|
}): (callOptions?: TOptions) => Promise<TResult>;
|
|
3504
3559
|
/**
|
|
3505
3560
|
* Higher-order function that creates a paginated function that wraps
|
|
@@ -3540,6 +3595,8 @@ declare function createPaginatedFunction<TUserOptions, TResponse, TItem = ItemTy
|
|
|
3540
3595
|
finalizePage?: (page: SdkPage<TItem>) => SdkPage<TItem>;
|
|
3541
3596
|
/** Live read of the method's deprecation meta (see signalDeprecation). */
|
|
3542
3597
|
getDeprecation?: () => FunctionDeprecation | undefined;
|
|
3598
|
+
/** Live read of the method's stability level (see signalStability). */
|
|
3599
|
+
getStability?: () => StabilityLevel | undefined;
|
|
3543
3600
|
}): (options?: TUserOptions & {
|
|
3544
3601
|
cursor?: string;
|
|
3545
3602
|
pageSize?: number;
|
|
@@ -6270,6 +6327,7 @@ declare const listConnectionsPlugin: MethodPlugin<"listConnections", {
|
|
|
6270
6327
|
account?: string | undefined;
|
|
6271
6328
|
accountId?: string | undefined;
|
|
6272
6329
|
includeShared?: boolean | undefined;
|
|
6330
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
6273
6331
|
isExpired?: boolean | undefined;
|
|
6274
6332
|
expired?: boolean | undefined;
|
|
6275
6333
|
pageSize?: number | undefined;
|
|
@@ -6568,14 +6626,15 @@ declare const getConnectionPlugin: MethodPlugin<"getConnection", {
|
|
|
6568
6626
|
declare const findFirstConnectionPlugin: MethodPlugin<"findFirstConnection", {
|
|
6569
6627
|
title?: string | undefined;
|
|
6570
6628
|
search?: string | undefined;
|
|
6629
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
6571
6630
|
appKey?: string | undefined;
|
|
6572
6631
|
app?: string | undefined;
|
|
6573
6632
|
owner?: string | undefined;
|
|
6574
6633
|
account?: string | undefined;
|
|
6575
6634
|
accountId?: string | undefined;
|
|
6576
6635
|
includeShared?: boolean | undefined;
|
|
6577
|
-
isExpired?: boolean | undefined;
|
|
6578
6636
|
expired?: boolean | undefined;
|
|
6637
|
+
isExpired?: boolean | undefined;
|
|
6579
6638
|
}, Promise<{
|
|
6580
6639
|
data: {
|
|
6581
6640
|
date: string;
|
|
@@ -6620,6 +6679,7 @@ declare const findFirstConnectionPlugin: MethodPlugin<"findFirstConnection", {
|
|
|
6620
6679
|
account?: string | undefined;
|
|
6621
6680
|
accountId?: string | undefined;
|
|
6622
6681
|
includeShared?: boolean | undefined;
|
|
6682
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
6623
6683
|
isExpired?: boolean | undefined;
|
|
6624
6684
|
expired?: boolean | undefined;
|
|
6625
6685
|
pageSize?: number | undefined;
|
|
@@ -6664,14 +6724,15 @@ declare const findFirstConnectionPlugin: MethodPlugin<"findFirstConnection", {
|
|
|
6664
6724
|
declare const findUniqueConnectionPlugin: MethodPlugin<"findUniqueConnection", {
|
|
6665
6725
|
title?: string | undefined;
|
|
6666
6726
|
search?: string | undefined;
|
|
6727
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
6667
6728
|
appKey?: string | undefined;
|
|
6668
6729
|
app?: string | undefined;
|
|
6669
6730
|
owner?: string | undefined;
|
|
6670
6731
|
account?: string | undefined;
|
|
6671
6732
|
accountId?: string | undefined;
|
|
6672
6733
|
includeShared?: boolean | undefined;
|
|
6673
|
-
isExpired?: boolean | undefined;
|
|
6674
6734
|
expired?: boolean | undefined;
|
|
6735
|
+
isExpired?: boolean | undefined;
|
|
6675
6736
|
}, Promise<{
|
|
6676
6737
|
data: {
|
|
6677
6738
|
date: string;
|
|
@@ -6716,6 +6777,7 @@ declare const findUniqueConnectionPlugin: MethodPlugin<"findUniqueConnection", {
|
|
|
6716
6777
|
account?: string | undefined;
|
|
6717
6778
|
accountId?: string | undefined;
|
|
6718
6779
|
includeShared?: boolean | undefined;
|
|
6780
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
6719
6781
|
isExpired?: boolean | undefined;
|
|
6720
6782
|
expired?: boolean | undefined;
|
|
6721
6783
|
pageSize?: number | undefined;
|
|
@@ -6773,6 +6835,11 @@ declare const ListConnectionsQuerySchema: z.ZodObject<{
|
|
|
6773
6835
|
account: z.ZodOptional<z.ZodString>;
|
|
6774
6836
|
accountId: z.ZodOptional<z.ZodString>;
|
|
6775
6837
|
includeShared: z.ZodOptional<z.ZodBoolean>;
|
|
6838
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
6839
|
+
active: "active";
|
|
6840
|
+
expired: "expired";
|
|
6841
|
+
all: "all";
|
|
6842
|
+
}>>;
|
|
6776
6843
|
isExpired: z.ZodOptional<z.ZodBoolean>;
|
|
6777
6844
|
expired: z.ZodOptional<z.ZodBoolean>;
|
|
6778
6845
|
pageSize: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6804,6 +6871,11 @@ interface GetConnectionSdkFunction {
|
|
|
6804
6871
|
declare const FindFirstConnectionSchema: z.ZodObject<{
|
|
6805
6872
|
title: z.ZodOptional<z.ZodString>;
|
|
6806
6873
|
search: z.ZodOptional<z.ZodString>;
|
|
6874
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
6875
|
+
active: "active";
|
|
6876
|
+
expired: "expired";
|
|
6877
|
+
all: "all";
|
|
6878
|
+
}>>;
|
|
6807
6879
|
appKey: z.ZodOptional<z.ZodString & {
|
|
6808
6880
|
_def: z.core.$ZodStringDef & PositionalMetadata;
|
|
6809
6881
|
}>;
|
|
@@ -6814,8 +6886,8 @@ declare const FindFirstConnectionSchema: z.ZodObject<{
|
|
|
6814
6886
|
account: z.ZodOptional<z.ZodString>;
|
|
6815
6887
|
accountId: z.ZodOptional<z.ZodString>;
|
|
6816
6888
|
includeShared: z.ZodOptional<z.ZodBoolean>;
|
|
6817
|
-
isExpired: z.ZodOptional<z.ZodBoolean>;
|
|
6818
6889
|
expired: z.ZodOptional<z.ZodBoolean>;
|
|
6890
|
+
isExpired: z.ZodOptional<z.ZodBoolean>;
|
|
6819
6891
|
}, z.core.$strip>;
|
|
6820
6892
|
type FindFirstConnectionOptions = z.infer<typeof FindFirstConnectionSchema>;
|
|
6821
6893
|
interface FindFirstConnectionSdkFunction {
|
|
@@ -6827,6 +6899,11 @@ interface FindFirstConnectionSdkFunction {
|
|
|
6827
6899
|
declare const FindUniqueConnectionSchema: z.ZodObject<{
|
|
6828
6900
|
title: z.ZodOptional<z.ZodString>;
|
|
6829
6901
|
search: z.ZodOptional<z.ZodString>;
|
|
6902
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
6903
|
+
active: "active";
|
|
6904
|
+
expired: "expired";
|
|
6905
|
+
all: "all";
|
|
6906
|
+
}>>;
|
|
6830
6907
|
appKey: z.ZodOptional<z.ZodString & {
|
|
6831
6908
|
_def: z.core.$ZodStringDef & PositionalMetadata;
|
|
6832
6909
|
}>;
|
|
@@ -6837,8 +6914,8 @@ declare const FindUniqueConnectionSchema: z.ZodObject<{
|
|
|
6837
6914
|
account: z.ZodOptional<z.ZodString>;
|
|
6838
6915
|
accountId: z.ZodOptional<z.ZodString>;
|
|
6839
6916
|
includeShared: z.ZodOptional<z.ZodBoolean>;
|
|
6840
|
-
isExpired: z.ZodOptional<z.ZodBoolean>;
|
|
6841
6917
|
expired: z.ZodOptional<z.ZodBoolean>;
|
|
6918
|
+
isExpired: z.ZodOptional<z.ZodBoolean>;
|
|
6842
6919
|
}, z.core.$strip>;
|
|
6843
6920
|
type FindUniqueConnectionOptions = z.infer<typeof FindUniqueConnectionSchema>;
|
|
6844
6921
|
interface FindUniqueConnectionSdkFunction {
|
|
@@ -7805,8 +7882,8 @@ declare const TriggerInboxItemSchema: z.ZodObject<{
|
|
|
7805
7882
|
key: z.ZodNullable<z.ZodString>;
|
|
7806
7883
|
name: z.ZodNullable<z.ZodString>;
|
|
7807
7884
|
status: z.ZodUnion<readonly [z.ZodEnum<{
|
|
7808
|
-
initializing: "initializing";
|
|
7809
7885
|
active: "active";
|
|
7886
|
+
initializing: "initializing";
|
|
7810
7887
|
paused: "paused";
|
|
7811
7888
|
deleting: "deleting";
|
|
7812
7889
|
initialization_failure: "initialization_failure";
|
|
@@ -8048,6 +8125,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8048
8125
|
account?: string | undefined;
|
|
8049
8126
|
accountId?: string | undefined;
|
|
8050
8127
|
includeShared?: boolean | undefined;
|
|
8128
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
8051
8129
|
isExpired?: boolean | undefined;
|
|
8052
8130
|
expired?: boolean | undefined;
|
|
8053
8131
|
pageSize?: number | undefined;
|
|
@@ -8130,14 +8208,15 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8130
8208
|
findFirstConnection: (input?: {
|
|
8131
8209
|
title?: string | undefined;
|
|
8132
8210
|
search?: string | undefined;
|
|
8211
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
8133
8212
|
appKey?: string | undefined;
|
|
8134
8213
|
app?: string | undefined;
|
|
8135
8214
|
owner?: string | undefined;
|
|
8136
8215
|
account?: string | undefined;
|
|
8137
8216
|
accountId?: string | undefined;
|
|
8138
8217
|
includeShared?: boolean | undefined;
|
|
8139
|
-
isExpired?: boolean | undefined;
|
|
8140
8218
|
expired?: boolean | undefined;
|
|
8219
|
+
isExpired?: boolean | undefined;
|
|
8141
8220
|
} | undefined) => Promise<{
|
|
8142
8221
|
data: {
|
|
8143
8222
|
date: string;
|
|
@@ -8174,14 +8253,15 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8174
8253
|
findUniqueConnection: (input?: {
|
|
8175
8254
|
title?: string | undefined;
|
|
8176
8255
|
search?: string | undefined;
|
|
8256
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
8177
8257
|
appKey?: string | undefined;
|
|
8178
8258
|
app?: string | undefined;
|
|
8179
8259
|
owner?: string | undefined;
|
|
8180
8260
|
account?: string | undefined;
|
|
8181
8261
|
accountId?: string | undefined;
|
|
8182
8262
|
includeShared?: boolean | undefined;
|
|
8183
|
-
isExpired?: boolean | undefined;
|
|
8184
8263
|
expired?: boolean | undefined;
|
|
8264
|
+
isExpired?: boolean | undefined;
|
|
8185
8265
|
} | undefined) => Promise<{
|
|
8186
8266
|
data: {
|
|
8187
8267
|
date: string;
|
|
@@ -8227,6 +8307,7 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8227
8307
|
account?: string | undefined;
|
|
8228
8308
|
accountId?: string | undefined;
|
|
8229
8309
|
includeShared?: boolean | undefined;
|
|
8310
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
8230
8311
|
isExpired?: boolean | undefined;
|
|
8231
8312
|
expired?: boolean | undefined;
|
|
8232
8313
|
pageSize?: number | undefined;
|
|
@@ -8309,14 +8390,15 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8309
8390
|
findFirstAuthentication: (input?: {
|
|
8310
8391
|
title?: string | undefined;
|
|
8311
8392
|
search?: string | undefined;
|
|
8393
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
8312
8394
|
appKey?: string | undefined;
|
|
8313
8395
|
app?: string | undefined;
|
|
8314
8396
|
owner?: string | undefined;
|
|
8315
8397
|
account?: string | undefined;
|
|
8316
8398
|
accountId?: string | undefined;
|
|
8317
8399
|
includeShared?: boolean | undefined;
|
|
8318
|
-
isExpired?: boolean | undefined;
|
|
8319
8400
|
expired?: boolean | undefined;
|
|
8401
|
+
isExpired?: boolean | undefined;
|
|
8320
8402
|
} | undefined) => Promise<{
|
|
8321
8403
|
data: {
|
|
8322
8404
|
date: string;
|
|
@@ -8353,14 +8435,15 @@ declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOptions): {
|
|
|
8353
8435
|
findUniqueAuthentication: (input?: {
|
|
8354
8436
|
title?: string | undefined;
|
|
8355
8437
|
search?: string | undefined;
|
|
8438
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
8356
8439
|
appKey?: string | undefined;
|
|
8357
8440
|
app?: string | undefined;
|
|
8358
8441
|
owner?: string | undefined;
|
|
8359
8442
|
account?: string | undefined;
|
|
8360
8443
|
accountId?: string | undefined;
|
|
8361
8444
|
includeShared?: boolean | undefined;
|
|
8362
|
-
isExpired?: boolean | undefined;
|
|
8363
8445
|
expired?: boolean | undefined;
|
|
8446
|
+
isExpired?: boolean | undefined;
|
|
8364
8447
|
} | undefined) => Promise<{
|
|
8365
8448
|
data: {
|
|
8366
8449
|
date: string;
|
|
@@ -9659,6 +9742,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9659
9742
|
account?: string | undefined;
|
|
9660
9743
|
accountId?: string | undefined;
|
|
9661
9744
|
includeShared?: boolean | undefined;
|
|
9745
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
9662
9746
|
isExpired?: boolean | undefined;
|
|
9663
9747
|
expired?: boolean | undefined;
|
|
9664
9748
|
pageSize?: number | undefined;
|
|
@@ -9743,14 +9827,15 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9743
9827
|
findFirstConnection: MethodPlugin<"findFirstConnection", {
|
|
9744
9828
|
title?: string | undefined;
|
|
9745
9829
|
search?: string | undefined;
|
|
9830
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
9746
9831
|
appKey?: string | undefined;
|
|
9747
9832
|
app?: string | undefined;
|
|
9748
9833
|
owner?: string | undefined;
|
|
9749
9834
|
account?: string | undefined;
|
|
9750
9835
|
accountId?: string | undefined;
|
|
9751
9836
|
includeShared?: boolean | undefined;
|
|
9752
|
-
isExpired?: boolean | undefined;
|
|
9753
9837
|
expired?: boolean | undefined;
|
|
9838
|
+
isExpired?: boolean | undefined;
|
|
9754
9839
|
}, Promise<{
|
|
9755
9840
|
data: {
|
|
9756
9841
|
date: string;
|
|
@@ -9795,6 +9880,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9795
9880
|
account?: string | undefined;
|
|
9796
9881
|
accountId?: string | undefined;
|
|
9797
9882
|
includeShared?: boolean | undefined;
|
|
9883
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
9798
9884
|
isExpired?: boolean | undefined;
|
|
9799
9885
|
expired?: boolean | undefined;
|
|
9800
9886
|
pageSize?: number | undefined;
|
|
@@ -9839,14 +9925,15 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9839
9925
|
findUniqueConnection: MethodPlugin<"findUniqueConnection", {
|
|
9840
9926
|
title?: string | undefined;
|
|
9841
9927
|
search?: string | undefined;
|
|
9928
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
9842
9929
|
appKey?: string | undefined;
|
|
9843
9930
|
app?: string | undefined;
|
|
9844
9931
|
owner?: string | undefined;
|
|
9845
9932
|
account?: string | undefined;
|
|
9846
9933
|
accountId?: string | undefined;
|
|
9847
9934
|
includeShared?: boolean | undefined;
|
|
9848
|
-
isExpired?: boolean | undefined;
|
|
9849
9935
|
expired?: boolean | undefined;
|
|
9936
|
+
isExpired?: boolean | undefined;
|
|
9850
9937
|
}, Promise<{
|
|
9851
9938
|
data: {
|
|
9852
9939
|
date: string;
|
|
@@ -9891,6 +9978,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9891
9978
|
account?: string | undefined;
|
|
9892
9979
|
accountId?: string | undefined;
|
|
9893
9980
|
includeShared?: boolean | undefined;
|
|
9981
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
9894
9982
|
isExpired?: boolean | undefined;
|
|
9895
9983
|
expired?: boolean | undefined;
|
|
9896
9984
|
pageSize?: number | undefined;
|
|
@@ -9944,6 +10032,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9944
10032
|
account?: string | undefined;
|
|
9945
10033
|
accountId?: string | undefined;
|
|
9946
10034
|
includeShared?: boolean | undefined;
|
|
10035
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
9947
10036
|
isExpired?: boolean | undefined;
|
|
9948
10037
|
expired?: boolean | undefined;
|
|
9949
10038
|
pageSize?: number | undefined;
|
|
@@ -9995,6 +10084,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
9995
10084
|
account?: string | undefined;
|
|
9996
10085
|
accountId?: string | undefined;
|
|
9997
10086
|
includeShared?: boolean | undefined;
|
|
10087
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
9998
10088
|
isExpired?: boolean | undefined;
|
|
9999
10089
|
expired?: boolean | undefined;
|
|
10000
10090
|
pageSize?: number | undefined;
|
|
@@ -10117,14 +10207,15 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10117
10207
|
findFirstAuthentication: MethodPlugin<"findFirstAuthentication", {
|
|
10118
10208
|
title?: string | undefined;
|
|
10119
10209
|
search?: string | undefined;
|
|
10210
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
10120
10211
|
appKey?: string | undefined;
|
|
10121
10212
|
app?: string | undefined;
|
|
10122
10213
|
owner?: string | undefined;
|
|
10123
10214
|
account?: string | undefined;
|
|
10124
10215
|
accountId?: string | undefined;
|
|
10125
10216
|
includeShared?: boolean | undefined;
|
|
10126
|
-
isExpired?: boolean | undefined;
|
|
10127
10217
|
expired?: boolean | undefined;
|
|
10218
|
+
isExpired?: boolean | undefined;
|
|
10128
10219
|
}, Promise<{
|
|
10129
10220
|
data: {
|
|
10130
10221
|
date: string;
|
|
@@ -10160,14 +10251,15 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10160
10251
|
}>, readonly []> & LeafSummary<"", "findFirstAuthentication", readonly [MethodPlugin<"findFirstConnection", {
|
|
10161
10252
|
title?: string | undefined;
|
|
10162
10253
|
search?: string | undefined;
|
|
10254
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
10163
10255
|
appKey?: string | undefined;
|
|
10164
10256
|
app?: string | undefined;
|
|
10165
10257
|
owner?: string | undefined;
|
|
10166
10258
|
account?: string | undefined;
|
|
10167
10259
|
accountId?: string | undefined;
|
|
10168
10260
|
includeShared?: boolean | undefined;
|
|
10169
|
-
isExpired?: boolean | undefined;
|
|
10170
10261
|
expired?: boolean | undefined;
|
|
10262
|
+
isExpired?: boolean | undefined;
|
|
10171
10263
|
}, Promise<{
|
|
10172
10264
|
data: {
|
|
10173
10265
|
date: string;
|
|
@@ -10212,6 +10304,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10212
10304
|
account?: string | undefined;
|
|
10213
10305
|
accountId?: string | undefined;
|
|
10214
10306
|
includeShared?: boolean | undefined;
|
|
10307
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
10215
10308
|
isExpired?: boolean | undefined;
|
|
10216
10309
|
expired?: boolean | undefined;
|
|
10217
10310
|
pageSize?: number | undefined;
|
|
@@ -10256,14 +10349,15 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10256
10349
|
findUniqueAuthentication: MethodPlugin<"findUniqueAuthentication", {
|
|
10257
10350
|
title?: string | undefined;
|
|
10258
10351
|
search?: string | undefined;
|
|
10352
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
10259
10353
|
appKey?: string | undefined;
|
|
10260
10354
|
app?: string | undefined;
|
|
10261
10355
|
owner?: string | undefined;
|
|
10262
10356
|
account?: string | undefined;
|
|
10263
10357
|
accountId?: string | undefined;
|
|
10264
10358
|
includeShared?: boolean | undefined;
|
|
10265
|
-
isExpired?: boolean | undefined;
|
|
10266
10359
|
expired?: boolean | undefined;
|
|
10360
|
+
isExpired?: boolean | undefined;
|
|
10267
10361
|
}, Promise<{
|
|
10268
10362
|
data: {
|
|
10269
10363
|
date: string;
|
|
@@ -10299,14 +10393,15 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10299
10393
|
}>, readonly []> & LeafSummary<"", "findUniqueAuthentication", readonly [MethodPlugin<"findUniqueConnection", {
|
|
10300
10394
|
title?: string | undefined;
|
|
10301
10395
|
search?: string | undefined;
|
|
10396
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
10302
10397
|
appKey?: string | undefined;
|
|
10303
10398
|
app?: string | undefined;
|
|
10304
10399
|
owner?: string | undefined;
|
|
10305
10400
|
account?: string | undefined;
|
|
10306
10401
|
accountId?: string | undefined;
|
|
10307
10402
|
includeShared?: boolean | undefined;
|
|
10308
|
-
isExpired?: boolean | undefined;
|
|
10309
10403
|
expired?: boolean | undefined;
|
|
10404
|
+
isExpired?: boolean | undefined;
|
|
10310
10405
|
}, Promise<{
|
|
10311
10406
|
data: {
|
|
10312
10407
|
date: string;
|
|
@@ -10351,6 +10446,7 @@ declare const zapierSdkPlugin: AggregatePlugin<"sdk", {
|
|
|
10351
10446
|
account?: string | undefined;
|
|
10352
10447
|
accountId?: string | undefined;
|
|
10353
10448
|
includeShared?: boolean | undefined;
|
|
10449
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
10354
10450
|
isExpired?: boolean | undefined;
|
|
10355
10451
|
expired?: boolean | undefined;
|
|
10356
10452
|
pageSize?: number | undefined;
|
|
@@ -12498,6 +12594,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12498
12594
|
account?: string | undefined;
|
|
12499
12595
|
accountId?: string | undefined;
|
|
12500
12596
|
includeShared?: boolean | undefined;
|
|
12597
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
12501
12598
|
isExpired?: boolean | undefined;
|
|
12502
12599
|
expired?: boolean | undefined;
|
|
12503
12600
|
pageSize?: number | undefined;
|
|
@@ -12580,14 +12677,15 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12580
12677
|
findFirstConnection: (input?: {
|
|
12581
12678
|
title?: string | undefined;
|
|
12582
12679
|
search?: string | undefined;
|
|
12680
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
12583
12681
|
appKey?: string | undefined;
|
|
12584
12682
|
app?: string | undefined;
|
|
12585
12683
|
owner?: string | undefined;
|
|
12586
12684
|
account?: string | undefined;
|
|
12587
12685
|
accountId?: string | undefined;
|
|
12588
12686
|
includeShared?: boolean | undefined;
|
|
12589
|
-
isExpired?: boolean | undefined;
|
|
12590
12687
|
expired?: boolean | undefined;
|
|
12688
|
+
isExpired?: boolean | undefined;
|
|
12591
12689
|
} | undefined) => Promise<{
|
|
12592
12690
|
data: {
|
|
12593
12691
|
date: string;
|
|
@@ -12624,14 +12722,15 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12624
12722
|
findUniqueConnection: (input?: {
|
|
12625
12723
|
title?: string | undefined;
|
|
12626
12724
|
search?: string | undefined;
|
|
12725
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
12627
12726
|
appKey?: string | undefined;
|
|
12628
12727
|
app?: string | undefined;
|
|
12629
12728
|
owner?: string | undefined;
|
|
12630
12729
|
account?: string | undefined;
|
|
12631
12730
|
accountId?: string | undefined;
|
|
12632
12731
|
includeShared?: boolean | undefined;
|
|
12633
|
-
isExpired?: boolean | undefined;
|
|
12634
12732
|
expired?: boolean | undefined;
|
|
12733
|
+
isExpired?: boolean | undefined;
|
|
12635
12734
|
} | undefined) => Promise<{
|
|
12636
12735
|
data: {
|
|
12637
12736
|
date: string;
|
|
@@ -12677,6 +12776,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12677
12776
|
account?: string | undefined;
|
|
12678
12777
|
accountId?: string | undefined;
|
|
12679
12778
|
includeShared?: boolean | undefined;
|
|
12779
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
12680
12780
|
isExpired?: boolean | undefined;
|
|
12681
12781
|
expired?: boolean | undefined;
|
|
12682
12782
|
pageSize?: number | undefined;
|
|
@@ -12759,14 +12859,15 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12759
12859
|
findFirstAuthentication: (input?: {
|
|
12760
12860
|
title?: string | undefined;
|
|
12761
12861
|
search?: string | undefined;
|
|
12862
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
12762
12863
|
appKey?: string | undefined;
|
|
12763
12864
|
app?: string | undefined;
|
|
12764
12865
|
owner?: string | undefined;
|
|
12765
12866
|
account?: string | undefined;
|
|
12766
12867
|
accountId?: string | undefined;
|
|
12767
12868
|
includeShared?: boolean | undefined;
|
|
12768
|
-
isExpired?: boolean | undefined;
|
|
12769
12869
|
expired?: boolean | undefined;
|
|
12870
|
+
isExpired?: boolean | undefined;
|
|
12770
12871
|
} | undefined) => Promise<{
|
|
12771
12872
|
data: {
|
|
12772
12873
|
date: string;
|
|
@@ -12803,14 +12904,15 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
12803
12904
|
findUniqueAuthentication: (input?: {
|
|
12804
12905
|
title?: string | undefined;
|
|
12805
12906
|
search?: string | undefined;
|
|
12907
|
+
status?: "active" | "expired" | "all" | undefined;
|
|
12806
12908
|
appKey?: string | undefined;
|
|
12807
12909
|
app?: string | undefined;
|
|
12808
12910
|
owner?: string | undefined;
|
|
12809
12911
|
account?: string | undefined;
|
|
12810
12912
|
accountId?: string | undefined;
|
|
12811
12913
|
includeShared?: boolean | undefined;
|
|
12812
|
-
isExpired?: boolean | undefined;
|
|
12813
12914
|
expired?: boolean | undefined;
|
|
12915
|
+
isExpired?: boolean | undefined;
|
|
12814
12916
|
} | undefined) => Promise<{
|
|
12815
12917
|
data: {
|
|
12816
12918
|
date: string;
|