Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot committed Feb 24, 2025
1 parent c99a869 commit d01e291
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
13 changes: 12 additions & 1 deletion src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18758,6 +18758,7 @@ export default {
search: {
description:
'String to partial match between full_name, phone_number and email_address.',
minLength: 1,
type: 'string',
},
user_identity_email_address: {
Expand Down Expand Up @@ -18808,8 +18809,18 @@ export default {
nullable: true,
type: 'string',
},
next_page_url: {
description: 'URL to get the next page of results.',
format: 'uri',
nullable: true,
type: 'string',
},
},
required: ['next_page_cursor', 'has_next_page'],
required: [
'next_page_cursor',
'has_next_page',
'next_page_url',
],
type: 'object',
},
},
Expand Down
6 changes: 4 additions & 2 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12494,10 +12494,10 @@ 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
/** String to partial match between full_name, phone_number and email_address. */
search?: 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) | null
Expand Down Expand Up @@ -12630,6 +12630,8 @@ export interface Routes {
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
}
}
}
Expand Down

0 comments on commit d01e291

Please sign in to comment.