@seamapi/types 1.423.4 → 1.425.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.
Files changed (47) hide show
  1. package/dist/connect.cjs +225 -24
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +602 -12
  4. package/lib/seam/connect/internal/schemas.d.ts +1 -1
  5. package/lib/seam/connect/internal/schemas.js +1 -1
  6. package/lib/seam/connect/internal/schemas.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
  8. package/lib/seam/connect/models/acs/acs-credential.js +4 -0
  9. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  10. package/lib/seam/connect/models/acs/acs-entrance.d.ts +25 -2
  11. package/lib/seam/connect/models/acs/acs-entrance.js +18 -2
  12. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  13. package/lib/seam/connect/models/acs/acs-system.js +4 -1
  14. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  15. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
  16. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
  17. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
  18. package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +2 -4
  19. package/lib/seam/connect/models/connect-webviews/connect-webview.js +3 -9
  20. package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
  21. package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +3 -0
  22. package/lib/seam/connect/models/connected-accounts/connected-account.js +4 -0
  23. package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
  24. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -2
  25. package/lib/seam/connect/models/index.d.ts +1 -0
  26. package/lib/seam/connect/models/index.js +1 -0
  27. package/lib/seam/connect/models/index.js.map +1 -1
  28. package/lib/seam/connect/models/phones/phone-session.d.ts +66 -4
  29. package/lib/seam/connect/models/provider-capability.d.ts +3 -0
  30. package/lib/seam/connect/models/provider-capability.js +11 -0
  31. package/lib/seam/connect/models/provider-capability.js.map +1 -0
  32. package/lib/seam/connect/openapi.d.ts +263 -5
  33. package/lib/seam/connect/openapi.js +190 -11
  34. package/lib/seam/connect/openapi.js.map +1 -1
  35. package/lib/seam/connect/route-types.d.ts +292 -3
  36. package/package.json +1 -1
  37. package/src/lib/seam/connect/internal/schemas.ts +2 -0
  38. package/src/lib/seam/connect/models/acs/acs-credential.ts +6 -0
  39. package/src/lib/seam/connect/models/acs/acs-entrance.ts +93 -70
  40. package/src/lib/seam/connect/models/acs/acs-system.ts +4 -1
  41. package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +3 -16
  42. package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +6 -0
  43. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -2
  44. package/src/lib/seam/connect/models/index.ts +1 -0
  45. package/src/lib/seam/connect/models/provider-capability.ts +13 -0
  46. package/src/lib/seam/connect/openapi.ts +217 -11
  47. package/src/lib/seam/connect/route-types.ts +298 -3
@@ -1898,6 +1898,11 @@ export default {
1898
1898
  nullable: true,
1899
1899
  type: 'string',
1900
1900
  },
