@seamapi/types 0.30.1 → 1.0.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/lib/seam/connect/route-types.d.ts +146 -74
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +54 -54
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +116 -116
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js +2 -2
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/unstable/models/device-metadata.d.ts +33 -0
- package/lib/seam/connect/unstable/models/device-metadata.js +7 -0
- package/lib/seam/connect/unstable/models/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/device-type.d.ts +1 -0
- package/lib/seam/connect/unstable/models/device-type.js +1 -0
- package/lib/seam/connect/unstable/models/device-type.js.map +1 -1
- package/lib/seam/connect/unstable/models/managed-device.d.ts +166 -105
- package/lib/seam/connect/unstable/models/unmanaged-device.d.ts +3 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/route-types.ts +186 -55
- package/src/lib/seam/connect/unstable/models/capability-properties/thermostat.ts +5 -5
- package/src/lib/seam/connect/unstable/models/device-metadata.ts +8 -0
- package/src/lib/seam/connect/unstable/models/device-type.ts +1 -0
|
@@ -69,7 +69,7 @@ export declare const common_device_properties: z.ZodObject<{
|
|
|
69
69
|
}>;
|
|
70
70
|
export declare const managed_device: z.ZodObject<{
|
|
71
71
|
device_id: z.ZodString;
|
|
72
|
-
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "avigilon_alta_entry" | "four_suites_door"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat"]>]>;
|
|
72
|
+
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "avigilon_alta_entry" | "four_suites_door" | "dormakaba_oracode_door"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat"]>]>;
|
|
73
73
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery"]>, "many">;
|
|
74
74
|
properties: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
75
75
|
online: z.ZodBoolean;
|
|
@@ -583,6 +583,25 @@ export declare const managed_device: z.ZodObject<{
|
|
|
583
583
|
device_name: string;
|
|
584
584
|
device_label: string;
|
|
585
585
|
}>>;
|
|
586
|
+
dormakaba_oracode_metadata: z.ZodOptional<z.ZodObject<{
|
|
587
|
+
door_id: z.ZodNumber;
|
|
588
|
+
door_name: z.ZodString;
|
|
589
|
+
device_id: z.ZodOptional<z.ZodNumber>;
|
|
590
|
+
site_id: z.ZodNumber;
|
|
591
|
+
site_name: z.ZodString;
|
|
592
|
+
}, "strip", z.ZodTypeAny, {
|
|
593
|
+
door_name: string;
|
|
594
|
+
site_id: number;
|
|
595
|
+
site_name: string;
|
|
596
|
+
door_id: number;
|
|
597
|
+
device_id?: number | undefined;
|
|
598
|
+
}, {
|
|
599
|
+
door_name: string;
|
|
600
|
+
site_id: number;
|
|
601
|
+
site_name: string;
|
|
602
|
+
door_id: number;
|
|
603
|
+
device_id?: number | undefined;
|
|
604
|
+
}>>;
|
|
586
605
|
}, "strip", z.ZodTypeAny, {
|
|
587
606
|
august_metadata?: {
|
|
588
607
|
lock_id: string;
|
|
@@ -724,6 +743,13 @@ export declare const managed_device: z.ZodObject<{
|
|
|
724
743
|
device_name: string;
|
|
725
744
|
device_label: string;
|
|
726
745
|
} | undefined;
|
|
746
|
+
dormakaba_oracode_metadata?: {
|
|
747
|
+
door_name: string;
|
|
748
|
+
site_id: number;
|
|
749
|
+
site_name: string;
|
|
750
|
+
door_id: number;
|
|
751
|
+
device_id?: number | undefined;
|
|
752
|
+
} | undefined;
|
|
727
753
|
}, {
|
|
728
754
|
august_metadata?: {
|
|
729
755
|
lock_id: string;
|
|
@@ -865,6 +891,13 @@ export declare const managed_device: z.ZodObject<{
|
|
|
865
891
|
device_name: string;
|
|
866
892
|
device_label: string;
|
|
867
893
|
} | undefined;
|
|
894
|
+
dormakaba_oracode_metadata?: {
|
|
895
|
+
door_name: string;
|
|
896
|
+
site_id: number;
|
|
897
|
+
site_name: string;
|
|
898
|
+
door_id: number;
|
|
899
|
+
device_id?: number | undefined;
|
|
900
|
+
} | undefined;
|
|
868
901
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
869
902
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
870
903
|
constraint_type: z.ZodEnum<["no_zeros", "cannot_start_with_12", "no_triple_consecutive_ints", "cannot_specify_pin_code", "pin_code_matches_existing_set", "start_date_in_future"]>;
|
|
@@ -936,7 +969,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
936
969
|
default_climate_setting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
937
970
|
automatic_heating_enabled: z.ZodBoolean;
|
|
938
971
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
939
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
972
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
940
973
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
941
974
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
942
975
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -945,7 +978,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
945
978
|
}, "strip", z.ZodTypeAny, {
|
|
946
979
|
automatic_heating_enabled: boolean;
|
|
947
980
|
automatic_cooling_enabled: boolean;
|
|
948
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
981
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
949
982
|
manual_override_allowed: boolean;
|
|
950
983
|
cooling_set_point_celsius?: number | undefined;
|
|
951
984
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -954,7 +987,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
954
987
|
}, {
|
|
955
988
|
automatic_heating_enabled: boolean;
|
|
956
989
|
automatic_cooling_enabled: boolean;
|
|
957
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
990
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
958
991
|
manual_override_allowed: boolean;
|
|
959
992
|
cooling_set_point_celsius?: number | undefined;
|
|
960
993
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -966,7 +999,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
966
999
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
967
1000
|
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
968
1001
|
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
969
|
-
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "
|
|
1002
|
+
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
970
1003
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
971
1004
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
972
1005
|
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -974,7 +1007,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
974
1007
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
975
1008
|
automatic_heating_enabled: z.ZodBoolean;
|
|
976
1009
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
977
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
1010
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
978
1011
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
979
1012
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
980
1013
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -983,7 +1016,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
983
1016
|
}, "strip", z.ZodTypeAny, {
|
|
984
1017
|
automatic_heating_enabled: boolean;
|
|
985
1018
|
automatic_cooling_enabled: boolean;
|
|
986
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1019
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
987
1020
|
manual_override_allowed: boolean;
|
|
988
1021
|
cooling_set_point_celsius?: number | undefined;
|
|
989
1022
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -992,7 +1025,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
992
1025
|
}, {
|
|
993
1026
|
automatic_heating_enabled: boolean;
|
|
994
1027
|
automatic_cooling_enabled: boolean;
|
|
995
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1028
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
996
1029
|
manual_override_allowed: boolean;
|
|
997
1030
|
cooling_set_point_celsius?: number | undefined;
|
|
998
1031
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1010,7 +1043,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1010
1043
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
1011
1044
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1012
1045
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1013
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "
|
|
1046
|
+
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1014
1047
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1015
1048
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1016
1049
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1026,7 +1059,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1026
1059
|
name?: string | undefined;
|
|
1027
1060
|
automatic_heating_enabled?: boolean | undefined;
|
|
1028
1061
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1029
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1062
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1030
1063
|
cooling_set_point_celsius?: number | undefined;
|
|
1031
1064
|
heating_set_point_celsius?: number | undefined;
|
|
1032
1065
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1042,7 +1075,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1042
1075
|
name?: string | undefined;
|
|
1043
1076
|
automatic_heating_enabled?: boolean | undefined;
|
|
1044
1077
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1045
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1078
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1046
1079
|
cooling_set_point_celsius?: number | undefined;
|
|
1047
1080
|
heating_set_point_celsius?: number | undefined;
|
|
1048
1081
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1065,7 +1098,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1065
1098
|
default_climate_setting?: {
|
|
1066
1099
|
automatic_heating_enabled: boolean;
|
|
1067
1100
|
automatic_cooling_enabled: boolean;
|
|
1068
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1101
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1069
1102
|
manual_override_allowed: boolean;
|
|
1070
1103
|
cooling_set_point_celsius?: number | undefined;
|
|
1071
1104
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1077,7 +1110,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1077
1110
|
relative_humidity?: number | undefined;
|
|
1078
1111
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1079
1112
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1080
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
1113
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
1081
1114
|
is_heating?: boolean | undefined;
|
|
1082
1115
|
is_cooling?: boolean | undefined;
|
|
1083
1116
|
is_fan_running?: boolean | undefined;
|
|
@@ -1085,7 +1118,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1085
1118
|
current_climate_setting?: {
|
|
1086
1119
|
automatic_heating_enabled: boolean;
|
|
1087
1120
|
automatic_cooling_enabled: boolean;
|
|
1088
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1121
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1089
1122
|
manual_override_allowed: boolean;
|
|
1090
1123
|
cooling_set_point_celsius?: number | undefined;
|
|
1091
1124
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1103,7 +1136,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1103
1136
|
name?: string | undefined;
|
|
1104
1137
|
automatic_heating_enabled?: boolean | undefined;
|
|
1105
1138
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1106
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1139
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1107
1140
|
cooling_set_point_celsius?: number | undefined;
|
|
1108
1141
|
heating_set_point_celsius?: number | undefined;
|
|
1109
1142
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1126,7 +1159,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1126
1159
|
default_climate_setting?: {
|
|
1127
1160
|
automatic_heating_enabled: boolean;
|
|
1128
1161
|
automatic_cooling_enabled: boolean;
|
|
1129
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1162
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1130
1163
|
manual_override_allowed: boolean;
|
|
1131
1164
|
cooling_set_point_celsius?: number | undefined;
|
|
1132
1165
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1138,7 +1171,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1138
1171
|
relative_humidity?: number | undefined;
|
|
1139
1172
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1140
1173
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1141
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
1174
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
1142
1175
|
is_heating?: boolean | undefined;
|
|
1143
1176
|
is_cooling?: boolean | undefined;
|
|
1144
1177
|
is_fan_running?: boolean | undefined;
|
|
@@ -1146,7 +1179,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1146
1179
|
current_climate_setting?: {
|
|
1147
1180
|
automatic_heating_enabled: boolean;
|
|
1148
1181
|
automatic_cooling_enabled: boolean;
|
|
1149
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1182
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1150
1183
|
manual_override_allowed: boolean;
|
|
1151
1184
|
cooling_set_point_celsius?: number | undefined;
|
|
1152
1185
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1164,7 +1197,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1164
1197
|
name?: string | undefined;
|
|
1165
1198
|
automatic_heating_enabled?: boolean | undefined;
|
|
1166
1199
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1167
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1200
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1168
1201
|
cooling_set_point_celsius?: number | undefined;
|
|
1169
1202
|
heating_set_point_celsius?: number | undefined;
|
|
1170
1203
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1187,7 +1220,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1187
1220
|
default_climate_setting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1188
1221
|
automatic_heating_enabled: z.ZodBoolean;
|
|
1189
1222
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
1190
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
1223
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1191
1224
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1192
1225
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1193
1226
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1196,7 +1229,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1196
1229
|
}, "strip", z.ZodTypeAny, {
|
|
1197
1230
|
automatic_heating_enabled: boolean;
|
|
1198
1231
|
automatic_cooling_enabled: boolean;
|
|
1199
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1232
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1200
1233
|
manual_override_allowed: boolean;
|
|
1201
1234
|
cooling_set_point_celsius?: number | undefined;
|
|
1202
1235
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1205,7 +1238,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1205
1238
|
}, {
|
|
1206
1239
|
automatic_heating_enabled: boolean;
|
|
1207
1240
|
automatic_cooling_enabled: boolean;
|
|
1208
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1241
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1209
1242
|
manual_override_allowed: boolean;
|
|
1210
1243
|
cooling_set_point_celsius?: number | undefined;
|
|
1211
1244
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1217,7 +1250,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1217
1250
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1218
1251
|
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1219
1252
|
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1220
|
-
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "
|
|
1253
|
+
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1221
1254
|
is_cooling_available: z.ZodOptional<z.ZodLiteral<false>>;
|
|
1222
1255
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1223
1256
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1226,7 +1259,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1226
1259
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1227
1260
|
automatic_heating_enabled: z.ZodBoolean;
|
|
1228
1261
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
1229
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
1262
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1230
1263
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1231
1264
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1232
1265
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1235,7 +1268,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1235
1268
|
}, "strip", z.ZodTypeAny, {
|
|
1236
1269
|
automatic_heating_enabled: boolean;
|
|
1237
1270
|
automatic_cooling_enabled: boolean;
|
|
1238
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1271
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1239
1272
|
manual_override_allowed: boolean;
|
|
1240
1273
|
cooling_set_point_celsius?: number | undefined;
|
|
1241
1274
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1244,7 +1277,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1244
1277
|
}, {
|
|
1245
1278
|
automatic_heating_enabled: boolean;
|
|
1246
1279
|
automatic_cooling_enabled: boolean;
|
|
1247
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1280
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1248
1281
|
manual_override_allowed: boolean;
|
|
1249
1282
|
cooling_set_point_celsius?: number | undefined;
|
|
1250
1283
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1262,7 +1295,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1262
1295
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
1263
1296
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1264
1297
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1265
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "
|
|
1298
|
+
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1266
1299
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1267
1300
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1268
1301
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1278,7 +1311,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1278
1311
|
name?: string | undefined;
|
|
1279
1312
|
automatic_heating_enabled?: boolean | undefined;
|
|
1280
1313
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1281
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1314
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1282
1315
|
cooling_set_point_celsius?: number | undefined;
|
|
1283
1316
|
heating_set_point_celsius?: number | undefined;
|
|
1284
1317
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1294,7 +1327,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1294
1327
|
name?: string | undefined;
|
|
1295
1328
|
automatic_heating_enabled?: boolean | undefined;
|
|
1296
1329
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1297
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1330
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1298
1331
|
cooling_set_point_celsius?: number | undefined;
|
|
1299
1332
|
heating_set_point_celsius?: number | undefined;
|
|
1300
1333
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1310,7 +1343,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1310
1343
|
default_climate_setting?: {
|
|
1311
1344
|
automatic_heating_enabled: boolean;
|
|
1312
1345
|
automatic_cooling_enabled: boolean;
|
|
1313
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1346
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1314
1347
|
manual_override_allowed: boolean;
|
|
1315
1348
|
cooling_set_point_celsius?: number | undefined;
|
|
1316
1349
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1322,7 +1355,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1322
1355
|
relative_humidity?: number | undefined;
|
|
1323
1356
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1324
1357
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1325
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
1358
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
1326
1359
|
is_cooling_available?: false | undefined;
|
|
1327
1360
|
is_heating?: boolean | undefined;
|
|
1328
1361
|
is_cooling?: boolean | undefined;
|
|
@@ -1331,7 +1364,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1331
1364
|
current_climate_setting?: {
|
|
1332
1365
|
automatic_heating_enabled: boolean;
|
|
1333
1366
|
automatic_cooling_enabled: boolean;
|
|
1334
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1367
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1335
1368
|
manual_override_allowed: boolean;
|
|
1336
1369
|
cooling_set_point_celsius?: number | undefined;
|
|
1337
1370
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1349,7 +1382,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1349
1382
|
name?: string | undefined;
|
|
1350
1383
|
automatic_heating_enabled?: boolean | undefined;
|
|
1351
1384
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1352
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1385
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1353
1386
|
cooling_set_point_celsius?: number | undefined;
|
|
1354
1387
|
heating_set_point_celsius?: number | undefined;
|
|
1355
1388
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1365,7 +1398,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1365
1398
|
default_climate_setting?: {
|
|
1366
1399
|
automatic_heating_enabled: boolean;
|
|
1367
1400
|
automatic_cooling_enabled: boolean;
|
|
1368
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1401
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1369
1402
|
manual_override_allowed: boolean;
|
|
1370
1403
|
cooling_set_point_celsius?: number | undefined;
|
|
1371
1404
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1377,7 +1410,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1377
1410
|
relative_humidity?: number | undefined;
|
|
1378
1411
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1379
1412
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1380
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
1413
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
1381
1414
|
is_cooling_available?: false | undefined;
|
|
1382
1415
|
is_heating?: boolean | undefined;
|
|
1383
1416
|
is_cooling?: boolean | undefined;
|
|
@@ -1386,7 +1419,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1386
1419
|
current_climate_setting?: {
|
|
1387
1420
|
automatic_heating_enabled: boolean;
|
|
1388
1421
|
automatic_cooling_enabled: boolean;
|
|
1389
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1422
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1390
1423
|
manual_override_allowed: boolean;
|
|
1391
1424
|
cooling_set_point_celsius?: number | undefined;
|
|
1392
1425
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1404,7 +1437,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1404
1437
|
name?: string | undefined;
|
|
1405
1438
|
automatic_heating_enabled?: boolean | undefined;
|
|
1406
1439
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1407
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1440
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1408
1441
|
cooling_set_point_celsius?: number | undefined;
|
|
1409
1442
|
heating_set_point_celsius?: number | undefined;
|
|
1410
1443
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1420,7 +1453,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1420
1453
|
default_climate_setting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1421
1454
|
automatic_heating_enabled: z.ZodBoolean;
|
|
1422
1455
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
1423
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
1456
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1424
1457
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1425
1458
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1426
1459
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1429,7 +1462,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1429
1462
|
}, "strip", z.ZodTypeAny, {
|
|
1430
1463
|
automatic_heating_enabled: boolean;
|
|
1431
1464
|
automatic_cooling_enabled: boolean;
|
|
1432
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1465
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1433
1466
|
manual_override_allowed: boolean;
|
|
1434
1467
|
cooling_set_point_celsius?: number | undefined;
|
|
1435
1468
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1438,7 +1471,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1438
1471
|
}, {
|
|
1439
1472
|
automatic_heating_enabled: boolean;
|
|
1440
1473
|
automatic_cooling_enabled: boolean;
|
|
1441
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1474
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1442
1475
|
manual_override_allowed: boolean;
|
|
1443
1476
|
cooling_set_point_celsius?: number | undefined;
|
|
1444
1477
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1450,7 +1483,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1450
1483
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1451
1484
|
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1452
1485
|
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1453
|
-
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "
|
|
1486
|
+
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1454
1487
|
is_heating_available: z.ZodOptional<z.ZodLiteral<false>>;
|
|
1455
1488
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1456
1489
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1459,7 +1492,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1459
1492
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1460
1493
|
automatic_heating_enabled: z.ZodBoolean;
|
|
1461
1494
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
1462
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "
|
|
1495
|
+
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1463
1496
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1464
1497
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1465
1498
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1468,7 +1501,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1468
1501
|
}, "strip", z.ZodTypeAny, {
|
|
1469
1502
|
automatic_heating_enabled: boolean;
|
|
1470
1503
|
automatic_cooling_enabled: boolean;
|
|
1471
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1504
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1472
1505
|
manual_override_allowed: boolean;
|
|
1473
1506
|
cooling_set_point_celsius?: number | undefined;
|
|
1474
1507
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1477,7 +1510,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1477
1510
|
}, {
|
|
1478
1511
|
automatic_heating_enabled: boolean;
|
|
1479
1512
|
automatic_cooling_enabled: boolean;
|
|
1480
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1513
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1481
1514
|
manual_override_allowed: boolean;
|
|
1482
1515
|
cooling_set_point_celsius?: number | undefined;
|
|
1483
1516
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1495,7 +1528,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1495
1528
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
1496
1529
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1497
1530
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1498
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "
|
|
1531
|
+
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1499
1532
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1500
1533
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1501
1534
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1511,7 +1544,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1511
1544
|
name?: string | undefined;
|
|
1512
1545
|
automatic_heating_enabled?: boolean | undefined;
|
|
1513
1546
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1514
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1547
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1515
1548
|
cooling_set_point_celsius?: number | undefined;
|
|
1516
1549
|
heating_set_point_celsius?: number | undefined;
|
|
1517
1550
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1527,7 +1560,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1527
1560
|
name?: string | undefined;
|
|
1528
1561
|
automatic_heating_enabled?: boolean | undefined;
|
|
1529
1562
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1530
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1563
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1531
1564
|
cooling_set_point_celsius?: number | undefined;
|
|
1532
1565
|
heating_set_point_celsius?: number | undefined;
|
|
1533
1566
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1543,7 +1576,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1543
1576
|
default_climate_setting?: {
|
|
1544
1577
|
automatic_heating_enabled: boolean;
|
|
1545
1578
|
automatic_cooling_enabled: boolean;
|
|
1546
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1579
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1547
1580
|
manual_override_allowed: boolean;
|
|
1548
1581
|
cooling_set_point_celsius?: number | undefined;
|
|
1549
1582
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1555,7 +1588,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1555
1588
|
relative_humidity?: number | undefined;
|
|
1556
1589
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1557
1590
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1558
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
1591
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
1559
1592
|
is_heating_available?: false | undefined;
|
|
1560
1593
|
is_heating?: boolean | undefined;
|
|
1561
1594
|
is_cooling?: boolean | undefined;
|
|
@@ -1564,7 +1597,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1564
1597
|
current_climate_setting?: {
|
|
1565
1598
|
automatic_heating_enabled: boolean;
|
|
1566
1599
|
automatic_cooling_enabled: boolean;
|
|
1567
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1600
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1568
1601
|
manual_override_allowed: boolean;
|
|
1569
1602
|
cooling_set_point_celsius?: number | undefined;
|
|
1570
1603
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1582,7 +1615,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1582
1615
|
name?: string | undefined;
|
|
1583
1616
|
automatic_heating_enabled?: boolean | undefined;
|
|
1584
1617
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1585
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1618
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1586
1619
|
cooling_set_point_celsius?: number | undefined;
|
|
1587
1620
|
heating_set_point_celsius?: number | undefined;
|
|
1588
1621
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1598,7 +1631,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1598
1631
|
default_climate_setting?: {
|
|
1599
1632
|
automatic_heating_enabled: boolean;
|
|
1600
1633
|
automatic_cooling_enabled: boolean;
|
|
1601
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1634
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1602
1635
|
manual_override_allowed: boolean;
|
|
1603
1636
|
cooling_set_point_celsius?: number | undefined;
|
|
1604
1637
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1610,7 +1643,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1610
1643
|
relative_humidity?: number | undefined;
|
|
1611
1644
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1612
1645
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1613
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
1646
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
1614
1647
|
is_heating_available?: false | undefined;
|
|
1615
1648
|
is_heating?: boolean | undefined;
|
|
1616
1649
|
is_cooling?: boolean | undefined;
|
|
@@ -1619,7 +1652,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1619
1652
|
current_climate_setting?: {
|
|
1620
1653
|
automatic_heating_enabled: boolean;
|
|
1621
1654
|
automatic_cooling_enabled: boolean;
|
|
1622
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1655
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1623
1656
|
manual_override_allowed: boolean;
|
|
1624
1657
|
cooling_set_point_celsius?: number | undefined;
|
|
1625
1658
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1637,7 +1670,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1637
1670
|
name?: string | undefined;
|
|
1638
1671
|
automatic_heating_enabled?: boolean | undefined;
|
|
1639
1672
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1640
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1673
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1641
1674
|
cooling_set_point_celsius?: number | undefined;
|
|
1642
1675
|
heating_set_point_celsius?: number | undefined;
|
|
1643
1676
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1852,6 +1885,13 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1852
1885
|
device_name: string;
|
|
1853
1886
|
device_label: string;
|
|
1854
1887
|
} | undefined;
|
|
1888
|
+
dormakaba_oracode_metadata?: {
|
|
1889
|
+
door_name: string;
|
|
1890
|
+
site_id: number;
|
|
1891
|
+
site_name: string;
|
|
1892
|
+
door_id: number;
|
|
1893
|
+
device_id?: number | undefined;
|
|
1894
|
+
} | undefined;
|
|
1855
1895
|
} & ({
|
|
1856
1896
|
code_constraints?: ({
|
|
1857
1897
|
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future";
|
|
@@ -1873,7 +1913,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1873
1913
|
default_climate_setting?: {
|
|
1874
1914
|
automatic_heating_enabled: boolean;
|
|
1875
1915
|
automatic_cooling_enabled: boolean;
|
|
1876
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1916
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1877
1917
|
manual_override_allowed: boolean;
|
|
1878
1918
|
cooling_set_point_celsius?: number | undefined;
|
|
1879
1919
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1885,7 +1925,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1885
1925
|
relative_humidity?: number | undefined;
|
|
1886
1926
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1887
1927
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1888
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
1928
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
1889
1929
|
is_heating?: boolean | undefined;
|
|
1890
1930
|
is_cooling?: boolean | undefined;
|
|
1891
1931
|
is_fan_running?: boolean | undefined;
|
|
@@ -1893,7 +1933,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1893
1933
|
current_climate_setting?: {
|
|
1894
1934
|
automatic_heating_enabled: boolean;
|
|
1895
1935
|
automatic_cooling_enabled: boolean;
|
|
1896
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1936
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1897
1937
|
manual_override_allowed: boolean;
|
|
1898
1938
|
cooling_set_point_celsius?: number | undefined;
|
|
1899
1939
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1911,7 +1951,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1911
1951
|
name?: string | undefined;
|
|
1912
1952
|
automatic_heating_enabled?: boolean | undefined;
|
|
1913
1953
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1914
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
1954
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1915
1955
|
cooling_set_point_celsius?: number | undefined;
|
|
1916
1956
|
heating_set_point_celsius?: number | undefined;
|
|
1917
1957
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1934,7 +1974,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1934
1974
|
default_climate_setting?: {
|
|
1935
1975
|
automatic_heating_enabled: boolean;
|
|
1936
1976
|
automatic_cooling_enabled: boolean;
|
|
1937
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1977
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1938
1978
|
manual_override_allowed: boolean;
|
|
1939
1979
|
cooling_set_point_celsius?: number | undefined;
|
|
1940
1980
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1946,7 +1986,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1946
1986
|
relative_humidity?: number | undefined;
|
|
1947
1987
|
can_enable_automatic_heating?: boolean | undefined;
|
|
1948
1988
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
1949
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
1989
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
1950
1990
|
is_cooling_available?: false | undefined;
|
|
1951
1991
|
is_heating?: boolean | undefined;
|
|
1952
1992
|
is_cooling?: boolean | undefined;
|
|
@@ -1955,7 +1995,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1955
1995
|
current_climate_setting?: {
|
|
1956
1996
|
automatic_heating_enabled: boolean;
|
|
1957
1997
|
automatic_cooling_enabled: boolean;
|
|
1958
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
1998
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1959
1999
|
manual_override_allowed: boolean;
|
|
1960
2000
|
cooling_set_point_celsius?: number | undefined;
|
|
1961
2001
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1973,7 +2013,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1973
2013
|
name?: string | undefined;
|
|
1974
2014
|
automatic_heating_enabled?: boolean | undefined;
|
|
1975
2015
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1976
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
2016
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
1977
2017
|
cooling_set_point_celsius?: number | undefined;
|
|
1978
2018
|
heating_set_point_celsius?: number | undefined;
|
|
1979
2019
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -1989,7 +2029,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1989
2029
|
default_climate_setting?: {
|
|
1990
2030
|
automatic_heating_enabled: boolean;
|
|
1991
2031
|
automatic_cooling_enabled: boolean;
|
|
1992
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
2032
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
1993
2033
|
manual_override_allowed: boolean;
|
|
1994
2034
|
cooling_set_point_celsius?: number | undefined;
|
|
1995
2035
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2001,7 +2041,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2001
2041
|
relative_humidity?: number | undefined;
|
|
2002
2042
|
can_enable_automatic_heating?: boolean | undefined;
|
|
2003
2043
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
2004
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
2044
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
2005
2045
|
is_heating_available?: false | undefined;
|
|
2006
2046
|
is_heating?: boolean | undefined;
|
|
2007
2047
|
is_cooling?: boolean | undefined;
|
|
@@ -2010,7 +2050,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2010
2050
|
current_climate_setting?: {
|
|
2011
2051
|
automatic_heating_enabled: boolean;
|
|
2012
2052
|
automatic_cooling_enabled: boolean;
|
|
2013
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
2053
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2014
2054
|
manual_override_allowed: boolean;
|
|
2015
2055
|
cooling_set_point_celsius?: number | undefined;
|
|
2016
2056
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2028,7 +2068,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2028
2068
|
name?: string | undefined;
|
|
2029
2069
|
automatic_heating_enabled?: boolean | undefined;
|
|
2030
2070
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2031
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
2071
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
2032
2072
|
cooling_set_point_celsius?: number | undefined;
|
|
2033
2073
|
heating_set_point_celsius?: number | undefined;
|
|
2034
2074
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -2198,6 +2238,13 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2198
2238
|
device_name: string;
|
|
2199
2239
|
device_label: string;
|
|
2200
2240
|
} | undefined;
|
|
2241
|
+
dormakaba_oracode_metadata?: {
|
|
2242
|
+
door_name: string;
|
|
2243
|
+
site_id: number;
|
|
2244
|
+
site_name: string;
|
|
2245
|
+
door_id: number;
|
|
2246
|
+
device_id?: number | undefined;
|
|
2247
|
+
} | undefined;
|
|
2201
2248
|
} & ({
|
|
2202
2249
|
code_constraints?: ({
|
|
2203
2250
|
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future";
|
|
@@ -2219,7 +2266,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2219
2266
|
default_climate_setting?: {
|
|
2220
2267
|
automatic_heating_enabled: boolean;
|
|
2221
2268
|
automatic_cooling_enabled: boolean;
|
|
2222
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
2269
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2223
2270
|
manual_override_allowed: boolean;
|
|
2224
2271
|
cooling_set_point_celsius?: number | undefined;
|
|
2225
2272
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2231,7 +2278,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2231
2278
|
relative_humidity?: number | undefined;
|
|
2232
2279
|
can_enable_automatic_heating?: boolean | undefined;
|
|
2233
2280
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
2234
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
2281
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
2235
2282
|
is_heating?: boolean | undefined;
|
|
2236
2283
|
is_cooling?: boolean | undefined;
|
|
2237
2284
|
is_fan_running?: boolean | undefined;
|
|
@@ -2239,7 +2286,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2239
2286
|
current_climate_setting?: {
|
|
2240
2287
|
automatic_heating_enabled: boolean;
|
|
2241
2288
|
automatic_cooling_enabled: boolean;
|
|
2242
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
2289
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2243
2290
|
manual_override_allowed: boolean;
|
|
2244
2291
|
cooling_set_point_celsius?: number | undefined;
|
|
2245
2292
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2257,7 +2304,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2257
2304
|
name?: string | undefined;
|
|
2258
2305
|
automatic_heating_enabled?: boolean | undefined;
|
|
2259
2306
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2260
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
2307
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
2261
2308
|
cooling_set_point_celsius?: number | undefined;
|
|
2262
2309
|
heating_set_point_celsius?: number | undefined;
|
|
2263
2310
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -2280,7 +2327,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2280
2327
|
default_climate_setting?: {
|
|
2281
2328
|
automatic_heating_enabled: boolean;
|
|
2282
2329
|
automatic_cooling_enabled: boolean;
|
|
2283
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
2330
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2284
2331
|
manual_override_allowed: boolean;
|
|
2285
2332
|
cooling_set_point_celsius?: number | undefined;
|
|
2286
2333
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2292,7 +2339,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2292
2339
|
relative_humidity?: number | undefined;
|
|
2293
2340
|
can_enable_automatic_heating?: boolean | undefined;
|
|
2294
2341
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
2295
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
2342
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
2296
2343
|
is_cooling_available?: false | undefined;
|
|
2297
2344
|
is_heating?: boolean | undefined;
|
|
2298
2345
|
is_cooling?: boolean | undefined;
|
|
@@ -2301,7 +2348,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2301
2348
|
current_climate_setting?: {
|
|
2302
2349
|
automatic_heating_enabled: boolean;
|
|
2303
2350
|
automatic_cooling_enabled: boolean;
|
|
2304
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
2351
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2305
2352
|
manual_override_allowed: boolean;
|
|
2306
2353
|
cooling_set_point_celsius?: number | undefined;
|
|
2307
2354
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2319,7 +2366,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2319
2366
|
name?: string | undefined;
|
|
2320
2367
|
automatic_heating_enabled?: boolean | undefined;
|
|
2321
2368
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2322
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
2369
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
2323
2370
|
cooling_set_point_celsius?: number | undefined;
|
|
2324
2371
|
heating_set_point_celsius?: number | undefined;
|
|
2325
2372
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -2335,7 +2382,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2335
2382
|
default_climate_setting?: {
|
|
2336
2383
|
automatic_heating_enabled: boolean;
|
|
2337
2384
|
automatic_cooling_enabled: boolean;
|
|
2338
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
2385
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2339
2386
|
manual_override_allowed: boolean;
|
|
2340
2387
|
cooling_set_point_celsius?: number | undefined;
|
|
2341
2388
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2347,7 +2394,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2347
2394
|
relative_humidity?: number | undefined;
|
|
2348
2395
|
can_enable_automatic_heating?: boolean | undefined;
|
|
2349
2396
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
2350
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
2397
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
2351
2398
|
is_heating_available?: false | undefined;
|
|
2352
2399
|
is_heating?: boolean | undefined;
|
|
2353
2400
|
is_cooling?: boolean | undefined;
|
|
@@ -2356,7 +2403,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2356
2403
|
current_climate_setting?: {
|
|
2357
2404
|
automatic_heating_enabled: boolean;
|
|
2358
2405
|
automatic_cooling_enabled: boolean;
|
|
2359
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
2406
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2360
2407
|
manual_override_allowed: boolean;
|
|
2361
2408
|
cooling_set_point_celsius?: number | undefined;
|
|
2362
2409
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2374,7 +2421,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2374
2421
|
name?: string | undefined;
|
|
2375
2422
|
automatic_heating_enabled?: boolean | undefined;
|
|
2376
2423
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2377
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
2424
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
2378
2425
|
cooling_set_point_celsius?: number | undefined;
|
|
2379
2426
|
heating_set_point_celsius?: number | undefined;
|
|
2380
2427
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -2387,7 +2434,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2387
2434
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
2388
2435
|
is_cooling_available?: true | undefined;
|
|
2389
2436
|
}))) | undefined);
|
|
2390
|
-
device_type: "akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "noiseaware_activity_zone" | "minut_sensor" | "ecobee_thermostat" | "nest_thermostat" | "avigilon_alta_entry" | "four_suites_door";
|
|
2437
|
+
device_type: "akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "noiseaware_activity_zone" | "minut_sensor" | "ecobee_thermostat" | "nest_thermostat" | "avigilon_alta_entry" | "four_suites_door" | "dormakaba_oracode_door";
|
|
2391
2438
|
capabilities_supported: ("access_code" | "thermostat" | "lock" | "noise_detection" | "battery")[];
|
|
2392
2439
|
errors: {
|
|
2393
2440
|
message: string;
|
|
@@ -2565,6 +2612,13 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2565
2612
|
device_name: string;
|
|
2566
2613
|
device_label: string;
|
|
2567
2614
|
} | undefined;
|
|
2615
|
+
dormakaba_oracode_metadata?: {
|
|
2616
|
+
door_name: string;
|
|
2617
|
+
site_id: number;
|
|
2618
|
+
site_name: string;
|
|
2619
|
+
door_id: number;
|
|
2620
|
+
device_id?: number | undefined;
|
|
2621
|
+
} | undefined;
|
|
2568
2622
|
} & ({
|
|
2569
2623
|
code_constraints?: ({
|
|
2570
2624
|
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future";
|
|
@@ -2586,7 +2640,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2586
2640
|
default_climate_setting?: {
|
|
2587
2641
|
automatic_heating_enabled: boolean;
|
|
2588
2642
|
automatic_cooling_enabled: boolean;
|
|
2589
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
2643
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2590
2644
|
manual_override_allowed: boolean;
|
|
2591
2645
|
cooling_set_point_celsius?: number | undefined;
|
|
2592
2646
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2598,7 +2652,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2598
2652
|
relative_humidity?: number | undefined;
|
|
2599
2653
|
can_enable_automatic_heating?: boolean | undefined;
|
|
2600
2654
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
2601
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
2655
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
2602
2656
|
is_heating?: boolean | undefined;
|
|
2603
2657
|
is_cooling?: boolean | undefined;
|
|
2604
2658
|
is_fan_running?: boolean | undefined;
|
|
@@ -2606,7 +2660,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2606
2660
|
current_climate_setting?: {
|
|
2607
2661
|
automatic_heating_enabled: boolean;
|
|
2608
2662
|
automatic_cooling_enabled: boolean;
|
|
2609
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
2663
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2610
2664
|
manual_override_allowed: boolean;
|
|
2611
2665
|
cooling_set_point_celsius?: number | undefined;
|
|
2612
2666
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2624,7 +2678,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2624
2678
|
name?: string | undefined;
|
|
2625
2679
|
automatic_heating_enabled?: boolean | undefined;
|
|
2626
2680
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2627
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
2681
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
2628
2682
|
cooling_set_point_celsius?: number | undefined;
|
|
2629
2683
|
heating_set_point_celsius?: number | undefined;
|
|
2630
2684
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -2647,7 +2701,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2647
2701
|
default_climate_setting?: {
|
|
2648
2702
|
automatic_heating_enabled: boolean;
|
|
2649
2703
|
automatic_cooling_enabled: boolean;
|
|
2650
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
2704
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2651
2705
|
manual_override_allowed: boolean;
|
|
2652
2706
|
cooling_set_point_celsius?: number | undefined;
|
|
2653
2707
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2659,7 +2713,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2659
2713
|
relative_humidity?: number | undefined;
|
|
2660
2714
|
can_enable_automatic_heating?: boolean | undefined;
|
|
2661
2715
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
2662
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
2716
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
2663
2717
|
is_cooling_available?: false | undefined;
|
|
2664
2718
|
is_heating?: boolean | undefined;
|
|
2665
2719
|
is_cooling?: boolean | undefined;
|
|
@@ -2668,7 +2722,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2668
2722
|
current_climate_setting?: {
|
|
2669
2723
|
automatic_heating_enabled: boolean;
|
|
2670
2724
|
automatic_cooling_enabled: boolean;
|
|
2671
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
2725
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2672
2726
|
manual_override_allowed: boolean;
|
|
2673
2727
|
cooling_set_point_celsius?: number | undefined;
|
|
2674
2728
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2686,7 +2740,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2686
2740
|
name?: string | undefined;
|
|
2687
2741
|
automatic_heating_enabled?: boolean | undefined;
|
|
2688
2742
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2689
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
2743
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
2690
2744
|
cooling_set_point_celsius?: number | undefined;
|
|
2691
2745
|
heating_set_point_celsius?: number | undefined;
|
|
2692
2746
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -2702,7 +2756,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2702
2756
|
default_climate_setting?: {
|
|
2703
2757
|
automatic_heating_enabled: boolean;
|
|
2704
2758
|
automatic_cooling_enabled: boolean;
|
|
2705
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
2759
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2706
2760
|
manual_override_allowed: boolean;
|
|
2707
2761
|
cooling_set_point_celsius?: number | undefined;
|
|
2708
2762
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2714,7 +2768,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2714
2768
|
relative_humidity?: number | undefined;
|
|
2715
2769
|
can_enable_automatic_heating?: boolean | undefined;
|
|
2716
2770
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
2717
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
2771
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
2718
2772
|
is_heating_available?: false | undefined;
|
|
2719
2773
|
is_heating?: boolean | undefined;
|
|
2720
2774
|
is_cooling?: boolean | undefined;
|
|
@@ -2723,7 +2777,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2723
2777
|
current_climate_setting?: {
|
|
2724
2778
|
automatic_heating_enabled: boolean;
|
|
2725
2779
|
automatic_cooling_enabled: boolean;
|
|
2726
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
2780
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2727
2781
|
manual_override_allowed: boolean;
|
|
2728
2782
|
cooling_set_point_celsius?: number | undefined;
|
|
2729
2783
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2741,7 +2795,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2741
2795
|
name?: string | undefined;
|
|
2742
2796
|
automatic_heating_enabled?: boolean | undefined;
|
|
2743
2797
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2744
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
2798
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
2745
2799
|
cooling_set_point_celsius?: number | undefined;
|
|
2746
2800
|
heating_set_point_celsius?: number | undefined;
|
|
2747
2801
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -2911,6 +2965,13 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2911
2965
|
device_name: string;
|
|
2912
2966
|
device_label: string;
|
|
2913
2967
|
} | undefined;
|
|
2968
|
+
dormakaba_oracode_metadata?: {
|
|
2969
|
+
door_name: string;
|
|
2970
|
+
site_id: number;
|
|
2971
|
+
site_name: string;
|
|
2972
|
+
door_id: number;
|
|
2973
|
+
device_id?: number | undefined;
|
|
2974
|
+
} | undefined;
|
|
2914
2975
|
} & ({
|
|
2915
2976
|
code_constraints?: ({
|
|
2916
2977
|
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future";
|
|
@@ -2932,7 +2993,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2932
2993
|
default_climate_setting?: {
|
|
2933
2994
|
automatic_heating_enabled: boolean;
|
|
2934
2995
|
automatic_cooling_enabled: boolean;
|
|
2935
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
2996
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2936
2997
|
manual_override_allowed: boolean;
|
|
2937
2998
|
cooling_set_point_celsius?: number | undefined;
|
|
2938
2999
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2944,7 +3005,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2944
3005
|
relative_humidity?: number | undefined;
|
|
2945
3006
|
can_enable_automatic_heating?: boolean | undefined;
|
|
2946
3007
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
2947
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
3008
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
2948
3009
|
is_heating?: boolean | undefined;
|
|
2949
3010
|
is_cooling?: boolean | undefined;
|
|
2950
3011
|
is_fan_running?: boolean | undefined;
|
|
@@ -2952,7 +3013,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2952
3013
|
current_climate_setting?: {
|
|
2953
3014
|
automatic_heating_enabled: boolean;
|
|
2954
3015
|
automatic_cooling_enabled: boolean;
|
|
2955
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
3016
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2956
3017
|
manual_override_allowed: boolean;
|
|
2957
3018
|
cooling_set_point_celsius?: number | undefined;
|
|
2958
3019
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -2970,7 +3031,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2970
3031
|
name?: string | undefined;
|
|
2971
3032
|
automatic_heating_enabled?: boolean | undefined;
|
|
2972
3033
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2973
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
3034
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
2974
3035
|
cooling_set_point_celsius?: number | undefined;
|
|
2975
3036
|
heating_set_point_celsius?: number | undefined;
|
|
2976
3037
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -2993,7 +3054,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2993
3054
|
default_climate_setting?: {
|
|
2994
3055
|
automatic_heating_enabled: boolean;
|
|
2995
3056
|
automatic_cooling_enabled: boolean;
|
|
2996
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
3057
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
2997
3058
|
manual_override_allowed: boolean;
|
|
2998
3059
|
cooling_set_point_celsius?: number | undefined;
|
|
2999
3060
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -3005,7 +3066,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3005
3066
|
relative_humidity?: number | undefined;
|
|
3006
3067
|
can_enable_automatic_heating?: boolean | undefined;
|
|
3007
3068
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
3008
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
3069
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
3009
3070
|
is_cooling_available?: false | undefined;
|
|
3010
3071
|
is_heating?: boolean | undefined;
|
|
3011
3072
|
is_cooling?: boolean | undefined;
|
|
@@ -3014,7 +3075,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3014
3075
|
current_climate_setting?: {
|
|
3015
3076
|
automatic_heating_enabled: boolean;
|
|
3016
3077
|
automatic_cooling_enabled: boolean;
|
|
3017
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
3078
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
3018
3079
|
manual_override_allowed: boolean;
|
|
3019
3080
|
cooling_set_point_celsius?: number | undefined;
|
|
3020
3081
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -3032,7 +3093,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3032
3093
|
name?: string | undefined;
|
|
3033
3094
|
automatic_heating_enabled?: boolean | undefined;
|
|
3034
3095
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3035
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
3096
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
3036
3097
|
cooling_set_point_celsius?: number | undefined;
|
|
3037
3098
|
heating_set_point_celsius?: number | undefined;
|
|
3038
3099
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -3048,7 +3109,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3048
3109
|
default_climate_setting?: {
|
|
3049
3110
|
automatic_heating_enabled: boolean;
|
|
3050
3111
|
automatic_cooling_enabled: boolean;
|
|
3051
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
3112
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
3052
3113
|
manual_override_allowed: boolean;
|
|
3053
3114
|
cooling_set_point_celsius?: number | undefined;
|
|
3054
3115
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -3060,7 +3121,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3060
3121
|
relative_humidity?: number | undefined;
|
|
3061
3122
|
can_enable_automatic_heating?: boolean | undefined;
|
|
3062
3123
|
can_enable_automatic_cooling?: boolean | undefined;
|
|
3063
|
-
available_hvac_mode_settings?: ("cool" | "heat" | "
|
|
3124
|
+
available_hvac_mode_settings?: ("cool" | "heat" | "heat_cool" | "off")[] | undefined;
|
|
3064
3125
|
is_heating_available?: false | undefined;
|
|
3065
3126
|
is_heating?: boolean | undefined;
|
|
3066
3127
|
is_cooling?: boolean | undefined;
|
|
@@ -3069,7 +3130,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3069
3130
|
current_climate_setting?: {
|
|
3070
3131
|
automatic_heating_enabled: boolean;
|
|
3071
3132
|
automatic_cooling_enabled: boolean;
|
|
3072
|
-
hvac_mode_setting: "cool" | "heat" | "
|
|
3133
|
+
hvac_mode_setting: "cool" | "heat" | "heat_cool" | "off";
|
|
3073
3134
|
manual_override_allowed: boolean;
|
|
3074
3135
|
cooling_set_point_celsius?: number | undefined;
|
|
3075
3136
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -3087,7 +3148,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3087
3148
|
name?: string | undefined;
|
|
3088
3149
|
automatic_heating_enabled?: boolean | undefined;
|
|
3089
3150
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3090
|
-
hvac_mode_setting?: "cool" | "heat" | "
|
|
3151
|
+
hvac_mode_setting?: "cool" | "heat" | "heat_cool" | "off" | undefined;
|
|
3091
3152
|
cooling_set_point_celsius?: number | undefined;
|
|
3092
3153
|
heating_set_point_celsius?: number | undefined;
|
|
3093
3154
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
@@ -3100,7 +3161,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3100
3161
|
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
3101
3162
|
is_cooling_available?: true | undefined;
|
|
3102
3163
|
}))) | undefined);
|
|
3103
|
-
device_type: "akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "noiseaware_activity_zone" | "minut_sensor" | "ecobee_thermostat" | "nest_thermostat" | "avigilon_alta_entry" | "four_suites_door";
|
|
3164
|
+
device_type: "akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "noiseaware_activity_zone" | "minut_sensor" | "ecobee_thermostat" | "nest_thermostat" | "avigilon_alta_entry" | "four_suites_door" | "dormakaba_oracode_door";
|
|
3104
3165
|
capabilities_supported: ("access_code" | "thermostat" | "lock" | "noise_detection" | "battery")[];
|
|
3105
3166
|
errors: {
|
|
3106
3167
|
message: string;
|