@seamapi/types 1.293.0 → 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.
@@ -4746,9 +4746,12 @@ export default {
4746
4746
  type: 'string',
4747
4747
  },
4748
4748
  manual_override_allowed: {
4749
+ deprecated: true,
4749
4750
  description:
4750
4751
  "Indicates whether a person at the thermostat can change the thermostat's settings.",
4751
4752
  type: 'boolean',
4753
+ 'x-deprecated':
4754
+ "Use 'thermostat_schedule.is_override_allowed'",
4752
4755
  },
4753
4756
  name: {
4754
4757
  default: null,
@@ -4841,9 +4844,12 @@ export default {
4841
4844
  type: 'string',
4842
4845
  },
4843
4846
  manual_override_allowed: {
4847
+ deprecated: true,
4844
4848
  description:
4845
4849
  "Indicates whether a person at the thermostat can change the thermostat's settings.",
4846
4850
  type: 'boolean',
4851
+ 'x-deprecated':
4852
+ "Use 'thermostat_schedule.is_override_allowed'",
4847
4853
  },
4848
4854
  name: {
4849
4855
  default: null,
@@ -4914,9 +4920,12 @@ export default {
4914
4920
  type: 'string',
4915
4921
  },
4916
4922
  manual_override_allowed: {
4923
+ deprecated: true,
4917
4924
  description:
4918
4925
  "Indicates whether a person at the thermostat can change the thermostat's settings.",
4919
4926
  type: 'boolean',
4927
+ 'x-deprecated':
4928
+ "Use 'thermostat_schedule.is_override_allowed'",
4920
4929
  },
4921
4930
  name: {
4922
4931
  default: null,
@@ -5159,19 +5168,45 @@ export default {
5159
5168
  type: 'object',
5160
5169
  },
5161
5170
  enrollment_automation: {
5171
+ description:
5172
+ '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).',
5162
5173
  properties: {
5163
- created_at: { format: 'date-time', type: 'string' },
5164
- credential_manager_acs_system_id: { format: 'uuid', type: 'string' },
5165
- enrollment_automation_id: { format: 'uuid', type: 'string' },
5166
- user_identity_id: { format: 'uuid', type: 'string' },
5167
- workspace_id: { format: 'uuid', type: 'string' },
5174
+ created_at: {
5175
+ description:
5176
+ 'Date and time at which the enrollment automation was created.',
5177
+ format: 'date-time',
5178
+ type: 'string',
5179
+ },
5180
+ credential_manager_acs_system_id: {
5181
+ description:
5182
+ 'ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager.',
5183
+ format: 'uuid',
5184
+ type: 'string',
5185
+ },
5186
+ enrollment_automation_id: {
5187
+ description: 'ID of the enrollment automation.',
5188
+ format: 'uuid',
5189
+ type: 'string',
5190
+ },
5191
+ user_identity_id: {
5192
+ description:
5193
+ '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).',
5194
+ format: 'uuid',
5195
+ type: 'string',
5196
+ },
5197
+ workspace_id: {
5198
+ description:
5199
+ 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the enrollment automation.',
5200
+ format: 'uuid',
5201
+ type: 'string',
5202
+ },
5168
5203
  },
5169
5204
  required: [
5205
+ 'enrollment_automation_id',
5170
5206
  'credential_manager_acs_system_id',
5171
5207
  'user_identity_id',
5172
5208
  'created_at',
5173
5209
  'workspace_id',
5174
- 'enrollment_automation_id',
5175
5210
  ],
5176
5211
  type: 'object',
5177
5212
  },
@@ -5934,15 +5969,46 @@ export default {
5934
5969
  type: 'object',
5935
5970
  },
5936
5971
  user_identity: {
5972
+ description:
5973
+ '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.',
5937
5974
  properties: {
5938
- created_at: { format: 'date-time', type: 'string' },
5975
+ created_at: {
5976
+ description:
5977
+ 'Date and time at which the user identity was created.',
5978
+ format: 'date-time',
5979
+ type: 'string',
5980
+ },
5939
5981
  display_name: { minLength: 1, type: 'string' },
5940
- email_address: { format: 'email', nullable: true, type: 'string' },
5982
+ email_address: {
5983
+ description: 'Unique email address for the user identity.',
5984
+ format: 'email',
5985
+ nullable: true,
5986
+ type: 'string',
5987
+ },
5941
5988
  full_name: { minLength: 1, nullable: true, type: 'string' },
5942
- phone_number: { nullable: true, type: 'string' },
5943
- user_identity_id: { format: 'uuid', type: 'string' },
5944
- user_identity_key: { minLength: 1, nullable: true, type: 'string' },
5945
- workspace_id: { format: 'uuid', type: 'string' },
5989
+ phone_number: {
5990
+ description:
5991
+ 'Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100).',
5992
+ nullable: true,
5993
+ type: 'string',
5994
+ },
5995
+ user_identity_id: {
5996
+ description: 'ID of the user identity.',
5997
+ format: 'uuid',
5998
+ type: 'string',
5999
+ },
6000
+ user_identity_key: {
6001
+ description: 'Unique key for the user identity.',
6002
+ minLength: 1,
6003
+ nullable: true,
6004
+ type: 'string',
6005
+ },
6006
+ workspace_id: {
6007
+ description:
6008
+ 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity.',
6009
+ format: 'uuid',
6010
+ type: 'string',
6011
+ },
5946
6012
  },
5947
6013
  required: [
5948
6014
  'user_identity_id',
@@ -15907,11 +15973,7 @@ export default {
15907
15973
  enum: ['off', 'heat', 'cool', 'heat_cool'],
15908
15974
  type: 'string',
15909
15975
  },
15910
- manual_override_allowed: {
15911
- description:
15912
- "Indicates whether a person at the thermostat can change the thermostat's settings.",
15913
- type: 'boolean',
15914
- },
15976
+ manual_override_allowed: { default: true, type: 'boolean' },
15915
15977
  name: {
15916
15978
  default: null,
15917
15979
  description:
@@ -15920,11 +15982,7 @@ export default {
15920
15982
  type: 'string',
15921
15983
  },
15922
15984
  },
15923
- required: [
15924
- 'device_id',
15925
- 'climate_preset_key',
15926
- 'manual_override_allowed',
15927
- ],
15985
+ required: ['device_id', 'climate_preset_key'],
15928
15986
  type: 'object',
15929
15987
  },
15930
15988
  },
@@ -17378,9 +17436,12 @@ export default {
17378
17436
  type: 'string',
17379
17437
  },
17380
17438
  manual_override_allowed: {
17439
+ deprecated: true,
17381
17440
  description:
17382
17441
  "Indicates whether a person at the thermostat can change the thermostat's settings.",
17383
17442
  type: 'boolean',
17443
+ 'x-deprecated':
17444
+ "Use 'thermostat_schedule.is_override_allowed'",
17384
17445
  },
17385
17446
  name: {
17386
17447
  default: null,
@@ -17482,9 +17543,12 @@ export default {
17482
17543
  type: 'string',
17483
17544
  },
17484
17545
  manual_override_allowed: {
17546
+ deprecated: true,
17485
17547
  description:
17486
17548
  "Indicates whether a person at the thermostat can change the thermostat's settings.",
17487
17549
  type: 'boolean',
17550
+ 'x-deprecated':
17551
+ "Use 'thermostat_schedule.is_override_allowed'",
17488
17552
  },
17489
17553
  name: {
17490
17554
  default: null,
@@ -17535,14 +17599,24 @@ export default {
17535
17599
  },
17536
17600
  '/user_identities/add_acs_user': {
17537
17601
  post: {
17602
+ description:
17603
+ 'Adds a specified [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to a specified [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).',
17538
17604
  operationId: 'userIdentitiesAddAcsUserPost',
17539
17605
  requestBody: {
17540
17606
  content: {
17541
17607
  'application/json': {
17542
17608
  schema: {
17543
17609
  properties: {
17544
- acs_user_id: { format: 'uuid', type: 'string' },
17545
- user_identity_id: { format: 'uuid', type: 'string' },
17610
+ acs_user_id: {
17611
+ description: 'ID of the desired ACS user.',
17612
+ format: 'uuid',
17613
+ type: 'string',
17614
+ },
17615
+ user_identity_id: {
17616
+ description: 'ID of the desired user identity.',
17617
+ format: 'uuid',
17618
+ type: 'string',
17619
+ },
17546
17620
  },
17547
17621
  required: ['user_identity_id', 'acs_user_id'],
17548
17622
  type: 'object',
@@ -17576,16 +17650,27 @@ export default {
17576
17650
  'x-fern-sdk-group-name': ['user_identities'],
17577
17651
  'x-fern-sdk-method-name': 'add_acs_user',
17578
17652
  'x-response-key': null,
17653
+ 'x-title': 'Add an ACS User to a User Identity',
17579
17654
  },
17580
17655
  put: {
17656
+ description:
17657
+ 'Adds a specified [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to a specified [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).',
17581
17658
  operationId: 'userIdentitiesAddAcsUserPut',
17582
17659
  requestBody: {
17583
17660
  content: {
17584
17661
  'application/json': {
17585
17662
  schema: {
17586
17663
  properties: {
17587
- acs_user_id: { format: 'uuid', type: 'string' },
17588
- user_identity_id: { format: 'uuid', type: 'string' },
17664
+ acs_user_id: {
17665
+ description: 'ID of the desired ACS user.',
17666
+ format: 'uuid',
17667
+ type: 'string',
17668
+ },
17669
+ user_identity_id: {
17670
+ description: 'ID of the desired user identity.',
17671
+ format: 'uuid',
17672
+ type: 'string',
17673
+ },
17589
17674
  },
17590
17675
  required: ['user_identity_id', 'acs_user_id'],
17591
17676
  type: 'object',
@@ -17618,10 +17703,13 @@ export default {
17618
17703
  tags: ['/user_identities'],
17619
17704
  'x-fern-ignore': true,
17620
17705
  'x-response-key': null,
17706
+ 'x-title': 'Add an ACS User to a User Identity',
17621
17707
  },
17622
17708
  },
17623
17709
  '/user_identities/create': {
17624
17710
  post: {
17711
+ description:
17712
+ 'Creates a new [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).',
17625
17713
  operationId: 'userIdentitiesCreatePost',
17626
17714
  requestBody: {
17627
17715
  content: {
@@ -17629,13 +17717,26 @@ export default {
17629
17717
  schema: {
17630
17718
  properties: {
17631
17719
  email_address: {
17720
+ description: 'Unique email address for the user identity.',
17632
17721
  format: 'email',
17633
17722
  nullable: true,
17634
17723
  type: 'string',
17635
17724
  },
17636
- full_name: { minLength: 1, nullable: true, type: 'string' },
17637
- phone_number: { nullable: true, type: 'string' },
17725
+ full_name: {
17726
+ description:
17727
+ 'Full name of the user associated with the user identity.',
17728
+ minLength: 1,
17729
+ nullable: true,
17730
+ type: 'string',
17731
+ },
17732
+ phone_number: {
17733
+ description:
17734
+ 'Unique phone number for the user identity in E.164 format (for example, +15555550100).',
17735
+ nullable: true,
17736
+ type: 'string',
17737
+ },
17638
17738
  user_identity_key: {
17739
+ description: 'Unique key for the user identity.',
17639
17740
  minLength: 1,
17640
17741
  nullable: true,
17641
17742
  type: 'string',
@@ -17678,17 +17779,24 @@ export default {
17678
17779
  'x-fern-sdk-method-name': 'create',
17679
17780
  'x-fern-sdk-return-value': 'user_identity',
17680
17781
  'x-response-key': 'user_identity',
17782
+ 'x-title': 'Create a User Identity',
17681
17783
  },
17682
17784
  },
17683
17785
  '/user_identities/delete': {
17684
17786
  post: {
17787
+ description:
17788
+ 'Deletes a specified [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). To delete a user identity, you must first delete any [ACS credentials](https://docs.seam.co/latest/api/access-control-systems/credentials) and [enrollment automations](https://docs.seam.co/latest/api/user_identities/enrollment_automations/delete) associated with the user identity. You must also deactivate any associated phones.',
17685
17789
  operationId: 'userIdentitiesDeletePost',
17686
17790
  requestBody: {
17687
17791
  content: {
17688
17792
  'application/json': {
17689
17793
  schema: {
17690
17794
  properties: {
17691
- user_identity_id: { format: 'uuid', type: 'string' },
17795
+ user_identity_id: {
17796
+ description: 'ID of the desired user identity.',
17797
+ format: 'uuid',
17798
+ type: 'string',
17799
+ },
17692
17800
  },
17693
17801
  required: ['user_identity_id'],
17694
17802
  type: 'object',
@@ -17722,17 +17830,24 @@ export default {
17722
17830
  'x-fern-sdk-group-name': ['user_identities'],
17723
17831
  'x-fern-sdk-method-name': 'delete',
17724
17832
  'x-response-key': null,
17833
+ 'x-title': 'Delete a User Identity',
17725
17834
  },
17726
17835
  },
17727
17836
  '/user_identities/enrollment_automations/delete': {
17728
17837
  post: {
17838
+ description:
17839
+ 'Deletes a specified [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system). You must delete all enrollment automations associated with 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) before [deleting the user identity](https://docs.seam.co/latest/api/user_identities/delete).',
17729
17840
  operationId: 'userIdentitiesEnrollmentAutomationsDeletePost',
17730
17841
  requestBody: {
17731
17842
  content: {
17732
17843
  'application/json': {
17733
17844
  schema: {
17734
17845
  properties: {
17735
- enrollment_automation_id: { format: 'uuid', type: 'string' },
17846
+ enrollment_automation_id: {
17847
+ description: 'ID of the desired enrollment automation.',
17848
+ format: 'uuid',
17849
+ type: 'string',
17850
+ },
17736
17851
  },
17737
17852
  required: ['enrollment_automation_id'],
17738
17853
  type: 'object',
@@ -17766,17 +17881,24 @@ export default {
17766
17881
  'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
17767
17882
  'x-fern-sdk-method-name': 'delete',
17768
17883
  'x-response-key': null,
17884
+ 'x-title': 'Delete an Enrollment Automation',
17769
17885
  },
17770
17886
  },
17771
17887
  '/user_identities/enrollment_automations/get': {
17772
17888
  post: {
17889
+ description:
17890
+ 'Returns a specified [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system).',
17773
17891
  operationId: 'userIdentitiesEnrollmentAutomationsGetPost',
17774
17892
  requestBody: {
17775
17893
  content: {
17776
17894
  'application/json': {
17777
17895
  schema: {
17778
17896
  properties: {
17779
- enrollment_automation_id: { format: 'uuid', type: 'string' },
17897
+ enrollment_automation_id: {
17898
+ description: 'ID of the desired enrollment automation.',
17899
+ format: 'uuid',
17900
+ type: 'string',
17901
+ },
17780
17902
  },
17781
17903
  required: ['enrollment_automation_id'],
17782
17904
  type: 'object',
@@ -17817,27 +17939,47 @@ export default {
17817
17939
  'x-fern-sdk-method-name': 'get',
17818
17940
  'x-fern-sdk-return-value': 'enrollment_automation',
17819
17941
  'x-response-key': 'enrollment_automation',
17942
+ 'x-title': 'Get an Enrollment Automation',
17820
17943
  },
17821
17944
  },
17822
17945
  '/user_identities/enrollment_automations/launch': {
17823
17946
  post: {
17947
+ description:
17948
+ 'Sets up a new [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) for a specified [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) with a specified [credential manager](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system).',
17824
17949
  operationId: 'userIdentitiesEnrollmentAutomationsLaunchPost',
17825
17950
  requestBody: {
17826
17951
  content: {
17827
17952
  'application/json': {
17828
17953
  schema: {
17829
17954
  properties: {
17830
- acs_credential_pool_id: { format: 'uuid', type: 'string' },
17831
- create_credential_manager_user: { type: 'boolean' },
17955
+ acs_credential_pool_id: {
17956
+ description:
17957
+ 'ID of the ACS credential pool from which to obtain credentials for the user identity.',
17958
+ format: 'uuid',
17959
+ type: 'string',
17960
+ },
17961
+ create_credential_manager_user: {
17962
+ description:
17963
+ '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`.',
17964
+ type: 'boolean',
17965
+ },
17832
17966
  credential_manager_acs_system_id: {
17967
+ description:
17968
+ 'ID of the desired ACS system that serves as the credential manager.',
17833
17969
  format: 'uuid',
17834
17970
  type: 'string',
17835
17971
  },
17836
17972
  credential_manager_acs_user_id: {
17973
+ description:
17974
+ '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`.',
17975
+ format: 'uuid',
17976
+ type: 'string',
17977
+ },
17978
+ user_identity_id: {
17979
+ description: 'ID of the desired user identity.',
17837
17980
  format: 'uuid',
17838
17981
  type: 'string',
17839
17982
  },
17840
- user_identity_id: { format: 'uuid', type: 'string' },
17841
17983
  },
17842
17984
  required: [
17843
17985
  'user_identity_id',
@@ -17905,17 +18047,25 @@ export default {
17905
18047
  'x-fern-sdk-method-name': 'launch',
17906
18048
  'x-fern-sdk-return-value': 'enrollment_automation',
17907
18049
  'x-response-key': 'enrollment_automation',
18050
+ 'x-title': 'Launch an Enrollment Automation',
17908
18051
  },
17909
18052
  },
17910
18053
  '/user_identities/enrollment_automations/list': {
17911
18054
  post: {
18055
+ description:
18056
+ 'Returns a list of all [enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) for a specified [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).',
17912
18057
  operationId: 'userIdentitiesEnrollmentAutomationsListPost',
17913
18058
  requestBody: {
17914
18059
  content: {
17915
18060
  'application/json': {
17916
18061
  schema: {
17917
18062
  properties: {
17918
- user_identity_id: { format: 'uuid', type: 'string' },
18063
+ user_identity_id: {
18064
+ description:
18065
+ 'ID of the user identity for which you want to retrieve all enrollment automations.',
18066
+ format: 'uuid',
18067
+ type: 'string',
18068
+ },
17919
18069
  },
17920
18070
  required: ['user_identity_id'],
17921
18071
  type: 'object',
@@ -17959,10 +18109,13 @@ export default {
17959
18109
  'x-fern-sdk-method-name': 'list',
17960
18110
  'x-fern-sdk-return-value': 'enrollment_automations',
17961
18111
  'x-response-key': 'enrollment_automations',
18112
+ 'x-title': 'List Enrollment Automations',
17962
18113
  },
17963
18114
  },
17964
18115
  '/user_identities/get': {
17965
18116
  post: {
18117
+ description:
18118
+ 'Returns a specified [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).',
17966
18119
  operationId: 'userIdentitiesGetPost',
17967
18120
  requestBody: {
17968
18121
  content: {
@@ -17971,7 +18124,11 @@ export default {
17971
18124
  oneOf: [
17972
18125
  {
17973
18126
  properties: {
17974
- user_identity_id: { format: 'uuid', type: 'string' },
18127
+ user_identity_id: {
18128
+ description: 'ID of the desired user identity.',
18129
+ format: 'uuid',
18130
+ type: 'string',
18131
+ },
17975
18132
  },
17976
18133
  required: ['user_identity_id'],
17977
18134
  type: 'object',
@@ -18018,18 +18175,29 @@ export default {
18018
18175
  'x-fern-sdk-method-name': 'get',
18019
18176
  'x-fern-sdk-return-value': 'user_identity',
18020
18177
  'x-response-key': 'user_identity',
18178
+ 'x-title': 'Get a User Identity',
18021
18179
  },
18022
18180
  },
18023
18181
  '/user_identities/grant_access_to_device': {
18024
18182
  post: {
18183
+ description:
18184
+ 'Grants a specified [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) access to a specified [device](https://docs.seam.co/latest/core-concepts/devices/).',
18025
18185
  operationId: 'userIdentitiesGrantAccessToDevicePost',
18026
18186
  requestBody: {
18027
18187
  content: {
18028
18188
  'application/json': {
18029
18189
  schema: {
18030
18190
  properties: {
18031
- device_id: { format: 'uuid', type: 'string' },
18032
- user_identity_id: { format: 'uuid', type: 'string' },
18191
+ device_id: {
18192
+ description: 'ID of the desired managed device.',
18193
+ format: 'uuid',
18194
+ type: 'string',
18195
+ },
18196
+ user_identity_id: {
18197
+ description: 'ID of the desired user identity.',
18198
+ format: 'uuid',
18199
+ type: 'string',
18200
+ },
18033
18201
  },
18034
18202
  required: ['user_identity_id', 'device_id'],
18035
18203
  type: 'object',
@@ -18063,16 +18231,27 @@ export default {
18063
18231
  'x-fern-sdk-group-name': ['user_identities'],
18064
18232
  'x-fern-sdk-method-name': 'grant_access_to_device',
18065
18233
  'x-response-key': null,
18234
+ 'x-title': 'Grant a User Identity Access to a Device',
18066
18235
  },
18067
18236
  put: {
18237
+ description:
18238
+ 'Grants a specified [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) access to a specified [device](https://docs.seam.co/latest/core-concepts/devices/).',
18068
18239
  operationId: 'userIdentitiesGrantAccessToDevicePut',
18069
18240
  requestBody: {
18070
18241
  content: {
18071
18242
  'application/json': {
18072
18243
  schema: {
18073
18244
  properties: {
18074
- device_id: { format: 'uuid', type: 'string' },
18075
- user_identity_id: { format: 'uuid', type: 'string' },
18245
+ device_id: {
18246
+ description: 'ID of the desired managed device.',
18247
+ format: 'uuid',
18248
+ type: 'string',
18249
+ },
18250
+ user_identity_id: {
18251
+ description: 'ID of the desired user identity.',
18252
+ format: 'uuid',
18253
+ type: 'string',
18254
+ },
18076
18255
  },
18077
18256
  required: ['user_identity_id', 'device_id'],
18078
18257
  type: 'object',
@@ -18105,10 +18284,13 @@ export default {
18105
18284
  tags: ['/user_identities'],
18106
18285
  'x-fern-ignore': true,
18107
18286
  'x-response-key': null,
18287
+ 'x-title': 'Grant a User Identity Access to a Device',
18108
18288
  },
18109
18289
  },
18110
18290
  '/user_identities/list': {
18111
18291
  post: {
18292
+ description:
18293
+ 'Returns a list of all [user identities](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).',
18112
18294
  operationId: 'userIdentitiesListPost',
18113
18295
  requestBody: {
18114
18296
  content: {
@@ -18159,17 +18341,25 @@ export default {
18159
18341
  'x-fern-sdk-method-name': 'list',
18160
18342
  'x-fern-sdk-return-value': 'user_identities',
18161
18343
  'x-response-key': 'user_identities',
18344
+ 'x-title': 'List User Identities',
18162
18345
  },
18163
18346
  },
18164
18347
  '/user_identities/list_accessible_devices': {
18165
18348
  post: {
18349
+ description:
18350
+ 'Returns a list of all [devices](https://docs.seam.co/latest/core-concepts/devices) associated with a specified [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).',
18166
18351
  operationId: 'userIdentitiesListAccessibleDevicesPost',
18167
18352
  requestBody: {
18168
18353
  content: {
18169
18354
  'application/json': {
18170
18355
  schema: {
18171
18356
  properties: {
18172
- user_identity_id: { format: 'uuid', type: 'string' },
18357
+ user_identity_id: {
18358
+ description:
18359
+ 'ID of the user identity for which you want to retrieve all accessible devices.',
18360
+ format: 'uuid',
18361
+ type: 'string',
18362
+ },
18173
18363
  },
18174
18364
  required: ['user_identity_id'],
18175
18365
  type: 'object',
@@ -18216,17 +18406,25 @@ export default {
18216
18406
  'x-fern-sdk-method-name': 'list_accessible_devices',
18217
18407
  'x-fern-sdk-return-value': 'devices',
18218
18408
  'x-response-key': 'devices',
18409
+ 'x-title': 'List Accessible Devices for a User Identity',
18219
18410
  },
18220
18411
  },
18221
18412
  '/user_identities/list_acs_systems': {
18222
18413
  post: {
18414
+ description:
18415
+ 'Returns a list of all [access control systems](https://docs.seam.co/latest/capability-guides/access-systems) associated with a specified [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).',
18223
18416
  operationId: 'userIdentitiesListAcsSystemsPost',
18224
18417
  requestBody: {
18225
18418
  content: {
18226
18419
  'application/json': {
18227
18420
  schema: {
18228
18421
  properties: {
18229
- user_identity_id: { format: 'uuid', type: 'string' },
18422
+ user_identity_id: {
18423
+ description:
18424
+ 'ID of the user identity for which you want to retrieve all access control systems.',
18425
+ format: 'uuid',
18426
+ type: 'string',
18427
+ },
18230
18428
  },
18231
18429
  required: ['user_identity_id'],
18232
18430
  type: 'object',
@@ -18268,17 +18466,25 @@ export default {
18268
18466
  'x-fern-sdk-method-name': 'list_acs_systems',
18269
18467
  'x-fern-sdk-return-value': 'acs_systems',
18270
18468
  'x-response-key': 'acs_systems',
18469
+ 'x-title': 'List ACS Systems Associated with a User Identity',
18271
18470
  },
18272
18471
  },
18273
18472
  '/user_identities/list_acs_users': {
18274
18473
  post: {
18474
+ description:
18475
+ 'Returns a list of all [ACS users](https://docs.seam.co/latest/capability-guides/access-systems/user-management) assigned to a specified [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).',
18275
18476
  operationId: 'userIdentitiesListAcsUsersPost',
18276
18477
  requestBody: {
18277
18478
  content: {
18278
18479
  'application/json': {
18279
18480
  schema: {
18280
18481
  properties: {
18281
- user_identity_id: { format: 'uuid', type: 'string' },
18482
+ user_identity_id: {
18483
+ description:
18484
+ 'ID of the user identity for which you want to retrieve all ACS users.',
18485
+ format: 'uuid',
18486
+ type: 'string',
18487
+ },
18282
18488
  },
18283
18489
  required: ['user_identity_id'],
18284
18490
  type: 'object',
@@ -18319,18 +18525,29 @@ export default {
18319
18525
  'x-fern-sdk-method-name': 'list_acs_users',
18320
18526
  'x-fern-sdk-return-value': 'acs_users',
18321
18527
  'x-response-key': 'acs_users',
18528
+ 'x-title': 'List ACS Users Associated with a User Identity',
18322
18529
  },
18323
18530
  },
18324
18531
  '/user_identities/remove_acs_user': {
18325
18532
  post: {
18533
+ description:
18534
+ 'Removes a specified [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) from a specified [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).',
18326
18535
  operationId: 'userIdentitiesRemoveAcsUserPost',
18327
18536
  requestBody: {
18328
18537
  content: {
18329
18538
  'application/json': {
18330
18539
  schema: {
18331
18540
  properties: {
18332
- acs_user_id: { format: 'uuid', type: 'string' },
18333
- user_identity_id: { format: 'uuid', type: 'string' },
18541
+ acs_user_id: {
18542
+ description: 'ID of the ACS user.',
18543
+ format: 'uuid',
18544
+ type: 'string',
18545
+ },
18546
+ user_identity_id: {
18547
+ description: 'ID of the desired user identity.',
18548
+ format: 'uuid',
18549
+ type: 'string',
18550
+ },
18334
18551
  },
18335
18552
  required: ['user_identity_id', 'acs_user_id'],
18336
18553
  type: 'object',
@@ -18364,18 +18581,29 @@ export default {
18364
18581
  'x-fern-sdk-group-name': ['user_identities'],
18365
18582
  'x-fern-sdk-method-name': 'remove_acs_user',
18366
18583
  'x-response-key': null,
18584
+ 'x-title': 'Remove an ACS User from a User Identity',
18367
18585
  },
18368
18586
  },
18369
18587
  '/user_identities/revoke_access_to_device': {
18370
18588
  post: {
18589
+ description:
18590
+ 'Revokes access to a specified [device](https://docs.seam.co/latest/core-concepts/devices/) from a specified [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).',
18371
18591
  operationId: 'userIdentitiesRevokeAccessToDevicePost',
18372
18592
  requestBody: {
18373
18593
  content: {
18374
18594
  'application/json': {
18375
18595
  schema: {
18376
18596
  properties: {
18377
- device_id: { format: 'uuid', type: 'string' },
18378
- user_identity_id: { format: 'uuid', type: 'string' },
18597
+ device_id: {
18598
+ description: 'ID of the desired managed device.',
18599
+ format: 'uuid',
18600
+ type: 'string',
18601
+ },
18602
+ user_identity_id: {
18603
+ description: 'ID of the desired user identity.',
18604
+ format: 'uuid',
18605
+ type: 'string',
18606
+ },
18379
18607
  },
18380
18608
  required: ['user_identity_id', 'device_id'],
18381
18609
  type: 'object',
@@ -18409,6 +18637,7 @@ export default {
18409
18637
  'x-fern-sdk-group-name': ['user_identities'],
18410
18638
  'x-fern-sdk-method-name': 'revoke_access_to_device',
18411
18639
  'x-response-key': null,
18640
+ 'x-title': 'Revoke Access to a Device from a User Identity',
18412
18641
  },
18413
18642
  },
18414
18643
  '/user_identities/update': {
@@ -18420,14 +18649,25 @@ export default {
18420
18649
  schema: {
18421
18650
  properties: {
18422
18651
  email_address: {
18652
+ description: 'Unique email address for the user identity.',
18423
18653
  format: 'email',
18424
18654
  nullable: true,
18425
18655
  type: 'string',
18426
18656
  },
18427
18657
  full_name: { minLength: 1, nullable: true, type: 'string' },
18428
- phone_number: { nullable: true, type: 'string' },
18429
- user_identity_id: { format: 'uuid', type: 'string' },
18658
+ phone_number: {
18659
+ description:
18660
+ 'Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100).',
18661
+ nullable: true,
18662
+ type: 'string',
18663
+ },
18664
+ user_identity_id: {
18665
+ description: 'ID of the user identity.',
18666
+ format: 'uuid',
18667
+ type: 'string',
18668
+ },
18430
18669
  user_identity_key: {
18670
+ description: 'Unique key for the user identity.',
18431
18671
  minLength: 1,
18432
18672
  nullable: true,
18433
18673
  type: 'string',
@@ -18473,14 +18713,25 @@ export default {
18473
18713
  schema: {
18474
18714
  properties: {
18475
18715
  email_address: {
18716
+ description: 'Unique email address for the user identity.',
18476
18717
  format: 'email',
18477
18718
  nullable: true,
18478
18719
  type: 'string',
18479
18720
  },
18480
18721
  full_name: { minLength: 1, nullable: true, type: 'string' },
18481
- phone_number: { nullable: true, type: 'string' },
18482
- user_identity_id: { format: 'uuid', type: 'string' },
18722
+ phone_number: {
18723
+ description:
18724
+ 'Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100).',
18725
+ nullable: true,
18726
+ type: 'string',
18727
+ },
18728
+ user_identity_id: {
18729
+ description: 'ID of the user identity.',
18730
+ format: 'uuid',
18731
+ type: 'string',
18732
+ },
18483
18733
  user_identity_key: {
18734
+ description: 'Unique key for the user identity.',
18484
18735
  minLength: 1,
18485
18736
  nullable: true,
18486
18737
  type: 'string',