Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot committed Feb 13, 2025
1 parent 8c8135e commit c09307e
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 2 deletions.
38 changes: 36 additions & 2 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.',
Expand Down Expand Up @@ -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',
},
},
Expand Down Expand Up @@ -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',
Expand Down
11 changes: 11 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down Expand Up @@ -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': {
Expand Down Expand Up @@ -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: {
Expand Down

0 comments on commit c09307e

Please sign in to comment.