Skip to content

Commit aa0cb3b

Browse files
authored
feat: Sync with Seam API via 219719d6095b1ae42d5bad2b3c1ab033b4e30ade (#2613)
1 parent 04b9f46 commit aa0cb3b

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

src/lib/seam/connect/openapi.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66299,6 +66299,16 @@ export default {
6629966299
'Returns a list of all [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).',
6630066300
operationId: 'userIdentitiesListGet',
6630166301
parameters: [
66302+
{
66303+
in: 'query',
66304+
name: 'user_identity_ids',
66305+
schema: {
66306+
description:
66307+
'Array of user identity IDs by which to filter the list of user identities.',
66308+
items: { format: 'uuid', type: 'string' },
66309+
type: 'array',
66310+
},
66311+
},
6630266312
{
6630366313
in: 'query',
6630466314
name: 'search',
@@ -66427,6 +66437,12 @@ export default {
6642766437
'String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.',
6642866438
type: 'string',
6642966439
},
66440+
user_identity_ids: {
66441+
description:
66442+
'Array of user identity IDs by which to filter the list of user identities.',
66443+
items: { format: 'uuid', type: 'string' },
66444+
type: 'array',
66445+
},
6643066446
},
6643166447
type: 'object',
6643266448
},

src/lib/seam/connect/route-types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89537,6 +89537,8 @@ export type Routes = {
8953789537
queryParams: {}
8953889538
jsonBody: {}
8953989539
commonParams: {
89540+
/** Array of user identity IDs by which to filter the list of user identities. */
89541+
user_identity_ids?: string[] | undefined
8954089542
/** String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`. */
8954189543
search?: string | undefined
8954289544
/** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */

0 commit comments

Comments
 (0)