@seamapi/types 1.293.1 → 1.294.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.
@@ -30266,7 +30266,9 @@ export interface Routes {
30266
30266
  queryParams: {}
30267
30267
  jsonBody: {}
30268
30268
  commonParams: {
30269
+ /** ID of the desired user identity. */
30269
30270
  user_identity_id: string
30271
+ /** ID of the desired ACS user. */
30270
30272
  acs_user_id: string
30271
30273
  }
30272
30274
  formData: {}
@@ -30278,21 +30280,32 @@ export interface Routes {
30278
30280
  queryParams: {}
30279
30281
  jsonBody: {}
30280
30282
  commonParams: {
30283
+ /** Unique key for the user identity. */
30281
30284
  user_identity_key?: (string | null) | undefined
30285
+ /** Unique email address for the user identity. */
30282
30286
  email_address?: (string | null) | undefined
30287
+ /** Unique phone number for the user identity in E.164 format (for example, +15555550100). */
30283
30288
  phone_number?: (string | null) | undefined
30289
+ /** Full name of the user associated with the user identity. */
30284
30290
  full_name?: (string | null) | undefined
30285
30291
  }
30286
30292
  formData: {}
30287
30293
  jsonResponse: {
30294
+ /** Represents a [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) associated with an application user account. */
30288
30295
  user_identity: {
30296
+ /** ID of the user identity. */
30289
30297
  user_identity_id: string
30298
+ /** Unique key for the user identity. */
30290
30299
  user_identity_key: string | null
30300
+ /** Unique email address for the user identity. */
30291
30301
  email_address: string | null
30302
+ /** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
30292
30303
  phone_number: string | null
30293
30304
  display_name: string
30294
30305
  full_name: string | null
30306
+ /** Date and time at which the user identity was created. */
30295
30307
  created_at: string
30308
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
30296
30309
  workspace_id: string
30297
30310
  }
30298
30311
  }
@@ -30303,6 +30316,7 @@ export interface Routes {
30303
30316
  queryParams: {}
30304
30317
  jsonBody: {}
30305
30318
  commonParams: {
30319
+ /** ID of the desired user identity. */
30306
30320
  user_identity_id: string
30307
30321
  }
30308
30322
  formData: {}
@@ -30314,6 +30328,7 @@ export interface Routes {
30314
30328
  queryParams: {}
30315
30329
  jsonBody: {}
30316
30330
  commonParams: {
30331
+ /** ID of the desired enrollment automation. */
30317
30332
  enrollment_automation_id: string
30318
30333
  }
30319
30334
  formData: {}
@@ -30325,16 +30340,23 @@ export interface Routes {
30325
30340
  queryParams: {}
30326
30341
  jsonBody: {}
30327
30342
  commonParams: {
30343
+ /** ID of the desired enrollment automation. */
30328
30344
  enrollment_automation_id: string
30329
30345
  }
30330
30346
  formData: {}
30331
30347
  jsonResponse: {
30348
+ /** Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access-in-development). */
30332
30349
  enrollment_automation: {
30350
+ /** ID of the enrollment automation. */
30351
+ enrollment_automation_id: string
30352
+ /** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
30333
30353
  credential_manager_acs_system_id: string
30354
+ /** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). */
30334
30355
  user_identity_id: string
30356
+ /** Date and time at which the enrollment automation was created. */
30335
30357
  created_at: string
30358
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the enrollment automation. */
30336
30359
  workspace_id: string
30337
- enrollment_automation_id: string
30338
30360
  }
30339
30361
  }
30340
30362
  }
@@ -30344,10 +30366,15 @@ export interface Routes {
30344
30366
  queryParams: {}
30345
30367
  jsonBody: {}
30346
30368
  commonParams: {
30369
+ /** ID of the desired user identity. */
30347
30370
  user_identity_id: string
30371
+ /** ID of the desired ACS system that serves as the credential manager. */
30348
30372
  credential_manager_acs_system_id: string
30373
+ /** ID of the ACS credential pool from which to obtain credentials for the user identity. */
30349
30374
  acs_credential_pool_id?: string | undefined
30375
+ /** Indicates whether to create an associated credential manager user. If you set `create_credential_manager_user` to `true`, you cannot specify a `credential_manager_acs_user_id`. */
30350
30376
  create_credential_manager_user?: boolean | undefined
30377
+ /** ID of the associated ACS user within the credential manager. If you specify a `credential_manager_acs_user_id`, you cannot set `create_credential_manager_user` to `true`. */
30351
30378
  credential_manager_acs_user_id?: string | undefined
30352
30379
  }
30353
30380
  formData: {}
@@ -30368,16 +30395,22 @@ export interface Routes {
30368
30395
  queryParams: {}
30369
30396
  jsonBody: {}
30370
30397
  commonParams: {
30398
+ /** ID of the user identity for which you want to retrieve all enrollment automations. */
30371
30399
  user_identity_id: string
30372
30400
  }
30373
30401
  formData: {}
30374
30402
  jsonResponse: {
30375
30403
  enrollment_automations: Array<{
30404
+ /** ID of the enrollment automation. */
30405
+ enrollment_automation_id: string
30406
+ /** ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager. */
30376
30407
  credential_manager_acs_system_id: string
30408
+ /** ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). */
30377
30409
  user_identity_id: string
30410
+ /** Date and time at which the enrollment automation was created. */
30378
30411
  created_at: string
30412
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the enrollment automation. */
30379
30413
  workspace_id: string
30380
- enrollment_automation_id: string
30381
30414
  }>
30382
30415
  }
30383
30416
  }
@@ -30388,6 +30421,7 @@ export interface Routes {
30388
30421
  jsonBody: {}
30389
30422
  commonParams:
30390
30423
  | {
30424
+ /** ID of the desired user identity. */
30391
30425
  user_identity_id: string
30392
30426
  }
30393
30427
  | {
@@ -30395,14 +30429,21 @@ export interface Routes {
30395
30429
  }
30396
30430
  formData: {}
30397
30431
  jsonResponse: {
30432
+ /** Represents a [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) associated with an application user account. */
30398
30433
  user_identity: {
30434
+ /** ID of the user identity. */
30399
30435
  user_identity_id: string
30436
+ /** Unique key for the user identity. */
30400
30437
  user_identity_key: string | null
30438
+ /** Unique email address for the user identity. */
30401
30439
  email_address: string | null
30440
+ /** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
30402
30441
  phone_number: string | null
30403
30442
  display_name: string
30404
30443
  full_name: string | null
30444
+ /** Date and time at which the user identity was created. */
30405
30445
  created_at: string
30446
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
30406
30447
  workspace_id: string
30407
30448
  }
30408
30449
  }
@@ -30413,7 +30454,9 @@ export interface Routes {
30413
30454
  queryParams: {}
30414
30455
  jsonBody: {}
30415
30456
  commonParams: {
30457
+ /** ID of the desired user identity. */
30416
30458
  user_identity_id: string
30459
+ /** ID of the desired managed device. */
30417
30460
  device_id: string
30418
30461
  }
30419
30462
  formData: {}
@@ -30430,13 +30473,19 @@ export interface Routes {
30430
30473
  formData: {}
30431
30474
  jsonResponse: {
30432
30475
  user_identities: Array<{
30476
+ /** ID of the user identity. */
30433
30477
  user_identity_id: string
30478
+ /** Unique key for the user identity. */
30434
30479
  user_identity_key: string | null
30480
+ /** Unique email address for the user identity. */
30435
30481
  email_address: string | null
30482
+ /** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
30436
30483
  phone_number: string | null
30437
30484
  display_name: string
30438
30485
  full_name: string | null
30486
+ /** Date and time at which the user identity was created. */
30439
30487
  created_at: string
30488
+ /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
30440
30489
  workspace_id: string
30441
30490
  }>
30442
30491
  }
@@ -30447,6 +30496,7 @@ export interface Routes {
30447
30496
  queryParams: {}
30448
30497
  jsonBody: {}
30449
30498
  commonParams: {
30499
+ /** ID of the user identity for which you want to retrieve all accessible devices. */
30450
30500
  user_identity_id: string
30451
30501
  }
30452
30502
  formData: {}
@@ -31853,6 +31903,7 @@ export interface Routes {
31853
31903
  queryParams: {}
31854
31904
  jsonBody: {}
31855
31905
  commonParams: {
31906
+ /** ID of the user identity for which you want to retrieve all access control systems. */
31856
31907
  user_identity_id: string
31857
31908
  }
31858
31909
  formData: {}
@@ -31999,6 +32050,7 @@ export interface Routes {
31999
32050
  queryParams: {}
32000
32051
  jsonBody: {}
32001
32052
  commonParams: {
32053
+ /** ID of the user identity for which you want to retrieve all ACS users. */
32002
32054
  user_identity_id: string
32003
32055
  }
32004
32056
  formData: {}
@@ -32121,7 +32173,9 @@ export interface Routes {
32121
32173
  queryParams: {}
32122
32174
  jsonBody: {}
32123
32175
  commonParams: {
32176
+ /** ID of the desired user identity. */
32124
32177
  user_identity_id: string
32178
+ /** ID of the ACS user. */
32125
32179
  acs_user_id: string
32126
32180
  }
32127
32181
  formData: {}
@@ -32133,7 +32187,9 @@ export interface Routes {
32133
32187
  queryParams: {}
32134
32188
  jsonBody: {}
32135
32189
  commonParams: {
32190
+ /** ID of the desired user identity. */
32136
32191
  user_identity_id: string
32192
+ /** ID of the desired managed device. */
32137
32193
  device_id: string
32138
32194
  }
32139
32195
  formData: {}
@@ -32144,9 +32200,13 @@ export interface Routes {
32144
32200
  method: 'PATCH' | 'POST'
32145
32201
  queryParams: {}
32146
32202
  jsonBody: {
32203
+ /** ID of the user identity. */
32147
32204
  user_identity_id: string
32205
+ /** Unique key for the user identity. */
32148
32206
  user_identity_key?: (string | null) | undefined
32207
+ /** Unique email address for the user identity. */
32149
32208
  email_address?: (string | null) | undefined
32209
+ /** Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100). */
32150
32210
  phone_number?: (string | null) | undefined
32151
32211
  full_name?: (string | null) | undefined
32152
32212
  }