1901
+ connected_account_id: {
1902
+ description: 'ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.',
1903
+ format: 'uuid',
1904
+ type: 'string',
1905
+ },
1901
1906
  created_at: {
1902
1907
  description: 'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.',
1903
1908
  format: 'date-time',
@@ -2168,6 +2173,7 @@ export default {
2168
2173
  },
2169
2174
  required: [
2170
2175
  'acs_credential_id',
2176
+ 'connected_account_id',
2171
2177
  'acs_system_id',
2172
2178
  'display_name',
2173
2179
  'access_method',
@@ -2341,6 +2347,18 @@ export default {
2341
2347
  required: ['door_type', 'door_name'],
2342
2348
  type: 'object',
2343
2349
  },
2350
+ can_unlock_with_card: {
2351
+ description: 'Indicates whether the ACS entrance can be unlocked with card credentials.',
2352
+ type: 'boolean',
2353
+ },
2354
+ can_unlock_with_code: {
2355
+ description: 'Indicates whether the ACS entrance can be unlocked with pin codes.',
2356
+ type: 'boolean',
2357
+ },
2358
+ can_unlock_with_mobile_key: {
2359
+ description: 'Indicates whether the ACS entrance can be unlocked with mobile key credentials.',
2360
+ type: 'boolean',
2361
+ },
2344
2362
  connected_account_id: {
2345
2363
  description: 'ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
2346
2364
  format: 'uuid',
@@ -3970,6 +3988,11 @@ export default {
3970
3988
  nullable: true,
3971
3989
  type: 'string',
3972
3990
  },
3991
+ connected_account_id: {
3992
+ description: 'ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.',
3993
+ format: 'uuid',
3994
+ type: 'string',
3995
+ },
3973
3996
  created_at: {
3974
3997
  description: 'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.',
3975
3998
  format: 'date-time',
@@ -4266,6 +4289,7 @@ export default {
4266
4289
  },
4267
4290
  required: [
4268
4291
  'acs_credential_id',
4292
+ 'connected_account_id',
4269
4293
  'acs_system_id',
4270
4294
  'display_name',
4271
4295
  'access_method',
@@ -4347,6 +4371,11 @@ export default {
4347
4371
  nullable: true,
4348
4372
  type: 'string',
4349
4373
  },
4374
+ connected_account_id: {
4375
+ description: 'ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.',
4376
+ format: 'uuid',
4377
+ type: 'string',
4378
+ },
4350
4379
  created_at: {
4351
4380
  description: 'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.',
4352
4381
  format: 'date-time',
@@ -4643,6 +4672,7 @@ export default {
4643
4672
  },
4644
4673
  required: [
4645
4674
  'acs_credential_id',
4675
+ 'connected_account_id',
4646
4676
  'acs_system_id',
4647
4677
  'display_name',
4648
4678
  'access_method',
@@ -5124,6 +5154,11 @@ export default {
5124
5154
  nullable: true,
5125
5155
  type: 'string',
5126
5156
  },
5157
+ connected_account_id: {
5158
+ description: 'ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.',
5159
+ format: 'uuid',
5160
+ type: 'string',
5161
+ },
5127
5162
  created_at: {
5128
5163
  description: 'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.',
5129
5164
  format: 'date-time',
@@ -5418,6 +5453,7 @@ export default {
5418
5453
  },
5419
5454
  required: [
5420
5455
  'acs_credential_id',
5456
+ 'connected_account_id',
5421
5457
  'acs_system_id',
5422
5458
  'display_name',
5423
5459
  'access_method',
@@ -5499,6 +5535,11 @@ export default {
5499
5535
  nullable: true,
5500
5536
  type: 'string',
5501
5537
  },
5538
+ connected_account_id: {
5539
+ description: 'ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.',
5540
+ format: 'uuid',
5541
+ type: 'string',
5542
+ },
5502
5543
  created_at: {
5503
5544
  description: 'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.',
5504
5545
  format: 'date-time',
@@ -5793,6 +5834,7 @@ export default {
5793
5834
  },
5794
5835
  required: [
5795
5836
  'acs_credential_id',
5837
+ 'connected_account_id',
5796
5838
  'acs_system_id',
5797
5839
  'display_name',
5798
5840
  'access_method',
@@ -7705,7 +7747,7 @@ export default {
7705
7747
  accepted_capabilities: {
7706
7748
  description: 'High-level device capabilities that the Connect Webview can accept. When creating a Connect Webview, you can specify the types of devices that it can connect to Seam. If you do not set custom `accepted_capabilities`, Seam uses a default set of `accepted_capabilities` for each provider. For example, if you create a Connect Webview that accepts SmartThing devices, without specifying `accepted_capabilities`, Seam accepts only SmartThings locks. To connect SmartThings thermostats and locks to Seam, create a Connect Webview and include both `thermostat` and `lock` in the `accepted_capabilities`.',
7707
7749
  items: {
7708
- description: 'High-level device capabilities that the Connect Webview can accept.',
7750
+ description: '\n High-level device capabilities that can be restricted in connect webviews.\n These represent the main device categories that customers can opt into.\n',
7709
7751
  enum: ['lock', 'thermostat', 'noise_sensor', 'access_control'],
7710
7752
  type: 'string',
7711
7753
  },
@@ -7781,7 +7823,6 @@ export default {
7781
7823
  device_selection_mode: {
7782
7824
  enum: ['none', 'single', 'multiple'],
7783
7825
  type: 'string',
7784
- 'x-undocumented': 'Not implemented.',
7785
7826
  },
7786
7827
  login_successful: {
7787
7828
  description: 'Indicates whether the user logged in successfully using the Connect Webview.',
@@ -7840,6 +7881,15 @@ export default {
7840
7881
  connected_account: {
7841
7882
  description: 'Represents a [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). A connected account is an external third-party account to which your user has authorized Seam to get access, for example, an August account with a list of door locks.',
7842
7883
  properties: {
7884
+ accepted_capabilities: {
7885
+ description: 'List of capabilities that were accepted during the account connection process.',
7886
+ items: {
7887
+ description: '\n High-level device capabilities that can be restricted in connect webviews.\n These represent the main device categories that customers can opt into.\n',
7888
+ enum: ['lock', 'thermostat', 'noise_sensor', 'access_control'],
7889
+ type: 'string',
7890
+ },
7891
+ type: 'array',
7892
+ },
7843
7893
  account_type: {
7844
7894
  description: 'Type of connected account.',
7845
7895
  type: 'string',
@@ -8196,6 +8246,7 @@ export default {
8196
8246
  'warnings',
8197
8247
  'custom_metadata',
8198
8248
  'automatically_manage_new_devices',
8249
+ 'accepted_capabilities',
8199
8250
  ],
8200
8251
  type: 'object',
8201
8252
  'x-route-path': '/connected_accounts',
@@ -16641,6 +16692,18 @@ export default {
16641
16692
  required: ['door_type', 'door_name'],
16642
16693
  type: 'object',
16643
16694
  },
16695
+ can_unlock_with_card: {
16696
+ description: 'Indicates whether the ACS entrance can be unlocked with card credentials.',
16697
+ type: 'boolean',
16698
+ },
16699
+ can_unlock_with_code: {
16700
+ description: 'Indicates whether the ACS entrance can be unlocked with pin codes.',
16701
+ type: 'boolean',
16702
+ },
16703
+ can_unlock_with_mobile_key: {
16704
+ description: 'Indicates whether the ACS entrance can be unlocked with mobile key credentials.',
16705
+ type: 'boolean',
16706
+ },
16644
16707
  connected_account_id: {
16645
16708
  description: 'ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
16646
16709
  format: 'uuid',
@@ -16885,6 +16948,11 @@ export default {
16885
16948
  nullable: true,
16886
16949
  type: 'string',
16887
16950
  },
16951
+ connected_account_id: {
16952
+ description: 'ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.',
16953
+ format: 'uuid',
16954
+ type: 'string',
16955
+ },
16888
16956
  created_at: {
16889
16957
  description: 'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.',
16890
16958
  format: 'date-time',
@@ -17178,6 +17246,7 @@ export default {
17178
17246
  },
17179
17247
  },
17180
17248
  required: [
17249
+ 'connected_account_id',
17181
17250
  'acs_system_id',
17182
17251
  'display_name',
17183
17252
  'access_method',
@@ -19114,6 +19183,11 @@ export default {
19114
19183
  nullable: true,
19115
19184
  type: 'string',
19116
19185
  },
19186
+ connected_account_id: {
19187
+ description: 'ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.',
19188
+ format: 'uuid',
19189
+ type: 'string',
19190
+ },
19117
19191
  created_at: {
19118
19192
  description: 'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.',
19119
19193
  format: 'date-time',
@@ -19384,6 +19458,7 @@ export default {
19384
19458
  },
19385
19459
  required: [
19386
19460
  'acs_credential_id',
19461
+ 'connected_account_id',
19387
19462
  'acs_system_id',
19388
19463
  'display_name',
19389
19464
  'access_method',
@@ -21601,7 +21676,11 @@ export default {
21601
21676
  description: 'Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).',
21602
21677
  type: 'boolean',
21603
21678
  },
21604
- use_offline_access_code: { type: 'boolean' },
21679
+ use_offline_access_code: {
21680
+ deprecated: true,
21681
+ type: 'boolean',
21682
+ 'x-deprecated': 'Use `is_offline_access_code` instead.',
21683
+ },
21605
21684
  },
21606
21685
  required: ['device_id'],
21607
21686
  type: 'object',
@@ -21726,7 +21805,11 @@ export default {
21726
21805
  description: 'Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).',
21727
21806
  type: 'boolean',
21728
21807
  },
21729
- use_offline_access_code: { type: 'boolean' },
21808
+ use_offline_access_code: {
21809
+ deprecated: true,
21810
+ type: 'boolean',
21811
+ 'x-deprecated': 'Use `is_offline_access_code` instead.',
21812
+ },
21730
21813
  },
21731
21814
  required: ['device_ids'],
21732
21815
  type: 'object',
@@ -21847,7 +21930,11 @@ export default {
21847
21930
  description: 'Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).',
21848
21931
  type: 'boolean',
21849
21932
  },
21850
- use_offline_access_code: { type: 'boolean' },
21933
+ use_offline_access_code: {
21934
+ deprecated: true,
21935
+ type: 'boolean',
21936
+ 'x-deprecated': 'Use `is_offline_access_code` instead.',
21937
+ },
21851
21938
  },
21852
21939
  required: ['device_ids'],
21853
21940
  type: 'object',
@@ -23373,7 +23460,11 @@ export default {
23373
23460
  description: 'Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).',
23374
23461
  type: 'boolean',
23375
23462
  },
23376
- use_offline_access_code: { type: 'boolean' },
23463
+ use_offline_access_code: {
23464
+ deprecated: true,
23465
+ type: 'boolean',
23466
+ 'x-deprecated': 'Use `is_offline_access_code` instead.',
23467
+ },
23377
23468
  },
23378
23469
  required: ['access_code_id'],
23379
23470
  type: 'object',
@@ -23507,7 +23598,11 @@ export default {
23507
23598
  description: 'Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).',
23508
23599
  type: 'boolean',
23509
23600
  },
23510
- use_offline_access_code: { type: 'boolean' },
23601
+ use_offline_access_code: {
23602
+ deprecated: true,
23603
+ type: 'boolean',
23604
+ 'x-deprecated': 'Use `is_offline_access_code` instead.',
23605
+ },
23511
23606
  },
23512
23607
  required: ['access_code_id'],
23513
23608
  type: 'object',
@@ -23641,7 +23736,11 @@ export default {
23641
23736
  description: 'Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).',
23642
23737
  type: 'boolean',
23643
23738
  },
23644
- use_offline_access_code: { type: 'boolean' },
23739
+ use_offline_access_code: {
23740
+ deprecated: true,
23741
+ type: 'boolean',
23742
+ 'x-deprecated': 'Use `is_offline_access_code` instead.',
23743
+ },
23645
23744
  },
23646
23745
  required: ['access_code_id'],
23647
23746
  type: 'object',
@@ -23876,7 +23975,6 @@ export default {
23876
23975
  },
23877
23976
  ends_at: {
23878
23977
  description: 'Date and time at which the validity of the new grant ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`.',
23879
- format: 'date-time',
23880
23978
  type: 'string',
23881
23979
  },
23882
23980
  location: {
@@ -23930,7 +24028,6 @@ export default {
23930
24028
  },
23931
24029
  starts_at: {
23932
24030
  description: 'Date and time at which the validity of the new grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
23933
- format: 'date-time',
23934
24031
  type: 'string',
23935
24032
  },
23936
24033
  },
@@ -31682,7 +31779,7 @@ export default {
31682
31779
  accepted_capabilities: {
31683
31780
  description: 'List of accepted device capabilities that restrict the types of devices that can be connected through the Connect Webview. If not provided, defaults will be determined based on the accepted providers.',
31684
31781
  items: {
31685
- description: 'High-level device capabilities that the Connect Webview can accept.',
31782
+ description: '\n High-level device capabilities that can be restricted in connect webviews.\n These represent the main device categories that customers can opt into.\n',
31686
31783
  enum: [
31687
31784
  'lock',
31688
31785
  'thermostat',
@@ -34551,6 +34648,15 @@ export default {
34551
34648
  type: 'string',
34552
34649
  },
34553
34650
  },
34651
+ {
34652
+ in: 'query',
34653
+ name: 'search',
34654
+ schema: {
34655
+ description: 'String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.',
34656
+ minLength: 1,
34657
+ type: 'string',
34658
+ },
34659
+ },
34554
34660
  ],
34555
34661
  responses: {
34556
34662
  200: {
@@ -34853,6 +34959,11 @@ export default {
34853
34959
  nullable: true,
34854
34960
  type: 'string',
34855
34961
  },
34962
+ search: {
34963
+ description: 'String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.',
34964
+ minLength: 1,
34965
+ type: 'string',
34966
+ },
34856
34967
  space_id: {
34857
34968
  description: 'ID of the space for which you want to list devices.',
34858
34969
  format: 'uuid',
@@ -35643,6 +35754,15 @@ export default {
35643
35754
  type: 'string',
35644
35755
  },
35645
35756
  },
35757
+ {
35758
+ in: 'query',
35759
+ name: 'search',
35760
+ schema: {
35761
+ description: 'String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.',
35762
+ minLength: 1,
35763
+ type: 'string',
35764
+ },
35765
+ },
35646
35766
  ],
35647
35767
  responses: {
35648
35768
  200: {
@@ -35942,6 +36062,11 @@ export default {
35942
36062
  nullable: true,
35943
36063
  type: 'string',
35944
36064
  },
36065
+ search: {
36066
+ description: 'String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.',
36067
+ minLength: 1,
36068
+ type: 'string',
36069
+ },
35945
36070
  space_id: {
35946
36071
  description: 'ID of the space for which you want to list devices.',
35947
36072
  format: 'uuid',
@@ -37503,6 +37628,15 @@ export default {
37503
37628
  type: 'string',
37504
37629
  },
37505
37630
  },
37631
+ {
37632
+ in: 'query',
37633
+ name: 'search',
37634
+ schema: {
37635
+ description: 'String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.',
37636
+ minLength: 1,
37637
+ type: 'string',
37638
+ },
37639
+ },
37506
37640
  ],
37507
37641
  responses: {
37508
37642
  200: {
@@ -37743,6 +37877,11 @@ export default {
37743
37877
  nullable: true,
37744
37878
  type: 'string',
37745
37879
  },
37880
+ search: {
37881
+ description: 'String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.',
37882
+ minLength: 1,
37883
+ type: 'string',
37884
+ },
37746
37885
  space_id: {
37747
37886
  description: 'ID of the space for which you want to list devices.',
37748
37887
  format: 'uuid',
@@ -38482,6 +38621,15 @@ export default {
38482
38621
  type: 'string',
38483
38622
  },
38484
38623
  },
38624
+ {
38625
+ in: 'query',
38626
+ name: 'search',
38627
+ schema: {
38628
+ description: 'String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.',
38629
+ minLength: 1,
38630
+ type: 'string',
38631
+ },
38632
+ },
38485
38633
  ],
38486
38634
  responses: {
38487
38635
  200: {
@@ -38637,6 +38785,11 @@ export default {
38637
38785
  nullable: true,
38638
38786
  type: 'string',
38639
38787
  },
38788
+ search: {
38789
+ description: 'String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.',
38790
+ minLength: 1,
38791
+ type: 'string',
38792
+ },
38640
38793
  space_id: {
38641
38794
  description: 'ID of the space for which you want to list devices.',
38642
38795
  format: 'uuid',
@@ -42995,6 +43148,15 @@ export default {
42995
43148
  type: 'string',
42996
43149
  },
42997
43150
  },
43151
+ {
43152
+ in: 'query',
43153
+ name: 'search',
43154
+ schema: {
43155
+ description: 'String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.',
43156
+ minLength: 1,
43157
+ type: 'string',
43158
+ },
43159
+ },
42998
43160
  ],
42999
43161
  responses: {
43000
43162
  200: {
@@ -43171,6 +43333,11 @@ export default {
43171
43333
  nullable: true,
43172
43334
  type: 'string',
43173
43335
  },
43336
+ search: {
43337
+ description: 'String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.',
43338
+ minLength: 1,
43339
+ type: 'string',
43340
+ },
43174
43341
  space_id: {
43175
43342
  description: 'ID of the space for which you want to list devices.',
43176
43343
  format: 'uuid',
@@ -47886,6 +48053,14 @@ export default {
47886
48053
  description: '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).',
47887
48054
  operationId: 'userIdentitiesListGet',
47888
48055
  parameters: [
48056
+ {
48057
+ in: 'query',
48058
+ name: 'search',
48059
+ schema: {
48060
+ description: '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`.',
48061
+ type: 'string',
48062
+ },
48063
+ },
47889
48064
  {
47890
48065
  in: 'query',
47891
48066
  name: 'credential_manager_acs_system_id',
@@ -47945,6 +48120,10 @@ export default {
47945
48120
  format: 'uuid',
47946
48121
  type: 'string',
47947
48122
  },
48123
+ search: {
48124
+ description: '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`.',
48125
+ type: 'string',
48126
+ },
47948
48127
  },
47949
48128
  type: 'object',
47950
48129
  },