@seamapi/types 1.414.2 → 1.415.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 +8 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +19 -0
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +7 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +11 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -1
- package/src/lib/seam/connect/route-types.ts +11 -0
|
@@ -19282,6 +19282,8 @@ export interface Routes {
|
|
|
19282
19282
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
19283
19283
|
/** Maximum number of records to return per page. */
|
|
19284
19284
|
limit?: number;
|
|
19285
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
19286
|
+
page_cursor?: (string | undefined) | null;
|
|
19285
19287
|
};
|
|
19286
19288
|
formData: {};
|
|
19287
19289
|
jsonResponse: {
|
|
@@ -19328,6 +19330,15 @@ export interface Routes {
|
|
|
19328
19330
|
/** Selected provider of the Connect Webview, one of the [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
19329
19331
|
selected_provider: string | null;
|
|
19330
19332
|
}>;
|
|
19333
|
+
/** Information about the current page of results. */
|
|
19334
|
+
pagination: {
|
|
19335
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
19336
|
+
next_page_cursor: string | null;
|
|
19337
|
+
/** Indicates whether there is another page of results after this one. */
|
|
19338
|
+
has_next_page: boolean;
|
|
19339
|
+
/** URL to get the next page of results. */
|
|
19340
|
+
next_page_url: string | null;
|
|
19341
|
+
};
|
|
19331
19342
|
};
|
|
19332
19343
|
};
|
|
19333
19344
|
'/connected_accounts/delete': {
|
package/package.json
CHANGED
|
@@ -29200,6 +29200,12 @@ export default {
|
|
|
29200
29200
|
format: 'float',
|
|
29201
29201
|
type: 'number',
|
|
29202
29202
|
},
|
|
29203
|
+
page_cursor: {
|
|
29204
|
+
description:
|
|
29205
|
+
"Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
29206
|
+
nullable: true,
|
|
29207
|
+
type: 'string',
|
|
29208
|
+
},
|
|
29203
29209
|
user_identifier_key: {
|
|
29204
29210
|
description:
|
|
29205
29211
|
'Your user ID for the user by which you want to filter Connect Webviews.',
|
|
@@ -29222,8 +29228,9 @@ export default {
|
|
|
29222
29228
|
type: 'array',
|
|
29223
29229
|
},
|
|
29224
29230
|
ok: { type: 'boolean' },
|
|
29231
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
29225
29232
|
},
|
|
29226
|
-
required: ['connect_webviews', 'ok'],
|
|
29233
|
+
required: ['connect_webviews', 'pagination', 'ok'],
|
|
29227
29234
|
type: 'object',
|
|
29228
29235
|
},
|
|
29229
29236
|
},
|
|
@@ -22342,6 +22342,8 @@ export interface Routes {
|
|
|
22342
22342
|
custom_metadata_has?: Record<string, string | boolean> | undefined
|
|
22343
22343
|
/** Maximum number of records to return per page. */
|
|
22344
22344
|
limit?: number
|
|
22345
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
22346
|
+
page_cursor?: (string | undefined) | null
|
|
22345
22347
|
}
|
|
22346
22348
|
formData: {}
|
|
22347
22349
|
jsonResponse: {
|
|
@@ -22390,6 +22392,15 @@ export interface Routes {
|
|
|
22390
22392
|
/** Selected provider of the Connect Webview, one of the [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). */
|
|
22391
22393
|
selected_provider: string | null
|
|
22392
22394
|
}>
|
|
22395
|
+
/** Information about the current page of results. */
|
|
22396
|
+
pagination: {
|
|
22397
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
22398
|
+
next_page_cursor: string | null
|
|
22399
|
+
/** Indicates whether there is another page of results after this one. */
|
|
22400
|
+
has_next_page: boolean
|
|
22401
|
+
/** URL to get the next page of results. */
|
|
22402
|
+
next_page_url: string | null
|
|
22403
|
+
}
|
|
22393
22404
|
}
|
|
22394
22405
|
}
|
|
22395
22406
|
'/connected_accounts/delete': {
|