@seamapi/types 1.193.0 → 1.194.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 +757 -418
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1067 -5023
- package/lib/seam/connect/openapi.d.ts +215 -109
- package/lib/seam/connect/openapi.js +680 -341
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +852 -4914
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +683 -406
- package/src/lib/seam/connect/route-types.ts +857 -4919
|
@@ -36,7 +36,6 @@ export default {
|
|
|
36
36
|
},
|
|
37
37
|
errors: {
|
|
38
38
|
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
39
|
-
nullable: true,
|
|
40
39
|
},
|
|
41
40
|
is_backup: {
|
|
42
41
|
description: 'Indicates whether the access code is a backup code.',
|
|
@@ -100,7 +99,6 @@ export default {
|
|
|
100
99
|
},
|
|
101
100
|
warnings: {
|
|
102
101
|
description: 'Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention.',
|
|
103
|
-
nullable: true,
|
|
104
102
|
},
|
|
105
103
|
},
|
|
106
104
|
required: [
|
|
@@ -123,7 +121,7 @@ export default {
|
|
|
123
121
|
acs_access_group: {
|
|
124
122
|
properties: {
|
|
125
123
|
access_group_type: {
|
|
126
|
-
|
|
124
|
+
deprecated: true,
|
|
127
125
|
enum: [
|
|
128
126
|
'pti_unit',
|
|
129
127
|
'pti_access_level',
|
|
@@ -131,10 +129,12 @@ export default {
|
|
|
131
129
|
'brivo_group',
|
|
132
130
|
],
|
|
133
131
|
type: 'string',
|
|
132
|
+
'x-deprecated': 'use external_type',
|
|
134
133
|
},
|
|
135
134
|
access_group_type_display_name: {
|
|
136
|
-
|
|
135
|
+
deprecated: true,
|
|
137
136
|
type: 'string',
|
|
137
|
+
'x-deprecated': 'use external_type_display_name',
|
|
138
138
|
},
|
|
139
139
|
acs_access_group_id: { format: 'uuid', type: 'string' },
|
|
140
140
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
@@ -432,7 +432,7 @@ export default {
|
|
|
432
432
|
image_url: { type: 'string' },
|
|
433
433
|
name: { type: 'string' },
|
|
434
434
|
system_type: {
|
|
435
|
-
|
|
435
|
+
deprecated: true,
|
|
436
436
|
enum: [
|
|
437
437
|
'pti_site',
|
|
438
438
|
'alta_org',
|
|
@@ -444,10 +444,12 @@ export default {
|
|
|
444
444
|
'latch_building',
|
|
445
445
|
],
|
|
446
446
|
type: 'string',
|
|
447
|
+
'x-deprecated': 'use external_type',
|
|
447
448
|
},
|
|
448
449
|
system_type_display_name: {
|
|
449
|
-
|
|
450
|
+
deprecated: true,
|
|
450
451
|
type: 'string',
|
|
452
|
+
'x-deprecated': 'use external_type_display_name',
|
|
451
453
|
},
|
|
452
454
|
warnings: {
|
|
453
455
|
items: { properties: {}, type: 'object' },
|
|
@@ -483,9 +485,10 @@ export default {
|
|
|
483
485
|
created_at: { format: 'date-time', type: 'string' },
|
|
484
486
|
display_name: { type: 'string' },
|
|
485
487
|
email: {
|
|
486
|
-
|
|
488
|
+
deprecated: true,
|
|
487
489
|
format: 'email',
|
|
488
490
|
type: 'string',
|
|
491
|
+
'x-deprecated': 'use email_address.',
|
|
489
492
|
},
|
|
490
493
|
email_address: { format: 'email', type: 'string' },
|
|
491
494
|
external_type: {
|
|
@@ -502,7 +505,7 @@ export default {
|
|
|
502
505
|
full_name: { type: 'string' },
|
|
503
506
|
hid_acs_system_id: { format: 'uuid', type: 'string' },
|
|
504
507
|
is_suspended: { type: 'boolean' },
|
|
505
|
-
phone_number: {
|
|
508
|
+
phone_number: { type: 'string' },
|
|
506
509
|
user_identity_email_address: { nullable: true, type: 'string' },
|
|
507
510
|
user_identity_full_name: { nullable: true, type: 'string' },
|
|
508
511
|
user_identity_id: { type: 'string' },
|
|
@@ -525,13 +528,14 @@ export default {
|
|
|
525
528
|
description: 'Locking door.',
|
|
526
529
|
properties: {
|
|
527
530
|
action_attempt_id: {
|
|
528
|
-
description: '
|
|
531
|
+
description: 'The ID of the action attempt.',
|
|
529
532
|
format: 'uuid',
|
|
530
533
|
type: 'string',
|
|
534
|
+
'x-title': 'Action Attempt ID',
|
|
531
535
|
},
|
|
532
536
|
action_type: { enum: ['LOCK_DOOR'], type: 'string' },
|
|
533
|
-
error: {
|
|
534
|
-
result: {
|
|
537
|
+
error: { nullable: true },
|
|
538
|
+
result: { nullable: true },
|
|
535
539
|
status: { enum: ['pending'], type: 'string' },
|
|
536
540
|
},
|
|
537
541
|
required: [
|
|
@@ -547,12 +551,13 @@ export default {
|
|
|
547
551
|
description: 'Locking door succeeded.',
|
|
548
552
|
properties: {
|
|
549
553
|
action_attempt_id: {
|
|
550
|
-
description: '
|
|
554
|
+
description: 'The ID of the action attempt.',
|
|
551
555
|
format: 'uuid',
|
|
552
556
|
type: 'string',
|
|
557
|
+
'x-title': 'Action Attempt ID',
|
|
553
558
|
},
|
|
554
559
|
action_type: { enum: ['LOCK_DOOR'], type: 'string' },
|
|
555
|
-
error: {
|
|
560
|
+
error: { nullable: true },
|
|
556
561
|
result: { properties: {}, type: 'object' },
|
|
557
562
|
status: { enum: ['success'], type: 'string' },
|
|
558
563
|
},
|
|
@@ -569,9 +574,10 @@ export default {
|
|
|
569
574
|
description: 'Locking door failed.',
|
|
570
575
|
properties: {
|
|
571
576
|
action_attempt_id: {
|
|
572
|
-
description: '
|
|
577
|
+
description: 'The ID of the action attempt.',
|
|
573
578
|
format: 'uuid',
|
|
574
579
|
type: 'string',
|
|
580
|
+
'x-title': 'Action Attempt ID',
|
|
575
581
|
},
|
|
576
582
|
action_type: { enum: ['LOCK_DOOR'], type: 'string' },
|
|
577
583
|
error: {
|
|
@@ -582,7 +588,7 @@ export default {
|
|
|
582
588
|
required: ['type', 'message'],
|
|
583
589
|
type: 'object',
|
|
584
590
|
},
|
|
585
|
-
result: {
|
|
591
|
+
result: { nullable: true },
|
|
586
592
|
status: { enum: ['error'], type: 'string' },
|
|
587
593
|
},
|
|
588
594
|
required: [
|
|
@@ -598,13 +604,14 @@ export default {
|
|
|
598
604
|
description: 'Unlocking door.',
|
|
599
605
|
properties: {
|
|
600
606
|
action_attempt_id: {
|
|
601
|
-
description: '
|
|
607
|
+
description: 'The ID of the action attempt.',
|
|
602
608
|
format: 'uuid',
|
|
603
609
|
type: 'string',
|
|
610
|
+
'x-title': 'Action Attempt ID',
|
|
604
611
|
},
|
|
605
612
|
action_type: { enum: ['UNLOCK_DOOR'], type: 'string' },
|
|
606
|
-
error: {
|
|
607
|
-
result: {
|
|
613
|
+
error: { nullable: true },
|
|
614
|
+
result: { nullable: true },
|
|
608
615
|
status: { enum: ['pending'], type: 'string' },
|
|
609
616
|
},
|
|
610
617
|
required: [
|
|
@@ -620,12 +627,13 @@ export default {
|
|
|
620
627
|
description: 'Unlocking door succeeded.',
|
|
621
628
|
properties: {
|
|
622
629
|
action_attempt_id: {
|
|
623
|
-
description: '
|
|
630
|
+
description: 'The ID of the action attempt.',
|
|
624
631
|
format: 'uuid',
|
|
625
632
|
type: 'string',
|
|
633
|
+
'x-title': 'Action Attempt ID',
|
|
626
634
|
},
|
|
627
635
|
action_type: { enum: ['UNLOCK_DOOR'], type: 'string' },
|
|
628
|
-
error: {
|
|
636
|
+
error: { nullable: true },
|
|
629
637
|
result: { properties: {}, type: 'object' },
|
|
630
638
|
status: { enum: ['success'], type: 'string' },
|
|
631
639
|
},
|
|
@@ -642,9 +650,10 @@ export default {
|
|
|
642
650
|
description: 'Unlocking door failed.',
|
|
643
651
|
properties: {
|
|
644
652
|
action_attempt_id: {
|
|
645
|
-
description: '
|
|
653
|
+
description: 'The ID of the action attempt.',
|
|
646
654
|
format: 'uuid',
|
|
647
655
|
type: 'string',
|
|
656
|
+
'x-title': 'Action Attempt ID',
|
|
648
657
|
},
|
|
649
658
|
action_type: { enum: ['UNLOCK_DOOR'], type: 'string' },
|
|
650
659
|
error: {
|
|
@@ -655,7 +664,7 @@ export default {
|
|
|
655
664
|
required: ['type', 'message'],
|
|
656
665
|
type: 'object',
|
|
657
666
|
},
|
|
658
|
-
result: {
|
|
667
|
+
result: { nullable: true },
|
|
659
668
|
status: { enum: ['error'], type: 'string' },
|
|
660
669
|
},
|
|
661
670
|
required: [
|
|
@@ -671,16 +680,17 @@ export default {
|
|
|
671
680
|
description: 'Resetting sandbox workspace.',
|
|
672
681
|
properties: {
|
|
673
682
|
action_attempt_id: {
|
|
674
|
-
description: '
|
|
683
|
+
description: 'The ID of the action attempt.',
|
|
675
684
|
format: 'uuid',
|
|
676
685
|
type: 'string',
|
|
686
|
+
'x-title': 'Action Attempt ID',
|
|
677
687
|
},
|
|
678
688
|
action_type: {
|
|
679
689
|
enum: ['RESET_SANDBOX_WORKSPACE'],
|
|
680
690
|
type: 'string',
|
|
681
691
|
},
|
|
682
|
-
error: {
|
|
683
|
-
result: {
|
|
692
|
+
error: { nullable: true },
|
|
693
|
+
result: { nullable: true },
|
|
684
694
|
status: { enum: ['pending'], type: 'string' },
|
|
685
695
|
},
|
|
686
696
|
required: [
|
|
@@ -696,15 +706,16 @@ export default {
|
|
|
696
706
|
description: 'Resetting sandbox workspace succeeded.',
|
|
697
707
|
properties: {
|
|
698
708
|
action_attempt_id: {
|
|
699
|
-
description: '
|
|
709
|
+
description: 'The ID of the action attempt.',
|
|
700
710
|
format: 'uuid',
|
|
701
711
|
type: 'string',
|
|
712
|
+
'x-title': 'Action Attempt ID',
|
|
702
713
|
},
|
|
703
714
|
action_type: {
|
|
704
715
|
enum: ['RESET_SANDBOX_WORKSPACE'],
|
|
705
716
|
type: 'string',
|
|
706
717
|
},
|
|
707
|
-
error: {
|
|
718
|
+
error: { nullable: true },
|
|
708
719
|
result: { properties: {}, type: 'object' },
|
|
709
720
|
status: { enum: ['success'], type: 'string' },
|
|
710
721
|
},
|
|
@@ -721,9 +732,10 @@ export default {
|
|
|
721
732
|
description: 'Resetting sandbox workspace failed.',
|
|
722
733
|
properties: {
|
|
723
734
|
action_attempt_id: {
|
|
724
|
-
description: '
|
|
735
|
+
description: 'The ID of the action attempt.',
|
|
725
736
|
format: 'uuid',
|
|
726
737
|
type: 'string',
|
|
738
|
+
'x-title': 'Action Attempt ID',
|
|
727
739
|
},
|
|
728
740
|
action_type: {
|
|
729
741
|
enum: ['RESET_SANDBOX_WORKSPACE'],
|
|
@@ -737,7 +749,7 @@ export default {
|
|
|
737
749
|
required: ['type', 'message'],
|
|
738
750
|
type: 'object',
|
|
739
751
|
},
|
|
740
|
-
result: {
|
|
752
|
+
result: { nullable: true },
|
|
741
753
|
status: { enum: ['error'], type: 'string' },
|
|
742
754
|
},
|
|
743
755
|
required: [
|
|
@@ -753,13 +765,14 @@ export default {
|
|
|
753
765
|
description: 'Setting HVAC to cool.',
|
|
754
766
|
properties: {
|
|
755
767
|
action_attempt_id: {
|
|
756
|
-
description: '
|
|
768
|
+
description: 'The ID of the action attempt.',
|
|
757
769
|
format: 'uuid',
|
|
758
770
|
type: 'string',
|
|
771
|
+
'x-title': 'Action Attempt ID',
|
|
759
772
|
},
|
|
760
773
|
action_type: { enum: ['SET_COOL'], type: 'string' },
|
|
761
|
-
error: {
|
|
762
|
-
result: {
|
|
774
|
+
error: { nullable: true },
|
|
775
|
+
result: { nullable: true },
|
|
763
776
|
status: { enum: ['pending'], type: 'string' },
|
|
764
777
|
},
|
|
765
778
|
required: [
|
|
@@ -775,12 +788,13 @@ export default {
|
|
|
775
788
|
description: 'Setting HVAC to cool succeeded.',
|
|
776
789
|
properties: {
|
|
777
790
|
action_attempt_id: {
|
|
778
|
-
description: '
|
|
791
|
+
description: 'The ID of the action attempt.',
|
|
779
792
|
format: 'uuid',
|
|
780
793
|
type: 'string',
|
|
794
|
+
'x-title': 'Action Attempt ID',
|
|
781
795
|
},
|
|
782
796
|
action_type: { enum: ['SET_COOL'], type: 'string' },
|
|
783
|
-
error: {
|
|
797
|
+
error: { nullable: true },
|
|
784
798
|
result: { properties: {}, type: 'object' },
|
|
785
799
|
status: { enum: ['success'], type: 'string' },
|
|
786
800
|
},
|
|
@@ -797,9 +811,10 @@ export default {
|
|
|
797
811
|
description: 'Setting HVAC to cool failed.',
|
|
798
812
|
properties: {
|
|
799
813
|
action_attempt_id: {
|
|
800
|
-
description: '
|
|
814
|
+
description: 'The ID of the action attempt.',
|
|
801
815
|
format: 'uuid',
|
|
802
816
|
type: 'string',
|
|
817
|
+
'x-title': 'Action Attempt ID',
|
|
803
818
|
},
|
|
804
819
|
action_type: { enum: ['SET_COOL'], type: 'string' },
|
|
805
820
|
error: {
|
|
@@ -810,7 +825,7 @@ export default {
|
|
|
810
825
|
required: ['type', 'message'],
|
|
811
826
|
type: 'object',
|
|
812
827
|
},
|
|
813
|
-
result: {
|
|
828
|
+
result: { nullable: true },
|
|
814
829
|
status: { enum: ['error'], type: 'string' },
|
|
815
830
|
},
|
|
816
831
|
required: [
|
|
@@ -826,13 +841,14 @@ export default {
|
|
|
826
841
|
description: 'Setting HVAC to heat mode.',
|
|
827
842
|
properties: {
|
|
828
843
|
action_attempt_id: {
|
|
829
|
-
description: '
|
|
844
|
+
description: 'The ID of the action attempt.',
|
|
830
845
|
format: 'uuid',
|
|
831
846
|
type: 'string',
|
|
847
|
+
'x-title': 'Action Attempt ID',
|
|
832
848
|
},
|
|
833
849
|
action_type: { enum: ['SET_HEAT'], type: 'string' },
|
|
834
|
-
error: {
|
|
835
|
-
result: {
|
|
850
|
+
error: { nullable: true },
|
|
851
|
+
result: { nullable: true },
|
|
836
852
|
status: { enum: ['pending'], type: 'string' },
|
|
837
853
|
},
|
|
838
854
|
required: [
|
|
@@ -848,12 +864,13 @@ export default {
|
|
|
848
864
|
description: 'Setting HVAC to heat mode succeeded.',
|
|
849
865
|
properties: {
|
|
850
866
|
action_attempt_id: {
|
|
851
|
-
description: '
|
|
867
|
+
description: 'The ID of the action attempt.',
|
|
852
868
|
format: 'uuid',
|
|
853
869
|
type: 'string',
|
|
870
|
+
'x-title': 'Action Attempt ID',
|
|
854
871
|
},
|
|
855
872
|
action_type: { enum: ['SET_HEAT'], type: 'string' },
|
|
856
|
-
error: {
|
|
873
|
+
error: { nullable: true },
|
|
857
874
|
result: { properties: {}, type: 'object' },
|
|
858
875
|
status: { enum: ['success'], type: 'string' },
|
|
859
876
|
},
|
|
@@ -870,9 +887,10 @@ export default {
|
|
|
870
887
|
description: 'Setting HVAC to heat mode failed.',
|
|
871
888
|
properties: {
|
|
872
889
|
action_attempt_id: {
|
|
873
|
-
description: '
|
|
890
|
+
description: 'The ID of the action attempt.',
|
|
874
891
|
format: 'uuid',
|
|
875
892
|
type: 'string',
|
|
893
|
+
'x-title': 'Action Attempt ID',
|
|
876
894
|
},
|
|
877
895
|
action_type: { enum: ['SET_HEAT'], type: 'string' },
|
|
878
896
|
error: {
|
|
@@ -883,7 +901,7 @@ export default {
|
|
|
883
901
|
required: ['type', 'message'],
|
|
884
902
|
type: 'object',
|
|
885
903
|
},
|
|
886
|
-
result: {
|
|
904
|
+
result: { nullable: true },
|
|
887
905
|
status: { enum: ['error'], type: 'string' },
|
|
888
906
|
},
|
|
889
907
|
required: [
|
|
@@ -899,13 +917,14 @@ export default {
|
|
|
899
917
|
description: 'Setting HVAC to heat-cool mode.',
|
|
900
918
|
properties: {
|
|
901
919
|
action_attempt_id: {
|
|
902
|
-
description: '
|
|
920
|
+
description: 'The ID of the action attempt.',
|
|
903
921
|
format: 'uuid',
|
|
904
922
|
type: 'string',
|
|
923
|
+
'x-title': 'Action Attempt ID',
|
|
905
924
|
},
|
|
906
925
|
action_type: { enum: ['SET_HEAT_COOL'], type: 'string' },
|
|
907
|
-
error: {
|
|
908
|
-
result: {
|
|
926
|
+
error: { nullable: true },
|
|
927
|
+
result: { nullable: true },
|
|
909
928
|
status: { enum: ['pending'], type: 'string' },
|
|
910
929
|
},
|
|
911
930
|
required: [
|
|
@@ -921,12 +940,13 @@ export default {
|
|
|
921
940
|
description: 'Setting HVAC to heat-cool mode succeeded.',
|
|
922
941
|
properties: {
|
|
923
942
|
action_attempt_id: {
|
|
924
|
-
description: '
|
|
943
|
+
description: 'The ID of the action attempt.',
|
|
925
944
|
format: 'uuid',
|
|
926
945
|
type: 'string',
|
|
946
|
+
'x-title': 'Action Attempt ID',
|
|
927
947
|
},
|
|
928
948
|
action_type: { enum: ['SET_HEAT_COOL'], type: 'string' },
|
|
929
|
-
error: {
|
|
949
|
+
error: { nullable: true },
|
|
930
950
|
result: { properties: {}, type: 'object' },
|
|
931
951
|
status: { enum: ['success'], type: 'string' },
|
|
932
952
|
},
|
|
@@ -943,9 +963,10 @@ export default {
|
|
|
943
963
|
description: 'Setting heat-cool mode failed.',
|
|
944
964
|
properties: {
|
|
945
965
|
action_attempt_id: {
|
|
946
|
-
description: '
|
|
966
|
+
description: 'The ID of the action attempt.',
|
|
947
967
|
format: 'uuid',
|
|
948
968
|
type: 'string',
|
|
969
|
+
'x-title': 'Action Attempt ID',
|
|
949
970
|
},
|
|
950
971
|
action_type: { enum: ['SET_HEAT_COOL'], type: 'string' },
|
|
951
972
|
error: {
|
|
@@ -956,7 +977,7 @@ export default {
|
|
|
956
977
|
required: ['type', 'message'],
|
|
957
978
|
type: 'object',
|
|
958
979
|
},
|
|
959
|
-
result: {
|
|
980
|
+
result: { nullable: true },
|
|
960
981
|
status: { enum: ['error'], type: 'string' },
|
|
961
982
|
},
|
|
962
983
|
required: [
|
|
@@ -972,13 +993,14 @@ export default {
|
|
|
972
993
|
description: 'Setting fan mode.',
|
|
973
994
|
properties: {
|
|
974
995
|
action_attempt_id: {
|
|
975
|
-
description: '
|
|
996
|
+
description: 'The ID of the action attempt.',
|
|
976
997
|
format: 'uuid',
|
|
977
998
|
type: 'string',
|
|
999
|
+
'x-title': 'Action Attempt ID',
|
|
978
1000
|
},
|
|
979
1001
|
action_type: { enum: ['SET_FAN_MODE'], type: 'string' },
|
|
980
|
-
error: {
|
|
981
|
-
result: {
|
|
1002
|
+
error: { nullable: true },
|
|
1003
|
+
result: { nullable: true },
|
|
982
1004
|
status: { enum: ['pending'], type: 'string' },
|
|
983
1005
|
},
|
|
984
1006
|
required: [
|
|
@@ -994,12 +1016,13 @@ export default {
|
|
|
994
1016
|
description: 'Setting fan mode succeeded.',
|
|
995
1017
|
properties: {
|
|
996
1018
|
action_attempt_id: {
|
|
997
|
-
description: '
|
|
1019
|
+
description: 'The ID of the action attempt.',
|
|
998
1020
|
format: 'uuid',
|
|
999
1021
|
type: 'string',
|
|
1022
|
+
'x-title': 'Action Attempt ID',
|
|
1000
1023
|
},
|
|
1001
1024
|
action_type: { enum: ['SET_FAN_MODE'], type: 'string' },
|
|
1002
|
-
error: {
|
|
1025
|
+
error: { nullable: true },
|
|
1003
1026
|
result: { properties: {}, type: 'object' },
|
|
1004
1027
|
status: { enum: ['success'], type: 'string' },
|
|
1005
1028
|
},
|
|
@@ -1016,9 +1039,10 @@ export default {
|
|
|
1016
1039
|
description: 'Setting fan mode failed.',
|
|
1017
1040
|
properties: {
|
|
1018
1041
|
action_attempt_id: {
|
|
1019
|
-
description: '
|
|
1042
|
+
description: 'The ID of the action attempt.',
|
|
1020
1043
|
format: 'uuid',
|
|
1021
1044
|
type: 'string',
|
|
1045
|
+
'x-title': 'Action Attempt ID',
|
|
1022
1046
|
},
|
|
1023
1047
|
action_type: { enum: ['SET_FAN_MODE'], type: 'string' },
|
|
1024
1048
|
error: {
|
|
@@ -1029,7 +1053,7 @@ export default {
|
|
|
1029
1053
|
required: ['type', 'message'],
|
|
1030
1054
|
type: 'object',
|
|
1031
1055
|
},
|
|
1032
|
-
result: {
|
|
1056
|
+
result: { nullable: true },
|
|
1033
1057
|
status: { enum: ['error'], type: 'string' },
|
|
1034
1058
|
},
|
|
1035
1059
|
required: [
|
|
@@ -1045,13 +1069,14 @@ export default {
|
|
|
1045
1069
|
description: 'Turning HVAC off.',
|
|
1046
1070
|
properties: {
|
|
1047
1071
|
action_attempt_id: {
|
|
1048
|
-
description: '
|
|
1072
|
+
description: 'The ID of the action attempt.',
|
|
1049
1073
|
format: 'uuid',
|
|
1050
1074
|
type: 'string',
|
|
1075
|
+
'x-title': 'Action Attempt ID',
|
|
1051
1076
|
},
|
|
1052
1077
|
action_type: { enum: ['SET_THERMOSTAT_OFF'], type: 'string' },
|
|
1053
|
-
error: {
|
|
1054
|
-
result: {
|
|
1078
|
+
error: { nullable: true },
|
|
1079
|
+
result: { nullable: true },
|
|
1055
1080
|
status: { enum: ['pending'], type: 'string' },
|
|
1056
1081
|
},
|
|
1057
1082
|
required: [
|
|
@@ -1067,12 +1092,13 @@ export default {
|
|
|
1067
1092
|
description: 'Turning HVAC off succeeded.',
|
|
1068
1093
|
properties: {
|
|
1069
1094
|
action_attempt_id: {
|
|
1070
|
-
description: '
|
|
1095
|
+
description: 'The ID of the action attempt.',
|
|
1071
1096
|
format: 'uuid',
|
|
1072
1097
|
type: 'string',
|
|
1098
|
+
'x-title': 'Action Attempt ID',
|
|
1073
1099
|
},
|
|
1074
1100
|
action_type: { enum: ['SET_THERMOSTAT_OFF'], type: 'string' },
|
|
1075
|
-
error: {
|
|
1101
|
+
error: { nullable: true },
|
|
1076
1102
|
result: { properties: {}, type: 'object' },
|
|
1077
1103
|
status: { enum: ['success'], type: 'string' },
|
|
1078
1104
|
},
|
|
@@ -1089,9 +1115,10 @@ export default {
|
|
|
1089
1115
|
description: 'Turning HVAC off failed.',
|
|
1090
1116
|
properties: {
|
|
1091
1117
|
action_attempt_id: {
|
|
1092
|
-
description: '
|
|
1118
|
+
description: 'The ID of the action attempt.',
|
|
1093
1119
|
format: 'uuid',
|
|
1094
1120
|
type: 'string',
|
|
1121
|
+
'x-title': 'Action Attempt ID',
|
|
1095
1122
|
},
|
|
1096
1123
|
action_type: { enum: ['SET_THERMOSTAT_OFF'], type: 'string' },
|
|
1097
1124
|
error: {
|
|
@@ -1102,7 +1129,7 @@ export default {
|
|
|
1102
1129
|
required: ['type', 'message'],
|
|
1103
1130
|
type: 'object',
|
|
1104
1131
|
},
|
|
1105
|
-
result: {
|
|
1132
|
+
result: { nullable: true },
|
|
1106
1133
|
status: { enum: ['error'], type: 'string' },
|
|
1107
1134
|
},
|
|
1108
1135
|
required: [
|
|
@@ -1117,13 +1144,14 @@ export default {
|
|
|
1117
1144
|
{
|
|
1118
1145
|
properties: {
|
|
1119
1146
|
action_attempt_id: {
|
|
1120
|
-
description: '
|
|
1147
|
+
description: 'The ID of the action attempt.',
|
|
1121
1148
|
format: 'uuid',
|
|
1122
1149
|
type: 'string',
|
|
1150
|
+
'x-title': 'Action Attempt ID',
|
|
1123
1151
|
},
|
|
1124
1152
|
action_type: { enum: ['SYNC_ACCESS_CODES'], type: 'string' },
|
|
1125
|
-
error: {
|
|
1126
|
-
result: {
|
|
1153
|
+
error: { nullable: true },
|
|
1154
|
+
result: { nullable: true },
|
|
1127
1155
|
status: { enum: ['pending'], type: 'string' },
|
|
1128
1156
|
},
|
|
1129
1157
|
required: [
|
|
@@ -1138,13 +1166,14 @@ export default {
|
|
|
1138
1166
|
{
|
|
1139
1167
|
properties: {
|
|
1140
1168
|
action_attempt_id: {
|
|
1141
|
-
description: '
|
|
1169
|
+
description: 'The ID of the action attempt.',
|
|
1142
1170
|
format: 'uuid',
|
|
1143
1171
|
type: 'string',
|
|
1172
|
+
'x-title': 'Action Attempt ID',
|
|
1144
1173
|
},
|
|
1145
1174
|
action_type: { enum: ['SYNC_ACCESS_CODES'], type: 'string' },
|
|
1146
|
-
error: {
|
|
1147
|
-
result: {
|
|
1175
|
+
error: { nullable: true },
|
|
1176
|
+
result: {},
|
|
1148
1177
|
status: { enum: ['success'], type: 'string' },
|
|
1149
1178
|
},
|
|
1150
1179
|
required: ['action_attempt_id', 'status', 'error', 'action_type'],
|
|
@@ -1153,9 +1182,10 @@ export default {
|
|
|
1153
1182
|
{
|
|
1154
1183
|
properties: {
|
|
1155
1184
|
action_attempt_id: {
|
|
1156
|
-
description: '
|
|
1185
|
+
description: 'The ID of the action attempt.',
|
|
1157
1186
|
format: 'uuid',
|
|
1158
1187
|
type: 'string',
|
|
1188
|
+
'x-title': 'Action Attempt ID',
|
|
1159
1189
|
},
|
|
1160
1190
|
action_type: { enum: ['SYNC_ACCESS_CODES'], type: 'string' },
|
|
1161
1191
|
error: {
|
|
@@ -1166,7 +1196,7 @@ export default {
|
|
|
1166
1196
|
required: ['type', 'message'],
|
|
1167
1197
|
type: 'object',
|
|
1168
1198
|
},
|
|
1169
|
-
result: {
|
|
1199
|
+
result: { nullable: true },
|
|
1170
1200
|
status: { enum: ['error'], type: 'string' },
|
|
1171
1201
|
},
|
|
1172
1202
|
required: [
|
|
@@ -1181,13 +1211,14 @@ export default {
|
|
|
1181
1211
|
{
|
|
1182
1212
|
properties: {
|
|
1183
1213
|
action_attempt_id: {
|
|
1184
|
-
description: '
|
|
1214
|
+
description: 'The ID of the action attempt.',
|
|
1185
1215
|
format: 'uuid',
|
|
1186
1216
|
type: 'string',
|
|
1217
|
+
'x-title': 'Action Attempt ID',
|
|
1187
1218
|
},
|
|
1188
1219
|
action_type: { enum: ['CREATE_ACCESS_CODE'], type: 'string' },
|
|
1189
|
-
error: {
|
|
1190
|
-
result: {
|
|
1220
|
+
error: { nullable: true },
|
|
1221
|
+
result: { nullable: true },
|
|
1191
1222
|
status: { enum: ['pending'], type: 'string' },
|
|
1192
1223
|
},
|
|
1193
1224
|
required: [
|
|
@@ -1202,13 +1233,14 @@ export default {
|
|
|
1202
1233
|
{
|
|
1203
1234
|
properties: {
|
|
1204
1235
|
action_attempt_id: {
|
|
1205
|
-
description: '
|
|
1236
|
+
description: 'The ID of the action attempt.',
|
|
1206
1237
|
format: 'uuid',
|
|
1207
1238
|
type: 'string',
|
|
1239
|
+
'x-title': 'Action Attempt ID',
|
|
1208
1240
|
},
|
|
1209
1241
|
action_type: { enum: ['CREATE_ACCESS_CODE'], type: 'string' },
|
|
1210
|
-
error: {
|
|
1211
|
-
result: {
|
|
1242
|
+
error: { nullable: true },
|
|
1243
|
+
result: {},
|
|
1212
1244
|
status: { enum: ['success'], type: 'string' },
|
|
1213
1245
|
},
|
|
1214
1246
|
required: ['action_attempt_id', 'status', 'error', 'action_type'],
|
|
@@ -1217,9 +1249,10 @@ export default {
|
|
|
1217
1249
|
{
|
|
1218
1250
|
properties: {
|
|
1219
1251
|
action_attempt_id: {
|
|
1220
|
-
description: '
|
|
1252
|
+
description: 'The ID of the action attempt.',
|
|
1221
1253
|
format: 'uuid',
|
|
1222
1254
|
type: 'string',
|
|
1255
|
+
'x-title': 'Action Attempt ID',
|
|
1223
1256
|
},
|
|
1224
1257
|
action_type: { enum: ['CREATE_ACCESS_CODE'], type: 'string' },
|
|
1225
1258
|
error: {
|
|
@@ -1230,7 +1263,7 @@ export default {
|
|
|
1230
1263
|
required: ['type', 'message'],
|
|
1231
1264
|
type: 'object',
|
|
1232
1265
|
},
|
|
1233
|
-
result: {
|
|
1266
|
+
result: { nullable: true },
|
|
1234
1267
|
status: { enum: ['error'], type: 'string' },
|
|
1235
1268
|
},
|
|
1236
1269
|
required: [
|
|
@@ -1245,13 +1278,14 @@ export default {
|
|
|
1245
1278
|
{
|
|
1246
1279
|
properties: {
|
|
1247
1280
|
action_attempt_id: {
|
|
1248
|
-
description: '
|
|
1281
|
+
description: 'The ID of the action attempt.',
|
|
1249
1282
|
format: 'uuid',
|
|
1250
1283
|
type: 'string',
|
|
1284
|
+
'x-title': 'Action Attempt ID',
|
|
1251
1285
|
},
|
|
1252
1286
|
action_type: { enum: ['DELETE_ACCESS_CODE'], type: 'string' },
|
|
1253
|
-
error: {
|
|
1254
|
-
result: {
|
|
1287
|
+
error: { nullable: true },
|
|
1288
|
+
result: { nullable: true },
|
|
1255
1289
|
status: { enum: ['pending'], type: 'string' },
|
|
1256
1290
|
},
|
|
1257
1291
|
required: [
|
|
@@ -1266,13 +1300,14 @@ export default {
|
|
|
1266
1300
|
{
|
|
1267
1301
|
properties: {
|
|
1268
1302
|
action_attempt_id: {
|
|
1269
|
-
description: '
|
|
1303
|
+
description: 'The ID of the action attempt.',
|
|
1270
1304
|
format: 'uuid',
|
|
1271
1305
|
type: 'string',
|
|
1306
|
+
'x-title': 'Action Attempt ID',
|
|
1272
1307
|
},
|
|
1273
1308
|
action_type: { enum: ['DELETE_ACCESS_CODE'], type: 'string' },
|
|
1274
|
-
error: {
|
|
1275
|
-
result: {
|
|
1309
|
+
error: { nullable: true },
|
|
1310
|
+
result: {},
|
|
1276
1311
|
status: { enum: ['success'], type: 'string' },
|
|
1277
1312
|
},
|
|
1278
1313
|
required: ['action_attempt_id', 'status', 'error', 'action_type'],
|
|
@@ -1281,9 +1316,10 @@ export default {
|
|
|
1281
1316
|
{
|
|
1282
1317
|
properties: {
|
|
1283
1318
|
action_attempt_id: {
|
|
1284
|
-
description: '
|
|
1319
|
+
description: 'The ID of the action attempt.',
|
|
1285
1320
|
format: 'uuid',
|
|
1286
1321
|
type: 'string',
|
|
1322
|
+
'x-title': 'Action Attempt ID',
|
|
1287
1323
|
},
|
|
1288
1324
|
action_type: { enum: ['DELETE_ACCESS_CODE'], type: 'string' },
|
|
1289
1325
|
error: {
|
|
@@ -1294,7 +1330,7 @@ export default {
|
|
|
1294
1330
|
required: ['type', 'message'],
|
|
1295
1331
|
type: 'object',
|
|
1296
1332
|
},
|
|
1297
|
-
result: {
|
|
1333
|
+
result: { nullable: true },
|
|
1298
1334
|
status: { enum: ['error'], type: 'string' },
|
|
1299
1335
|
},
|
|
1300
1336
|
required: [
|
|
@@ -1309,13 +1345,14 @@ export default {
|
|
|
1309
1345
|
{
|
|
1310
1346
|
properties: {
|
|
1311
1347
|
action_attempt_id: {
|
|
1312
|
-
description: '
|
|
1348
|
+
description: 'The ID of the action attempt.',
|
|
1313
1349
|
format: 'uuid',
|
|
1314
1350
|
type: 'string',
|
|
1351
|
+
'x-title': 'Action Attempt ID',
|
|
1315
1352
|
},
|
|
1316
1353
|
action_type: { enum: ['UPDATE_ACCESS_CODE'], type: 'string' },
|
|
1317
|
-
error: {
|
|
1318
|
-
result: {
|
|
1354
|
+
error: { nullable: true },
|
|
1355
|
+
result: { nullable: true },
|
|
1319
1356
|
status: { enum: ['pending'], type: 'string' },
|
|
1320
1357
|
},
|
|
1321
1358
|
required: [
|
|
@@ -1330,13 +1367,14 @@ export default {
|
|
|
1330
1367
|
{
|
|
1331
1368
|
properties: {
|
|
1332
1369
|
action_attempt_id: {
|
|
1333
|
-
description: '
|
|
1370
|
+
description: 'The ID of the action attempt.',
|
|
1334
1371
|
format: 'uuid',
|
|
1335
1372
|
type: 'string',
|
|
1373
|
+
'x-title': 'Action Attempt ID',
|
|
1336
1374
|
},
|
|
1337
1375
|
action_type: { enum: ['UPDATE_ACCESS_CODE'], type: 'string' },
|
|
1338
|
-
error: {
|
|
1339
|
-
result: {
|
|
1376
|
+
error: { nullable: true },
|
|
1377
|
+
result: {},
|
|
1340
1378
|
status: { enum: ['success'], type: 'string' },
|
|
1341
1379
|
},
|
|
1342
1380
|
required: ['action_attempt_id', 'status', 'error', 'action_type'],
|
|
@@ -1345,9 +1383,10 @@ export default {
|
|
|
1345
1383
|
{
|
|
1346
1384
|
properties: {
|
|
1347
1385
|
action_attempt_id: {
|
|
1348
|
-
description: '
|
|
1386
|
+
description: 'The ID of the action attempt.',
|
|
1349
1387
|
format: 'uuid',
|
|
1350
1388
|
type: 'string',
|
|
1389
|
+
'x-title': 'Action Attempt ID',
|
|
1351
1390
|
},
|
|
1352
1391
|
action_type: { enum: ['UPDATE_ACCESS_CODE'], type: 'string' },
|
|
1353
1392
|
error: {
|
|
@@ -1358,7 +1397,7 @@ export default {
|
|
|
1358
1397
|
required: ['type', 'message'],
|
|
1359
1398
|
type: 'object',
|
|
1360
1399
|
},
|
|
1361
|
-
result: {
|
|
1400
|
+
result: { nullable: true },
|
|
1362
1401
|
status: { enum: ['error'], type: 'string' },
|
|
1363
1402
|
},
|
|
1364
1403
|
required: [
|
|
@@ -1373,13 +1412,14 @@ export default {
|
|
|
1373
1412
|
{
|
|
1374
1413
|
properties: {
|
|
1375
1414
|
action_attempt_id: {
|
|
1376
|
-
description: '
|
|
1415
|
+
description: 'The ID of the action attempt.',
|
|
1377
1416
|
format: 'uuid',
|
|
1378
1417
|
type: 'string',
|
|
1418
|
+
'x-title': 'Action Attempt ID',
|
|
1379
1419
|
},
|
|
1380
1420
|
action_type: { enum: ['CREATE_NOISE_THRESHOLD'], type: 'string' },
|
|
1381
|
-
error: {
|
|
1382
|
-
result: {
|
|
1421
|
+
error: { nullable: true },
|
|
1422
|
+
result: { nullable: true },
|
|
1383
1423
|
status: { enum: ['pending'], type: 'string' },
|
|
1384
1424
|
},
|
|
1385
1425
|
required: [
|
|
@@ -1394,13 +1434,14 @@ export default {
|
|
|
1394
1434
|
{
|
|
1395
1435
|
properties: {
|
|
1396
1436
|
action_attempt_id: {
|
|
1397
|
-
description: '
|
|
1437
|
+
description: 'The ID of the action attempt.',
|
|
1398
1438
|
format: 'uuid',
|
|
1399
1439
|
type: 'string',
|
|
1440
|
+
'x-title': 'Action Attempt ID',
|
|
1400
1441
|
},
|
|
1401
1442
|
action_type: { enum: ['CREATE_NOISE_THRESHOLD'], type: 'string' },
|
|
1402
|
-
error: {
|
|
1403
|
-
result: {
|
|
1443
|
+
error: { nullable: true },
|
|
1444
|
+
result: {},
|
|
1404
1445
|
status: { enum: ['success'], type: 'string' },
|
|
1405
1446
|
},
|
|
1406
1447
|
required: ['action_attempt_id', 'status', 'error', 'action_type'],
|
|
@@ -1409,9 +1450,10 @@ export default {
|
|
|
1409
1450
|
{
|
|
1410
1451
|
properties: {
|
|
1411
1452
|
action_attempt_id: {
|
|
1412
|
-
description: '
|
|
1453
|
+
description: 'The ID of the action attempt.',
|
|
1413
1454
|
format: 'uuid',
|
|
1414
1455
|
type: 'string',
|
|
1456
|
+
'x-title': 'Action Attempt ID',
|
|
1415
1457
|
},
|
|
1416
1458
|
action_type: { enum: ['CREATE_NOISE_THRESHOLD'], type: 'string' },
|
|
1417
1459
|
error: {
|
|
@@ -1422,7 +1464,7 @@ export default {
|
|
|
1422
1464
|
required: ['type', 'message'],
|
|
1423
1465
|
type: 'object',
|
|
1424
1466
|
},
|
|
1425
|
-
result: {
|
|
1467
|
+
result: { nullable: true },
|
|
1426
1468
|
status: { enum: ['error'], type: 'string' },
|
|
1427
1469
|
},
|
|
1428
1470
|
required: [
|
|
@@ -1437,13 +1479,14 @@ export default {
|
|
|
1437
1479
|
{
|
|
1438
1480
|
properties: {
|
|
1439
1481
|
action_attempt_id: {
|
|
1440
|
-
description: '
|
|
1482
|
+
description: 'The ID of the action attempt.',
|
|
1441
1483
|
format: 'uuid',
|
|
1442
1484
|
type: 'string',
|
|
1485
|
+
'x-title': 'Action Attempt ID',
|
|
1443
1486
|
},
|
|
1444
1487
|
action_type: { enum: ['DELETE_NOISE_THRESHOLD'], type: 'string' },
|
|
1445
|
-
error: {
|
|
1446
|
-
result: {
|
|
1488
|
+
error: { nullable: true },
|
|
1489
|
+
result: { nullable: true },
|
|
1447
1490
|
status: { enum: ['pending'], type: 'string' },
|
|
1448
1491
|
},
|
|
1449
1492
|
required: [
|
|
@@ -1458,13 +1501,14 @@ export default {
|
|
|
1458
1501
|
{
|
|
1459
1502
|
properties: {
|
|
1460
1503
|
action_attempt_id: {
|
|
1461
|
-
description: '
|
|
1504
|
+
description: 'The ID of the action attempt.',
|
|
1462
1505
|
format: 'uuid',
|
|
1463
1506
|
type: 'string',
|
|
1507
|
+
'x-title': 'Action Attempt ID',
|
|
1464
1508
|
},
|
|
1465
1509
|
action_type: { enum: ['DELETE_NOISE_THRESHOLD'], type: 'string' },
|
|
1466
|
-
error: {
|
|
1467
|
-
result: {
|
|
1510
|
+
error: { nullable: true },
|
|
1511
|
+
result: {},
|
|
1468
1512
|
status: { enum: ['success'], type: 'string' },
|
|
1469
1513
|
},
|
|
1470
1514
|
required: ['action_attempt_id', 'status', 'error', 'action_type'],
|
|
@@ -1473,9 +1517,10 @@ export default {
|
|
|
1473
1517
|
{
|
|
1474
1518
|
properties: {
|
|
1475
1519
|
action_attempt_id: {
|
|
1476
|
-
description: '
|
|
1520
|
+
description: 'The ID of the action attempt.',
|
|
1477
1521
|
format: 'uuid',
|
|
1478
1522
|
type: 'string',
|
|
1523
|
+
'x-title': 'Action Attempt ID',
|
|
1479
1524
|
},
|
|
1480
1525
|
action_type: { enum: ['DELETE_NOISE_THRESHOLD'], type: 'string' },
|
|
1481
1526
|
error: {
|
|
@@ -1486,7 +1531,7 @@ export default {
|
|
|
1486
1531
|
required: ['type', 'message'],
|
|
1487
1532
|
type: 'object',
|
|
1488
1533
|
},
|
|
1489
|
-
result: {
|
|
1534
|
+
result: { nullable: true },
|
|
1490
1535
|
status: { enum: ['error'], type: 'string' },
|
|
1491
1536
|
},
|
|
1492
1537
|
required: [
|
|
@@ -1501,13 +1546,14 @@ export default {
|
|
|
1501
1546
|
{
|
|
1502
1547
|
properties: {
|
|
1503
1548
|
action_attempt_id: {
|
|
1504
|
-
description: '
|
|
1549
|
+
description: 'The ID of the action attempt.',
|
|
1505
1550
|
format: 'uuid',
|
|
1506
1551
|
type: 'string',
|
|
1552
|
+
'x-title': 'Action Attempt ID',
|
|
1507
1553
|
},
|
|
1508
1554
|
action_type: { enum: ['UPDATE_NOISE_THRESHOLD'], type: 'string' },
|
|
1509
|
-
error: {
|
|
1510
|
-
result: {
|
|
1555
|
+
error: { nullable: true },
|
|
1556
|
+
result: { nullable: true },
|
|
1511
1557
|
status: { enum: ['pending'], type: 'string' },
|
|
1512
1558
|
},
|
|
1513
1559
|
required: [
|
|
@@ -1522,13 +1568,14 @@ export default {
|
|
|
1522
1568
|
{
|
|
1523
1569
|
properties: {
|
|
1524
1570
|
action_attempt_id: {
|
|
1525
|
-
description: '
|
|
1571
|
+
description: 'The ID of the action attempt.',
|
|
1526
1572
|
format: 'uuid',
|
|
1527
1573
|
type: 'string',
|
|
1574
|
+
'x-title': 'Action Attempt ID',
|
|
1528
1575
|
},
|
|
1529
1576
|
action_type: { enum: ['UPDATE_NOISE_THRESHOLD'], type: 'string' },
|
|
1530
|
-
error: {
|
|
1531
|
-
result: {
|
|
1577
|
+
error: { nullable: true },
|
|
1578
|
+
result: {},
|
|
1532
1579
|
status: { enum: ['success'], type: 'string' },
|
|
1533
1580
|
},
|
|
1534
1581
|
required: ['action_attempt_id', 'status', 'error', 'action_type'],
|
|
@@ -1537,9 +1584,10 @@ export default {
|
|
|
1537
1584
|
{
|
|
1538
1585
|
properties: {
|
|
1539
1586
|
action_attempt_id: {
|
|
1540
|
-
description: '
|
|
1587
|
+
description: 'The ID of the action attempt.',
|
|
1541
1588
|
format: 'uuid',
|
|
1542
1589
|
type: 'string',
|
|
1590
|
+
'x-title': 'Action Attempt ID',
|
|
1543
1591
|
},
|
|
1544
1592
|
action_type: { enum: ['UPDATE_NOISE_THRESHOLD'], type: 'string' },
|
|
1545
1593
|
error: {
|
|
@@ -1550,7 +1598,7 @@ export default {
|
|
|
1550
1598
|
required: ['type', 'message'],
|
|
1551
1599
|
type: 'object',
|
|
1552
1600
|
},
|
|
1553
|
-
result: {
|
|
1601
|
+
result: { nullable: true },
|
|
1554
1602
|
status: { enum: ['error'], type: 'string' },
|
|
1555
1603
|
},
|
|
1556
1604
|
required: [
|
|
@@ -1576,7 +1624,7 @@ export default {
|
|
|
1576
1624
|
type: 'array',
|
|
1577
1625
|
},
|
|
1578
1626
|
created_at: { format: 'date-time', type: 'string' },
|
|
1579
|
-
device_count: { type: 'number' },
|
|
1627
|
+
device_count: { format: 'float', type: 'number' },
|
|
1580
1628
|
token: { type: 'string' },
|
|
1581
1629
|
user_identifier_key: { nullable: true, type: 'string' },
|
|
1582
1630
|
user_identity_ids: {
|
|
@@ -1603,16 +1651,15 @@ export default {
|
|
|
1603
1651
|
automatic_cooling_enabled: { type: 'boolean' },
|
|
1604
1652
|
automatic_heating_enabled: { type: 'boolean' },
|
|
1605
1653
|
climate_setting_schedule_id: { format: 'uuid', type: 'string' },
|
|
1606
|
-
cooling_set_point_celsius: { type: 'number' },
|
|
1607
|
-
cooling_set_point_fahrenheit: { type: 'number' },
|
|
1654
|
+
cooling_set_point_celsius: { format: 'float', type: 'number' },
|
|
1655
|
+
cooling_set_point_fahrenheit: { format: 'float', type: 'number' },
|
|
1608
1656
|
created_at: { format: 'date-time', type: 'string' },
|
|
1609
1657
|
device_id: { format: 'uuid', type: 'string' },
|
|
1610
1658
|
errors: {
|
|
1611
1659
|
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
1612
|
-
nullable: true,
|
|
1613
1660
|
},
|
|
1614
|
-
heating_set_point_celsius: { type: 'number' },
|
|
1615
|
-
heating_set_point_fahrenheit: { type: 'number' },
|
|
1661
|
+
heating_set_point_celsius: { format: 'float', type: 'number' },
|
|
1662
|
+
heating_set_point_fahrenheit: { format: 'float', type: 'number' },
|
|
1616
1663
|
hvac_mode_setting: {
|
|
1617
1664
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
1618
1665
|
type: 'string',
|
|
@@ -1636,14 +1683,16 @@ export default {
|
|
|
1636
1683
|
connect_webview: {
|
|
1637
1684
|
properties: {
|
|
1638
1685
|
accepted_devices: {
|
|
1639
|
-
|
|
1686
|
+
deprecated: true,
|
|
1640
1687
|
items: { type: 'string' },
|
|
1641
1688
|
type: 'array',
|
|
1689
|
+
'x-deprecated': 'Unused. Will be removed.',
|
|
1642
1690
|
},
|
|
1643
1691
|
accepted_providers: { items: { type: 'string' }, type: 'array' },
|
|
1644
1692
|
any_device_allowed: {
|
|
1645
|
-
|
|
1693
|
+
deprecated: true,
|
|
1646
1694
|
type: 'boolean',
|
|
1695
|
+
'x-deprecated': 'Unused. Will be removed.',
|
|
1647
1696
|
},
|
|
1648
1697
|
any_provider_allowed: { type: 'boolean' },
|
|
1649
1698
|
authorized_at: {
|
|
@@ -1722,7 +1771,7 @@ export default {
|
|
|
1722
1771
|
},
|
|
1723
1772
|
type: 'object',
|
|
1724
1773
|
},
|
|
1725
|
-
errors: {
|
|
1774
|
+
errors: {},
|
|
1726
1775
|
user_identifier: {
|
|
1727
1776
|
properties: {
|
|
1728
1777
|
api_url: { type: 'string' },
|
|
@@ -1733,7 +1782,7 @@ export default {
|
|
|
1733
1782
|
},
|
|
1734
1783
|
type: 'object',
|
|
1735
1784
|
},
|
|
1736
|
-
warnings: {
|
|
1785
|
+
warnings: {},
|
|
1737
1786
|
},
|
|
1738
1787
|
required: [
|
|
1739
1788
|
'account_type_display_name',
|
|
@@ -1891,6 +1940,7 @@ export default {
|
|
|
1891
1940
|
description: 'Indicates if the keypad battery properties.',
|
|
1892
1941
|
properties: {
|
|
1893
1942
|
level: {
|
|
1943
|
+
format: 'float',
|
|
1894
1944
|
maximum: 1,
|
|
1895
1945
|
minimum: 0,
|
|
1896
1946
|
type: 'number',
|
|
@@ -1920,7 +1970,12 @@ export default {
|
|
|
1920
1970
|
battery: {
|
|
1921
1971
|
description: 'Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage.',
|
|
1922
1972
|
properties: {
|
|
1923
|
-
level: {
|
|
1973
|
+
level: {
|
|
1974
|
+
format: 'float',
|
|
1975
|
+
maximum: 1,
|
|
1976
|
+
minimum: 0,
|
|
1977
|
+
type: 'number',
|
|
1978
|
+
},
|
|
1924
1979
|
status: {
|
|
1925
1980
|
enum: ['critical', 'low', 'good', 'full'],
|
|
1926
1981
|
type: 'string',
|
|
@@ -1931,6 +1986,7 @@ export default {
|
|
|
1931
1986
|
},
|
|
1932
1987
|
battery_level: {
|
|
1933
1988
|
description: 'Indicates the battery level of the device as a decimal value between 0 and 1, inclusive.',
|
|
1989
|
+
format: 'float',
|
|
1934
1990
|
maximum: 1,
|
|
1935
1991
|
minimum: 0,
|
|
1936
1992
|
type: 'number',
|
|
@@ -1960,8 +2016,9 @@ export default {
|
|
|
1960
2016
|
model: {
|
|
1961
2017
|
properties: {
|
|
1962
2018
|
accessory_keypad_supported: {
|
|
1963
|
-
|
|
2019
|
+
deprecated: true,
|
|
1964
2020
|
type: 'boolean',
|
|
2021
|
+
'x-deprecated': 'use device.properties.model.can_connect_accessory_keypad',
|
|
1965
2022
|
},
|
|
1966
2023
|
can_connect_accessory_keypad: {
|
|
1967
2024
|
description: 'Indicates whether the device can connect a accessory keypad.',
|
|
@@ -1995,11 +2052,14 @@ export default {
|
|
|
1995
2052
|
type: 'object',
|
|
1996
2053
|
},
|
|
1997
2054
|
name: {
|
|
1998
|
-
|
|
2055
|
+
deprecated: true,
|
|
2056
|
+
description: 'Name of the device.',
|
|
1999
2057
|
type: 'string',
|
|
2058
|
+
'x-deprecated': 'use device.display_name instead',
|
|
2000
2059
|
},
|
|
2001
2060
|
noise_level_decibels: {
|
|
2002
2061
|
description: 'Indicates current noise level in decibels, if the device supports noise detection.',
|
|
2062
|
+
format: 'float',
|
|
2003
2063
|
type: 'number',
|
|
2004
2064
|
},
|
|
2005
2065
|
offline_access_codes_enabled: {
|
|
@@ -2019,12 +2079,14 @@ export default {
|
|
|
2019
2079
|
type: 'string',
|
|
2020
2080
|
},
|
|
2021
2081
|
supports_accessory_keypad: {
|
|
2022
|
-
|
|
2082
|
+
deprecated: true,
|
|
2023
2083
|
type: 'boolean',
|
|
2084
|
+
'x-deprecated': 'use device.properties.model.can_connect_accessory_keypad',
|
|
2024
2085
|
},
|
|
2025
2086
|
supports_offline_access_codes: {
|
|
2026
|
-
|
|
2087
|
+
deprecated: true,
|
|
2027
2088
|
type: 'boolean',
|
|
2089
|
+
'x-deprecated': 'use offline_access_codes_enabled',
|
|
2028
2090
|
},
|
|
2029
2091
|
},
|
|
2030
2092
|
required: ['online', 'name', 'appearance', 'model'],
|
|
@@ -2078,11 +2140,14 @@ export default {
|
|
|
2078
2140
|
avigilon_alta_metadata: {
|
|
2079
2141
|
properties: {
|
|
2080
2142
|
entry_name: { type: 'string' },
|
|
2081
|
-
entry_relays_total_count: {
|
|
2143
|
+
entry_relays_total_count: {
|
|
2144
|
+
format: 'float',
|
|
2145
|
+
type: 'number',
|
|
2146
|
+
},
|
|
2082
2147
|
org_name: { type: 'string' },
|
|
2083
|
-
site_id: { type: 'number' },
|
|
2148
|
+
site_id: { format: 'float', type: 'number' },
|
|
2084
2149
|
site_name: { type: 'string' },
|
|
2085
|
-
zone_id: { type: 'number' },
|
|
2150
|
+
zone_id: { format: 'float', type: 'number' },
|
|
2086
2151
|
zone_name: { type: 'string' },
|
|
2087
2152
|
},
|
|
2088
2153
|
required: [
|
|
@@ -2112,8 +2177,8 @@ export default {
|
|
|
2112
2177
|
},
|
|
2113
2178
|
dormakaba_oracode_metadata: {
|
|
2114
2179
|
properties: {
|
|
2115
|
-
device_id: { type: 'number' },
|
|
2116
|
-
door_id: { type: 'number' },
|
|
2180
|
+
device_id: { format: 'float', type: 'number' },
|
|
2181
|
+
door_id: { format: 'float', type: 'number' },
|
|
2117
2182
|
door_is_wireless: { type: 'boolean' },
|
|
2118
2183
|
door_name: { type: 'string' },
|
|
2119
2184
|
iana_timezone: { type: 'string' },
|
|
@@ -2127,6 +2192,7 @@ export default {
|
|
|
2127
2192
|
type: 'string',
|
|
2128
2193
|
},
|
|
2129
2194
|
ext_dormakaba_oracode_user_level_prefix: {
|
|
2195
|
+
format: 'float',
|
|
2130
2196
|
type: 'number',
|
|
2131
2197
|
},
|
|
2132
2198
|
is_24_hour: { type: 'boolean' },
|
|
@@ -2134,7 +2200,7 @@ export default {
|
|
|
2134
2200
|
is_master: { type: 'boolean' },
|
|
2135
2201
|
is_one_shot: { type: 'boolean' },
|
|
2136
2202
|
name: { type: 'string' },
|
|
2137
|
-
prefix: { type: 'number' },
|
|
2203
|
+
prefix: { format: 'float', type: 'number' },
|
|
2138
2204
|
},
|
|
2139
2205
|
required: [
|
|
2140
2206
|
'name',
|
|
@@ -2152,7 +2218,7 @@ export default {
|
|
|
2152
2218
|
},
|
|
2153
2219
|
type: 'array',
|
|
2154
2220
|
},
|
|
2155
|
-
site_id: { type: 'number' },
|
|
2221
|
+
site_id: { format: 'float', type: 'number' },
|
|
2156
2222
|
site_name: { type: 'string' },
|
|
2157
2223
|
},
|
|
2158
2224
|
required: [
|
|
@@ -2174,9 +2240,12 @@ export default {
|
|
|
2174
2240
|
},
|
|
2175
2241
|
four_suites_metadata: {
|
|
2176
2242
|
properties: {
|
|
2177
|
-
device_id: { type: 'number' },
|
|
2243
|
+
device_id: { format: 'float', type: 'number' },
|
|
2178
2244
|
device_name: { type: 'string' },
|
|
2179
|
-
reclose_delay_in_seconds: {
|
|
2245
|
+
reclose_delay_in_seconds: {
|
|
2246
|
+
format: 'float',
|
|
2247
|
+
type: 'number',
|
|
2248
|
+
},
|
|
2180
2249
|
},
|
|
2181
2250
|
required: [
|
|
2182
2251
|
'device_id',
|
|
@@ -2260,7 +2329,7 @@ export default {
|
|
|
2260
2329
|
accelerometer_z: {
|
|
2261
2330
|
properties: {
|
|
2262
2331
|
time: { type: 'string' },
|
|
2263
|
-
value: { type: 'number' },
|
|
2332
|
+
value: { format: 'float', type: 'number' },
|
|
2264
2333
|
},
|
|
2265
2334
|
required: ['time', 'value'],
|
|
2266
2335
|
type: 'object',
|
|
@@ -2268,7 +2337,7 @@ export default {
|
|
|
2268
2337
|
humidity: {
|
|
2269
2338
|
properties: {
|
|
2270
2339
|
time: { type: 'string' },
|
|
2271
|
-
value: { type: 'number' },
|
|
2340
|
+
value: { format: 'float', type: 'number' },
|
|
2272
2341
|
},
|
|
2273
2342
|
required: ['time', 'value'],
|
|
2274
2343
|
type: 'object',
|
|
@@ -2276,7 +2345,7 @@ export default {
|
|
|
2276
2345
|
pressure: {
|
|
2277
2346
|
properties: {
|
|
2278
2347
|
time: { type: 'string' },
|
|
2279
|
-
value: { type: 'number' },
|
|
2348
|
+
value: { format: 'float', type: 'number' },
|
|
2280
2349
|
},
|
|
2281
2350
|
required: ['time', 'value'],
|
|
2282
2351
|
type: 'object',
|
|
@@ -2284,7 +2353,7 @@ export default {
|
|
|
2284
2353
|
sound: {
|
|
2285
2354
|
properties: {
|
|
2286
2355
|
time: { type: 'string' },
|
|
2287
|
-
value: { type: 'number' },
|
|
2356
|
+
value: { format: 'float', type: 'number' },
|
|
2288
2357
|
},
|
|
2289
2358
|
required: ['time', 'value'],
|
|
2290
2359
|
type: 'object',
|
|
@@ -2292,7 +2361,7 @@ export default {
|
|
|
2292
2361
|
temperature: {
|
|
2293
2362
|
properties: {
|
|
2294
2363
|
time: { type: 'string' },
|
|
2295
|
-
value: { type: 'number' },
|
|
2364
|
+
value: { format: 'float', type: 'number' },
|
|
2296
2365
|
},
|
|
2297
2366
|
required: ['time', 'value'],
|
|
2298
2367
|
type: 'object',
|
|
@@ -2336,8 +2405,11 @@ export default {
|
|
|
2336
2405
|
type: 'string',
|
|
2337
2406
|
},
|
|
2338
2407
|
device_name: { type: 'string' },
|
|
2339
|
-
noise_level_decibel: {
|
|
2340
|
-
|
|
2408
|
+
noise_level_decibel: {
|
|
2409
|
+
format: 'float',
|
|
2410
|
+
type: 'number',
|
|
2411
|
+
},
|
|
2412
|
+
noise_level_nrs: { format: 'float', type: 'number' },
|
|
2341
2413
|
},
|
|
2342
2414
|
required: [
|
|
2343
2415
|
'device_model',
|
|
@@ -2380,6 +2452,7 @@ export default {
|
|
|
2380
2452
|
schlage_metadata: {
|
|
2381
2453
|
properties: {
|
|
2382
2454
|
access_code_length: {
|
|
2455
|
+
format: 'float',
|
|
2383
2456
|
nullable: true,
|
|
2384
2457
|
type: 'number',
|
|
2385
2458
|
},
|
|
@@ -2396,7 +2469,7 @@ export default {
|
|
|
2396
2469
|
},
|
|
2397
2470
|
seam_bridge_metadata: {
|
|
2398
2471
|
properties: {
|
|
2399
|
-
device_num: { type: 'number' },
|
|
2472
|
+
device_num: { format: 'float', type: 'number' },
|
|
2400
2473
|
name: { type: 'string' },
|
|
2401
2474
|
unlock_method: {
|
|
2402
2475
|
enum: ['bridge', 'doorking'],
|
|
@@ -2418,12 +2491,12 @@ export default {
|
|
|
2418
2491
|
},
|
|
2419
2492
|
tedee_metadata: {
|
|
2420
2493
|
properties: {
|
|
2421
|
-
bridge_id: { type: 'number' },
|
|
2494
|
+
bridge_id: { format: 'float', type: 'number' },
|
|
2422
2495
|
bridge_name: { type: 'string' },
|
|
2423
|
-
device_id: { type: 'number' },
|
|
2496
|
+
device_id: { format: 'float', type: 'number' },
|
|
2424
2497
|
device_model: { type: 'string' },
|
|
2425
2498
|
device_name: { type: 'string' },
|
|
2426
|
-
keypad_id: { type: 'number' },
|
|
2499
|
+
keypad_id: { format: 'float', type: 'number' },
|
|
2427
2500
|
serial_number: { type: 'string' },
|
|
2428
2501
|
},
|
|
2429
2502
|
required: [
|
|
@@ -2440,14 +2513,14 @@ export default {
|
|
|
2440
2513
|
properties: {
|
|
2441
2514
|
feature_value: { type: 'string' },
|
|
2442
2515
|
lock_alias: { type: 'string' },
|
|
2443
|
-
lock_id: { type: 'number' },
|
|
2516
|
+
lock_id: { format: 'float', type: 'number' },
|
|
2444
2517
|
},
|
|
2445
2518
|
required: ['lock_id', 'lock_alias', 'feature_value'],
|
|
2446
2519
|
type: 'object',
|
|
2447
2520
|
},
|
|
2448
2521
|
two_n_metadata: {
|
|
2449
2522
|
properties: {
|
|
2450
|
-
device_id: { type: 'number' },
|
|
2523
|
+
device_id: { format: 'float', type: 'number' },
|
|
2451
2524
|
device_name: { type: 'string' },
|
|
2452
2525
|
},
|
|
2453
2526
|
required: ['device_id', 'device_name'],
|
|
@@ -2459,7 +2532,10 @@ export default {
|
|
|
2459
2532
|
device_info_model: { type: 'string' },
|
|
2460
2533
|
device_name: { type: 'string' },
|
|
2461
2534
|
keypad_uuid: { type: 'string' },
|
|
2462
|
-
locker_status_hardlock: {
|
|
2535
|
+
locker_status_hardlock: {
|
|
2536
|
+
format: 'float',
|
|
2537
|
+
type: 'number',
|
|
2538
|
+
},
|
|
2463
2539
|
product_model: { type: 'string' },
|
|
2464
2540
|
product_name: { type: 'string' },
|
|
2465
2541
|
product_type: { type: 'string' },
|
|
@@ -2484,7 +2560,7 @@ export default {
|
|
|
2484
2560
|
{
|
|
2485
2561
|
properties: {
|
|
2486
2562
|
_experimental_supported_code_from_access_codes_lengths: {
|
|
2487
|
-
items: { type: 'number' },
|
|
2563
|
+
items: { format: 'float', type: 'number' },
|
|
2488
2564
|
type: 'array',
|
|
2489
2565
|
},
|
|
2490
2566
|
code_constraints: {
|
|
@@ -2516,8 +2592,8 @@ export default {
|
|
|
2516
2592
|
enum: ['name_length', 'name_must_be_unique'],
|
|
2517
2593
|
type: 'string',
|
|
2518
2594
|
},
|
|
2519
|
-
max_length: { type: 'number' },
|
|
2520
|
-
min_length: { type: 'number' },
|
|
2595
|
+
max_length: { format: 'float', type: 'number' },
|
|
2596
|
+
min_length: { format: 'float', type: 'number' },
|
|
2521
2597
|
},
|
|
2522
2598
|
required: ['constraint_type'],
|
|
2523
2599
|
type: 'object',
|
|
@@ -2529,14 +2605,19 @@ export default {
|
|
|
2529
2605
|
door_open: { type: 'boolean' },
|
|
2530
2606
|
has_native_entry_events: { type: 'boolean' },
|
|
2531
2607
|
keypad_battery: {
|
|
2532
|
-
properties: {
|
|
2608
|
+
properties: {
|
|
2609
|
+
level: { format: 'float', type: 'number' },
|
|
2610
|
+
},
|
|
2533
2611
|
required: ['level'],
|
|
2534
2612
|
type: 'object',
|
|
2535
2613
|
},
|
|
2536
2614
|
locked: { type: 'boolean' },
|
|
2537
|
-
max_active_codes_supported: {
|
|
2615
|
+
max_active_codes_supported: {
|
|
2616
|
+
format: 'float',
|
|
2617
|
+
type: 'number',
|
|
2618
|
+
},
|
|
2538
2619
|
supported_code_lengths: {
|
|
2539
|
-
items: { type: 'number' },
|
|
2620
|
+
items: { format: 'float', type: 'number' },
|
|
2540
2621
|
type: 'array',
|
|
2541
2622
|
},
|
|
2542
2623
|
supports_backup_access_code_pool: { type: 'boolean' },
|
|
@@ -2555,8 +2636,14 @@ export default {
|
|
|
2555
2636
|
format: 'uuid',
|
|
2556
2637
|
type: 'string',
|
|
2557
2638
|
},
|
|
2558
|
-
cooling_set_point_celsius: {
|
|
2559
|
-
|
|
2639
|
+
cooling_set_point_celsius: {
|
|
2640
|
+
format: 'float',
|
|
2641
|
+
type: 'number',
|
|
2642
|
+
},
|
|
2643
|
+
cooling_set_point_fahrenheit: {
|
|
2644
|
+
format: 'float',
|
|
2645
|
+
type: 'number',
|
|
2646
|
+
},
|
|
2560
2647
|
created_at: {
|
|
2561
2648
|
format: 'date-time',
|
|
2562
2649
|
type: 'string',
|
|
@@ -2564,10 +2651,15 @@ export default {
|
|
|
2564
2651
|
device_id: { format: 'uuid', type: 'string' },
|
|
2565
2652
|
errors: {
|
|
2566
2653
|
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
2567
|
-
nullable: true,
|
|
2568
2654
|
},
|
|
2569
|
-
heating_set_point_celsius: {
|
|
2570
|
-
|
|
2655
|
+
heating_set_point_celsius: {
|
|
2656
|
+
format: 'float',
|
|
2657
|
+
type: 'number',
|
|
2658
|
+
},
|
|
2659
|
+
heating_set_point_fahrenheit: {
|
|
2660
|
+
format: 'float',
|
|
2661
|
+
type: 'number',
|
|
2662
|
+
},
|
|
2571
2663
|
hvac_mode_setting: {
|
|
2572
2664
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
2573
2665
|
type: 'string',
|
|
@@ -2604,10 +2696,22 @@ export default {
|
|
|
2604
2696
|
properties: {
|
|
2605
2697
|
automatic_cooling_enabled: { type: 'boolean' },
|
|
2606
2698
|
automatic_heating_enabled: { type: 'boolean' },
|
|
2607
|
-
cooling_set_point_celsius: {
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2699
|
+
cooling_set_point_celsius: {
|
|
2700
|
+
format: 'float',
|
|
2701
|
+
type: 'number',
|
|
2702
|
+
},
|
|
2703
|
+
cooling_set_point_fahrenheit: {
|
|
2704
|
+
format: 'float',
|
|
2705
|
+
type: 'number',
|
|
2706
|
+
},
|
|
2707
|
+
heating_set_point_celsius: {
|
|
2708
|
+
format: 'float',
|
|
2709
|
+
type: 'number',
|
|
2710
|
+
},
|
|
2711
|
+
heating_set_point_fahrenheit: {
|
|
2712
|
+
format: 'float',
|
|
2713
|
+
type: 'number',
|
|
2714
|
+
},
|
|
2611
2715
|
hvac_mode_setting: {
|
|
2612
2716
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
2613
2717
|
type: 'string',
|
|
@@ -2626,10 +2730,22 @@ export default {
|
|
|
2626
2730
|
properties: {
|
|
2627
2731
|
automatic_cooling_enabled: { type: 'boolean' },
|
|
2628
2732
|
automatic_heating_enabled: { type: 'boolean' },
|
|
2629
|
-
cooling_set_point_celsius: {
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2733
|
+
cooling_set_point_celsius: {
|
|
2734
|
+
format: 'float',
|
|
2735
|
+
type: 'number',
|
|
2736
|
+
},
|
|
2737
|
+
cooling_set_point_fahrenheit: {
|
|
2738
|
+
format: 'float',
|
|
2739
|
+
type: 'number',
|
|
2740
|
+
},
|
|
2741
|
+
heating_set_point_celsius: {
|
|
2742
|
+
format: 'float',
|
|
2743
|
+
type: 'number',
|
|
2744
|
+
},
|
|
2745
|
+
heating_set_point_fahrenheit: {
|
|
2746
|
+
format: 'float',
|
|
2747
|
+
type: 'number',
|
|
2748
|
+
},
|
|
2633
2749
|
hvac_mode_setting: {
|
|
2634
2750
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
2635
2751
|
type: 'string',
|
|
@@ -2665,25 +2781,60 @@ export default {
|
|
|
2665
2781
|
is_temporary_manual_override_active: {
|
|
2666
2782
|
type: 'boolean',
|
|
2667
2783
|
},
|
|
2668
|
-
max_cooling_set_point_celsius: {
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2784
|
+
max_cooling_set_point_celsius: {
|
|
2785
|
+
format: 'float',
|
|
2786
|
+
type: 'number',
|
|
2787
|
+
},
|
|
2788
|
+
max_cooling_set_point_fahrenheit: {
|
|
2789
|
+
format: 'float',
|
|
2790
|
+
type: 'number',
|
|
2791
|
+
},
|
|
2792
|
+
max_heating_set_point_celsius: {
|
|
2793
|
+
format: 'float',
|
|
2794
|
+
type: 'number',
|
|
2795
|
+
},
|
|
2796
|
+
max_heating_set_point_fahrenheit: {
|
|
2797
|
+
format: 'float',
|
|
2798
|
+
type: 'number',
|
|
2799
|
+
},
|
|
2800
|
+
min_cooling_set_point_celsius: {
|
|
2801
|
+
format: 'float',
|
|
2802
|
+
type: 'number',
|
|
2803
|
+
},
|
|
2804
|
+
min_cooling_set_point_fahrenheit: {
|
|
2805
|
+
format: 'float',
|
|
2806
|
+
type: 'number',
|
|
2807
|
+
},
|
|
2808
|
+
min_heating_cooling_delta_celsius: {
|
|
2809
|
+
format: 'float',
|
|
2810
|
+
type: 'number',
|
|
2811
|
+
},
|
|
2675
2812
|
min_heating_cooling_delta_fahrenheit: {
|
|
2813
|
+
format: 'float',
|
|
2814
|
+
type: 'number',
|
|
2815
|
+
},
|
|
2816
|
+
min_heating_set_point_celsius: {
|
|
2817
|
+
format: 'float',
|
|
2818
|
+
type: 'number',
|
|
2819
|
+
},
|
|
2820
|
+
min_heating_set_point_fahrenheit: {
|
|
2821
|
+
format: 'float',
|
|
2676
2822
|
type: 'number',
|
|
2677
2823
|
},
|
|
2678
|
-
min_heating_set_point_celsius: { type: 'number' },
|
|
2679
|
-
min_heating_set_point_fahrenheit: { type: 'number' },
|
|
2680
2824
|
relative_humidity: {
|
|
2825
|
+
format: 'float',
|
|
2681
2826
|
maximum: 1,
|
|
2682
2827
|
minimum: 0,
|
|
2683
2828
|
type: 'number',
|
|
2684
2829
|
},
|
|
2685
|
-
temperature_celsius: {
|
|
2686
|
-
|
|
2830
|
+
temperature_celsius: {
|
|
2831
|
+
format: 'float',
|
|
2832
|
+
type: 'number',
|
|
2833
|
+
},
|
|
2834
|
+
temperature_fahrenheit: {
|
|
2835
|
+
format: 'float',
|
|
2836
|
+
type: 'number',
|
|
2837
|
+
},
|
|
2687
2838
|
},
|
|
2688
2839
|
type: 'object',
|
|
2689
2840
|
},
|
|
@@ -2697,8 +2848,14 @@ export default {
|
|
|
2697
2848
|
format: 'uuid',
|
|
2698
2849
|
type: 'string',
|
|
2699
2850
|
},
|
|
2700
|
-
cooling_set_point_celsius: {
|
|
2701
|
-
|
|
2851
|
+
cooling_set_point_celsius: {
|
|
2852
|
+
format: 'float',
|
|
2853
|
+
type: 'number',
|
|
2854
|
+
},
|
|
2855
|
+
cooling_set_point_fahrenheit: {
|
|
2856
|
+
format: 'float',
|
|
2857
|
+
type: 'number',
|
|
2858
|
+
},
|
|
2702
2859
|
created_at: {
|
|
2703
2860
|
format: 'date-time',
|
|
2704
2861
|
type: 'string',
|
|
@@ -2706,10 +2863,15 @@ export default {
|
|
|
2706
2863
|
device_id: { format: 'uuid', type: 'string' },
|
|
2707
2864
|
errors: {
|
|
2708
2865
|
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
2709
|
-
nullable: true,
|
|
2710
2866
|
},
|
|
2711
|
-
heating_set_point_celsius: {
|
|
2712
|
-
|
|
2867
|
+
heating_set_point_celsius: {
|
|
2868
|
+
format: 'float',
|
|
2869
|
+
type: 'number',
|
|
2870
|
+
},
|
|
2871
|
+
heating_set_point_fahrenheit: {
|
|
2872
|
+
format: 'float',
|
|
2873
|
+
type: 'number',
|
|
2874
|
+
},
|
|
2713
2875
|
hvac_mode_setting: {
|
|
2714
2876
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
2715
2877
|
type: 'string',
|
|
@@ -2746,10 +2908,22 @@ export default {
|
|
|
2746
2908
|
properties: {
|
|
2747
2909
|
automatic_cooling_enabled: { type: 'boolean' },
|
|
2748
2910
|
automatic_heating_enabled: { type: 'boolean' },
|
|
2749
|
-
cooling_set_point_celsius: {
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2911
|
+
cooling_set_point_celsius: {
|
|
2912
|
+
format: 'float',
|
|
2913
|
+
type: 'number',
|
|
2914
|
+
},
|
|
2915
|
+
cooling_set_point_fahrenheit: {
|
|
2916
|
+
format: 'float',
|
|
2917
|
+
type: 'number',
|
|
2918
|
+
},
|
|
2919
|
+
heating_set_point_celsius: {
|
|
2920
|
+
format: 'float',
|
|
2921
|
+
type: 'number',
|
|
2922
|
+
},
|
|
2923
|
+
heating_set_point_fahrenheit: {
|
|
2924
|
+
format: 'float',
|
|
2925
|
+
type: 'number',
|
|
2926
|
+
},
|
|
2753
2927
|
hvac_mode_setting: {
|
|
2754
2928
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
2755
2929
|
type: 'string',
|
|
@@ -2768,10 +2942,22 @@ export default {
|
|
|
2768
2942
|
properties: {
|
|
2769
2943
|
automatic_cooling_enabled: { type: 'boolean' },
|
|
2770
2944
|
automatic_heating_enabled: { type: 'boolean' },
|
|
2771
|
-
cooling_set_point_celsius: {
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2945
|
+
cooling_set_point_celsius: {
|
|
2946
|
+
format: 'float',
|
|
2947
|
+
type: 'number',
|
|
2948
|
+
},
|
|
2949
|
+
cooling_set_point_fahrenheit: {
|
|
2950
|
+
format: 'float',
|
|
2951
|
+
type: 'number',
|
|
2952
|
+
},
|
|
2953
|
+
heating_set_point_celsius: {
|
|
2954
|
+
format: 'float',
|
|
2955
|
+
type: 'number',
|
|
2956
|
+
},
|
|
2957
|
+
heating_set_point_fahrenheit: {
|
|
2958
|
+
format: 'float',
|
|
2959
|
+
type: 'number',
|
|
2960
|
+
},
|
|
2775
2961
|
hvac_mode_setting: {
|
|
2776
2962
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
2777
2963
|
type: 'string',
|
|
@@ -2807,17 +2993,36 @@ export default {
|
|
|
2807
2993
|
is_temporary_manual_override_active: {
|
|
2808
2994
|
type: 'boolean',
|
|
2809
2995
|
},
|
|
2810
|
-
max_heating_set_point_celsius: {
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2996
|
+
max_heating_set_point_celsius: {
|
|
2997
|
+
format: 'float',
|
|
2998
|
+
type: 'number',
|
|
2999
|
+
},
|
|
3000
|
+
max_heating_set_point_fahrenheit: {
|
|
3001
|
+
format: 'float',
|
|
3002
|
+
type: 'number',
|
|
3003
|
+
},
|
|
3004
|
+
min_heating_set_point_celsius: {
|
|
3005
|
+
format: 'float',
|
|
3006
|
+
type: 'number',
|
|
3007
|
+
},
|
|
3008
|
+
min_heating_set_point_fahrenheit: {
|
|
3009
|
+
format: 'float',
|
|
3010
|
+
type: 'number',
|
|
3011
|
+
},
|
|
2814
3012
|
relative_humidity: {
|
|
3013
|
+
format: 'float',
|
|
2815
3014
|
maximum: 1,
|
|
2816
3015
|
minimum: 0,
|
|
2817
3016
|
type: 'number',
|
|
2818
3017
|
},
|
|
2819
|
-
temperature_celsius: {
|
|
2820
|
-
|
|
3018
|
+
temperature_celsius: {
|
|
3019
|
+
format: 'float',
|
|
3020
|
+
type: 'number',
|
|
3021
|
+
},
|
|
3022
|
+
temperature_fahrenheit: {
|
|
3023
|
+
format: 'float',
|
|
3024
|
+
type: 'number',
|
|
3025
|
+
},
|
|
2821
3026
|
},
|
|
2822
3027
|
type: 'object',
|
|
2823
3028
|
},
|
|
@@ -2831,8 +3036,14 @@ export default {
|
|
|
2831
3036
|
format: 'uuid',
|
|
2832
3037
|
type: 'string',
|
|
2833
3038
|
},
|
|
2834
|
-
cooling_set_point_celsius: {
|
|
2835
|
-
|
|
3039
|
+
cooling_set_point_celsius: {
|
|
3040
|
+
format: 'float',
|
|
3041
|
+
type: 'number',
|
|
3042
|
+
},
|
|
3043
|
+
cooling_set_point_fahrenheit: {
|
|
3044
|
+
format: 'float',
|
|
3045
|
+
type: 'number',
|
|
3046
|
+
},
|
|
2836
3047
|
created_at: {
|
|
2837
3048
|
format: 'date-time',
|
|
2838
3049
|
type: 'string',
|
|
@@ -2840,10 +3051,15 @@ export default {
|
|
|
2840
3051
|
device_id: { format: 'uuid', type: 'string' },
|
|
2841
3052
|
errors: {
|
|
2842
3053
|
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
2843
|
-
nullable: true,
|
|
2844
3054
|
},
|
|
2845
|
-
heating_set_point_celsius: {
|
|
2846
|
-
|
|
3055
|
+
heating_set_point_celsius: {
|
|
3056
|
+
format: 'float',
|
|
3057
|
+
type: 'number',
|
|
3058
|
+
},
|
|
3059
|
+
heating_set_point_fahrenheit: {
|
|
3060
|
+
format: 'float',
|
|
3061
|
+
type: 'number',
|
|
3062
|
+
},
|
|
2847
3063
|
hvac_mode_setting: {
|
|
2848
3064
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
2849
3065
|
type: 'string',
|
|
@@ -2880,10 +3096,22 @@ export default {
|
|
|
2880
3096
|
properties: {
|
|
2881
3097
|
automatic_cooling_enabled: { type: 'boolean' },
|
|
2882
3098
|
automatic_heating_enabled: { type: 'boolean' },
|
|
2883
|
-
cooling_set_point_celsius: {
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
|
|
3099
|
+
cooling_set_point_celsius: {
|
|
3100
|
+
format: 'float',
|
|
3101
|
+
type: 'number',
|
|
3102
|
+
},
|
|
3103
|
+
cooling_set_point_fahrenheit: {
|
|
3104
|
+
format: 'float',
|
|
3105
|
+
type: 'number',
|
|
3106
|
+
},
|
|
3107
|
+
heating_set_point_celsius: {
|
|
3108
|
+
format: 'float',
|
|
3109
|
+
type: 'number',
|
|
3110
|
+
},
|
|
3111
|
+
heating_set_point_fahrenheit: {
|
|
3112
|
+
format: 'float',
|
|
3113
|
+
type: 'number',
|
|
3114
|
+
},
|
|
2887
3115
|
hvac_mode_setting: {
|
|
2888
3116
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
2889
3117
|
type: 'string',
|
|
@@ -2902,10 +3130,22 @@ export default {
|
|
|
2902
3130
|
properties: {
|
|
2903
3131
|
automatic_cooling_enabled: { type: 'boolean' },
|
|
2904
3132
|
automatic_heating_enabled: { type: 'boolean' },
|
|
2905
|
-
cooling_set_point_celsius: {
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
3133
|
+
cooling_set_point_celsius: {
|
|
3134
|
+
format: 'float',
|
|
3135
|
+
type: 'number',
|
|
3136
|
+
},
|
|
3137
|
+
cooling_set_point_fahrenheit: {
|
|
3138
|
+
format: 'float',
|
|
3139
|
+
type: 'number',
|
|
3140
|
+
},
|
|
3141
|
+
heating_set_point_celsius: {
|
|
3142
|
+
format: 'float',
|
|
3143
|
+
type: 'number',
|
|
3144
|
+
},
|
|
3145
|
+
heating_set_point_fahrenheit: {
|
|
3146
|
+
format: 'float',
|
|
3147
|
+
type: 'number',
|
|
3148
|
+
},
|
|
2909
3149
|
hvac_mode_setting: {
|
|
2910
3150
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
2911
3151
|
type: 'string',
|
|
@@ -2941,17 +3181,36 @@ export default {
|
|
|
2941
3181
|
is_temporary_manual_override_active: {
|
|
2942
3182
|
type: 'boolean',
|
|
2943
3183
|
},
|
|
2944
|
-
max_cooling_set_point_celsius: {
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
3184
|
+
max_cooling_set_point_celsius: {
|
|
3185
|
+
format: 'float',
|
|
3186
|
+
type: 'number',
|
|
3187
|
+
},
|
|
3188
|
+
max_cooling_set_point_fahrenheit: {
|
|
3189
|
+
format: 'float',
|
|
3190
|
+
type: 'number',
|
|
3191
|
+
},
|
|
3192
|
+
min_cooling_set_point_celsius: {
|
|
3193
|
+
format: 'float',
|
|
3194
|
+
type: 'number',
|
|
3195
|
+
},
|
|
3196
|
+
min_cooling_set_point_fahrenheit: {
|
|
3197
|
+
format: 'float',
|
|
3198
|
+
type: 'number',
|
|
3199
|
+
},
|
|
2948
3200
|
relative_humidity: {
|
|
3201
|
+
format: 'float',
|
|
2949
3202
|
maximum: 1,
|
|
2950
3203
|
minimum: 0,
|
|
2951
3204
|
type: 'number',
|
|
2952
3205
|
},
|
|
2953
|
-
temperature_celsius: {
|
|
2954
|
-
|
|
3206
|
+
temperature_celsius: {
|
|
3207
|
+
format: 'float',
|
|
3208
|
+
type: 'number',
|
|
3209
|
+
},
|
|
3210
|
+
temperature_fahrenheit: {
|
|
3211
|
+
format: 'float',
|
|
3212
|
+
type: 'number',
|
|
3213
|
+
},
|
|
2955
3214
|
},
|
|
2956
3215
|
type: 'object',
|
|
2957
3216
|
},
|
|
@@ -3121,9 +3380,9 @@ export default {
|
|
|
3121
3380
|
device_id: { format: 'uuid', type: 'string' },
|
|
3122
3381
|
ends_daily_at: { type: 'string' },
|
|
3123
3382
|
name: { type: 'string' },
|
|
3124
|
-
noise_threshold_decibels: { type: 'number' },
|
|
3383
|
+
noise_threshold_decibels: { format: 'float', type: 'number' },
|
|
3125
3384
|
noise_threshold_id: { format: 'uuid', type: 'string' },
|
|
3126
|
-
noise_threshold_nrs: { type: 'number' },
|
|
3385
|
+
noise_threshold_nrs: { format: 'float', type: 'number' },
|
|
3127
3386
|
starts_daily_at: { type: 'string' },
|
|
3128
3387
|
},
|
|
3129
3388
|
required: [
|
|
@@ -3313,7 +3572,6 @@ export default {
|
|
|
3313
3572
|
},
|
|
3314
3573
|
errors: {
|
|
3315
3574
|
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
3316
|
-
nullable: true,
|
|
3317
3575
|
},
|
|
3318
3576
|
is_managed: { enum: [false], type: 'boolean' },
|
|
3319
3577
|
name: {
|
|
@@ -3335,7 +3593,6 @@ export default {
|
|
|
3335
3593
|
},
|
|
3336
3594
|
warnings: {
|
|
3337
3595
|
description: 'Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention.',
|
|
3338
|
-
nullable: true,
|
|
3339
3596
|
},
|
|
3340
3597
|
},
|
|
3341
3598
|
required: [
|
|
@@ -3459,7 +3716,12 @@ export default {
|
|
|
3459
3716
|
battery: {
|
|
3460
3717
|
description: 'Indicates if the keypad battery properties.',
|
|
3461
3718
|
properties: {
|
|
3462
|
-
level: {
|
|
3719
|
+
level: {
|
|
3720
|
+
format: 'float',
|
|
3721
|
+
maximum: 1,
|
|
3722
|
+
minimum: 0,
|
|
3723
|
+
type: 'number',
|
|
3724
|
+
},
|
|
3463
3725
|
},
|
|
3464
3726
|
required: ['level'],
|
|
3465
3727
|
type: 'object',
|
|
@@ -3475,7 +3737,12 @@ export default {
|
|
|
3475
3737
|
battery: {
|
|
3476
3738
|
description: 'Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage.',
|
|
3477
3739
|
properties: {
|
|
3478
|
-
level: {
|
|
3740
|
+
level: {
|
|
3741
|
+
format: 'float',
|
|
3742
|
+
maximum: 1,
|
|
3743
|
+
minimum: 0,
|
|
3744
|
+
type: 'number',
|
|
3745
|
+
},
|
|
3479
3746
|
status: {
|
|
3480
3747
|
enum: ['critical', 'low', 'good', 'full'],
|
|
3481
3748
|
type: 'string',
|
|
@@ -3486,6 +3753,7 @@ export default {
|
|
|
3486
3753
|
},
|
|
3487
3754
|
battery_level: {
|
|
3488
3755
|
description: 'Indicates the battery level of the device as a decimal value between 0 and 1, inclusive.',
|
|
3756
|
+
format: 'float',
|
|
3489
3757
|
maximum: 1,
|
|
3490
3758
|
minimum: 0,
|
|
3491
3759
|
type: 'number',
|
|
@@ -3506,8 +3774,9 @@ export default {
|
|
|
3506
3774
|
model: {
|
|
3507
3775
|
properties: {
|
|
3508
3776
|
accessory_keypad_supported: {
|
|
3509
|
-
|
|
3777
|
+
deprecated: true,
|
|
3510
3778
|
type: 'boolean',
|
|
3779
|
+
'x-deprecated': 'use device.properties.model.can_connect_accessory_keypad',
|
|
3511
3780
|
},
|
|
3512
3781
|
can_connect_accessory_keypad: {
|
|
3513
3782
|
description: 'Indicates whether the device can connect a accessory keypad.',
|
|
@@ -3538,8 +3807,10 @@ export default {
|
|
|
3538
3807
|
type: 'object',
|
|
3539
3808
|
},
|
|
3540
3809
|
name: {
|
|
3541
|
-
|
|
3810
|
+
deprecated: true,
|
|
3811
|
+
description: 'Name of the device.',
|
|
3542
3812
|
type: 'string',
|
|
3813
|
+
'x-deprecated': 'use device.display_name instead',
|
|
3543
3814
|
},
|
|
3544
3815
|
offline_access_codes_enabled: {
|
|
3545
3816
|
description: 'Indicates whether it is currently possible to use offline access codes for the device.',
|
|
@@ -3626,9 +3897,10 @@ export default {
|
|
|
3626
3897
|
properties: {
|
|
3627
3898
|
company_name: { type: 'string' },
|
|
3628
3899
|
connect_partner_name: {
|
|
3629
|
-
|
|
3900
|
+
deprecated: true,
|
|
3630
3901
|
nullable: true,
|
|
3631
3902
|
type: 'string',
|
|
3903
|
+
'x-deprecated': 'use company_name',
|
|
3632
3904
|
},
|
|
3633
3905
|
is_sandbox: { type: 'boolean' },
|
|
3634
3906
|
name: { type: 'string' },
|
|
@@ -3814,7 +4086,7 @@ export default {
|
|
|
3814
4086
|
},
|
|
3815
4087
|
name: { type: 'string' },
|
|
3816
4088
|
prefer_native_scheduling: { type: 'boolean' },
|
|
3817
|
-
preferred_code_length: { type: 'number' },
|
|
4089
|
+
preferred_code_length: { format: 'float', type: 'number' },
|
|
3818
4090
|
starts_at: { type: 'string' },
|
|
3819
4091
|
use_backup_access_code_pool: { type: 'boolean' },
|
|
3820
4092
|
use_offline_access_code: { type: 'boolean' },
|
|
@@ -3897,7 +4169,7 @@ export default {
|
|
|
3897
4169
|
},
|
|
3898
4170
|
name: { type: 'string' },
|
|
3899
4171
|
prefer_native_scheduling: { type: 'boolean' },
|
|
3900
|
-
preferred_code_length: { type: 'number' },
|
|
4172
|
+
preferred_code_length: { format: 'float', type: 'number' },
|
|
3901
4173
|
starts_at: { type: 'string' },
|
|
3902
4174
|
use_backup_access_code_pool: { type: 'boolean' },
|
|
3903
4175
|
use_offline_access_code: { type: 'boolean' },
|
|
@@ -5352,8 +5624,9 @@ export default {
|
|
|
5352
5624
|
type: 'string',
|
|
5353
5625
|
},
|
|
5354
5626
|
is_override_key: {
|
|
5355
|
-
|
|
5627
|
+
deprecated: true,
|
|
5356
5628
|
type: 'boolean',
|
|
5629
|
+
'x-deprecated': 'use override.',
|
|
5357
5630
|
},
|
|
5358
5631
|
joiner_acs_credential_ids: {
|
|
5359
5632
|
items: { format: 'uuid', type: 'string' },
|
|
@@ -6280,13 +6553,14 @@ export default {
|
|
|
6280
6553
|
},
|
|
6281
6554
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
6282
6555
|
email: {
|
|
6283
|
-
|
|
6556
|
+
deprecated: true,
|
|
6284
6557
|
format: 'email',
|
|
6285
6558
|
type: 'string',
|
|
6559
|
+
'x-deprecated': 'use email_address.',
|
|
6286
6560
|
},
|
|
6287
6561
|
email_address: { format: 'email', type: 'string' },
|
|
6288
6562
|
full_name: { type: 'string' },
|
|
6289
|
-
phone_number: {
|
|
6563
|
+
phone_number: { type: 'string' },
|
|
6290
6564
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
6291
6565
|
},
|
|
6292
6566
|
required: ['acs_system_id'],
|
|
@@ -6423,10 +6697,7 @@ export default {
|
|
|
6423
6697
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
6424
6698
|
user_identity_email_address: { type: 'string' },
|
|
6425
6699
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
6426
|
-
user_identity_phone_number: {
|
|
6427
|
-
nullable: true,
|
|
6428
|
-
type: 'string',
|
|
6429
|
-
},
|
|
6700
|
+
user_identity_phone_number: { type: 'string' },
|
|
6430
6701
|
},
|
|
6431
6702
|
type: 'object',
|
|
6432
6703
|
},
|
|
@@ -6702,14 +6973,15 @@ export default {
|
|
|
6702
6973
|
},
|
|
6703
6974
|
acs_user_id: { format: 'uuid', type: 'string' },
|
|
6704
6975
|
email: {
|
|
6705
|
-
|
|
6976
|
+
deprecated: true,
|
|
6706
6977
|
format: 'email',
|
|
6707
6978
|
type: 'string',
|
|
6979
|
+
'x-deprecated': 'use email_address.',
|
|
6708
6980
|
},
|
|
6709
6981
|
email_address: { format: 'email', type: 'string' },
|
|
6710
6982
|
full_name: { type: 'string' },
|
|
6711
6983
|
hid_acs_system_id: { format: 'uuid', type: 'string' },
|
|
6712
|
-
phone_number: {
|
|
6984
|
+
phone_number: { type: 'string' },
|
|
6713
6985
|
},
|
|
6714
6986
|
required: ['acs_user_id'],
|
|
6715
6987
|
type: 'object',
|
|
@@ -6759,14 +7031,15 @@ export default {
|
|
|
6759
7031
|
},
|
|
6760
7032
|
acs_user_id: { format: 'uuid', type: 'string' },
|
|
6761
7033
|
email: {
|
|
6762
|
-
|
|
7034
|
+
deprecated: true,
|
|
6763
7035
|
format: 'email',
|
|
6764
7036
|
type: 'string',
|
|
7037
|
+
'x-deprecated': 'use email_address.',
|
|
6765
7038
|
},
|
|
6766
7039
|
email_address: { format: 'email', type: 'string' },
|
|
6767
7040
|
full_name: { type: 'string' },
|
|
6768
7041
|
hid_acs_system_id: { format: 'uuid', type: 'string' },
|
|
6769
|
-
phone_number: {
|
|
7042
|
+
phone_number: { type: 'string' },
|
|
6770
7043
|
},
|
|
6771
7044
|
required: ['acs_user_id'],
|
|
6772
7045
|
type: 'object',
|
|
@@ -6920,11 +7193,7 @@ export default {
|
|
|
6920
7193
|
items: { type: 'string' },
|
|
6921
7194
|
type: 'array',
|
|
6922
7195
|
},
|
|
6923
|
-
expires_at: {
|
|
6924
|
-
format: 'date-time',
|
|
6925
|
-
nullable: true,
|
|
6926
|
-
type: 'string',
|
|
6927
|
-
},
|
|
7196
|
+
expires_at: { format: 'date-time', type: 'string' },
|
|
6928
7197
|
user_identifier_key: { minLength: 1, type: 'string' },
|
|
6929
7198
|
user_identity_ids: {
|
|
6930
7199
|
items: { type: 'string' },
|
|
@@ -6978,11 +7247,7 @@ export default {
|
|
|
6978
7247
|
items: { type: 'string' },
|
|
6979
7248
|
type: 'array',
|
|
6980
7249
|
},
|
|
6981
|
-
expires_at: {
|
|
6982
|
-
format: 'date-time',
|
|
6983
|
-
nullable: true,
|
|
6984
|
-
type: 'string',
|
|
6985
|
-
},
|
|
7250
|
+
expires_at: { format: 'date-time', type: 'string' },
|
|
6986
7251
|
user_identifier_key: { minLength: 1, type: 'string' },
|
|
6987
7252
|
user_identity_ids: {
|
|
6988
7253
|
items: { type: 'string' },
|
|
@@ -7129,11 +7394,7 @@ export default {
|
|
|
7129
7394
|
items: { type: 'string' },
|
|
7130
7395
|
type: 'array',
|
|
7131
7396
|
},
|
|
7132
|
-
expires_at: {
|
|
7133
|
-
format: 'date-time',
|
|
7134
|
-
nullable: true,
|
|
7135
|
-
type: 'string',
|
|
7136
|
-
},
|
|
7397
|
+
expires_at: { format: 'date-time', type: 'string' },
|
|
7137
7398
|
user_identifier_key: { minLength: 1, type: 'string' },
|
|
7138
7399
|
user_identity_ids: {
|
|
7139
7400
|
items: { type: 'string' },
|
|
@@ -7187,11 +7448,7 @@ export default {
|
|
|
7187
7448
|
items: { type: 'string' },
|
|
7188
7449
|
type: 'array',
|
|
7189
7450
|
},
|
|
7190
|
-
expires_at: {
|
|
7191
|
-
format: 'date-time',
|
|
7192
|
-
nullable: true,
|
|
7193
|
-
type: 'string',
|
|
7194
|
-
},
|
|
7451
|
+
expires_at: { format: 'date-time', type: 'string' },
|
|
7195
7452
|
user_identifier_key: { minLength: 1, type: 'string' },
|
|
7196
7453
|
user_identity_ids: {
|
|
7197
7454
|
items: { type: 'string' },
|
|
@@ -7508,7 +7765,6 @@ export default {
|
|
|
7508
7765
|
oneOf: [
|
|
7509
7766
|
{ maxLength: 500, type: 'string' },
|
|
7510
7767
|
{ type: 'boolean' },
|
|
7511
|
-
{ format: 'null', nullable: true, type: 'string' },
|
|
7512
7768
|
],
|
|
7513
7769
|
},
|
|
7514
7770
|
type: 'object',
|
|
@@ -7679,7 +7935,7 @@ export default {
|
|
|
7679
7935
|
description: "Returns devices where the webview's custom_metadata contains all of the provided key/value pairs.",
|
|
7680
7936
|
type: 'object',
|
|
7681
7937
|
},
|
|
7682
|
-
limit: { default: 500,
|
|
7938
|
+
limit: { default: 500, format: 'float', type: 'number' },
|
|
7683
7939
|
user_identifier_key: { type: 'string' },
|
|
7684
7940
|
},
|
|
7685
7941
|
type: 'object',
|
|
@@ -7896,7 +8152,6 @@ export default {
|
|
|
7896
8152
|
oneOf: [
|
|
7897
8153
|
{ maxLength: 500, type: 'string' },
|
|
7898
8154
|
{ type: 'boolean' },
|
|
7899
|
-
{ format: 'null', nullable: true, type: 'string' },
|
|
7900
8155
|
],
|
|
7901
8156
|
},
|
|
7902
8157
|
type: 'object',
|
|
@@ -8048,11 +8303,7 @@ export default {
|
|
|
8048
8303
|
items: { format: 'uuid', type: 'string' },
|
|
8049
8304
|
type: 'array',
|
|
8050
8305
|
},
|
|
8051
|
-
created_before: {
|
|
8052
|
-
format: 'date-time',
|
|
8053
|
-
nullable: true,
|
|
8054
|
-
type: 'string',
|
|
8055
|
-
},
|
|
8306
|
+
created_before: { format: 'date-time', type: 'string' },
|
|
8056
8307
|
custom_metadata_has: {
|
|
8057
8308
|
additionalProperties: {
|
|
8058
8309
|
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
@@ -8195,7 +8446,7 @@ export default {
|
|
|
8195
8446
|
},
|
|
8196
8447
|
type: 'array',
|
|
8197
8448
|
},
|
|
8198
|
-
limit: { default: 500,
|
|
8449
|
+
limit: { default: 500, format: 'float', type: 'number' },
|
|
8199
8450
|
manufacturer: {
|
|
8200
8451
|
enum: [
|
|
8201
8452
|
'akuvox',
|
|
@@ -8525,11 +8776,7 @@ export default {
|
|
|
8525
8776
|
items: { format: 'uuid', type: 'string' },
|
|
8526
8777
|
type: 'array',
|
|
8527
8778
|
},
|
|
8528
|
-
created_before: {
|
|
8529
|
-
format: 'date-time',
|
|
8530
|
-
nullable: true,
|
|
8531
|
-
type: 'string',
|
|
8532
|
-
},
|
|
8779
|
+
created_before: { format: 'date-time', type: 'string' },
|
|
8533
8780
|
custom_metadata_has: {
|
|
8534
8781
|
additionalProperties: {
|
|
8535
8782
|
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
@@ -8672,7 +8919,7 @@ export default {
|
|
|
8672
8919
|
},
|
|
8673
8920
|
type: 'array',
|
|
8674
8921
|
},
|
|
8675
|
-
limit: { default: 500,
|
|
8922
|
+
limit: { default: 500, format: 'float', type: 'number' },
|
|
8676
8923
|
manufacturer: {
|
|
8677
8924
|
enum: [
|
|
8678
8925
|
'akuvox',
|
|
@@ -8852,7 +9099,6 @@ export default {
|
|
|
8852
9099
|
oneOf: [
|
|
8853
9100
|
{ maxLength: 500, type: 'string' },
|
|
8854
9101
|
{ type: 'boolean' },
|
|
8855
|
-
{ format: 'null', nullable: true, type: 'string' },
|
|
8856
9102
|
],
|
|
8857
9103
|
},
|
|
8858
9104
|
type: 'object',
|
|
@@ -8909,7 +9155,6 @@ export default {
|
|
|
8909
9155
|
oneOf: [
|
|
8910
9156
|
{ maxLength: 500, type: 'string' },
|
|
8911
9157
|
{ type: 'boolean' },
|
|
8912
|
-
{ format: 'null', nullable: true, type: 'string' },
|
|
8913
9158
|
],
|
|
8914
9159
|
},
|
|
8915
9160
|
type: 'object',
|
|
@@ -9166,7 +9411,7 @@ export default {
|
|
|
9166
9411
|
},
|
|
9167
9412
|
type: 'array',
|
|
9168
9413
|
},
|
|
9169
|
-
limit: { default: 500,
|
|
9414
|
+
limit: { default: 500, format: 'float', type: 'number' },
|
|
9170
9415
|
since: { type: 'string' },
|
|
9171
9416
|
},
|
|
9172
9417
|
type: 'object',
|
|
@@ -9276,11 +9521,7 @@ export default {
|
|
|
9276
9521
|
items: { format: 'uuid', type: 'string' },
|
|
9277
9522
|
type: 'array',
|
|
9278
9523
|
},
|
|
9279
|
-
created_before: {
|
|
9280
|
-
format: 'date-time',
|
|
9281
|
-
nullable: true,
|
|
9282
|
-
type: 'string',
|
|
9283
|
-
},
|
|
9524
|
+
created_before: { format: 'date-time', type: 'string' },
|
|
9284
9525
|
custom_metadata_has: {
|
|
9285
9526
|
additionalProperties: {
|
|
9286
9527
|
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
@@ -9423,7 +9664,7 @@ export default {
|
|
|
9423
9664
|
},
|
|
9424
9665
|
type: 'array',
|
|
9425
9666
|
},
|
|
9426
|
-
limit: { default: 500,
|
|
9667
|
+
limit: { default: 500, format: 'float', type: 'number' },
|
|
9427
9668
|
manufacturer: {
|
|
9428
9669
|
enum: [
|
|
9429
9670
|
'akuvox',
|
|
@@ -9709,8 +9950,8 @@ export default {
|
|
|
9709
9950
|
device_id: { format: 'uuid', type: 'string' },
|
|
9710
9951
|
ends_daily_at: { type: 'string' },
|
|
9711
9952
|
name: { type: 'string' },
|
|
9712
|
-
noise_threshold_decibels: { type: 'number' },
|
|
9713
|
-
noise_threshold_nrs: { type: 'number' },
|
|
9953
|
+
noise_threshold_decibels: { format: 'float', type: 'number' },
|
|
9954
|
+
noise_threshold_nrs: { format: 'float', type: 'number' },
|
|
9714
9955
|
starts_daily_at: { type: 'string' },
|
|
9715
9956
|
sync: { default: false, type: 'boolean' },
|
|
9716
9957
|
},
|
|
@@ -9918,9 +10159,9 @@ export default {
|
|
|
9918
10159
|
device_id: { format: 'uuid', type: 'string' },
|
|
9919
10160
|
ends_daily_at: { type: 'string' },
|
|
9920
10161
|
name: { type: 'string' },
|
|
9921
|
-
noise_threshold_decibels: { type: 'number' },
|
|
10162
|
+
noise_threshold_decibels: { format: 'float', type: 'number' },
|
|
9922
10163
|
noise_threshold_id: { format: 'uuid', type: 'string' },
|
|
9923
|
-
noise_threshold_nrs: { type: 'number' },
|
|
10164
|
+
noise_threshold_nrs: { format: 'float', type: 'number' },
|
|
9924
10165
|
starts_daily_at: { type: 'string' },
|
|
9925
10166
|
sync: { default: false, type: 'boolean' },
|
|
9926
10167
|
},
|
|
@@ -9970,9 +10211,9 @@ export default {
|
|
|
9970
10211
|
device_id: { format: 'uuid', type: 'string' },
|
|
9971
10212
|
ends_daily_at: { type: 'string' },
|
|
9972
10213
|
name: { type: 'string' },
|
|
9973
|
-
noise_threshold_decibels: { type: 'number' },
|
|
10214
|
+
noise_threshold_decibels: { format: 'float', type: 'number' },
|
|
9974
10215
|
noise_threshold_id: { format: 'uuid', type: 'string' },
|
|
9975
|
-
noise_threshold_nrs: { type: 'number' },
|
|
10216
|
+
noise_threshold_nrs: { format: 'float', type: 'number' },
|
|
9976
10217
|
starts_daily_at: { type: 'string' },
|
|
9977
10218
|
sync: { default: false, type: 'boolean' },
|
|
9978
10219
|
},
|
|
@@ -10023,9 +10264,9 @@ export default {
|
|
|
10023
10264
|
device_id: { format: 'uuid', type: 'string' },
|
|
10024
10265
|
ends_daily_at: { type: 'string' },
|
|
10025
10266
|
name: { type: 'string' },
|
|
10026
|
-
noise_threshold_decibels: { type: 'number' },
|
|
10267
|
+
noise_threshold_decibels: { format: 'float', type: 'number' },
|
|
10027
10268
|
noise_threshold_id: { format: 'uuid', type: 'string' },
|
|
10028
|
-
noise_threshold_nrs: { type: 'number' },
|
|
10269
|
+
noise_threshold_nrs: { format: 'float', type: 'number' },
|
|
10029
10270
|
starts_daily_at: { type: 'string' },
|
|
10030
10271
|
sync: { default: false, type: 'boolean' },
|
|
10031
10272
|
},
|
|
@@ -10214,7 +10455,11 @@ export default {
|
|
|
10214
10455
|
hce_capability: { default: false, type: 'boolean' },
|
|
10215
10456
|
nfc_capability: { default: false, type: 'boolean' },
|
|
10216
10457
|
seos_applet_version: { default: '1.0.0', type: 'string' },
|
|
10217
|
-
seos_tsm_endpoint_id: {
|
|
10458
|
+
seos_tsm_endpoint_id: {
|
|
10459
|
+
default: 1,
|
|
10460
|
+
format: 'float',
|
|
10461
|
+
type: 'number',
|
|
10462
|
+
},
|
|
10218
10463
|
},
|
|
10219
10464
|
type: 'object',
|
|
10220
10465
|
},
|
|
@@ -10288,11 +10533,23 @@ export default {
|
|
|
10288
10533
|
properties: {
|
|
10289
10534
|
automatic_cooling_enabled: { type: 'boolean' },
|
|
10290
10535
|
automatic_heating_enabled: { type: 'boolean' },
|
|
10291
|
-
cooling_set_point_celsius: {
|
|
10292
|
-
|
|
10536
|
+
cooling_set_point_celsius: {
|
|
10537
|
+
format: 'float',
|
|
10538
|
+
type: 'number',
|
|
10539
|
+
},
|
|
10540
|
+
cooling_set_point_fahrenheit: {
|
|
10541
|
+
format: 'float',
|
|
10542
|
+
type: 'number',
|
|
10543
|
+
},
|
|
10293
10544
|
device_id: { type: 'string' },
|
|
10294
|
-
heating_set_point_celsius: {
|
|
10295
|
-
|
|
10545
|
+
heating_set_point_celsius: {
|
|
10546
|
+
format: 'float',
|
|
10547
|
+
type: 'number',
|
|
10548
|
+
},
|
|
10549
|
+
heating_set_point_fahrenheit: {
|
|
10550
|
+
format: 'float',
|
|
10551
|
+
type: 'number',
|
|
10552
|
+
},
|
|
10296
10553
|
hvac_mode_setting: {
|
|
10297
10554
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
10298
10555
|
type: 'string',
|
|
@@ -10563,10 +10820,22 @@ export default {
|
|
|
10563
10820
|
format: 'uuid',
|
|
10564
10821
|
type: 'string',
|
|
10565
10822
|
},
|
|
10566
|
-
cooling_set_point_celsius: {
|
|
10567
|
-
|
|
10568
|
-
|
|
10569
|
-
|
|
10823
|
+
cooling_set_point_celsius: {
|
|
10824
|
+
format: 'float',
|
|
10825
|
+
type: 'number',
|
|
10826
|
+
},
|
|
10827
|
+
cooling_set_point_fahrenheit: {
|
|
10828
|
+
format: 'float',
|
|
10829
|
+
type: 'number',
|
|
10830
|
+
},
|
|
10831
|
+
heating_set_point_celsius: {
|
|
10832
|
+
format: 'float',
|
|
10833
|
+
type: 'number',
|
|
10834
|
+
},
|
|
10835
|
+
heating_set_point_fahrenheit: {
|
|
10836
|
+
format: 'float',
|
|
10837
|
+
type: 'number',
|
|
10838
|
+
},
|
|
10570
10839
|
hvac_mode_setting: {
|
|
10571
10840
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
10572
10841
|
type: 'string',
|
|
@@ -10631,10 +10900,22 @@ export default {
|
|
|
10631
10900
|
format: 'uuid',
|
|
10632
10901
|
type: 'string',
|
|
10633
10902
|
},
|
|
10634
|
-
cooling_set_point_celsius: {
|
|
10635
|
-
|
|
10636
|
-
|
|
10637
|
-
|
|
10903
|
+
cooling_set_point_celsius: {
|
|
10904
|
+
format: 'float',
|
|
10905
|
+
type: 'number',
|
|
10906
|
+
},
|
|
10907
|
+
cooling_set_point_fahrenheit: {
|
|
10908
|
+
format: 'float',
|
|
10909
|
+
type: 'number',
|
|
10910
|
+
},
|
|
10911
|
+
heating_set_point_celsius: {
|
|
10912
|
+
format: 'float',
|
|
10913
|
+
type: 'number',
|
|
10914
|
+
},
|
|
10915
|
+
heating_set_point_fahrenheit: {
|
|
10916
|
+
format: 'float',
|
|
10917
|
+
type: 'number',
|
|
10918
|
+
},
|
|
10638
10919
|
hvac_mode_setting: {
|
|
10639
10920
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
10640
10921
|
type: 'string',
|
|
@@ -10700,10 +10981,22 @@ export default {
|
|
|
10700
10981
|
format: 'uuid',
|
|
10701
10982
|
type: 'string',
|
|
10702
10983
|
},
|
|
10703
|
-
cooling_set_point_celsius: {
|
|
10704
|
-
|
|
10705
|
-
|
|
10706
|
-
|
|
10984
|
+
cooling_set_point_celsius: {
|
|
10985
|
+
format: 'float',
|
|
10986
|
+
type: 'number',
|
|
10987
|
+
},
|
|
10988
|
+
cooling_set_point_fahrenheit: {
|
|
10989
|
+
format: 'float',
|
|
10990
|
+
type: 'number',
|
|
10991
|
+
},
|
|
10992
|
+
heating_set_point_celsius: {
|
|
10993
|
+
format: 'float',
|
|
10994
|
+
type: 'number',
|
|
10995
|
+
},
|
|
10996
|
+
heating_set_point_fahrenheit: {
|
|
10997
|
+
format: 'float',
|
|
10998
|
+
type: 'number',
|
|
10999
|
+
},
|
|
10707
11000
|
hvac_mode_setting: {
|
|
10708
11001
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
10709
11002
|
type: 'string',
|
|
@@ -10764,8 +11057,14 @@ export default {
|
|
|
10764
11057
|
'application/json': {
|
|
10765
11058
|
schema: {
|
|
10766
11059
|
properties: {
|
|
10767
|
-
cooling_set_point_celsius: {
|
|
10768
|
-
|
|
11060
|
+
cooling_set_point_celsius: {
|
|
11061
|
+
format: 'float',
|
|
11062
|
+
type: 'number',
|
|
11063
|
+
},
|
|
11064
|
+
cooling_set_point_fahrenheit: {
|
|
11065
|
+
format: 'float',
|
|
11066
|
+
type: 'number',
|
|
11067
|
+
},
|
|
10769
11068
|
device_id: { format: 'uuid', type: 'string' },
|
|
10770
11069
|
sync: { default: false, type: 'boolean' },
|
|
10771
11070
|
},
|
|
@@ -10866,8 +11165,14 @@ export default {
|
|
|
10866
11165
|
schema: {
|
|
10867
11166
|
properties: {
|
|
10868
11167
|
device_id: { format: 'uuid', type: 'string' },
|
|
10869
|
-
heating_set_point_celsius: {
|
|
10870
|
-
|
|
11168
|
+
heating_set_point_celsius: {
|
|
11169
|
+
format: 'float',
|
|
11170
|
+
type: 'number',
|
|
11171
|
+
},
|
|
11172
|
+
heating_set_point_fahrenheit: {
|
|
11173
|
+
format: 'float',
|
|
11174
|
+
type: 'number',
|
|
11175
|
+
},
|
|
10871
11176
|
sync: { default: false, type: 'boolean' },
|
|
10872
11177
|
},
|
|
10873
11178
|
required: ['device_id'],
|
|
@@ -10918,11 +11223,23 @@ export default {
|
|
|
10918
11223
|
'application/json': {
|
|
10919
11224
|
schema: {
|
|
10920
11225
|
properties: {
|
|
10921
|
-
cooling_set_point_celsius: {
|
|
10922
|
-
|
|
11226
|
+
cooling_set_point_celsius: {
|
|
11227
|
+
format: 'float',
|
|
11228
|
+
type: 'number',
|
|
11229
|
+
},
|
|
11230
|
+
cooling_set_point_fahrenheit: {
|
|
11231
|
+
format: 'float',
|
|
11232
|
+
type: 'number',
|
|
11233
|
+
},
|
|
10923
11234
|
device_id: { format: 'uuid', type: 'string' },
|
|
10924
|
-
heating_set_point_celsius: {
|
|
10925
|
-
|
|
11235
|
+
heating_set_point_celsius: {
|
|
11236
|
+
format: 'float',
|
|
11237
|
+
type: 'number',
|
|
11238
|
+
},
|
|
11239
|
+
heating_set_point_fahrenheit: {
|
|
11240
|
+
format: 'float',
|
|
11241
|
+
type: 'number',
|
|
11242
|
+
},
|
|
10926
11243
|
sync: { default: false, type: 'boolean' },
|
|
10927
11244
|
},
|
|
10928
11245
|
required: ['device_id'],
|
|
@@ -10983,11 +11300,7 @@ export default {
|
|
|
10983
11300
|
items: { format: 'uuid', type: 'string' },
|
|
10984
11301
|
type: 'array',
|
|
10985
11302
|
},
|
|
10986
|
-
created_before: {
|
|
10987
|
-
format: 'date-time',
|
|
10988
|
-
nullable: true,
|
|
10989
|
-
type: 'string',
|
|
10990
|
-
},
|
|
11303
|
+
created_before: { format: 'date-time', type: 'string' },
|
|
10991
11304
|
custom_metadata_has: {
|
|
10992
11305
|
additionalProperties: {
|
|
10993
11306
|
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
@@ -11130,7 +11443,7 @@ export default {
|
|
|
11130
11443
|
},
|
|
11131
11444
|
type: 'array',
|
|
11132
11445
|
},
|
|
11133
|
-
limit: { default: 500,
|
|
11446
|
+
limit: { default: 500, format: 'float', type: 'number' },
|
|
11134
11447
|
manufacturer: {
|
|
11135
11448
|
enum: [
|
|
11136
11449
|
'akuvox',
|
|
@@ -11328,10 +11641,22 @@ export default {
|
|
|
11328
11641
|
properties: {
|
|
11329
11642
|
automatic_cooling_enabled: { type: 'boolean' },
|
|
11330
11643
|
automatic_heating_enabled: { type: 'boolean' },
|
|
11331
|
-
cooling_set_point_celsius: {
|
|
11332
|
-
|
|
11333
|
-
|
|
11334
|
-
|
|
11644
|
+
cooling_set_point_celsius: {
|
|
11645
|
+
format: 'float',
|
|
11646
|
+
type: 'number',
|
|
11647
|
+
},
|
|
11648
|
+
cooling_set_point_fahrenheit: {
|
|
11649
|
+
format: 'float',
|
|
11650
|
+
type: 'number',
|
|
11651
|
+
},
|
|
11652
|
+
heating_set_point_celsius: {
|
|
11653
|
+
format: 'float',
|
|
11654
|
+
type: 'number',
|
|
11655
|
+
},
|
|
11656
|
+
heating_set_point_fahrenheit: {
|
|
11657
|
+
format: 'float',
|
|
11658
|
+
type: 'number',
|
|
11659
|
+
},
|
|
11335
11660
|
hvac_mode_setting: {
|
|
11336
11661
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
11337
11662
|
type: 'string',
|
|
@@ -11385,10 +11710,22 @@ export default {
|
|
|
11385
11710
|
properties: {
|
|
11386
11711
|
automatic_cooling_enabled: { type: 'boolean' },
|
|
11387
11712
|
automatic_heating_enabled: { type: 'boolean' },
|
|
11388
|
-
cooling_set_point_celsius: {
|
|
11389
|
-
|
|
11390
|
-
|
|
11391
|
-
|
|
11713
|
+
cooling_set_point_celsius: {
|
|
11714
|
+
format: 'float',
|
|
11715
|
+
type: 'number',
|
|
11716
|
+
},
|
|
11717
|
+
cooling_set_point_fahrenheit: {
|
|
11718
|
+
format: 'float',
|
|
11719
|
+
type: 'number',
|
|
11720
|
+
},
|
|
11721
|
+
heating_set_point_celsius: {
|
|
11722
|
+
format: 'float',
|
|
11723
|
+
type: 'number',
|
|
11724
|
+
},
|
|
11725
|
+
heating_set_point_fahrenheit: {
|
|
11726
|
+
format: 'float',
|
|
11727
|
+
type: 'number',
|
|
11728
|
+
},
|
|
11392
11729
|
hvac_mode_setting: {
|
|
11393
11730
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
11394
11731
|
type: 'string',
|
|
@@ -12072,9 +12409,10 @@ export default {
|
|
|
12072
12409
|
schema: {
|
|
12073
12410
|
properties: {
|
|
12074
12411
|
accessible_devices: {
|
|
12075
|
-
|
|
12412
|
+
deprecated: true,
|
|
12076
12413
|
items: { $ref: '#/components/schemas/device' },
|
|
12077
12414
|
type: 'array',
|
|
12415
|
+
'x-deprecated': 'use devices.',
|
|
12078
12416
|
},
|
|
12079
12417
|
devices: {
|
|
12080
12418
|
items: { $ref: '#/components/schemas/device' },
|
|
@@ -12703,9 +13041,10 @@ export default {
|
|
|
12703
13041
|
properties: {
|
|
12704
13042
|
company_name: { type: 'string' },
|
|
12705
13043
|
connect_partner_name: {
|
|
12706
|
-
|
|
13044
|
+
deprecated: true,
|
|
12707
13045
|
nullable: true,
|
|
12708
13046
|
type: 'string',
|
|
13047
|
+
'x-deprecated': 'use company_name',
|
|
12709
13048
|
},
|
|
12710
13049
|
is_sandbox: { default: false, type: 'boolean' },
|
|
12711
13050
|
name: { type: 'string' },
|