@seamapi/types 1.718.0 → 1.719.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +14 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +30 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +28 -0
- package/lib/seam/connect/openapi.js +14 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +16 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -75122,6 +75122,8 @@ export type Routes = {
|
|
|
75122
75122
|
queryParams: {};
|
|
75123
75123
|
jsonBody: {};
|
|
75124
75124
|
commonParams: {
|
|
75125
|
+
/** Array of user identity IDs by which to filter the list of user identities. */
|
|
75126
|
+
user_identity_ids?: string[] | undefined;
|
|
75125
75127
|
/** 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`. */
|
|
75126
75128
|
search?: string | undefined;
|
|
75127
75129
|
/** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */
|
package/package.json
CHANGED
|
@@ -66299,6 +66299,16 @@ export default {
|
|
|
66299
66299
|
'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).',
|
|
66300
66300
|
operationId: 'userIdentitiesListGet',
|
|
66301
66301
|
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
|
+
},
|
|
66302
66312
|
{
|
|
66303
66313
|
in: 'query',
|
|
66304
66314
|
name: 'search',
|
|
@@ -66427,6 +66437,12 @@ export default {
|
|
|
66427
66437
|
'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`.',
|
|
66428
66438
|
type: 'string',
|
|
66429
66439
|
},
|
|
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
|
+
},
|
|
66430
66446
|
},
|
|
66431
66447
|
type: 'object',
|
|
66432
66448
|
},
|
|
@@ -89537,6 +89537,8 @@ export type Routes = {
|
|
|
89537
89537
|
queryParams: {}
|
|
89538
89538
|
jsonBody: {}
|
|
89539
89539
|
commonParams: {
|
|
89540
|
+
/** Array of user identity IDs by which to filter the list of user identities. */
|
|
89541
|
+
user_identity_ids?: string[] | undefined
|
|
89540
89542
|
/** 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`. */
|
|
89541
89543
|
search?: string | undefined
|
|
89542
89544
|
/** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */
|