Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50170,6 +50170,16 @@ export default {
type: 'string',
},
},
{
in: 'query',
name: 'space_id',
schema: {
description:
'ID of the space by which you want to filter connected accounts.',
format: 'uuid',
type: 'string',
},
},
{
in: 'query',
name: 'search',
Expand Down Expand Up @@ -50281,6 +50291,12 @@ export default {
minLength: 1,
type: 'string',
},
space_id: {
description:
'ID of the space by which you want to filter connected accounts.',
format: 'uuid',
type: 'string',
},
user_identifier_key: {
description:
'Your user ID for the user by which you want to filter connected accounts.',
Expand Down
2 changes: 2 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36138,6 +36138,8 @@ export type Routes = {
| undefined
/** Customer key by which you want to filter connected accounts. */
customer_key?: string | undefined
/** ID of the space by which you want to filter connected accounts. */
space_id?: string | undefined
/** String for which to search. Filters returned connected accounts to include all records that satisfy a partial match using `connected_account_id`, `account_type`, `customer_key`, `custom_metadata`, `user_identifier.username`, `user_identifier.email` or `user_identifier.phone`. */
search?: string | undefined
/** Maximum number of records to return per page. */
Expand Down
Loading