diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index 8c344492..d3b5e739 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -18705,7 +18705,18 @@ export default { type: 'string', }, created_before: { format: 'date-time', type: 'string' }, - limit: { default: 500, format: 'float', type: 'number' }, + limit: { + default: 500, + description: + 'Maximum number of records to return per page.', + format: 'float', + type: 'number', + }, + page_cursor: { + description: + "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.", + type: 'string', + }, user_identity_email_address: { description: 'Email address of the user identity for which you want to retrieve all `acs_user`s.', @@ -18739,8 +18750,27 @@ export default { type: 'array', }, ok: { type: 'boolean' }, + pagination: { + description: + 'Information about the current page of results.', + properties: { + has_next_page: { + description: + 'Indicates whether there is another page of results after this one.', + type: 'boolean', + }, + next_page_cursor: { + description: + 'Opaque value that can be used to select the next page of results via the `page_cursor` parameter.', + nullable: true, + type: 'string', + }, + }, + required: ['next_page_cursor', 'has_next_page'], + type: 'object', + }, }, - required: ['acs_users', 'ok'], + required: ['acs_users', 'pagination', 'ok'], type: 'object', }, }, @@ -21753,6 +21783,10 @@ export default { items: { format: 'uuid', type: 'string' }, type: 'array', }, + event_ids: { + items: { format: 'uuid', type: 'string' }, + type: 'array', + }, event_type: { enum: [ 'access_code.created', diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index 16f76313..4ae1ecbf 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -12449,8 +12449,11 @@ export interface Routes { user_identity_email_address?: string | undefined /** ID of the `acs_system` for which you want to retrieve all `acs_user`s. */ acs_system_id?: string | undefined + /** Maximum number of records to return per page. */ limit?: number created_before?: Date | undefined + /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */ + page_cursor?: string | undefined } formData: {} jsonResponse: { @@ -12574,6 +12577,13 @@ export interface Routes { phone_number?: string | undefined is_managed: true }> + /** 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 + } } } '/acs/users/list_accessible_entrances': { @@ -20046,6 +20056,7 @@ export interface Routes { connected_account_id?: string | undefined connect_webview_id?: string | undefined limit?: number + event_ids?: string[] | undefined } formData: {} jsonResponse: {