@seamapi/types 1.718.0 → 1.720.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.
@@ -56548,10 +56548,12 @@ export type Routes = {
56548
56548
  device_id: string;
56549
56549
  device_type: string;
56550
56550
  name: string;
56551
+ connected_account_id: string;
56551
56552
  }[];
56552
56553
  acs_entrances: {
56553
56554
  acs_entrance_id: string;
56554
56555
  name: string;
56556
+ connected_account_id: string;
56555
56557
  }[];
56556
56558
  needs_review?: boolean | undefined;
56557
56559
  is_draft?: boolean | undefined;
@@ -75122,6 +75124,8 @@ export type Routes = {
75122
75124
  queryParams: {};
75123
75125
  jsonBody: {};
75124
75126
  commonParams: {
75127
+ /** Array of user identity IDs by which to filter the list of user identities. */
75128
+ user_identity_ids?: string[] | undefined;
75125
75129
  /** 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
75130
  search?: string | undefined;
75127
75131
  /** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.718.0",
3
+ "version": "1.720.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -59233,9 +59233,17 @@ export default {
59233
59233
  format: 'uuid',
59234
59234
  type: 'string',
59235
59235
  },
59236
+ connected_account_id: {
59237
+ format: 'uuid',
59238
+ type: 'string',
59239
+ },
59236
59240
  name: { type: 'string' },
59237
59241
  },
59238
- required: ['acs_entrance_id', 'name'],
59242
+ required: [
59243
+ 'acs_entrance_id',
59244
+ 'name',
59245
+ 'connected_account_id',
59246
+ ],
59239
59247
  type: 'object',
59240
59248
  },
59241
59249
  type: 'array',
@@ -59243,11 +59251,20 @@ export default {
59243
59251
  devices: {
59244
59252
  items: {
59245
59253
  properties: {
59254
+ connected_account_id: {
59255
+ format: 'uuid',
59256
+ type: 'string',
59257
+ },
59246
59258
  device_id: { format: 'uuid', type: 'string' },
59247
59259
  device_type: { type: 'string' },
59248
59260
  name: { type: 'string' },
59249
59261
  },
59250
- required: ['device_id', 'device_type', 'name'],
59262
+ required: [
59263
+ 'device_id',
59264
+ 'device_type',
59265
+ 'name',
59266
+ 'connected_account_id',
59267
+ ],
59251
59268
  type: 'object',
59252
59269
  },
59253
59270
  type: 'array',
@@ -59332,9 +59349,17 @@ export default {
59332
59349
  format: 'uuid',
59333
59350
  type: 'string',
59334
59351
  },
59352
+ connected_account_id: {
59353
+ format: 'uuid',
59354
+ type: 'string',
59355
+ },
59335
59356
  name: { type: 'string' },
59336
59357
  },
59337
- required: ['acs_entrance_id', 'name'],
59358
+ required: [
59359
+ 'acs_entrance_id',
59360
+ 'name',
59361
+ 'connected_account_id',
59362
+ ],
59338
59363
  type: 'object',
59339
59364
  },
59340
59365
  type: 'array',
@@ -59342,11 +59367,20 @@ export default {
59342
59367
  devices: {
59343
59368
  items: {
59344
59369
  properties: {
59370
+ connected_account_id: {
59371
+ format: 'uuid',
59372
+ type: 'string',
59373
+ },
59345
59374
  device_id: { format: 'uuid', type: 'string' },
59346
59375
  device_type: { type: 'string' },
59347
59376
  name: { type: 'string' },
59348
59377
  },
59349
- required: ['device_id', 'device_type', 'name'],
59378
+ required: [
59379
+ 'device_id',
59380
+ 'device_type',
59381
+ 'name',
59382
+ 'connected_account_id',
59383
+ ],
59350
59384
  type: 'object',
59351
59385
  },
59352
59386
  type: 'array',
@@ -66299,6 +66333,16 @@ export default {
66299
66333
  '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
66334
  operationId: 'userIdentitiesListGet',
66301
66335
  parameters: [
66336
+ {
66337
+ in: 'query',
66338
+ name: 'user_identity_ids',
66339
+ schema: {
66340
+ description:
66341
+ 'Array of user identity IDs by which to filter the list of user identities.',
66342
+ items: { format: 'uuid', type: 'string' },
66343
+ type: 'array',
66344
+ },
66345
+ },
66302
66346
  {
66303
66347
  in: 'query',
66304
66348
  name: 'search',
@@ -66427,6 +66471,12 @@ export default {
66427
66471
  '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
66472
  type: 'string',
66429
66473
  },
66474
+ user_identity_ids: {
66475
+ description:
66476
+ 'Array of user identity IDs by which to filter the list of user identities.',
66477
+ items: { format: 'uuid', type: 'string' },
66478
+ type: 'array',
66479
+ },
66430
66480
  },
66431
66481
  type: 'object',
66432
66482
  },
@@ -67659,10 +67659,12 @@ export type Routes = {
67659
67659
  device_id: string
67660
67660
  device_type: string
67661
67661
  name: string
67662
+ connected_account_id: string
67662
67663
  }[]
67663
67664
  acs_entrances: {
67664
67665
  acs_entrance_id: string
67665
67666
  name: string
67667
+ connected_account_id: string
67666
67668
  }[]
67667
67669
  needs_review?: boolean | undefined
67668
67670
  is_draft?: boolean | undefined
@@ -89537,6 +89539,8 @@ export type Routes = {
89537
89539
  queryParams: {}
89538
89540
  jsonBody: {}
89539
89541
  commonParams: {
89542
+ /** Array of user identity IDs by which to filter the list of user identities. */
89543
+ user_identity_ids?: string[] | undefined
89540
89544
  /** 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
89545
  search?: string | undefined
89542
89546
  /** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */