diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index 17607903..4a65b384 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -36106,6 +36106,27 @@ export default { type: 'string', }, }, + { + in: 'query', + name: 'limit', + schema: { + default: 500, + description: + 'Numerical limit on the number of unmanaged access grants to return.', + format: 'float', + type: 'number', + }, + }, + { + in: 'query', + name: 'page_cursor', + schema: { + description: + "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.", + nullable: true, + type: 'string', + }, + }, ], responses: { 200: { @@ -36687,8 +36708,9 @@ export default { type: 'array', }, ok: { type: 'boolean' }, + pagination: { $ref: '#/components/schemas/pagination' }, }, - required: ['access_grants', 'ok'], + required: ['access_grants', 'pagination', 'ok'], type: 'object', }, }, @@ -36733,6 +36755,19 @@ export default { format: 'uuid', type: 'string', }, + limit: { + default: 500, + description: + 'Numerical limit on the number of unmanaged access grants to return.', + format: 'float', + type: 'number', + }, + page_cursor: { + description: + "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.", + nullable: true, + type: 'string', + }, reservation_key: { description: 'Filter unmanaged Access Grants by reservation_key.', @@ -37330,8 +37365,9 @@ export default { type: 'array', }, ok: { type: 'boolean' }, + pagination: { $ref: '#/components/schemas/pagination' }, }, - required: ['access_grants', 'ok'], + required: ['access_grants', 'pagination', 'ok'], type: 'object', }, }, diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index c573b227..5337a2c9 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -14984,6 +14984,10 @@ export type Routes = { acs_entrance_id?: string | undefined /** Filter unmanaged Access Grants by reservation_key. */ reservation_key?: string | undefined + /** Numerical limit on the number of unmanaged access grants to return. */ + limit?: number + /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */ + page_cursor?: (string | undefined) | null } formData: {} jsonResponse: { @@ -15146,6 +15150,15 @@ export type Routes = { /** ID of user identity to which the Access Grant gives access. */ user_identity_id?: string | undefined }[] + /** Information about the current page of results. */ + pagination: { + /** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */ + next_page_cursor: string | null + /** Indicates whether there is another page of results after this one. */ + has_next_page: boolean + /** URL to get the next page of results. */ + next_page_url: string | null + } } maxDuration: undefined }