@seamapi/types 1.370.3 → 1.371.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/dist/connect.cjs +15 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +28 -0
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +14 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +13 -0
- package/package.json +2 -2
- package/src/lib/seam/connect/openapi.ts +16 -1
- package/src/lib/seam/connect/route-types.ts +13 -0
package/dist/connect.d.cts
CHANGED
|
@@ -36601,6 +36601,18 @@ declare const _default: {
|
|
|
36601
36601
|
description: string;
|
|
36602
36602
|
type: string;
|
|
36603
36603
|
};
|
|
36604
|
+
limit: {
|
|
36605
|
+
default: number;
|
|
36606
|
+
description: string;
|
|
36607
|
+
exclusiveMinimum: boolean;
|
|
36608
|
+
minimum: number;
|
|
36609
|
+
type: string;
|
|
36610
|
+
};
|
|
36611
|
+
page_cursor: {
|
|
36612
|
+
description: string;
|
|
36613
|
+
nullable: boolean;
|
|
36614
|
+
type: string;
|
|
36615
|
+
};
|
|
36604
36616
|
user_identifier_key: {
|
|
36605
36617
|
description: string;
|
|
36606
36618
|
type: string;
|
|
@@ -36626,6 +36638,9 @@ declare const _default: {
|
|
|
36626
36638
|
ok: {
|
|
36627
36639
|
type: string;
|
|
36628
36640
|
};
|
|
36641
|
+
pagination: {
|
|
36642
|
+
$ref: string;
|
|
36643
|
+
};
|
|
36629
36644
|
};
|
|
36630
36645
|
required: string[];
|
|
36631
36646
|
type: string;
|
|
@@ -61890,6 +61905,10 @@ interface Routes {
|
|
|
61890
61905
|
user_identifier_key?: string | undefined;
|
|
61891
61906
|
/** Returns accounts whose custom_metadata contains all of the provided key/value pairs. */
|
|
61892
61907
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
61908
|
+
/** Maximum number of records to return per page. */
|
|
61909
|
+
limit?: number;
|
|
61910
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
61911
|
+
page_cursor?: (string | undefined) | null;
|
|
61893
61912
|
};
|
|
61894
61913
|
formData: {};
|
|
61895
61914
|
jsonResponse: {
|
|
@@ -61965,6 +61984,15 @@ interface Routes {
|
|
|
61965
61984
|
custom_metadata: Record<string, string | boolean>;
|
|
61966
61985
|
automatically_manage_new_devices: boolean;
|
|
61967
61986
|
}>;
|
|
61987
|
+
/** Information about the current page of results. */
|
|
61988
|
+
pagination: {
|
|
61989
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
61990
|
+
next_page_cursor: string | null;
|
|
61991
|
+
/** Indicates whether there is another page of results after this one. */
|
|
61992
|
+
has_next_page: boolean;
|
|
61993
|
+
/** URL to get the next page of results. */
|
|
61994
|
+
next_page_url: string | null;
|
|
61995
|
+
};
|
|
61968
61996
|
};
|
|
61969
61997
|
};
|
|
61970
61998
|
'/connected_accounts/update': {
|
|
@@ -17291,6 +17291,18 @@ declare const _default: {
|
|
|
17291
17291
|
description: string;
|
|
17292
17292
|
type: string;
|
|
17293
17293
|
};
|
|
17294
|
+
limit: {
|
|
17295
|
+
default: number;
|
|
17296
|
+
description: string;
|
|
17297
|
+
exclusiveMinimum: boolean;
|
|
17298
|
+
minimum: number;
|
|
17299
|
+
type: string;
|
|
17300
|
+
};
|
|
17301
|
+
page_cursor: {
|
|
17302
|
+
description: string;
|
|
17303
|
+
nullable: boolean;
|
|
17304
|
+
type: string;
|
|
17305
|
+
};
|
|
17294
17306
|
user_identifier_key: {
|
|
17295
17307
|
description: string;
|
|
17296
17308
|
type: string;
|
|
@@ -17316,6 +17328,9 @@ declare const _default: {
|
|
|
17316
17328
|
ok: {
|
|
17317
17329
|
type: string;
|
|
17318
17330
|
};
|
|
17331
|
+
pagination: {
|
|
17332
|
+
$ref: string;
|
|
17333
|
+
};
|
|
17319
17334
|
};
|
|
17320
17335
|
required: string[];
|
|
17321
17336
|
type: string;
|
|
@@ -20862,6 +20862,18 @@ export default {
|
|
|
20862
20862
|
description: 'Returns accounts whose custom_metadata contains all of the provided key/value pairs.',
|
|
20863
20863
|
type: 'object',
|
|
20864
20864
|
},
|
|
20865
|
+
limit: {
|
|
20866
|
+
default: 11000,
|
|
20867
|
+
description: 'Maximum number of records to return per page.',
|
|
20868
|
+
exclusiveMinimum: true,
|
|
20869
|
+
minimum: 0,
|
|
20870
|
+
type: 'integer',
|
|
20871
|
+
},
|
|
20872
|
+
page_cursor: {
|
|
20873
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
20874
|
+
nullable: true,
|
|
20875
|
+
type: 'string',
|
|
20876
|
+
},
|
|
20865
20877
|
user_identifier_key: {
|
|
20866
20878
|
description: 'Returns accounts that can be accessed by the provided user_identifier_key.',
|
|
20867
20879
|
type: 'string',
|
|
@@ -20883,8 +20895,9 @@ export default {
|
|
|
20883
20895
|
type: 'array',
|
|
20884
20896
|
},
|
|
20885
20897
|
ok: { type: 'boolean' },
|
|
20898
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
20886
20899
|
},
|
|
20887
|
-
required: ['connected_accounts', 'ok'],
|
|
20900
|
+
required: ['connected_accounts', 'pagination', 'ok'],
|
|
20888
20901
|
type: 'object',
|
|
20889
20902
|
},
|
|
20890
20903
|
},
|