@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.
- package/dist/connect.cjs +225 -24
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +602 -12
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs-credential.js +4 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +25 -2
- package/lib/seam/connect/models/acs/acs-entrance.js +18 -2
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.js +4 -1
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
- package/lib/seam/connect/models/connect-webviews/connect-webview.d.ts +2 -4
- package/lib/seam/connect/models/connect-webviews/connect-webview.js +3 -9
- package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +3 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +4 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -2
- package/lib/seam/connect/models/index.d.ts +1 -0
- package/lib/seam/connect/models/index.js +1 -0
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +66 -4
- package/lib/seam/connect/models/provider-capability.d.ts +3 -0
- package/lib/seam/connect/models/provider-capability.js +11 -0
- package/lib/seam/connect/models/provider-capability.js.map +1 -0
- package/lib/seam/connect/openapi.d.ts +263 -5
- package/lib/seam/connect/openapi.js +190 -11
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +292 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +2 -0
- package/src/lib/seam/connect/models/acs/acs-credential.ts +6 -0
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +93 -70
- package/src/lib/seam/connect/models/acs/acs-system.ts +4 -1
- package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +3 -16
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +6 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -2
- package/src/lib/seam/connect/models/index.ts +1 -0
- package/src/lib/seam/connect/models/provider-capability.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +217 -11
- package/src/lib/seam/connect/route-types.ts +298 -3
|
@@ -2179,6 +2179,12 @@ export default {
|
|
|
2179
2179
|
nullable: true,
|
|
2180
2180
|
type: 'string',
|
|
2181
2181
|
},
|
|
2182
|
+
connected_account_id: {
|
|
2183
|
+
description:
|
|
2184
|
+
'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.',
|
|
2185
|
+
format: 'uuid',
|
|
2186
|
+
type: 'string',
|
|
2187
|
+
},
|
|
2182
2188
|
created_at: {
|
|
2183
2189
|
description:
|
|
2184
2190
|
'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.',
|
|
@@ -2497,6 +2503,7 @@ export default {
|
|
|
2497
2503
|
},
|
|
2498
2504
|
required: [
|
|
2499
2505
|
'acs_credential_id',
|
|
2506
|
+
'connected_account_id',
|
|
2500
2507
|
'acs_system_id',
|
|
2501
2508
|
'display_name',
|
|
2502
2509
|
'access_method',
|
|
@@ -2686,6 +2693,21 @@ export default {
|
|
|
2686
2693
|
required: ['door_type', 'door_name'],
|
|
2687
2694
|
type: 'object',
|
|
2688
2695
|
},
|
|
2696
|
+
can_unlock_with_card: {
|
|
2697
|
+
description:
|
|
2698
|
+
'Indicates whether the ACS entrance can be unlocked with card credentials.',
|
|
2699
|
+
type: 'boolean',
|
|
2700
|
+
},
|
|
2701
|
+
can_unlock_with_code: {
|
|
2702
|
+
description:
|
|
2703
|
+
'Indicates whether the ACS entrance can be unlocked with pin codes.',
|
|
2704
|
+
type: 'boolean',
|
|
2705
|
+
},
|
|
2706
|
+
can_unlock_with_mobile_key: {
|
|
2707
|
+
description:
|
|
2708
|
+
'Indicates whether the ACS entrance can be unlocked with mobile key credentials.',
|
|
2709
|
+
type: 'boolean',
|
|
2710
|
+
},
|
|
2689
2711
|
connected_account_id: {
|
|
2690
2712
|
description:
|
|
2691
2713
|
'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).',
|
|
@@ -4531,6 +4553,12 @@ export default {
|
|
|
4531
4553
|
nullable: true,
|
|
4532
4554
|
type: 'string',
|
|
4533
4555
|
},
|
|
4556
|
+
connected_account_id: {
|
|
4557
|
+
description:
|
|
4558
|
+
'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.',
|
|
4559
|
+
format: 'uuid',
|
|
4560
|
+
type: 'string',
|
|
4561
|
+
},
|
|
4534
4562
|
created_at: {
|
|
4535
4563
|
description:
|
|
4536
4564
|
'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.',
|
|
@@ -4877,6 +4905,7 @@ export default {
|
|
|
4877
4905
|
},
|
|
4878
4906
|
required: [
|
|
4879
4907
|
'acs_credential_id',
|
|
4908
|
+
'connected_account_id',
|
|
4880
4909
|
'acs_system_id',
|
|
4881
4910
|
'display_name',
|
|
4882
4911
|
'access_method',
|
|
@@ -4972,6 +5001,12 @@ export default {
|
|
|
4972
5001
|
nullable: true,
|
|
4973
5002
|
type: 'string',
|
|
4974
5003
|
},
|
|
5004
|
+
connected_account_id: {
|
|
5005
|
+
description:
|
|
5006
|
+
'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.',
|
|
5007
|
+
format: 'uuid',
|
|
5008
|
+
type: 'string',
|
|
5009
|
+
},
|
|
4975
5010
|
created_at: {
|
|
4976
5011
|
description:
|
|
4977
5012
|
'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.',
|
|
@@ -5318,6 +5353,7 @@ export default {
|
|
|
5318
5353
|
},
|
|
5319
5354
|
required: [
|
|
5320
5355
|
'acs_credential_id',
|
|
5356
|
+
'connected_account_id',
|
|
5321
5357
|
'acs_system_id',
|
|
5322
5358
|
'display_name',
|
|
5323
5359
|
'access_method',
|
|
@@ -5865,6 +5901,12 @@ export default {
|
|
|
5865
5901
|
nullable: true,
|
|
5866
5902
|
type: 'string',
|
|
5867
5903
|
},
|
|
5904
|
+
connected_account_id: {
|
|
5905
|
+
description:
|
|
5906
|
+
'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.',
|
|
5907
|
+
format: 'uuid',
|
|
5908
|
+
type: 'string',
|
|
5909
|
+
},
|
|
5868
5910
|
created_at: {
|
|
5869
5911
|
description:
|
|
5870
5912
|
'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.',
|
|
@@ -6209,6 +6251,7 @@ export default {
|
|
|
6209
6251
|
},
|
|
6210
6252
|
required: [
|
|
6211
6253
|
'acs_credential_id',
|
|
6254
|
+
'connected_account_id',
|
|
6212
6255
|
'acs_system_id',
|
|
6213
6256
|
'display_name',
|
|
6214
6257
|
'access_method',
|
|
@@ -6303,6 +6346,12 @@ export default {
|
|
|
6303
6346
|
nullable: true,
|
|
6304
6347
|
type: 'string',
|
|
6305
6348
|
},
|
|
6349
|
+
connected_account_id: {
|
|
6350
|
+
description:
|
|
6351
|
+
'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.',
|
|
6352
|
+
format: 'uuid',
|
|
6353
|
+
type: 'string',
|
|
6354
|
+
},
|
|
6306
6355
|
created_at: {
|
|
6307
6356
|
description:
|
|
6308
6357
|
'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.',
|
|
@@ -6647,6 +6696,7 @@ export default {
|
|
|
6647
6696
|
},
|
|
6648
6697
|
required: [
|
|
6649
6698
|
'acs_credential_id',
|
|
6699
|
+
'connected_account_id',
|
|
6650
6700
|
'acs_system_id',
|
|
6651
6701
|
'display_name',
|
|
6652
6702
|
'access_method',
|
|
@@ -8714,7 +8764,7 @@ export default {
|
|
|
8714
8764
|
'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`.',
|
|
8715
8765
|
items: {
|
|
8716
8766
|
description:
|
|
8717
|
-
'High-level device capabilities that the
|
|
8767
|
+
'\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',
|
|
8718
8768
|
enum: ['lock', 'thermostat', 'noise_sensor', 'access_control'],
|
|
8719
8769
|
type: 'string',
|
|
8720
8770
|
},
|
|
@@ -8798,7 +8848,6 @@ export default {
|
|
|
8798
8848
|
device_selection_mode: {
|
|
8799
8849
|
enum: ['none', 'single', 'multiple'],
|
|
8800
8850
|
type: 'string',
|
|
8801
|
-
'x-undocumented': 'Not implemented.',
|
|
8802
8851
|
},
|
|
8803
8852
|
login_successful: {
|
|
8804
8853
|
description:
|
|
@@ -8864,6 +8913,17 @@ export default {
|
|
|
8864
8913
|
description:
|
|
8865
8914
|
'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.',
|
|
8866
8915
|
properties: {
|
|
8916
|
+
accepted_capabilities: {
|
|
8917
|
+
description:
|
|
8918
|
+
'List of capabilities that were accepted during the account connection process.',
|
|
8919
|
+
items: {
|
|
8920
|
+
description:
|
|
8921
|
+
'\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',
|
|
8922
|
+
enum: ['lock', 'thermostat', 'noise_sensor', 'access_control'],
|
|
8923
|
+
type: 'string',
|
|
8924
|
+
},
|
|
8925
|
+
type: 'array',
|
|
8926
|
+
},
|
|
8867
8927
|
account_type: {
|
|
8868
8928
|
description: 'Type of connected account.',
|
|
8869
8929
|
type: 'string',
|
|
@@ -9279,6 +9339,7 @@ export default {
|
|
|
9279
9339
|
'warnings',
|
|
9280
9340
|
'custom_metadata',
|
|
9281
9341
|
'automatically_manage_new_devices',
|
|
9342
|
+
'accepted_capabilities',
|
|
9282
9343
|
],
|
|
9283
9344
|
type: 'object',
|
|
9284
9345
|
'x-route-path': '/connected_accounts',
|
|
@@ -18447,6 +18508,21 @@ export default {
|
|
|
18447
18508
|
required: ['door_type', 'door_name'],
|
|
18448
18509
|
type: 'object',
|
|
18449
18510
|
},
|
|
18511
|
+
can_unlock_with_card: {
|
|
18512
|
+
description:
|
|
18513
|
+
'Indicates whether the ACS entrance can be unlocked with card credentials.',
|
|
18514
|
+
type: 'boolean',
|
|
18515
|
+
},
|
|
18516
|
+
can_unlock_with_code: {
|
|
18517
|
+
description:
|
|
18518
|
+
'Indicates whether the ACS entrance can be unlocked with pin codes.',
|
|
18519
|
+
type: 'boolean',
|
|
18520
|
+
},
|
|
18521
|
+
can_unlock_with_mobile_key: {
|
|
18522
|
+
description:
|
|
18523
|
+
'Indicates whether the ACS entrance can be unlocked with mobile key credentials.',
|
|
18524
|
+
type: 'boolean',
|
|
18525
|
+
},
|
|
18450
18526
|
connected_account_id: {
|
|
18451
18527
|
description:
|
|
18452
18528
|
'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).',
|
|
@@ -18733,6 +18809,12 @@ export default {
|
|
|
18733
18809
|
nullable: true,
|
|
18734
18810
|
type: 'string',
|
|
18735
18811
|
},
|
|
18812
|
+
connected_account_id: {
|
|
18813
|
+
description:
|
|
18814
|
+
'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.',
|
|
18815
|
+
format: 'uuid',
|
|
18816
|
+
type: 'string',
|
|
18817
|
+
},
|
|
18736
18818
|
created_at: {
|
|
18737
18819
|
description:
|
|
18738
18820
|
'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.',
|
|
@@ -19076,6 +19158,7 @@ export default {
|
|
|
19076
19158
|
},
|
|
19077
19159
|
},
|
|
19078
19160
|
required: [
|
|
19161
|
+
'connected_account_id',
|
|
19079
19162
|
'acs_system_id',
|
|
19080
19163
|
'display_name',
|
|
19081
19164
|
'access_method',
|
|
@@ -21294,6 +21377,12 @@ export default {
|
|
|
21294
21377
|
nullable: true,
|
|
21295
21378
|
type: 'string',
|
|
21296
21379
|
},
|
|
21380
|
+
connected_account_id: {
|
|
21381
|
+
description:
|
|
21382
|
+
'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.',
|
|
21383
|
+
format: 'uuid',
|
|
21384
|
+
type: 'string',
|
|
21385
|
+
},
|
|
21297
21386
|
created_at: {
|
|
21298
21387
|
description:
|
|
21299
21388
|
'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.',
|
|
@@ -21612,6 +21701,7 @@ export default {
|
|
|
21612
21701
|
},
|
|
21613
21702
|
required: [
|
|
21614
21703
|
'acs_credential_id',
|
|
21704
|
+
'connected_account_id',
|
|
21615
21705
|
'acs_system_id',
|
|
21616
21706
|
'display_name',
|
|
21617
21707
|
'access_method',
|
|
@@ -24119,7 +24209,11 @@ export default {
|
|
|
24119
24209
|
'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).',
|
|
24120
24210
|
type: 'boolean',
|
|
24121
24211
|
},
|
|
24122
|
-
use_offline_access_code: {
|
|
24212
|
+
use_offline_access_code: {
|
|
24213
|
+
deprecated: true,
|
|
24214
|
+
type: 'boolean',
|
|
24215
|
+
'x-deprecated': 'Use `is_offline_access_code` instead.',
|
|
24216
|
+
},
|
|
24123
24217
|
},
|
|
24124
24218
|
required: ['device_id'],
|
|
24125
24219
|
type: 'object',
|
|
@@ -24258,7 +24352,11 @@ export default {
|
|
|
24258
24352
|
'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).',
|
|
24259
24353
|
type: 'boolean',
|
|
24260
24354
|
},
|
|
24261
|
-
use_offline_access_code: {
|
|
24355
|
+
use_offline_access_code: {
|
|
24356
|
+
deprecated: true,
|
|
24357
|
+
type: 'boolean',
|
|
24358
|
+
'x-deprecated': 'Use `is_offline_access_code` instead.',
|
|
24359
|
+
},
|
|
24262
24360
|
},
|
|
24263
24361
|
required: ['device_ids'],
|
|
24264
24362
|
type: 'object',
|
|
@@ -24393,7 +24491,11 @@ export default {
|
|
|
24393
24491
|
'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).',
|
|
24394
24492
|
type: 'boolean',
|
|
24395
24493
|
},
|
|
24396
|
-
use_offline_access_code: {
|
|
24494
|
+
use_offline_access_code: {
|
|
24495
|
+
deprecated: true,
|
|
24496
|
+
type: 'boolean',
|
|
24497
|
+
'x-deprecated': 'Use `is_offline_access_code` instead.',
|
|
24498
|
+
},
|
|
24397
24499
|
},
|
|
24398
24500
|
required: ['device_ids'],
|
|
24399
24501
|
type: 'object',
|
|
@@ -26011,7 +26113,11 @@ export default {
|
|
|
26011
26113
|
'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).',
|
|
26012
26114
|
type: 'boolean',
|
|
26013
26115
|
},
|
|
26014
|
-
use_offline_access_code: {
|
|
26116
|
+
use_offline_access_code: {
|
|
26117
|
+
deprecated: true,
|
|
26118
|
+
type: 'boolean',
|
|
26119
|
+
'x-deprecated': 'Use `is_offline_access_code` instead.',
|
|
26120
|
+
},
|
|
26015
26121
|
},
|
|
26016
26122
|
required: ['access_code_id'],
|
|
26017
26123
|
type: 'object',
|
|
@@ -26161,7 +26267,11 @@ export default {
|
|
|
26161
26267
|
'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).',
|
|
26162
26268
|
type: 'boolean',
|
|
26163
26269
|
},
|
|
26164
|
-
use_offline_access_code: {
|
|
26270
|
+
use_offline_access_code: {
|
|
26271
|
+
deprecated: true,
|
|
26272
|
+
type: 'boolean',
|
|
26273
|
+
'x-deprecated': 'Use `is_offline_access_code` instead.',
|
|
26274
|
+
},
|
|
26165
26275
|
},
|
|
26166
26276
|
required: ['access_code_id'],
|
|
26167
26277
|
type: 'object',
|
|
@@ -26311,7 +26421,11 @@ export default {
|
|
|
26311
26421
|
'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).',
|
|
26312
26422
|
type: 'boolean',
|
|
26313
26423
|
},
|
|
26314
|
-
use_offline_access_code: {
|
|
26424
|
+
use_offline_access_code: {
|
|
26425
|
+
deprecated: true,
|
|
26426
|
+
type: 'boolean',
|
|
26427
|
+
'x-deprecated': 'Use `is_offline_access_code` instead.',
|
|
26428
|
+
},
|
|
26315
26429
|
},
|
|
26316
26430
|
required: ['access_code_id'],
|
|
26317
26431
|
type: 'object',
|
|
@@ -26563,7 +26677,6 @@ export default {
|
|
|
26563
26677
|
ends_at: {
|
|
26564
26678
|
description:
|
|
26565
26679
|
'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`.',
|
|
26566
|
-
format: 'date-time',
|
|
26567
26680
|
type: 'string',
|
|
26568
26681
|
},
|
|
26569
26682
|
location: {
|
|
@@ -26623,7 +26736,6 @@ export default {
|
|
|
26623
26736
|
starts_at: {
|
|
26624
26737
|
description:
|
|
26625
26738
|
'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.',
|
|
26626
|
-
format: 'date-time',
|
|
26627
26739
|
type: 'string',
|
|
26628
26740
|
},
|
|
26629
26741
|
},
|
|
@@ -34789,7 +34901,7 @@ export default {
|
|
|
34789
34901
|
'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.',
|
|
34790
34902
|
items: {
|
|
34791
34903
|
description:
|
|
34792
|
-
'High-level device capabilities that the
|
|
34904
|
+
'\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',
|
|
34793
34905
|
enum: [
|
|
34794
34906
|
'lock',
|
|
34795
34907
|
'thermostat',
|
|
@@ -37908,6 +38020,16 @@ export default {
|
|
|
37908
38020
|
type: 'string',
|
|
37909
38021
|
},
|
|
37910
38022
|
},
|
|
38023
|
+
{
|
|
38024
|
+
in: 'query',
|
|
38025
|
+
name: 'search',
|
|
38026
|
+
schema: {
|
|
38027
|
+
description:
|
|
38028
|
+
'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`.',
|
|
38029
|
+
minLength: 1,
|
|
38030
|
+
type: 'string',
|
|
38031
|
+
},
|
|
38032
|
+
},
|
|
37911
38033
|
],
|
|
37912
38034
|
responses: {
|
|
37913
38035
|
200: {
|
|
@@ -38226,6 +38348,12 @@ export default {
|
|
|
38226
38348
|
nullable: true,
|
|
38227
38349
|
type: 'string',
|
|
38228
38350
|
},
|
|
38351
|
+
search: {
|
|
38352
|
+
description:
|
|
38353
|
+
'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`.',
|
|
38354
|
+
minLength: 1,
|
|
38355
|
+
type: 'string',
|
|
38356
|
+
},
|
|
38229
38357
|
space_id: {
|
|
38230
38358
|
description:
|
|
38231
38359
|
'ID of the space for which you want to list devices.',
|
|
@@ -39043,6 +39171,16 @@ export default {
|
|
|
39043
39171
|
type: 'string',
|
|
39044
39172
|
},
|
|
39045
39173
|
},
|
|
39174
|
+
{
|
|
39175
|
+
in: 'query',
|
|
39176
|
+
name: 'search',
|
|
39177
|
+
schema: {
|
|
39178
|
+
description:
|
|
39179
|
+
'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`.',
|
|
39180
|
+
minLength: 1,
|
|
39181
|
+
type: 'string',
|
|
39182
|
+
},
|
|
39183
|
+
},
|
|
39046
39184
|
],
|
|
39047
39185
|
responses: {
|
|
39048
39186
|
200: {
|
|
@@ -39358,6 +39496,12 @@ export default {
|
|
|
39358
39496
|
nullable: true,
|
|
39359
39497
|
type: 'string',
|
|
39360
39498
|
},
|
|
39499
|
+
search: {
|
|
39500
|
+
description:
|
|
39501
|
+
'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`.',
|
|
39502
|
+
minLength: 1,
|
|
39503
|
+
type: 'string',
|
|
39504
|
+
},
|
|
39361
39505
|
space_id: {
|
|
39362
39506
|
description:
|
|
39363
39507
|
'ID of the space for which you want to list devices.',
|
|
@@ -40977,6 +41121,16 @@ export default {
|
|
|
40977
41121
|
type: 'string',
|
|
40978
41122
|
},
|
|
40979
41123
|
},
|
|
41124
|
+
{
|
|
41125
|
+
in: 'query',
|
|
41126
|
+
name: 'search',
|
|
41127
|
+
schema: {
|
|
41128
|
+
description:
|
|
41129
|
+
'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`.',
|
|
41130
|
+
minLength: 1,
|
|
41131
|
+
type: 'string',
|
|
41132
|
+
},
|
|
41133
|
+
},
|
|
40980
41134
|
],
|
|
40981
41135
|
responses: {
|
|
40982
41136
|
200: {
|
|
@@ -41229,6 +41383,12 @@ export default {
|
|
|
41229
41383
|
nullable: true,
|
|
41230
41384
|
type: 'string',
|
|
41231
41385
|
},
|
|
41386
|
+
search: {
|
|
41387
|
+
description:
|
|
41388
|
+
'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`.',
|
|
41389
|
+
minLength: 1,
|
|
41390
|
+
type: 'string',
|
|
41391
|
+
},
|
|
41232
41392
|
space_id: {
|
|
41233
41393
|
description:
|
|
41234
41394
|
'ID of the space for which you want to list devices.',
|
|
@@ -41991,6 +42151,16 @@ export default {
|
|
|
41991
42151
|
type: 'string',
|
|
41992
42152
|
},
|
|
41993
42153
|
},
|
|
42154
|
+
{
|
|
42155
|
+
in: 'query',
|
|
42156
|
+
name: 'search',
|
|
42157
|
+
schema: {
|
|
42158
|
+
description:
|
|
42159
|
+
'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`.',
|
|
42160
|
+
minLength: 1,
|
|
42161
|
+
type: 'string',
|
|
42162
|
+
},
|
|
42163
|
+
},
|
|
41994
42164
|
],
|
|
41995
42165
|
responses: {
|
|
41996
42166
|
200: {
|
|
@@ -42158,6 +42328,12 @@ export default {
|
|
|
42158
42328
|
nullable: true,
|
|
42159
42329
|
type: 'string',
|
|
42160
42330
|
},
|
|
42331
|
+
search: {
|
|
42332
|
+
description:
|
|
42333
|
+
'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`.',
|
|
42334
|
+
minLength: 1,
|
|
42335
|
+
type: 'string',
|
|
42336
|
+
},
|
|
42161
42337
|
space_id: {
|
|
42162
42338
|
description:
|
|
42163
42339
|
'ID of the space for which you want to list devices.',
|
|
@@ -46720,6 +46896,16 @@ export default {
|
|
|
46720
46896
|
type: 'string',
|
|
46721
46897
|
},
|
|
46722
46898
|
},
|
|
46899
|
+
{
|
|
46900
|
+
in: 'query',
|
|
46901
|
+
name: 'search',
|
|
46902
|
+
schema: {
|
|
46903
|
+
description:
|
|
46904
|
+
'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`.',
|
|
46905
|
+
minLength: 1,
|
|
46906
|
+
type: 'string',
|
|
46907
|
+
},
|
|
46908
|
+
},
|
|
46723
46909
|
],
|
|
46724
46910
|
responses: {
|
|
46725
46911
|
200: {
|
|
@@ -46908,6 +47094,12 @@ export default {
|
|
|
46908
47094
|
nullable: true,
|
|
46909
47095
|
type: 'string',
|
|
46910
47096
|
},
|
|
47097
|
+
search: {
|
|
47098
|
+
description:
|
|
47099
|
+
'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`.',
|
|
47100
|
+
minLength: 1,
|
|
47101
|
+
type: 'string',
|
|
47102
|
+
},
|
|
46911
47103
|
space_id: {
|
|
46912
47104
|
description:
|
|
46913
47105
|
'ID of the space for which you want to list devices.',
|
|
@@ -51857,6 +52049,15 @@ export default {
|
|
|
51857
52049
|
'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).',
|
|
51858
52050
|
operationId: 'userIdentitiesListGet',
|
|
51859
52051
|
parameters: [
|
|
52052
|
+
{
|
|
52053
|
+
in: 'query',
|
|
52054
|
+
name: 'search',
|
|
52055
|
+
schema: {
|
|
52056
|
+
description:
|
|
52057
|
+
'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`.',
|
|
52058
|
+
type: 'string',
|
|
52059
|
+
},
|
|
52060
|
+
},
|
|
51860
52061
|
{
|
|
51861
52062
|
in: 'query',
|
|
51862
52063
|
name: 'credential_manager_acs_system_id',
|
|
@@ -51919,6 +52120,11 @@ export default {
|
|
|
51919
52120
|
format: 'uuid',
|
|
51920
52121
|
type: 'string',
|
|
51921
52122
|
},
|
|
52123
|
+
search: {
|
|
52124
|
+
description:
|
|
52125
|
+
'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`.',
|
|
52126
|
+
type: 'string',
|
|
52127
|
+
},
|
|
51922
52128
|
},
|
|
51923
52129
|
type: 'object',
|
|
51924
52130
|
},
|