@seamapi/types 1.918.0 → 1.919.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 +450 -184
- package/dist/connect.cjs.map +1 -1
- package/dist/index.cjs +450 -184
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.js +78 -44
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.js +7 -4
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.js +7 -3
- package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.js +58 -31
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +42 -24
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.js +29 -19
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device.js +51 -27
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/openapi.js +118 -3
- 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 +136 -114
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +10 -9
- package/src/lib/seam/connect/models/acs/acs-encoder.ts +7 -5
- package/src/lib/seam/connect/models/acs/acs-system.ts +73 -56
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +48 -40
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +78 -73
- package/src/lib/seam/connect/models/devices/device.ts +70 -46
- package/src/lib/seam/connect/openapi.ts +118 -3
|
@@ -134,6 +134,7 @@ const openapi: OpenAPISpec = {
|
|
|
134
134
|
},
|
|
135
135
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
136
136
|
type: 'object',
|
|
137
|
+
'x-resource-type': 'access_code',
|
|
137
138
|
},
|
|
138
139
|
{
|
|
139
140
|
description: 'Failed to set code on device.',
|
|
@@ -164,6 +165,7 @@ const openapi: OpenAPISpec = {
|
|
|
164
165
|
},
|
|
165
166
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
166
167
|
type: 'object',
|
|
168
|
+
'x-resource-type': 'access_code',
|
|
167
169
|
},
|
|
168
170
|
{
|
|
169
171
|
description: 'Failed to remove code from device.',
|
|
@@ -194,6 +196,7 @@ const openapi: OpenAPISpec = {
|
|
|
194
196
|
},
|
|
195
197
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
196
198
|
type: 'object',
|
|
199
|
+
'x-resource-type': 'access_code',
|
|
197
200
|
},
|
|
198
201
|
{
|
|
199
202
|
description: 'Duplicate access code detected on device.',
|
|
@@ -236,6 +239,7 @@ const openapi: OpenAPISpec = {
|
|
|
236
239
|
},
|
|
237
240
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
238
241
|
type: 'object',
|
|
242
|
+
'x-resource-type': 'access_code',
|
|
239
243
|
},
|
|
240
244
|
{
|
|
241
245
|
description:
|
|
@@ -267,6 +271,7 @@ const openapi: OpenAPISpec = {
|
|
|
267
271
|
},
|
|
268
272
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
269
273
|
type: 'object',
|
|
274
|
+
'x-resource-type': 'access_code',
|
|
270
275
|
},
|
|
271
276
|
{
|
|
272
277
|
description: 'No space for access code on device.',
|
|
@@ -297,6 +302,7 @@ const openapi: OpenAPISpec = {
|
|
|
297
302
|
},
|
|
298
303
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
299
304
|
type: 'object',
|
|
305
|
+
'x-resource-type': 'access_code',
|
|
300
306
|
},
|
|
301
307
|
{
|
|
302
308
|
description:
|
|
@@ -328,6 +334,7 @@ const openapi: OpenAPISpec = {
|
|
|
328
334
|
},
|
|
329
335
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
330
336
|
type: 'object',
|
|
337
|
+
'x-resource-type': 'access_code',
|
|
331
338
|
},
|
|
332
339
|
{
|
|
333
340
|
description:
|
|
@@ -391,6 +398,7 @@ const openapi: OpenAPISpec = {
|
|
|
391
398
|
},
|
|
392
399
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
393
400
|
type: 'object',
|
|
401
|
+
'x-resource-type': 'access_code',
|
|
394
402
|
},
|
|
395
403
|
{
|
|
396
404
|
description:
|
|
@@ -422,6 +430,7 @@ const openapi: OpenAPISpec = {
|
|
|
422
430
|
},
|
|
423
431
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
424
432
|
type: 'object',
|
|
433
|
+
'x-resource-type': 'access_code',
|
|
425
434
|
},
|
|
426
435
|
{
|
|
427
436
|
deprecated: true,
|
|
@@ -454,6 +463,7 @@ const openapi: OpenAPISpec = {
|
|
|
454
463
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
455
464
|
type: 'object',
|
|
456
465
|
'x-deprecated': 'Use `access_code_inactive` instead.',
|
|
466
|
+
'x-resource-type': 'access_code',
|
|
457
467
|
},
|
|
458
468
|
{
|
|
459
469
|
description:
|
|
@@ -485,6 +495,7 @@ const openapi: OpenAPISpec = {
|
|
|
485
495
|
},
|
|
486
496
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
487
497
|
type: 'object',
|
|
498
|
+
'x-resource-type': 'access_code',
|
|
488
499
|
},
|
|
489
500
|
{
|
|
490
501
|
description:
|
|
@@ -516,6 +527,7 @@ const openapi: OpenAPISpec = {
|
|
|
516
527
|
},
|
|
517
528
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
518
529
|
type: 'object',
|
|
530
|
+
'x-resource-type': 'access_code',
|
|
519
531
|
},
|
|
520
532
|
{
|
|
521
533
|
description: 'Indicates that the account is disconnected.',
|
|
@@ -558,6 +570,7 @@ const openapi: OpenAPISpec = {
|
|
|
558
570
|
'is_connected_account_error',
|
|
559
571
|
],
|
|
560
572
|
type: 'object',
|
|
573
|
+
'x-resource-type': 'connected_account',
|
|
561
574
|
},
|
|
562
575
|
{
|
|
563
576
|
description:
|
|
@@ -601,6 +614,7 @@ const openapi: OpenAPISpec = {
|
|
|
601
614
|
'is_connected_account_error',
|
|
602
615
|
],
|
|
603
616
|
type: 'object',
|
|
617
|
+
'x-resource-type': 'connected_account',
|
|
604
618
|
'x-variant-group-key': 'locks',
|
|
605
619
|
},
|
|
606
620
|
{
|
|
@@ -639,6 +653,7 @@ const openapi: OpenAPISpec = {
|
|
|
639
653
|
],
|
|
640
654
|
type: 'object',
|
|
641
655
|
'x-deprecated': 'Use `device_disconnected` instead.',
|
|
656
|
+
'x-resource-type': 'device',
|
|
642
657
|
},
|
|
643
658
|
{
|
|
644
659
|
description: 'Indicates that the device has been removed.',
|
|
@@ -674,6 +689,7 @@ const openapi: OpenAPISpec = {
|
|
|
674
689
|
'error_code',
|
|
675
690
|
],
|
|
676
691
|
type: 'object',
|
|
692
|
+
'x-resource-type': 'device',
|
|
677
693
|
},
|
|
678
694
|
{
|
|
679
695
|
description: 'Indicates that the hub is disconnected.',
|
|
@@ -709,6 +725,7 @@ const openapi: OpenAPISpec = {
|
|
|
709
725
|
'error_code',
|
|
710
726
|
],
|
|
711
727
|
type: 'object',
|
|
728
|
+
'x-resource-type': 'device',
|
|
712
729
|
},
|
|
713
730
|
{
|
|
714
731
|
description: 'Indicates that the device is disconnected.',
|
|
@@ -744,6 +761,7 @@ const openapi: OpenAPISpec = {
|
|
|
744
761
|
'error_code',
|
|
745
762
|
],
|
|
746
763
|
type: 'object',
|
|
764
|
+
'x-resource-type': 'device',
|
|
747
765
|
},
|
|
748
766
|
{
|
|
749
767
|
description:
|
|
@@ -780,6 +798,7 @@ const openapi: OpenAPISpec = {
|
|
|
780
798
|
'error_code',
|
|
781
799
|
],
|
|
782
800
|
type: 'object',
|
|
801
|
+
'x-resource-type': 'device',
|
|
783
802
|
'x-variant-group-key': 'access_codes',
|
|
784
803
|
},
|
|
785
804
|
{
|
|
@@ -817,6 +836,7 @@ const openapi: OpenAPISpec = {
|
|
|
817
836
|
'error_code',
|
|
818
837
|
],
|
|
819
838
|
type: 'object',
|
|
839
|
+
'x-resource-type': 'device',
|
|
820
840
|
'x-variant-group-key': 'locks',
|
|
821
841
|
},
|
|
822
842
|
{
|
|
@@ -856,6 +876,7 @@ const openapi: OpenAPISpec = {
|
|
|
856
876
|
],
|
|
857
877
|
type: 'object',
|
|
858
878
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
879
|
+
'x-resource-type': 'device',
|
|
859
880
|
'x-variant-group-key': 'locks',
|
|
860
881
|
},
|
|
861
882
|
{
|
|
@@ -895,6 +916,7 @@ const openapi: OpenAPISpec = {
|
|
|
895
916
|
],
|
|
896
917
|
type: 'object',
|
|
897
918
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
919
|
+
'x-resource-type': 'device',
|
|
898
920
|
},
|
|
899
921
|
{
|
|
900
922
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -930,6 +952,7 @@ const openapi: OpenAPISpec = {
|
|
|
930
952
|
'error_code',
|
|
931
953
|
],
|
|
932
954
|
type: 'object',
|
|
955
|
+
'x-resource-type': 'device',
|
|
933
956
|
},
|
|
934
957
|
{
|
|
935
958
|
description: 'Indicates that the auxiliary heat is running.',
|
|
@@ -965,6 +988,7 @@ const openapi: OpenAPISpec = {
|
|
|
965
988
|
'error_code',
|
|
966
989
|
],
|
|
967
990
|
type: 'object',
|
|
991
|
+
'x-resource-type': 'device',
|
|
968
992
|
'x-variant-group-key': 'thermostats',
|
|
969
993
|
},
|
|
970
994
|
{
|
|
@@ -1002,6 +1026,7 @@ const openapi: OpenAPISpec = {
|
|
|
1002
1026
|
'error_code',
|
|
1003
1027
|
],
|
|
1004
1028
|
type: 'object',
|
|
1029
|
+
'x-resource-type': 'device',
|
|
1005
1030
|
},
|
|
1006
1031
|
{
|
|
1007
1032
|
deprecated: true,
|
|
@@ -1040,6 +1065,7 @@ const openapi: OpenAPISpec = {
|
|
|
1040
1065
|
],
|
|
1041
1066
|
type: 'object',
|
|
1042
1067
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
1068
|
+
'x-resource-type': 'device',
|
|
1043
1069
|
},
|
|
1044
1070
|
{
|
|
1045
1071
|
description:
|
|
@@ -1075,6 +1101,7 @@ const openapi: OpenAPISpec = {
|
|
|
1075
1101
|
},
|
|
1076
1102
|
required: ['created_at', 'message', 'error_code'],
|
|
1077
1103
|
type: 'object',
|
|
1104
|
+
'x-resource-type': 'connected_account',
|
|
1078
1105
|
},
|
|
1079
1106
|
{
|
|
1080
1107
|
description:
|
|
@@ -1110,6 +1137,7 @@ const openapi: OpenAPISpec = {
|
|
|
1110
1137
|
},
|
|
1111
1138
|
required: ['created_at', 'message', 'error_code'],
|
|
1112
1139
|
type: 'object',
|
|
1140
|
+
'x-resource-type': 'connected_account',
|
|
1113
1141
|
},
|
|
1114
1142
|
],
|
|
1115
1143
|
},
|
|
@@ -2958,6 +2986,7 @@ const openapi: OpenAPISpec = {
|
|
|
2958
2986
|
},
|
|
2959
2987
|
required: ['created_at', 'message', 'error_code'],
|
|
2960
2988
|
type: 'object',
|
|
2989
|
+
'x-resource-type': 'acs_access_group',
|
|
2961
2990
|
},
|
|
2962
2991
|
],
|
|
2963
2992
|
},
|
|
@@ -3972,6 +4001,7 @@ const openapi: OpenAPISpec = {
|
|
|
3972
4001
|
},
|
|
3973
4002
|
required: ['created_at', 'message', 'error_code'],
|
|
3974
4003
|
type: 'object',
|
|
4004
|
+
'x-resource-type': 'acs_encoder',
|
|
3975
4005
|
},
|
|
3976
4006
|
type: 'array',
|
|
3977
4007
|
},
|
|
@@ -4579,7 +4609,7 @@ const openapi: OpenAPISpec = {
|
|
|
4579
4609
|
oneOf: [
|
|
4580
4610
|
{
|
|
4581
4611
|
description:
|
|
4582
|
-
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.\
|
|
4612
|
+
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.\nThis error might also occur if Seam Bridge is connected to the wrong [workspace](https://docs.seam.co/core-concepts/workspaces).\nSee also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).',
|
|
4583
4613
|
properties: {
|
|
4584
4614
|
created_at: {
|
|
4585
4615
|
description:
|
|
@@ -4601,10 +4631,11 @@ const openapi: OpenAPISpec = {
|
|
|
4601
4631
|
},
|
|
4602
4632
|
required: ['created_at', 'message', 'error_code'],
|
|
4603
4633
|
type: 'object',
|
|
4634
|
+
'x-resource-type': 'acs_system',
|
|
4604
4635
|
},
|
|
4605
4636
|
{
|
|
4606
4637
|
description:
|
|
4607
|
-
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.\
|
|
4638
|
+
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.\nSee also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).',
|
|
4608
4639
|
properties: {
|
|
4609
4640
|
created_at: {
|
|
4610
4641
|
description:
|
|
@@ -4631,10 +4662,11 @@ const openapi: OpenAPISpec = {
|
|
|
4631
4662
|
},
|
|
4632
4663
|
required: ['created_at', 'message', 'error_code'],
|
|
4633
4664
|
type: 'object',
|
|
4665
|
+
'x-resource-type': 'acs_system',
|
|
4634
4666
|
},
|
|
4635
4667
|
{
|
|
4636
4668
|
description:
|
|
4637
|
-
'Indicates that [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge) is functioning correctly and the Seam API can communicate with Seam Bridge, but the Seam API cannot connect to the on-premises [Visionline access control system](https://docs.seam.co/device-and-system-integration-guides/assa-abloy-visionline-access-control-system).\
|
|
4669
|
+
'Indicates that [Seam Bridge](https://docs.seam.co/capability-guides/seam-bridge) is functioning correctly and the Seam API can communicate with Seam Bridge, but the Seam API cannot connect to the on-premises [Visionline access control system](https://docs.seam.co/device-and-system-integration-guides/assa-abloy-visionline-access-control-system).\nFor example, the IP address of the on-premises access control system may be set incorrectly within the Seam [workspace](https://docs.seam.co/core-concepts/workspaces).\nSee also [Troubleshooting Your Access Control System](https://docs.seam.co/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system.errors.visionline_instance_unreachable).',
|
|
4638
4670
|
properties: {
|
|
4639
4671
|
created_at: {
|
|
4640
4672
|
description:
|
|
@@ -4656,6 +4688,7 @@ const openapi: OpenAPISpec = {
|
|
|
4656
4688
|
},
|
|
4657
4689
|
required: ['created_at', 'message', 'error_code'],
|
|
4658
4690
|
type: 'object',
|
|
4691
|
+
'x-resource-type': 'acs_system',
|
|
4659
4692
|
},
|
|
4660
4693
|
{
|
|
4661
4694
|
description:
|
|
@@ -4681,6 +4714,7 @@ const openapi: OpenAPISpec = {
|
|
|
4681
4714
|
},
|
|
4682
4715
|
required: ['created_at', 'message', 'error_code'],
|
|
4683
4716
|
type: 'object',
|
|
4717
|
+
'x-resource-type': 'acs_system',
|
|
4684
4718
|
},
|
|
4685
4719
|
{
|
|
4686
4720
|
description:
|
|
@@ -4706,6 +4740,7 @@ const openapi: OpenAPISpec = {
|
|
|
4706
4740
|
},
|
|
4707
4741
|
required: ['created_at', 'message', 'error_code'],
|
|
4708
4742
|
type: 'object',
|
|
4743
|
+
'x-resource-type': 'acs_system',
|
|
4709
4744
|
},
|
|
4710
4745
|
{
|
|
4711
4746
|
description:
|
|
@@ -4731,6 +4766,7 @@ const openapi: OpenAPISpec = {
|
|
|
4731
4766
|
},
|
|
4732
4767
|
required: ['created_at', 'message', 'error_code'],
|
|
4733
4768
|
type: 'object',
|
|
4769
|
+
'x-resource-type': 'acs_system',
|
|
4734
4770
|
},
|
|
4735
4771
|
{
|
|
4736
4772
|
description:
|
|
@@ -4756,6 +4792,7 @@ const openapi: OpenAPISpec = {
|
|
|
4756
4792
|
},
|
|
4757
4793
|
required: ['created_at', 'message', 'error_code'],
|
|
4758
4794
|
type: 'object',
|
|
4795
|
+
'x-resource-type': 'acs_system',
|
|
4759
4796
|
},
|
|
4760
4797
|
{
|
|
4761
4798
|
description:
|
|
@@ -4781,6 +4818,7 @@ const openapi: OpenAPISpec = {
|
|
|
4781
4818
|
},
|
|
4782
4819
|
required: ['created_at', 'message', 'error_code'],
|
|
4783
4820
|
type: 'object',
|
|
4821
|
+
'x-resource-type': 'acs_system',
|
|
4784
4822
|
},
|
|
4785
4823
|
],
|
|
4786
4824
|
},
|
|
@@ -5110,6 +5148,7 @@ const openapi: OpenAPISpec = {
|
|
|
5110
5148
|
},
|
|
5111
5149
|
required: ['created_at', 'message', 'error_code'],
|
|
5112
5150
|
type: 'object',
|
|
5151
|
+
'x-resource-type': 'acs_user',
|
|
5113
5152
|
},
|
|
5114
5153
|
{
|
|
5115
5154
|
description:
|
|
@@ -5133,6 +5172,7 @@ const openapi: OpenAPISpec = {
|
|
|
5133
5172
|
},
|
|
5134
5173
|
required: ['created_at', 'message', 'error_code'],
|
|
5135
5174
|
type: 'object',
|
|
5175
|
+
'x-resource-type': 'acs_user',
|
|
5136
5176
|
},
|
|
5137
5177
|
{
|
|
5138
5178
|
description:
|
|
@@ -5156,6 +5196,7 @@ const openapi: OpenAPISpec = {
|
|
|
5156
5196
|
},
|
|
5157
5197
|
required: ['created_at', 'message', 'error_code'],
|
|
5158
5198
|
type: 'object',
|
|
5199
|
+
'x-resource-type': 'acs_user',
|
|
5159
5200
|
},
|
|
5160
5201
|
{
|
|
5161
5202
|
description:
|
|
@@ -5179,6 +5220,7 @@ const openapi: OpenAPISpec = {
|
|
|
5179
5220
|
},
|
|
5180
5221
|
required: ['created_at', 'message', 'error_code'],
|
|
5181
5222
|
type: 'object',
|
|
5223
|
+
'x-resource-type': 'acs_user',
|
|
5182
5224
|
},
|
|
5183
5225
|
{
|
|
5184
5226
|
description:
|
|
@@ -5202,6 +5244,7 @@ const openapi: OpenAPISpec = {
|
|
|
5202
5244
|
},
|
|
5203
5245
|
required: ['created_at', 'message', 'error_code'],
|
|
5204
5246
|
type: 'object',
|
|
5247
|
+
'x-resource-type': 'acs_user',
|
|
5205
5248
|
},
|
|
5206
5249
|
{
|
|
5207
5250
|
description:
|
|
@@ -5225,6 +5268,7 @@ const openapi: OpenAPISpec = {
|
|
|
5225
5268
|
},
|
|
5226
5269
|
required: ['created_at', 'message', 'error_code'],
|
|
5227
5270
|
type: 'object',
|
|
5271
|
+
'x-resource-type': 'acs_user',
|
|
5228
5272
|
},
|
|
5229
5273
|
],
|
|
5230
5274
|
},
|
|
@@ -12200,6 +12244,7 @@ const openapi: OpenAPISpec = {
|
|
|
12200
12244
|
},
|
|
12201
12245
|
required: ['created_at', 'message', 'error_code'],
|
|
12202
12246
|
type: 'object',
|
|
12247
|
+
'x-resource-type': 'connected_account',
|
|
12203
12248
|
},
|
|
12204
12249
|
{
|
|
12205
12250
|
description:
|
|
@@ -12235,6 +12280,7 @@ const openapi: OpenAPISpec = {
|
|
|
12235
12280
|
},
|
|
12236
12281
|
required: ['created_at', 'message', 'error_code'],
|
|
12237
12282
|
type: 'object',
|
|
12283
|
+
'x-resource-type': 'connected_account',
|
|
12238
12284
|
},
|
|
12239
12285
|
{
|
|
12240
12286
|
description:
|
|
@@ -12323,6 +12369,7 @@ const openapi: OpenAPISpec = {
|
|
|
12323
12369
|
'salto_ks_metadata',
|
|
12324
12370
|
],
|
|
12325
12371
|
type: 'object',
|
|
12372
|
+
'x-resource-type': 'connected_account',
|
|
12326
12373
|
},
|
|
12327
12374
|
{
|
|
12328
12375
|
description:
|
|
@@ -12358,6 +12405,7 @@ const openapi: OpenAPISpec = {
|
|
|
12358
12405
|
},
|
|
12359
12406
|
required: ['created_at', 'message', 'error_code'],
|
|
12360
12407
|
type: 'object',
|
|
12408
|
+
'x-resource-type': 'connected_account',
|
|
12361
12409
|
},
|
|
12362
12410
|
],
|
|
12363
12411
|
},
|
|
@@ -13123,6 +13171,7 @@ const openapi: OpenAPISpec = {
|
|
|
13123
13171
|
'is_connected_account_error',
|
|
13124
13172
|
],
|
|
13125
13173
|
type: 'object',
|
|
13174
|
+
'x-resource-type': 'connected_account',
|
|
13126
13175
|
},
|
|
13127
13176
|
{
|
|
13128
13177
|
description:
|
|
@@ -13166,6 +13215,7 @@ const openapi: OpenAPISpec = {
|
|
|
13166
13215
|
'is_connected_account_error',
|
|
13167
13216
|
],
|
|
13168
13217
|
type: 'object',
|
|
13218
|
+
'x-resource-type': 'connected_account',
|
|
13169
13219
|
'x-variant-group-key': 'locks',
|
|
13170
13220
|
},
|
|
13171
13221
|
{
|
|
@@ -13204,6 +13254,7 @@ const openapi: OpenAPISpec = {
|
|
|
13204
13254
|
],
|
|
13205
13255
|
type: 'object',
|
|
13206
13256
|
'x-deprecated': 'Use `device_disconnected` instead.',
|
|
13257
|
+
'x-resource-type': 'device',
|
|
13207
13258
|
},
|
|
13208
13259
|
{
|
|
13209
13260
|
description: 'Indicates that the device has been removed.',
|
|
@@ -13239,6 +13290,7 @@ const openapi: OpenAPISpec = {
|
|
|
13239
13290
|
'error_code',
|
|
13240
13291
|
],
|
|
13241
13292
|
type: 'object',
|
|
13293
|
+
'x-resource-type': 'device',
|
|
13242
13294
|
},
|
|
13243
13295
|
{
|
|
13244
13296
|
description: 'Indicates that the hub is disconnected.',
|
|
@@ -13274,6 +13326,7 @@ const openapi: OpenAPISpec = {
|
|
|
13274
13326
|
'error_code',
|
|
13275
13327
|
],
|
|
13276
13328
|
type: 'object',
|
|
13329
|
+
'x-resource-type': 'device',
|
|
13277
13330
|
},
|
|
13278
13331
|
{
|
|
13279
13332
|
description: 'Indicates that the device is disconnected.',
|
|
@@ -13309,6 +13362,7 @@ const openapi: OpenAPISpec = {
|
|
|
13309
13362
|
'error_code',
|
|
13310
13363
|
],
|
|
13311
13364
|
type: 'object',
|
|
13365
|
+
'x-resource-type': 'device',
|
|
13312
13366
|
},
|
|
13313
13367
|
{
|
|
13314
13368
|
description:
|
|
@@ -13345,6 +13399,7 @@ const openapi: OpenAPISpec = {
|
|
|
13345
13399
|
'error_code',
|
|
13346
13400
|
],
|
|
13347
13401
|
type: 'object',
|
|
13402
|
+
'x-resource-type': 'device',
|
|
13348
13403
|
'x-variant-group-key': 'access_codes',
|
|
13349
13404
|
},
|
|
13350
13405
|
{
|
|
@@ -13382,6 +13437,7 @@ const openapi: OpenAPISpec = {
|
|
|
13382
13437
|
'error_code',
|
|
13383
13438
|
],
|
|
13384
13439
|
type: 'object',
|
|
13440
|
+
'x-resource-type': 'device',
|
|
13385
13441
|
'x-variant-group-key': 'locks',
|
|
13386
13442
|
},
|
|
13387
13443
|
{
|
|
@@ -13421,6 +13477,7 @@ const openapi: OpenAPISpec = {
|
|
|
13421
13477
|
],
|
|
13422
13478
|
type: 'object',
|
|
13423
13479
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
13480
|
+
'x-resource-type': 'device',
|
|
13424
13481
|
'x-variant-group-key': 'locks',
|
|
13425
13482
|
},
|
|
13426
13483
|
{
|
|
@@ -13460,6 +13517,7 @@ const openapi: OpenAPISpec = {
|
|
|
13460
13517
|
],
|
|
13461
13518
|
type: 'object',
|
|
13462
13519
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
13520
|
+
'x-resource-type': 'device',
|
|
13463
13521
|
},
|
|
13464
13522
|
{
|
|
13465
13523
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -13495,6 +13553,7 @@ const openapi: OpenAPISpec = {
|
|
|
13495
13553
|
'error_code',
|
|
13496
13554
|
],
|
|
13497
13555
|
type: 'object',
|
|
13556
|
+
'x-resource-type': 'device',
|
|
13498
13557
|
},
|
|
13499
13558
|
{
|
|
13500
13559
|
description: 'Indicates that the auxiliary heat is running.',
|
|
@@ -13530,6 +13589,7 @@ const openapi: OpenAPISpec = {
|
|
|
13530
13589
|
'error_code',
|
|
13531
13590
|
],
|
|
13532
13591
|
type: 'object',
|
|
13592
|
+
'x-resource-type': 'device',
|
|
13533
13593
|
'x-variant-group-key': 'thermostats',
|
|
13534
13594
|
},
|
|
13535
13595
|
{
|
|
@@ -13567,6 +13627,7 @@ const openapi: OpenAPISpec = {
|
|
|
13567
13627
|
'error_code',
|
|
13568
13628
|
],
|
|
13569
13629
|
type: 'object',
|
|
13630
|
+
'x-resource-type': 'device',
|
|
13570
13631
|
},
|
|
13571
13632
|
{
|
|
13572
13633
|
deprecated: true,
|
|
@@ -13605,6 +13666,7 @@ const openapi: OpenAPISpec = {
|
|
|
13605
13666
|
],
|
|
13606
13667
|
type: 'object',
|
|
13607
13668
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
13669
|
+
'x-resource-type': 'device',
|
|
13608
13670
|
},
|
|
13609
13671
|
{
|
|
13610
13672
|
description:
|
|
@@ -13640,6 +13702,7 @@ const openapi: OpenAPISpec = {
|
|
|
13640
13702
|
},
|
|
13641
13703
|
required: ['created_at', 'message', 'error_code'],
|
|
13642
13704
|
type: 'object',
|
|
13705
|
+
'x-resource-type': 'connected_account',
|
|
13643
13706
|
},
|
|
13644
13707
|
{
|
|
13645
13708
|
description:
|
|
@@ -13675,6 +13738,7 @@ const openapi: OpenAPISpec = {
|
|
|
13675
13738
|
},
|
|
13676
13739
|
required: ['created_at', 'message', 'error_code'],
|
|
13677
13740
|
type: 'object',
|
|
13741
|
+
'x-resource-type': 'connected_account',
|
|
13678
13742
|
},
|
|
13679
13743
|
],
|
|
13680
13744
|
},
|
|
@@ -28676,6 +28740,7 @@ const openapi: OpenAPISpec = {
|
|
|
28676
28740
|
},
|
|
28677
28741
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
28678
28742
|
type: 'object',
|
|
28743
|
+
'x-resource-type': 'access_code',
|
|
28679
28744
|
},
|
|
28680
28745
|
{
|
|
28681
28746
|
description: 'Failed to set code on device.',
|
|
@@ -28706,6 +28771,7 @@ const openapi: OpenAPISpec = {
|
|
|
28706
28771
|
},
|
|
28707
28772
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
28708
28773
|
type: 'object',
|
|
28774
|
+
'x-resource-type': 'access_code',
|
|
28709
28775
|
},
|
|
28710
28776
|
{
|
|
28711
28777
|
description: 'Failed to remove code from device.',
|
|
@@ -28736,6 +28802,7 @@ const openapi: OpenAPISpec = {
|
|
|
28736
28802
|
},
|
|
28737
28803
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
28738
28804
|
type: 'object',
|
|
28805
|
+
'x-resource-type': 'access_code',
|
|
28739
28806
|
},
|
|
28740
28807
|
{
|
|
28741
28808
|
description: 'Duplicate access code detected on device.',
|
|
@@ -28778,6 +28845,7 @@ const openapi: OpenAPISpec = {
|
|
|
28778
28845
|
},
|
|
28779
28846
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
28780
28847
|
type: 'object',
|
|
28848
|
+
'x-resource-type': 'access_code',
|
|
28781
28849
|
},
|
|
28782
28850
|
{
|
|
28783
28851
|
description:
|
|
@@ -28809,6 +28877,7 @@ const openapi: OpenAPISpec = {
|
|
|
28809
28877
|
},
|
|
28810
28878
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
28811
28879
|
type: 'object',
|
|
28880
|
+
'x-resource-type': 'access_code',
|
|
28812
28881
|
},
|
|
28813
28882
|
{
|
|
28814
28883
|
description: 'No space for access code on device.',
|
|
@@ -28839,6 +28908,7 @@ const openapi: OpenAPISpec = {
|
|
|
28839
28908
|
},
|
|
28840
28909
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
28841
28910
|
type: 'object',
|
|
28911
|
+
'x-resource-type': 'access_code',
|
|
28842
28912
|
},
|
|
28843
28913
|
{
|
|
28844
28914
|
description:
|
|
@@ -28870,6 +28940,7 @@ const openapi: OpenAPISpec = {
|
|
|
28870
28940
|
},
|
|
28871
28941
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
28872
28942
|
type: 'object',
|
|
28943
|
+
'x-resource-type': 'access_code',
|
|
28873
28944
|
},
|
|
28874
28945
|
{
|
|
28875
28946
|
description:
|
|
@@ -28933,6 +29004,7 @@ const openapi: OpenAPISpec = {
|
|
|
28933
29004
|
},
|
|
28934
29005
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
28935
29006
|
type: 'object',
|
|
29007
|
+
'x-resource-type': 'access_code',
|
|
28936
29008
|
},
|
|
28937
29009
|
{
|
|
28938
29010
|
description:
|
|
@@ -28964,6 +29036,7 @@ const openapi: OpenAPISpec = {
|
|
|
28964
29036
|
},
|
|
28965
29037
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
28966
29038
|
type: 'object',
|
|
29039
|
+
'x-resource-type': 'access_code',
|
|
28967
29040
|
},
|
|
28968
29041
|
{
|
|
28969
29042
|
deprecated: true,
|
|
@@ -28996,6 +29069,7 @@ const openapi: OpenAPISpec = {
|
|
|
28996
29069
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
28997
29070
|
type: 'object',
|
|
28998
29071
|
'x-deprecated': 'Use `access_code_inactive` instead.',
|
|
29072
|
+
'x-resource-type': 'access_code',
|
|
28999
29073
|
},
|
|
29000
29074
|
{
|
|
29001
29075
|
description:
|
|
@@ -29027,6 +29101,7 @@ const openapi: OpenAPISpec = {
|
|
|
29027
29101
|
},
|
|
29028
29102
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
29029
29103
|
type: 'object',
|
|
29104
|
+
'x-resource-type': 'access_code',
|
|
29030
29105
|
},
|
|
29031
29106
|
{
|
|
29032
29107
|
description:
|
|
@@ -29058,6 +29133,7 @@ const openapi: OpenAPISpec = {
|
|
|
29058
29133
|
},
|
|
29059
29134
|
required: ['message', 'is_access_code_error', 'error_code'],
|
|
29060
29135
|
type: 'object',
|
|
29136
|
+
'x-resource-type': 'access_code',
|
|
29061
29137
|
},
|
|
29062
29138
|
{
|
|
29063
29139
|
description: 'Indicates that the account is disconnected.',
|
|
@@ -29100,6 +29176,7 @@ const openapi: OpenAPISpec = {
|
|
|
29100
29176
|
'is_connected_account_error',
|
|
29101
29177
|
],
|
|
29102
29178
|
type: 'object',
|
|
29179
|
+
'x-resource-type': 'connected_account',
|
|
29103
29180
|
},
|
|
29104
29181
|
{
|
|
29105
29182
|
description:
|
|
@@ -29143,6 +29220,7 @@ const openapi: OpenAPISpec = {
|
|
|
29143
29220
|
'is_connected_account_error',
|
|
29144
29221
|
],
|
|
29145
29222
|
type: 'object',
|
|
29223
|
+
'x-resource-type': 'connected_account',
|
|
29146
29224
|
'x-variant-group-key': 'locks',
|
|
29147
29225
|
},
|
|
29148
29226
|
{
|
|
@@ -29181,6 +29259,7 @@ const openapi: OpenAPISpec = {
|
|
|
29181
29259
|
],
|
|
29182
29260
|
type: 'object',
|
|
29183
29261
|
'x-deprecated': 'Use `device_disconnected` instead.',
|
|
29262
|
+
'x-resource-type': 'device',
|
|
29184
29263
|
},
|
|
29185
29264
|
{
|
|
29186
29265
|
description: 'Indicates that the device has been removed.',
|
|
@@ -29216,6 +29295,7 @@ const openapi: OpenAPISpec = {
|
|
|
29216
29295
|
'error_code',
|
|
29217
29296
|
],
|
|
29218
29297
|
type: 'object',
|
|
29298
|
+
'x-resource-type': 'device',
|
|
29219
29299
|
},
|
|
29220
29300
|
{
|
|
29221
29301
|
description: 'Indicates that the hub is disconnected.',
|
|
@@ -29251,6 +29331,7 @@ const openapi: OpenAPISpec = {
|
|
|
29251
29331
|
'error_code',
|
|
29252
29332
|
],
|
|
29253
29333
|
type: 'object',
|
|
29334
|
+
'x-resource-type': 'device',
|
|
29254
29335
|
},
|
|
29255
29336
|
{
|
|
29256
29337
|
description: 'Indicates that the device is disconnected.',
|
|
@@ -29286,6 +29367,7 @@ const openapi: OpenAPISpec = {
|
|
|
29286
29367
|
'error_code',
|
|
29287
29368
|
],
|
|
29288
29369
|
type: 'object',
|
|
29370
|
+
'x-resource-type': 'device',
|
|
29289
29371
|
},
|
|
29290
29372
|
{
|
|
29291
29373
|
description:
|
|
@@ -29322,6 +29404,7 @@ const openapi: OpenAPISpec = {
|
|
|
29322
29404
|
'error_code',
|
|
29323
29405
|
],
|
|
29324
29406
|
type: 'object',
|
|
29407
|
+
'x-resource-type': 'device',
|
|
29325
29408
|
'x-variant-group-key': 'access_codes',
|
|
29326
29409
|
},
|
|
29327
29410
|
{
|
|
@@ -29359,6 +29442,7 @@ const openapi: OpenAPISpec = {
|
|
|
29359
29442
|
'error_code',
|
|
29360
29443
|
],
|
|
29361
29444
|
type: 'object',
|
|
29445
|
+
'x-resource-type': 'device',
|
|
29362
29446
|
'x-variant-group-key': 'locks',
|
|
29363
29447
|
},
|
|
29364
29448
|
{
|
|
@@ -29398,6 +29482,7 @@ const openapi: OpenAPISpec = {
|
|
|
29398
29482
|
],
|
|
29399
29483
|
type: 'object',
|
|
29400
29484
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
29485
|
+
'x-resource-type': 'device',
|
|
29401
29486
|
'x-variant-group-key': 'locks',
|
|
29402
29487
|
},
|
|
29403
29488
|
{
|
|
@@ -29437,6 +29522,7 @@ const openapi: OpenAPISpec = {
|
|
|
29437
29522
|
],
|
|
29438
29523
|
type: 'object',
|
|
29439
29524
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
29525
|
+
'x-resource-type': 'device',
|
|
29440
29526
|
},
|
|
29441
29527
|
{
|
|
29442
29528
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -29472,6 +29558,7 @@ const openapi: OpenAPISpec = {
|
|
|
29472
29558
|
'error_code',
|
|
29473
29559
|
],
|
|
29474
29560
|
type: 'object',
|
|
29561
|
+
'x-resource-type': 'device',
|
|
29475
29562
|
},
|
|
29476
29563
|
{
|
|
29477
29564
|
description: 'Indicates that the auxiliary heat is running.',
|
|
@@ -29507,6 +29594,7 @@ const openapi: OpenAPISpec = {
|
|
|
29507
29594
|
'error_code',
|
|
29508
29595
|
],
|
|
29509
29596
|
type: 'object',
|
|
29597
|
+
'x-resource-type': 'device',
|
|
29510
29598
|
'x-variant-group-key': 'thermostats',
|
|
29511
29599
|
},
|
|
29512
29600
|
{
|
|
@@ -29544,6 +29632,7 @@ const openapi: OpenAPISpec = {
|
|
|
29544
29632
|
'error_code',
|
|
29545
29633
|
],
|
|
29546
29634
|
type: 'object',
|
|
29635
|
+
'x-resource-type': 'device',
|
|
29547
29636
|
},
|
|
29548
29637
|
{
|
|
29549
29638
|
deprecated: true,
|
|
@@ -29582,6 +29671,7 @@ const openapi: OpenAPISpec = {
|
|
|
29582
29671
|
],
|
|
29583
29672
|
type: 'object',
|
|
29584
29673
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
29674
|
+
'x-resource-type': 'device',
|
|
29585
29675
|
},
|
|
29586
29676
|
{
|
|
29587
29677
|
description:
|
|
@@ -29617,6 +29707,7 @@ const openapi: OpenAPISpec = {
|
|
|
29617
29707
|
},
|
|
29618
29708
|
required: ['created_at', 'message', 'error_code'],
|
|
29619
29709
|
type: 'object',
|
|
29710
|
+
'x-resource-type': 'connected_account',
|
|
29620
29711
|
},
|
|
29621
29712
|
{
|
|
29622
29713
|
description:
|
|
@@ -29652,6 +29743,7 @@ const openapi: OpenAPISpec = {
|
|
|
29652
29743
|
},
|
|
29653
29744
|
required: ['created_at', 'message', 'error_code'],
|
|
29654
29745
|
type: 'object',
|
|
29746
|
+
'x-resource-type': 'connected_account',
|
|
29655
29747
|
},
|
|
29656
29748
|
],
|
|
29657
29749
|
},
|
|
@@ -30169,6 +30261,7 @@ const openapi: OpenAPISpec = {
|
|
|
30169
30261
|
},
|
|
30170
30262
|
required: ['created_at', 'message', 'error_code'],
|
|
30171
30263
|
type: 'object',
|
|
30264
|
+
'x-resource-type': 'acs_access_group',
|
|
30172
30265
|
},
|
|
30173
30266
|
],
|
|
30174
30267
|
},
|
|
@@ -31165,6 +31258,7 @@ const openapi: OpenAPISpec = {
|
|
|
31165
31258
|
},
|
|
31166
31259
|
required: ['created_at', 'message', 'error_code'],
|
|
31167
31260
|
type: 'object',
|
|
31261
|
+
'x-resource-type': 'acs_user',
|
|
31168
31262
|
},
|
|
31169
31263
|
{
|
|
31170
31264
|
description:
|
|
@@ -31188,6 +31282,7 @@ const openapi: OpenAPISpec = {
|
|
|
31188
31282
|
},
|
|
31189
31283
|
required: ['created_at', 'message', 'error_code'],
|
|
31190
31284
|
type: 'object',
|
|
31285
|
+
'x-resource-type': 'acs_user',
|
|
31191
31286
|
},
|
|
31192
31287
|
{
|
|
31193
31288
|
description:
|
|
@@ -31211,6 +31306,7 @@ const openapi: OpenAPISpec = {
|
|
|
31211
31306
|
},
|
|
31212
31307
|
required: ['created_at', 'message', 'error_code'],
|
|
31213
31308
|
type: 'object',
|
|
31309
|
+
'x-resource-type': 'acs_user',
|
|
31214
31310
|
},
|
|
31215
31311
|
{
|
|
31216
31312
|
description:
|
|
@@ -31234,6 +31330,7 @@ const openapi: OpenAPISpec = {
|
|
|
31234
31330
|
},
|
|
31235
31331
|
required: ['created_at', 'message', 'error_code'],
|
|
31236
31332
|
type: 'object',
|
|
31333
|
+
'x-resource-type': 'acs_user',
|
|
31237
31334
|
},
|
|
31238
31335
|
{
|
|
31239
31336
|
description:
|
|
@@ -31257,6 +31354,7 @@ const openapi: OpenAPISpec = {
|
|
|
31257
31354
|
},
|
|
31258
31355
|
required: ['created_at', 'message', 'error_code'],
|
|
31259
31356
|
type: 'object',
|
|
31357
|
+
'x-resource-type': 'acs_user',
|
|
31260
31358
|
},
|
|
31261
31359
|
{
|
|
31262
31360
|
description:
|
|
@@ -31280,6 +31378,7 @@ const openapi: OpenAPISpec = {
|
|
|
31280
31378
|
},
|
|
31281
31379
|
required: ['created_at', 'message', 'error_code'],
|
|
31282
31380
|
type: 'object',
|
|
31381
|
+
'x-resource-type': 'acs_user',
|
|
31283
31382
|
},
|
|
31284
31383
|
],
|
|
31285
31384
|
},
|
|
@@ -32190,6 +32289,7 @@ const openapi: OpenAPISpec = {
|
|
|
32190
32289
|
'is_connected_account_error',
|
|
32191
32290
|
],
|
|
32192
32291
|
type: 'object',
|
|
32292
|
+
'x-resource-type': 'connected_account',
|
|
32193
32293
|
},
|
|
32194
32294
|
{
|
|
32195
32295
|
description:
|
|
@@ -32233,6 +32333,7 @@ const openapi: OpenAPISpec = {
|
|
|
32233
32333
|
'is_connected_account_error',
|
|
32234
32334
|
],
|
|
32235
32335
|
type: 'object',
|
|
32336
|
+
'x-resource-type': 'connected_account',
|
|
32236
32337
|
'x-variant-group-key': 'locks',
|
|
32237
32338
|
},
|
|
32238
32339
|
{
|
|
@@ -32271,6 +32372,7 @@ const openapi: OpenAPISpec = {
|
|
|
32271
32372
|
],
|
|
32272
32373
|
type: 'object',
|
|
32273
32374
|
'x-deprecated': 'Use `device_disconnected` instead.',
|
|
32375
|
+
'x-resource-type': 'device',
|
|
32274
32376
|
},
|
|
32275
32377
|
{
|
|
32276
32378
|
description: 'Indicates that the device has been removed.',
|
|
@@ -32306,6 +32408,7 @@ const openapi: OpenAPISpec = {
|
|
|
32306
32408
|
'error_code',
|
|
32307
32409
|
],
|
|
32308
32410
|
type: 'object',
|
|
32411
|
+
'x-resource-type': 'device',
|
|
32309
32412
|
},
|
|
32310
32413
|
{
|
|
32311
32414
|
description: 'Indicates that the hub is disconnected.',
|
|
@@ -32341,6 +32444,7 @@ const openapi: OpenAPISpec = {
|
|
|
32341
32444
|
'error_code',
|
|
32342
32445
|
],
|
|
32343
32446
|
type: 'object',
|
|
32447
|
+
'x-resource-type': 'device',
|
|
32344
32448
|
},
|
|
32345
32449
|
{
|
|
32346
32450
|
description: 'Indicates that the device is disconnected.',
|
|
@@ -32376,6 +32480,7 @@ const openapi: OpenAPISpec = {
|
|
|
32376
32480
|
'error_code',
|
|
32377
32481
|
],
|
|
32378
32482
|
type: 'object',
|
|
32483
|
+
'x-resource-type': 'device',
|
|
32379
32484
|
},
|
|
32380
32485
|
{
|
|
32381
32486
|
description:
|
|
@@ -32412,6 +32517,7 @@ const openapi: OpenAPISpec = {
|
|
|
32412
32517
|
'error_code',
|
|
32413
32518
|
],
|
|
32414
32519
|
type: 'object',
|
|
32520
|
+
'x-resource-type': 'device',
|
|
32415
32521
|
'x-variant-group-key': 'access_codes',
|
|
32416
32522
|
},
|
|
32417
32523
|
{
|
|
@@ -32449,6 +32555,7 @@ const openapi: OpenAPISpec = {
|
|
|
32449
32555
|
'error_code',
|
|
32450
32556
|
],
|
|
32451
32557
|
type: 'object',
|
|
32558
|
+
'x-resource-type': 'device',
|
|
32452
32559
|
'x-variant-group-key': 'locks',
|
|
32453
32560
|
},
|
|
32454
32561
|
{
|
|
@@ -32488,6 +32595,7 @@ const openapi: OpenAPISpec = {
|
|
|
32488
32595
|
],
|
|
32489
32596
|
type: 'object',
|
|
32490
32597
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
32598
|
+
'x-resource-type': 'device',
|
|
32491
32599
|
'x-variant-group-key': 'locks',
|
|
32492
32600
|
},
|
|
32493
32601
|
{
|
|
@@ -32527,6 +32635,7 @@ const openapi: OpenAPISpec = {
|
|
|
32527
32635
|
],
|
|
32528
32636
|
type: 'object',
|
|
32529
32637
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
32638
|
+
'x-resource-type': 'device',
|
|
32530
32639
|
},
|
|
32531
32640
|
{
|
|
32532
32641
|
description: 'Indicates that device credentials are missing.',
|
|
@@ -32562,6 +32671,7 @@ const openapi: OpenAPISpec = {
|
|
|
32562
32671
|
'error_code',
|
|
32563
32672
|
],
|
|
32564
32673
|
type: 'object',
|
|
32674
|
+
'x-resource-type': 'device',
|
|
32565
32675
|
},
|
|
32566
32676
|
{
|
|
32567
32677
|
description: 'Indicates that the auxiliary heat is running.',
|
|
@@ -32597,6 +32707,7 @@ const openapi: OpenAPISpec = {
|
|
|
32597
32707
|
'error_code',
|
|
32598
32708
|
],
|
|
32599
32709
|
type: 'object',
|
|
32710
|
+
'x-resource-type': 'device',
|
|
32600
32711
|
'x-variant-group-key': 'thermostats',
|
|
32601
32712
|
},
|
|
32602
32713
|
{
|
|
@@ -32634,6 +32745,7 @@ const openapi: OpenAPISpec = {
|
|
|
32634
32745
|
'error_code',
|
|
32635
32746
|
],
|
|
32636
32747
|
type: 'object',
|
|
32748
|
+
'x-resource-type': 'device',
|
|
32637
32749
|
},
|
|
32638
32750
|
{
|
|
32639
32751
|
deprecated: true,
|
|
@@ -32672,6 +32784,7 @@ const openapi: OpenAPISpec = {
|
|
|
32672
32784
|
],
|
|
32673
32785
|
type: 'object',
|
|
32674
32786
|
'x-deprecated': 'Use `hub_disconnected` instead.',
|
|
32787
|
+
'x-resource-type': 'device',
|
|
32675
32788
|
},
|
|
32676
32789
|
{
|
|
32677
32790
|
description:
|
|
@@ -32707,6 +32820,7 @@ const openapi: OpenAPISpec = {
|
|
|
32707
32820
|
},
|
|
32708
32821
|
required: ['created_at', 'message', 'error_code'],
|
|
32709
32822
|
type: 'object',
|
|
32823
|
+
'x-resource-type': 'connected_account',
|
|
32710
32824
|
},
|
|
32711
32825
|
{
|
|
32712
32826
|
description:
|
|
@@ -32742,6 +32856,7 @@ const openapi: OpenAPISpec = {
|
|
|
32742
32856
|
},
|
|
32743
32857
|
required: ['created_at', 'message', 'error_code'],
|
|
32744
32858
|
type: 'object',
|
|
32859
|
+
'x-resource-type': 'connected_account',
|
|
32745
32860
|
},
|
|
32746
32861
|
],
|
|
32747
32862
|
},
|