@seamapi/types 1.417.0 → 1.418.1
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 +309 -89
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +490 -4
- package/lib/seam/connect/models/access-codes/managed-access-code.js +41 -7
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/devices/device.js +131 -67
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +490 -4
- package/lib/seam/connect/openapi.js +118 -18
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +45 -15
- package/src/lib/seam/connect/models/devices/device.ts +202 -150
- package/src/lib/seam/connect/openapi.ts +124 -18
|
@@ -891,6 +891,7 @@ export default {
|
|
|
891
891
|
'is_connected_account_error',
|
|
892
892
|
],
|
|
893
893
|
type: 'object',
|
|
894
|
+
'x-variant-group-key': 'locks',
|
|
894
895
|
},
|
|
895
896
|
{
|
|
896
897
|
description: 'Indicates that the device is offline.',
|
|
@@ -1067,6 +1068,7 @@ export default {
|
|
|
1067
1068
|
'error_code',
|
|
1068
1069
|
],
|
|
1069
1070
|
type: 'object',
|
|
1071
|
+
'x-variant-group-key': 'access_codes',
|
|
1070
1072
|
},
|
|
1071
1073
|
{
|
|
1072
1074
|
description:
|
|
@@ -1103,6 +1105,7 @@ export default {
|
|
|
1103
1105
|
'error_code',
|
|
1104
1106
|
],
|
|
1105
1107
|
type: 'object',
|
|
1108
|
+
'x-variant-group-key': 'locks',
|
|
1106
1109
|
},
|
|
1107
1110
|
{
|
|
1108
1111
|
description:
|
|
@@ -1139,10 +1142,11 @@ export default {
|
|
|
1139
1142
|
'error_code',
|
|
1140
1143
|
],
|
|
1141
1144
|
type: 'object',
|
|
1145
|
+
'x-variant-group-key': 'locks',
|
|
1142
1146
|
},
|
|
1143
1147
|
{
|
|
1144
1148
|
description:
|
|
1145
|
-
'Indicates that the lock is not paired with a gateway
|
|
1149
|
+
'\n Indicates that the lock is not paired with a gateway.\n ',
|
|
1146
1150
|
properties: {
|
|
1147
1151
|
created_at: {
|
|
1148
1152
|
description:
|
|
@@ -1212,7 +1216,8 @@ export default {
|
|
|
1212
1216
|
type: 'object',
|
|
1213
1217
|
},
|
|
1214
1218
|
{
|
|
1215
|
-
description:
|
|
1219
|
+
description:
|
|
1220
|
+
'\n Indicates that the auxiliary heat is running.\n ',
|
|
1216
1221
|
properties: {
|
|
1217
1222
|
created_at: {
|
|
1218
1223
|
description:
|
|
@@ -1284,7 +1289,7 @@ export default {
|
|
|
1284
1289
|
},
|
|
1285
1290
|
{
|
|
1286
1291
|
description:
|
|
1287
|
-
'Indicates that the Lockly lock is not connected to a Wi-Fi bridge
|
|
1292
|
+
'\n Indicates that the Lockly lock is not connected to a Wi-Fi bridge.\n ',
|
|
1288
1293
|
properties: {
|
|
1289
1294
|
created_at: {
|
|
1290
1295
|
description:
|
|
@@ -1391,6 +1396,15 @@ export default {
|
|
|
1391
1396
|
],
|
|
1392
1397
|
},
|
|
1393
1398
|
type: 'array',
|
|
1399
|
+
'x-variant-groups': {
|
|
1400
|
+
access_codes: { name: 'Access Codes' },
|
|
1401
|
+
hardware: { name: 'Hardware' },
|
|
1402
|
+
locks: { name: 'Locks' },
|
|
1403
|
+
noise_sensors: { name: 'Noise Sensors' },
|
|
1404
|
+
phones: { name: 'Phones' },
|
|
1405
|
+
provider_metadata: { name: 'Provider Metadata' },
|
|
1406
|
+
thermostats: { name: 'Thermostats' },
|
|
1407
|
+
},
|
|
1394
1408
|
},
|
|
1395
1409
|
is_backup: {
|
|
1396
1410
|
description: 'Indicates whether the access code is a backup code.',
|
|
@@ -1768,6 +1782,15 @@ export default {
|
|
|
1768
1782
|
],
|
|
1769
1783
|
},
|
|
1770
1784
|
type: 'array',
|
|
1785
|
+
'x-variant-groups': {
|
|
1786
|
+
access_codes: { name: 'Access Codes' },
|
|
1787
|
+
hardware: { name: 'Hardware' },
|
|
1788
|
+
locks: { name: 'Locks' },
|
|
1789
|
+
noise_sensors: { name: 'Noise Sensors' },
|
|
1790
|
+
phones: { name: 'Phones' },
|
|
1791
|
+
provider_metadata: { name: 'Provider Metadata' },
|
|
1792
|
+
thermostats: { name: 'Thermostats' },
|
|
1793
|
+
},
|
|
1771
1794
|
},
|
|
1772
1795
|
},
|
|
1773
1796
|
required: [
|
|
@@ -9463,6 +9486,7 @@ export default {
|
|
|
9463
9486
|
'is_connected_account_error',
|
|
9464
9487
|
],
|
|
9465
9488
|
type: 'object',
|
|
9489
|
+
'x-variant-group-key': 'locks',
|
|
9466
9490
|
},
|
|
9467
9491
|
{
|
|
9468
9492
|
description: 'Indicates that the device is offline.',
|
|
@@ -9639,6 +9663,7 @@ export default {
|
|
|
9639
9663
|
'error_code',
|
|
9640
9664
|
],
|
|
9641
9665
|
type: 'object',
|
|
9666
|
+
'x-variant-group-key': 'access_codes',
|
|
9642
9667
|
},
|
|
9643
9668
|
{
|
|
9644
9669
|
description:
|
|
@@ -9675,6 +9700,7 @@ export default {
|
|
|
9675
9700
|
'error_code',
|
|
9676
9701
|
],
|
|
9677
9702
|
type: 'object',
|
|
9703
|
+
'x-variant-group-key': 'locks',
|
|
9678
9704
|
},
|
|
9679
9705
|
{
|
|
9680
9706
|
description:
|
|
@@ -9711,10 +9737,11 @@ export default {
|
|
|
9711
9737
|
'error_code',
|
|
9712
9738
|
],
|
|
9713
9739
|
type: 'object',
|
|
9740
|
+
'x-variant-group-key': 'locks',
|
|
9714
9741
|
},
|
|
9715
9742
|
{
|
|
9716
9743
|
description:
|
|
9717
|
-
'Indicates that the lock is not paired with a gateway
|
|
9744
|
+
'\n Indicates that the lock is not paired with a gateway.\n ',
|
|
9718
9745
|
properties: {
|
|
9719
9746
|
created_at: {
|
|
9720
9747
|
description:
|
|
@@ -9784,7 +9811,8 @@ export default {
|
|
|
9784
9811
|
type: 'object',
|
|
9785
9812
|
},
|
|
9786
9813
|
{
|
|
9787
|
-
description:
|
|
9814
|
+
description:
|
|
9815
|
+
'\n Indicates that the auxiliary heat is running.\n ',
|
|
9788
9816
|
properties: {
|
|
9789
9817
|
created_at: {
|
|
9790
9818
|
description:
|
|
@@ -9856,7 +9884,7 @@ export default {
|
|
|
9856
9884
|
},
|
|
9857
9885
|
{
|
|
9858
9886
|
description:
|
|
9859
|
-
'Indicates that the Lockly lock is not connected to a Wi-Fi bridge
|
|
9887
|
+
'\n Indicates that the Lockly lock is not connected to a Wi-Fi bridge.\n ',
|
|
9860
9888
|
properties: {
|
|
9861
9889
|
created_at: {
|
|
9862
9890
|
description:
|
|
@@ -9963,6 +9991,15 @@ export default {
|
|
|
9963
9991
|
],
|
|
9964
9992
|
},
|
|
9965
9993
|
type: 'array',
|
|
9994
|
+
'x-variant-groups': {
|
|
9995
|
+
access_codes: { name: 'Access Codes' },
|
|
9996
|
+
hardware: { name: 'Hardware' },
|
|
9997
|
+
locks: { name: 'Locks' },
|
|
9998
|
+
noise_sensors: { name: 'Noise Sensors' },
|
|
9999
|
+
phones: { name: 'Phones' },
|
|
10000
|
+
provider_metadata: { name: 'Provider Metadata' },
|
|
10001
|
+
thermostats: { name: 'Thermostats' },
|
|
10002
|
+
},
|
|
9966
10003
|
},
|
|
9967
10004
|
is_managed: {
|
|
9968
10005
|
description:
|
|
@@ -12251,6 +12288,7 @@ export default {
|
|
|
12251
12288
|
},
|
|
12252
12289
|
required: ['message', 'created_at', 'warning_code'],
|
|
12253
12290
|
type: 'object',
|
|
12291
|
+
'x-variant-group-key': 'access_codes',
|
|
12254
12292
|
},
|
|
12255
12293
|
{
|
|
12256
12294
|
description:
|
|
@@ -12276,10 +12314,11 @@ export default {
|
|
|
12276
12314
|
},
|
|
12277
12315
|
required: ['message', 'created_at', 'warning_code'],
|
|
12278
12316
|
type: 'object',
|
|
12317
|
+
'x-variant-group-key': 'access_codes',
|
|
12279
12318
|
},
|
|
12280
12319
|
{
|
|
12281
12320
|
description:
|
|
12282
|
-
'Indicates that the Wyze Lock is not connected to a gateway
|
|
12321
|
+
'\n Indicates that the Wyze Lock is not connected to a gateway.\n ',
|
|
12283
12322
|
properties: {
|
|
12284
12323
|
created_at: {
|
|
12285
12324
|
description:
|
|
@@ -12376,10 +12415,11 @@ export default {
|
|
|
12376
12415
|
},
|
|
12377
12416
|
required: ['message', 'created_at', 'warning_code'],
|
|
12378
12417
|
type: 'object',
|
|
12418
|
+
'x-variant-group-key': 'thermostats',
|
|
12379
12419
|
},
|
|
12380
12420
|
{
|
|
12381
12421
|
description:
|
|
12382
|
-
'Indicates that the Remote Unlock feature is not enabled in the settings.',
|
|
12422
|
+
'Indicates that the Remote Unlock feature is not enabled in the settings."',
|
|
12383
12423
|
properties: {
|
|
12384
12424
|
created_at: {
|
|
12385
12425
|
description:
|
|
@@ -12401,9 +12441,11 @@ export default {
|
|
|
12401
12441
|
},
|
|
12402
12442
|
required: ['message', 'created_at', 'warning_code'],
|
|
12403
12443
|
type: 'object',
|
|
12444
|
+
'x-variant-group-key': 'locks',
|
|
12404
12445
|
},
|
|
12405
12446
|
{
|
|
12406
|
-
description:
|
|
12447
|
+
description:
|
|
12448
|
+
'\n Indicates that the gateway signal is weak.\n ',
|
|
12407
12449
|
properties: {
|
|
12408
12450
|
created_at: {
|
|
12409
12451
|
description:
|
|
@@ -12450,6 +12492,7 @@ export default {
|
|
|
12450
12492
|
},
|
|
12451
12493
|
required: ['message', 'created_at', 'warning_code'],
|
|
12452
12494
|
type: 'object',
|
|
12495
|
+
'x-variant-group-key': 'thermostats',
|
|
12453
12496
|
},
|
|
12454
12497
|
{
|
|
12455
12498
|
description:
|
|
@@ -12625,6 +12668,7 @@ export default {
|
|
|
12625
12668
|
},
|
|
12626
12669
|
required: ['message', 'created_at', 'warning_code'],
|
|
12627
12670
|
type: 'object',
|
|
12671
|
+
'x-variant-group-key': 'phones',
|
|
12628
12672
|
},
|
|
12629
12673
|
{
|
|
12630
12674
|
description:
|
|
@@ -12654,6 +12698,15 @@ export default {
|
|
|
12654
12698
|
],
|
|
12655
12699
|
},
|
|
12656
12700
|
type: 'array',
|
|
12701
|
+
'x-variant-groups': {
|
|
12702
|
+
access_codes: { name: 'Access Codes' },
|
|
12703
|
+
hardware: { name: 'Hardware' },
|
|
12704
|
+
locks: { name: 'Locks' },
|
|
12705
|
+
noise_sensors: { name: 'Noise Sensors' },
|
|
12706
|
+
phones: { name: 'Phones' },
|
|
12707
|
+
provider_metadata: { name: 'Provider Metadata' },
|
|
12708
|
+
thermostats: { name: 'Thermostats' },
|
|
12709
|
+
},
|
|
12657
12710
|
},
|
|
12658
12711
|
workspace_id: {
|
|
12659
12712
|
description:
|
|
@@ -20150,6 +20203,7 @@ export default {
|
|
|
20150
20203
|
'is_connected_account_error',
|
|
20151
20204
|
],
|
|
20152
20205
|
type: 'object',
|
|
20206
|
+
'x-variant-group-key': 'locks',
|
|
20153
20207
|
},
|
|
20154
20208
|
{
|
|
20155
20209
|
description: 'Indicates that the device is offline.',
|
|
@@ -20326,6 +20380,7 @@ export default {
|
|
|
20326
20380
|
'error_code',
|
|
20327
20381
|
],
|
|
20328
20382
|
type: 'object',
|
|
20383
|
+
'x-variant-group-key': 'access_codes',
|
|
20329
20384
|
},
|
|
20330
20385
|
{
|
|
20331
20386
|
description:
|
|
@@ -20362,6 +20417,7 @@ export default {
|
|
|
20362
20417
|
'error_code',
|
|
20363
20418
|
],
|
|
20364
20419
|
type: 'object',
|
|
20420
|
+
'x-variant-group-key': 'locks',
|
|
20365
20421
|
},
|
|
20366
20422
|
{
|
|
20367
20423
|
description:
|
|
@@ -20398,10 +20454,11 @@ export default {
|
|
|
20398
20454
|
'error_code',
|
|
20399
20455
|
],
|
|
20400
20456
|
type: 'object',
|
|
20457
|
+
'x-variant-group-key': 'locks',
|
|
20401
20458
|
},
|
|
20402
20459
|
{
|
|
20403
20460
|
description:
|
|
20404
|
-
'Indicates that the lock is not paired with a gateway
|
|
20461
|
+
'\n Indicates that the lock is not paired with a gateway.\n ',
|
|
20405
20462
|
properties: {
|
|
20406
20463
|
created_at: {
|
|
20407
20464
|
description:
|
|
@@ -20471,7 +20528,8 @@ export default {
|
|
|
20471
20528
|
type: 'object',
|
|
20472
20529
|
},
|
|
20473
20530
|
{
|
|
20474
|
-
description:
|
|
20531
|
+
description:
|
|
20532
|
+
'\n Indicates that the auxiliary heat is running.\n ',
|
|
20475
20533
|
properties: {
|
|
20476
20534
|
created_at: {
|
|
20477
20535
|
description:
|
|
@@ -20543,7 +20601,7 @@ export default {
|
|
|
20543
20601
|
},
|
|
20544
20602
|
{
|
|
20545
20603
|
description:
|
|
20546
|
-
'Indicates that the Lockly lock is not connected to a Wi-Fi bridge
|
|
20604
|
+
'\n Indicates that the Lockly lock is not connected to a Wi-Fi bridge.\n ',
|
|
20547
20605
|
properties: {
|
|
20548
20606
|
created_at: {
|
|
20549
20607
|
description:
|
|
@@ -20650,6 +20708,15 @@ export default {
|
|
|
20650
20708
|
],
|
|
20651
20709
|
},
|
|
20652
20710
|
type: 'array',
|
|
20711
|
+
'x-variant-groups': {
|
|
20712
|
+
access_codes: { name: 'Access Codes' },
|
|
20713
|
+
hardware: { name: 'Hardware' },
|
|
20714
|
+
locks: { name: 'Locks' },
|
|
20715
|
+
noise_sensors: { name: 'Noise Sensors' },
|
|
20716
|
+
phones: { name: 'Phones' },
|
|
20717
|
+
provider_metadata: { name: 'Provider Metadata' },
|
|
20718
|
+
thermostats: { name: 'Thermostats' },
|
|
20719
|
+
},
|
|
20653
20720
|
},
|
|
20654
20721
|
is_managed: {
|
|
20655
20722
|
description: 'Indicates that Seam does not manage the access code.',
|
|
@@ -20986,6 +21053,15 @@ export default {
|
|
|
20986
21053
|
],
|
|
20987
21054
|
},
|
|
20988
21055
|
type: 'array',
|
|
21056
|
+
'x-variant-groups': {
|
|
21057
|
+
access_codes: { name: 'Access Codes' },
|
|
21058
|
+
hardware: { name: 'Hardware' },
|
|
21059
|
+
locks: { name: 'Locks' },
|
|
21060
|
+
noise_sensors: { name: 'Noise Sensors' },
|
|
21061
|
+
phones: { name: 'Phones' },
|
|
21062
|
+
provider_metadata: { name: 'Provider Metadata' },
|
|
21063
|
+
thermostats: { name: 'Thermostats' },
|
|
21064
|
+
},
|
|
20989
21065
|
},
|
|
20990
21066
|
},
|
|
20991
21067
|
required: [
|
|
@@ -22437,6 +22513,7 @@ export default {
|
|
|
22437
22513
|
'is_connected_account_error',
|
|
22438
22514
|
],
|
|
22439
22515
|
type: 'object',
|
|
22516
|
+
'x-variant-group-key': 'locks',
|
|
22440
22517
|
},
|
|
22441
22518
|
{
|
|
22442
22519
|
description: 'Indicates that the device is offline.',
|
|
@@ -22613,6 +22690,7 @@ export default {
|
|
|
22613
22690
|
'error_code',
|
|
22614
22691
|
],
|
|
22615
22692
|
type: 'object',
|
|
22693
|
+
'x-variant-group-key': 'access_codes',
|
|
22616
22694
|
},
|
|
22617
22695
|
{
|
|
22618
22696
|
description:
|
|
@@ -22649,6 +22727,7 @@ export default {
|
|
|
22649
22727
|
'error_code',
|
|
22650
22728
|
],
|
|
22651
22729
|
type: 'object',
|
|
22730
|
+
'x-variant-group-key': 'locks',
|
|
22652
22731
|
},
|
|
22653
22732
|
{
|
|
22654
22733
|
description:
|
|
@@ -22685,10 +22764,11 @@ export default {
|
|
|
22685
22764
|
'error_code',
|
|
22686
22765
|
],
|
|
22687
22766
|
type: 'object',
|
|
22767
|
+
'x-variant-group-key': 'locks',
|
|
22688
22768
|
},
|
|
22689
22769
|
{
|
|
22690
22770
|
description:
|
|
22691
|
-
'Indicates that the lock is not paired with a gateway
|
|
22771
|
+
'\n Indicates that the lock is not paired with a gateway.\n ',
|
|
22692
22772
|
properties: {
|
|
22693
22773
|
created_at: {
|
|
22694
22774
|
description:
|
|
@@ -22758,7 +22838,8 @@ export default {
|
|
|
22758
22838
|
type: 'object',
|
|
22759
22839
|
},
|
|
22760
22840
|
{
|
|
22761
|
-
description:
|
|
22841
|
+
description:
|
|
22842
|
+
'\n Indicates that the auxiliary heat is running.\n ',
|
|
22762
22843
|
properties: {
|
|
22763
22844
|
created_at: {
|
|
22764
22845
|
description:
|
|
@@ -22830,7 +22911,7 @@ export default {
|
|
|
22830
22911
|
},
|
|
22831
22912
|
{
|
|
22832
22913
|
description:
|
|
22833
|
-
'Indicates that the Lockly lock is not connected to a Wi-Fi bridge
|
|
22914
|
+
'\n Indicates that the Lockly lock is not connected to a Wi-Fi bridge.\n ',
|
|
22834
22915
|
properties: {
|
|
22835
22916
|
created_at: {
|
|
22836
22917
|
description:
|
|
@@ -22937,6 +23018,15 @@ export default {
|
|
|
22937
23018
|
],
|
|
22938
23019
|
},
|
|
22939
23020
|
type: 'array',
|
|
23021
|
+
'x-variant-groups': {
|
|
23022
|
+
access_codes: { name: 'Access Codes' },
|
|
23023
|
+
hardware: { name: 'Hardware' },
|
|
23024
|
+
locks: { name: 'Locks' },
|
|
23025
|
+
noise_sensors: { name: 'Noise Sensors' },
|
|
23026
|
+
phones: { name: 'Phones' },
|
|
23027
|
+
provider_metadata: { name: 'Provider Metadata' },
|
|
23028
|
+
thermostats: { name: 'Thermostats' },
|
|
23029
|
+
},
|
|
22940
23030
|
},
|
|
22941
23031
|
is_managed: { enum: [false], type: 'boolean' },
|
|
22942
23032
|
location: {
|
|
@@ -23143,6 +23233,7 @@ export default {
|
|
|
23143
23233
|
},
|
|
23144
23234
|
required: ['message', 'created_at', 'warning_code'],
|
|
23145
23235
|
type: 'object',
|
|
23236
|
+
'x-variant-group-key': 'access_codes',
|
|
23146
23237
|
},
|
|
23147
23238
|
{
|
|
23148
23239
|
description:
|
|
@@ -23168,10 +23259,11 @@ export default {
|
|
|
23168
23259
|
},
|
|
23169
23260
|
required: ['message', 'created_at', 'warning_code'],
|
|
23170
23261
|
type: 'object',
|
|
23262
|
+
'x-variant-group-key': 'access_codes',
|
|
23171
23263
|
},
|
|
23172
23264
|
{
|
|
23173
23265
|
description:
|
|
23174
|
-
'Indicates that the Wyze Lock is not connected to a gateway
|
|
23266
|
+
'\n Indicates that the Wyze Lock is not connected to a gateway.\n ',
|
|
23175
23267
|
properties: {
|
|
23176
23268
|
created_at: {
|
|
23177
23269
|
description:
|
|
@@ -23268,10 +23360,11 @@ export default {
|
|
|
23268
23360
|
},
|
|
23269
23361
|
required: ['message', 'created_at', 'warning_code'],
|
|
23270
23362
|
type: 'object',
|
|
23363
|
+
'x-variant-group-key': 'thermostats',
|
|
23271
23364
|
},
|
|
23272
23365
|
{
|
|
23273
23366
|
description:
|
|
23274
|
-
'Indicates that the Remote Unlock feature is not enabled in the settings.',
|
|
23367
|
+
'Indicates that the Remote Unlock feature is not enabled in the settings."',
|
|
23275
23368
|
properties: {
|
|
23276
23369
|
created_at: {
|
|
23277
23370
|
description:
|
|
@@ -23293,9 +23386,11 @@ export default {
|
|
|
23293
23386
|
},
|
|
23294
23387
|
required: ['message', 'created_at', 'warning_code'],
|
|
23295
23388
|
type: 'object',
|
|
23389
|
+
'x-variant-group-key': 'locks',
|
|
23296
23390
|
},
|
|
23297
23391
|
{
|
|
23298
|
-
description:
|
|
23392
|
+
description:
|
|
23393
|
+
'\n Indicates that the gateway signal is weak.\n ',
|
|
23299
23394
|
properties: {
|
|
23300
23395
|
created_at: {
|
|
23301
23396
|
description:
|
|
@@ -23342,6 +23437,7 @@ export default {
|
|
|
23342
23437
|
},
|
|
23343
23438
|
required: ['message', 'created_at', 'warning_code'],
|
|
23344
23439
|
type: 'object',
|
|
23440
|
+
'x-variant-group-key': 'thermostats',
|
|
23345
23441
|
},
|
|
23346
23442
|
{
|
|
23347
23443
|
description:
|
|
@@ -23517,6 +23613,7 @@ export default {
|
|
|
23517
23613
|
},
|
|
23518
23614
|
required: ['message', 'created_at', 'warning_code'],
|
|
23519
23615
|
type: 'object',
|
|
23616
|
+
'x-variant-group-key': 'phones',
|
|
23520
23617
|
},
|
|
23521
23618
|
{
|
|
23522
23619
|
description:
|
|
@@ -23546,6 +23643,15 @@ export default {
|
|
|
23546
23643
|
],
|
|
23547
23644
|
},
|
|
23548
23645
|
type: 'array',
|
|
23646
|
+
'x-variant-groups': {
|
|
23647
|
+
access_codes: { name: 'Access Codes' },
|
|
23648
|
+
hardware: { name: 'Hardware' },
|
|
23649
|
+
locks: { name: 'Locks' },
|
|
23650
|
+
noise_sensors: { name: 'Noise Sensors' },
|
|
23651
|
+
phones: { name: 'Phones' },
|
|
23652
|
+
provider_metadata: { name: 'Provider Metadata' },
|
|
23653
|
+
thermostats: { name: 'Thermostats' },
|
|
23654
|
+
},
|
|
23549
23655
|
},
|
|
23550
23656
|
workspace_id: {
|
|
23551
23657
|
description:
|