@seamapi/types 1.456.0 → 1.457.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +418 -225
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +15440 -3086
- package/dist/devicedb.d.cts +56 -56
- package/dist/index.cjs +418 -225
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batches/access_grants.d.ts +48 -49
- package/lib/seam/connect/models/batches/access_methods.d.ts +5681 -0
- package/lib/seam/connect/models/batches/access_methods.js +11 -0
- package/lib/seam/connect/models/batches/access_methods.js.map +1 -0
- package/lib/seam/connect/models/batches/batch.d.ts +5774 -98
- package/lib/seam/connect/models/batches/batch.js +6 -1
- package/lib/seam/connect/models/batches/batch.js.map +1 -1
- package/lib/seam/connect/models/batches/index.d.ts +1 -0
- package/lib/seam/connect/models/batches/index.js +1 -0
- package/lib/seam/connect/models/batches/index.js.map +1 -1
- package/lib/seam/connect/models/batches/spaces.d.ts +48 -49
- package/lib/seam/connect/models/devices/device-metadata.d.ts +22 -22
- package/lib/seam/connect/models/devices/device-provider.d.ts +0 -1
- package/lib/seam/connect/models/devices/device.d.ts +49 -51
- package/lib/seam/connect/models/devices/device.js +16 -7
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +29 -31
- package/lib/seam/connect/openapi.d.ts +285 -0
- package/lib/seam/connect/openapi.js +390 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +9300 -2903
- package/lib/seam/devicedb/models/device-model.d.ts +20 -20
- package/lib/seam/devicedb/route-specs.d.ts +41 -41
- package/package.json +1 -1
- package/src/lib/seam/connect/models/batches/access_methods.ts +14 -0
- package/src/lib/seam/connect/models/batches/batch.ts +6 -1
- package/src/lib/seam/connect/models/batches/index.ts +1 -0
- package/src/lib/seam/connect/models/devices/device.ts +15 -8
- package/src/lib/seam/connect/openapi.ts +394 -1
- package/src/lib/seam/connect/route-types.ts +9271 -1024
package/dist/devicedb.d.cts
CHANGED
|
@@ -47,7 +47,7 @@ declare const thermostat: z.ZodObject<{
|
|
|
47
47
|
has_humidity_sensor: boolean;
|
|
48
48
|
has_temperature_sensor: boolean;
|
|
49
49
|
has_occupancy_detection: boolean;
|
|
50
|
-
available_modes: ("heat" | "cool" | "
|
|
50
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
51
51
|
is_heat_pump_compatible: boolean;
|
|
52
52
|
supports_demand_response: boolean;
|
|
53
53
|
supports_emergency_heating_mode: boolean;
|
|
@@ -55,7 +55,7 @@ declare const thermostat: z.ZodObject<{
|
|
|
55
55
|
has_humidity_sensor: boolean;
|
|
56
56
|
has_temperature_sensor: boolean;
|
|
57
57
|
has_occupancy_detection: boolean;
|
|
58
|
-
available_modes: ("heat" | "cool" | "
|
|
58
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
59
59
|
is_heat_pump_compatible: boolean;
|
|
60
60
|
supports_demand_response: boolean;
|
|
61
61
|
supports_emergency_heating_mode: boolean;
|
|
@@ -82,7 +82,7 @@ declare const thermostat: z.ZodObject<{
|
|
|
82
82
|
has_humidity_sensor: boolean;
|
|
83
83
|
has_temperature_sensor: boolean;
|
|
84
84
|
has_occupancy_detection: boolean;
|
|
85
|
-
available_modes: ("heat" | "cool" | "
|
|
85
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
86
86
|
is_heat_pump_compatible: boolean;
|
|
87
87
|
supports_demand_response: boolean;
|
|
88
88
|
supports_emergency_heating_mode: boolean;
|
|
@@ -100,7 +100,7 @@ declare const thermostat: z.ZodObject<{
|
|
|
100
100
|
has_humidity_sensor: boolean;
|
|
101
101
|
has_temperature_sensor: boolean;
|
|
102
102
|
has_occupancy_detection: boolean;
|
|
103
|
-
available_modes: ("heat" | "cool" | "
|
|
103
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
104
104
|
is_heat_pump_compatible: boolean;
|
|
105
105
|
supports_demand_response: boolean;
|
|
106
106
|
supports_emergency_heating_mode: boolean;
|
|
@@ -236,7 +236,7 @@ declare const device_model_category_specific_properties: z.ZodDiscriminatedUnion
|
|
|
236
236
|
has_humidity_sensor: boolean;
|
|
237
237
|
has_temperature_sensor: boolean;
|
|
238
238
|
has_occupancy_detection: boolean;
|
|
239
|
-
available_modes: ("heat" | "cool" | "
|
|
239
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
240
240
|
is_heat_pump_compatible: boolean;
|
|
241
241
|
supports_demand_response: boolean;
|
|
242
242
|
supports_emergency_heating_mode: boolean;
|
|
@@ -244,7 +244,7 @@ declare const device_model_category_specific_properties: z.ZodDiscriminatedUnion
|
|
|
244
244
|
has_humidity_sensor: boolean;
|
|
245
245
|
has_temperature_sensor: boolean;
|
|
246
246
|
has_occupancy_detection: boolean;
|
|
247
|
-
available_modes: ("heat" | "cool" | "
|
|
247
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
248
248
|
is_heat_pump_compatible: boolean;
|
|
249
249
|
supports_demand_response: boolean;
|
|
250
250
|
supports_emergency_heating_mode: boolean;
|
|
@@ -271,7 +271,7 @@ declare const device_model_category_specific_properties: z.ZodDiscriminatedUnion
|
|
|
271
271
|
has_humidity_sensor: boolean;
|
|
272
272
|
has_temperature_sensor: boolean;
|
|
273
273
|
has_occupancy_detection: boolean;
|
|
274
|
-
available_modes: ("heat" | "cool" | "
|
|
274
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
275
275
|
is_heat_pump_compatible: boolean;
|
|
276
276
|
supports_demand_response: boolean;
|
|
277
277
|
supports_emergency_heating_mode: boolean;
|
|
@@ -289,7 +289,7 @@ declare const device_model_category_specific_properties: z.ZodDiscriminatedUnion
|
|
|
289
289
|
has_humidity_sensor: boolean;
|
|
290
290
|
has_temperature_sensor: boolean;
|
|
291
291
|
has_occupancy_detection: boolean;
|
|
292
|
-
available_modes: ("heat" | "cool" | "
|
|
292
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
293
293
|
is_heat_pump_compatible: boolean;
|
|
294
294
|
supports_demand_response: boolean;
|
|
295
295
|
supports_emergency_heating_mode: boolean;
|
|
@@ -421,8 +421,8 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
421
421
|
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
422
422
|
description: z.ZodOptional<z.ZodString>;
|
|
423
423
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
424
|
-
display_name: string;
|
|
425
424
|
manufacturer_id: string;
|
|
425
|
+
display_name: string;
|
|
426
426
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
427
427
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
428
428
|
is_connect_webview_supported: boolean;
|
|
@@ -448,8 +448,8 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
448
448
|
seam_api_guide?: string | undefined;
|
|
449
449
|
description?: string | undefined;
|
|
450
450
|
}, {
|
|
451
|
-
display_name: string;
|
|
452
451
|
manufacturer_id: string;
|
|
452
|
+
display_name: string;
|
|
453
453
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
454
454
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
455
455
|
is_connect_webview_supported: boolean;
|
|
@@ -578,8 +578,8 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
578
578
|
description: string;
|
|
579
579
|
device_model_id: string;
|
|
580
580
|
manufacturer: {
|
|
581
|
-
display_name: string;
|
|
582
581
|
manufacturer_id: string;
|
|
582
|
+
display_name: string;
|
|
583
583
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
584
584
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
585
585
|
is_connect_webview_supported: boolean;
|
|
@@ -638,8 +638,8 @@ declare const base_device_model_v1: z.ZodObject<{
|
|
|
638
638
|
description: string;
|
|
639
639
|
device_model_id: string;
|
|
640
640
|
manufacturer: {
|
|
641
|
-
display_name: string;
|
|
642
641
|
manufacturer_id: string;
|
|
642
|
+
display_name: string;
|
|
643
643
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
644
644
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
645
645
|
is_connect_webview_supported: boolean;
|
|
@@ -740,8 +740,8 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
740
740
|
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
741
741
|
description: z.ZodOptional<z.ZodString>;
|
|
742
742
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
743
|
-
display_name: string;
|
|
744
743
|
manufacturer_id: string;
|
|
744
|
+
display_name: string;
|
|
745
745
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
746
746
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
747
747
|
is_connect_webview_supported: boolean;
|
|
@@ -767,8 +767,8 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
767
767
|
seam_api_guide?: string | undefined;
|
|
768
768
|
description?: string | undefined;
|
|
769
769
|
}, {
|
|
770
|
-
display_name: string;
|
|
771
770
|
manufacturer_id: string;
|
|
771
|
+
display_name: string;
|
|
772
772
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
773
773
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
774
774
|
is_connect_webview_supported: boolean;
|
|
@@ -897,8 +897,8 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
897
897
|
description: string;
|
|
898
898
|
device_model_id: string;
|
|
899
899
|
manufacturer: {
|
|
900
|
-
display_name: string;
|
|
901
900
|
manufacturer_id: string;
|
|
901
|
+
display_name: string;
|
|
902
902
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
903
903
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
904
904
|
is_connect_webview_supported: boolean;
|
|
@@ -957,8 +957,8 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
957
957
|
description: string;
|
|
958
958
|
device_model_id: string;
|
|
959
959
|
manufacturer: {
|
|
960
|
-
display_name: string;
|
|
961
960
|
manufacturer_id: string;
|
|
961
|
+
display_name: string;
|
|
962
962
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
963
963
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
964
964
|
is_connect_webview_supported: boolean;
|
|
@@ -1134,7 +1134,7 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
1134
1134
|
has_humidity_sensor: boolean;
|
|
1135
1135
|
has_temperature_sensor: boolean;
|
|
1136
1136
|
has_occupancy_detection: boolean;
|
|
1137
|
-
available_modes: ("heat" | "cool" | "
|
|
1137
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
1138
1138
|
is_heat_pump_compatible: boolean;
|
|
1139
1139
|
supports_demand_response: boolean;
|
|
1140
1140
|
supports_emergency_heating_mode: boolean;
|
|
@@ -1142,7 +1142,7 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
1142
1142
|
has_humidity_sensor: boolean;
|
|
1143
1143
|
has_temperature_sensor: boolean;
|
|
1144
1144
|
has_occupancy_detection: boolean;
|
|
1145
|
-
available_modes: ("heat" | "cool" | "
|
|
1145
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
1146
1146
|
is_heat_pump_compatible: boolean;
|
|
1147
1147
|
supports_demand_response: boolean;
|
|
1148
1148
|
supports_emergency_heating_mode: boolean;
|
|
@@ -1169,7 +1169,7 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
1169
1169
|
has_humidity_sensor: boolean;
|
|
1170
1170
|
has_temperature_sensor: boolean;
|
|
1171
1171
|
has_occupancy_detection: boolean;
|
|
1172
|
-
available_modes: ("heat" | "cool" | "
|
|
1172
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
1173
1173
|
is_heat_pump_compatible: boolean;
|
|
1174
1174
|
supports_demand_response: boolean;
|
|
1175
1175
|
supports_emergency_heating_mode: boolean;
|
|
@@ -1187,7 +1187,7 @@ declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
1187
1187
|
has_humidity_sensor: boolean;
|
|
1188
1188
|
has_temperature_sensor: boolean;
|
|
1189
1189
|
has_occupancy_detection: boolean;
|
|
1190
|
-
available_modes: ("heat" | "cool" | "
|
|
1190
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
1191
1191
|
is_heat_pump_compatible: boolean;
|
|
1192
1192
|
supports_demand_response: boolean;
|
|
1193
1193
|
supports_emergency_heating_mode: boolean;
|
|
@@ -1350,8 +1350,8 @@ declare const manufacturer: z.ZodObject<{
|
|
|
1350
1350
|
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
1351
1351
|
description: z.ZodOptional<z.ZodString>;
|
|
1352
1352
|
}, "strip", z.ZodTypeAny, {
|
|
1353
|
-
display_name: string;
|
|
1354
1353
|
manufacturer_id: string;
|
|
1354
|
+
display_name: string;
|
|
1355
1355
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1356
1356
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1357
1357
|
is_connect_webview_supported: boolean;
|
|
@@ -1378,8 +1378,8 @@ declare const manufacturer: z.ZodObject<{
|
|
|
1378
1378
|
seam_api_guide?: string | undefined;
|
|
1379
1379
|
description?: string | undefined;
|
|
1380
1380
|
}, {
|
|
1381
|
-
display_name: string;
|
|
1382
1381
|
manufacturer_id: string;
|
|
1382
|
+
display_name: string;
|
|
1383
1383
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1384
1384
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1385
1385
|
is_connect_webview_supported: boolean;
|
|
@@ -1492,8 +1492,8 @@ declare const routes: {
|
|
|
1492
1492
|
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
1493
1493
|
description: z.ZodOptional<z.ZodString>;
|
|
1494
1494
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
1495
|
-
display_name: string;
|
|
1496
1495
|
manufacturer_id: string;
|
|
1496
|
+
display_name: string;
|
|
1497
1497
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1498
1498
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1499
1499
|
is_connect_webview_supported: boolean;
|
|
@@ -1519,8 +1519,8 @@ declare const routes: {
|
|
|
1519
1519
|
seam_api_guide?: string | undefined;
|
|
1520
1520
|
description?: string | undefined;
|
|
1521
1521
|
}, {
|
|
1522
|
-
display_name: string;
|
|
1523
1522
|
manufacturer_id: string;
|
|
1523
|
+
display_name: string;
|
|
1524
1524
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1525
1525
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1526
1526
|
is_connect_webview_supported: boolean;
|
|
@@ -1649,8 +1649,8 @@ declare const routes: {
|
|
|
1649
1649
|
description: string;
|
|
1650
1650
|
device_model_id: string;
|
|
1651
1651
|
manufacturer: {
|
|
1652
|
-
display_name: string;
|
|
1653
1652
|
manufacturer_id: string;
|
|
1653
|
+
display_name: string;
|
|
1654
1654
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1655
1655
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1656
1656
|
is_connect_webview_supported: boolean;
|
|
@@ -1709,8 +1709,8 @@ declare const routes: {
|
|
|
1709
1709
|
description: string;
|
|
1710
1710
|
device_model_id: string;
|
|
1711
1711
|
manufacturer: {
|
|
1712
|
-
display_name: string;
|
|
1713
1712
|
manufacturer_id: string;
|
|
1713
|
+
display_name: string;
|
|
1714
1714
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1715
1715
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
1716
1716
|
is_connect_webview_supported: boolean;
|
|
@@ -1886,7 +1886,7 @@ declare const routes: {
|
|
|
1886
1886
|
has_humidity_sensor: boolean;
|
|
1887
1887
|
has_temperature_sensor: boolean;
|
|
1888
1888
|
has_occupancy_detection: boolean;
|
|
1889
|
-
available_modes: ("heat" | "cool" | "
|
|
1889
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
1890
1890
|
is_heat_pump_compatible: boolean;
|
|
1891
1891
|
supports_demand_response: boolean;
|
|
1892
1892
|
supports_emergency_heating_mode: boolean;
|
|
@@ -1894,7 +1894,7 @@ declare const routes: {
|
|
|
1894
1894
|
has_humidity_sensor: boolean;
|
|
1895
1895
|
has_temperature_sensor: boolean;
|
|
1896
1896
|
has_occupancy_detection: boolean;
|
|
1897
|
-
available_modes: ("heat" | "cool" | "
|
|
1897
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
1898
1898
|
is_heat_pump_compatible: boolean;
|
|
1899
1899
|
supports_demand_response: boolean;
|
|
1900
1900
|
supports_emergency_heating_mode: boolean;
|
|
@@ -1921,7 +1921,7 @@ declare const routes: {
|
|
|
1921
1921
|
has_humidity_sensor: boolean;
|
|
1922
1922
|
has_temperature_sensor: boolean;
|
|
1923
1923
|
has_occupancy_detection: boolean;
|
|
1924
|
-
available_modes: ("heat" | "cool" | "
|
|
1924
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
1925
1925
|
is_heat_pump_compatible: boolean;
|
|
1926
1926
|
supports_demand_response: boolean;
|
|
1927
1927
|
supports_emergency_heating_mode: boolean;
|
|
@@ -1939,7 +1939,7 @@ declare const routes: {
|
|
|
1939
1939
|
has_humidity_sensor: boolean;
|
|
1940
1940
|
has_temperature_sensor: boolean;
|
|
1941
1941
|
has_occupancy_detection: boolean;
|
|
1942
|
-
available_modes: ("heat" | "cool" | "
|
|
1942
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
1943
1943
|
is_heat_pump_compatible: boolean;
|
|
1944
1944
|
supports_demand_response: boolean;
|
|
1945
1945
|
supports_emergency_heating_mode: boolean;
|
|
@@ -2032,8 +2032,8 @@ declare const routes: {
|
|
|
2032
2032
|
description: string;
|
|
2033
2033
|
device_model_id: string;
|
|
2034
2034
|
manufacturer: {
|
|
2035
|
-
display_name: string;
|
|
2036
2035
|
manufacturer_id: string;
|
|
2036
|
+
display_name: string;
|
|
2037
2037
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2038
2038
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2039
2039
|
is_connect_webview_supported: boolean;
|
|
@@ -2118,7 +2118,7 @@ declare const routes: {
|
|
|
2118
2118
|
has_humidity_sensor: boolean;
|
|
2119
2119
|
has_temperature_sensor: boolean;
|
|
2120
2120
|
has_occupancy_detection: boolean;
|
|
2121
|
-
available_modes: ("heat" | "cool" | "
|
|
2121
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
2122
2122
|
is_heat_pump_compatible: boolean;
|
|
2123
2123
|
supports_demand_response: boolean;
|
|
2124
2124
|
supports_emergency_heating_mode: boolean;
|
|
@@ -2155,8 +2155,8 @@ declare const routes: {
|
|
|
2155
2155
|
description: string;
|
|
2156
2156
|
device_model_id: string;
|
|
2157
2157
|
manufacturer: {
|
|
2158
|
-
display_name: string;
|
|
2159
2158
|
manufacturer_id: string;
|
|
2159
|
+
display_name: string;
|
|
2160
2160
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2161
2161
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2162
2162
|
is_connect_webview_supported: boolean;
|
|
@@ -2241,7 +2241,7 @@ declare const routes: {
|
|
|
2241
2241
|
has_humidity_sensor: boolean;
|
|
2242
2242
|
has_temperature_sensor: boolean;
|
|
2243
2243
|
has_occupancy_detection: boolean;
|
|
2244
|
-
available_modes: ("heat" | "cool" | "
|
|
2244
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
2245
2245
|
is_heat_pump_compatible: boolean;
|
|
2246
2246
|
supports_demand_response: boolean;
|
|
2247
2247
|
supports_emergency_heating_mode: boolean;
|
|
@@ -2289,7 +2289,7 @@ declare const routes: {
|
|
|
2289
2289
|
exclude_if: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2290
2290
|
}, "strip", z.ZodTypeAny, {
|
|
2291
2291
|
manufacturer_id?: string | undefined;
|
|
2292
|
-
main_category?: "
|
|
2292
|
+
main_category?: "smartlock" | "sensor" | "thermostat" | "relay" | "intercom" | "accessory" | undefined;
|
|
2293
2293
|
manufacturer_ids?: string[] | undefined;
|
|
2294
2294
|
integration_status?: "stable" | "beta" | "planned" | "unsupported" | "inquire" | undefined;
|
|
2295
2295
|
integration_support_levels?: ("stable" | "beta" | "planned" | "unsupported" | "inquire")[] | undefined;
|
|
@@ -2298,7 +2298,7 @@ declare const routes: {
|
|
|
2298
2298
|
exclude_if?: string[] | undefined;
|
|
2299
2299
|
}, {
|
|
2300
2300
|
manufacturer_id?: string | undefined;
|
|
2301
|
-
main_category?: "
|
|
2301
|
+
main_category?: "smartlock" | "sensor" | "thermostat" | "relay" | "intercom" | "accessory" | undefined;
|
|
2302
2302
|
manufacturer_ids?: string[] | undefined;
|
|
2303
2303
|
integration_status?: "stable" | "beta" | "planned" | "unsupported" | "inquire" | undefined;
|
|
2304
2304
|
integration_support_levels?: ("stable" | "beta" | "planned" | "unsupported" | "inquire")[] | undefined;
|
|
@@ -2353,8 +2353,8 @@ declare const routes: {
|
|
|
2353
2353
|
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
2354
2354
|
description: z.ZodOptional<z.ZodString>;
|
|
2355
2355
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
2356
|
-
display_name: string;
|
|
2357
2356
|
manufacturer_id: string;
|
|
2357
|
+
display_name: string;
|
|
2358
2358
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2359
2359
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2360
2360
|
is_connect_webview_supported: boolean;
|
|
@@ -2380,8 +2380,8 @@ declare const routes: {
|
|
|
2380
2380
|
seam_api_guide?: string | undefined;
|
|
2381
2381
|
description?: string | undefined;
|
|
2382
2382
|
}, {
|
|
2383
|
-
display_name: string;
|
|
2384
2383
|
manufacturer_id: string;
|
|
2384
|
+
display_name: string;
|
|
2385
2385
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2386
2386
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2387
2387
|
is_connect_webview_supported: boolean;
|
|
@@ -2510,8 +2510,8 @@ declare const routes: {
|
|
|
2510
2510
|
description: string;
|
|
2511
2511
|
device_model_id: string;
|
|
2512
2512
|
manufacturer: {
|
|
2513
|
-
display_name: string;
|
|
2514
2513
|
manufacturer_id: string;
|
|
2514
|
+
display_name: string;
|
|
2515
2515
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2516
2516
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2517
2517
|
is_connect_webview_supported: boolean;
|
|
@@ -2570,8 +2570,8 @@ declare const routes: {
|
|
|
2570
2570
|
description: string;
|
|
2571
2571
|
device_model_id: string;
|
|
2572
2572
|
manufacturer: {
|
|
2573
|
-
display_name: string;
|
|
2574
2573
|
manufacturer_id: string;
|
|
2574
|
+
display_name: string;
|
|
2575
2575
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2576
2576
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2577
2577
|
is_connect_webview_supported: boolean;
|
|
@@ -2747,7 +2747,7 @@ declare const routes: {
|
|
|
2747
2747
|
has_humidity_sensor: boolean;
|
|
2748
2748
|
has_temperature_sensor: boolean;
|
|
2749
2749
|
has_occupancy_detection: boolean;
|
|
2750
|
-
available_modes: ("heat" | "cool" | "
|
|
2750
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
2751
2751
|
is_heat_pump_compatible: boolean;
|
|
2752
2752
|
supports_demand_response: boolean;
|
|
2753
2753
|
supports_emergency_heating_mode: boolean;
|
|
@@ -2755,7 +2755,7 @@ declare const routes: {
|
|
|
2755
2755
|
has_humidity_sensor: boolean;
|
|
2756
2756
|
has_temperature_sensor: boolean;
|
|
2757
2757
|
has_occupancy_detection: boolean;
|
|
2758
|
-
available_modes: ("heat" | "cool" | "
|
|
2758
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
2759
2759
|
is_heat_pump_compatible: boolean;
|
|
2760
2760
|
supports_demand_response: boolean;
|
|
2761
2761
|
supports_emergency_heating_mode: boolean;
|
|
@@ -2782,7 +2782,7 @@ declare const routes: {
|
|
|
2782
2782
|
has_humidity_sensor: boolean;
|
|
2783
2783
|
has_temperature_sensor: boolean;
|
|
2784
2784
|
has_occupancy_detection: boolean;
|
|
2785
|
-
available_modes: ("heat" | "cool" | "
|
|
2785
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
2786
2786
|
is_heat_pump_compatible: boolean;
|
|
2787
2787
|
supports_demand_response: boolean;
|
|
2788
2788
|
supports_emergency_heating_mode: boolean;
|
|
@@ -2800,7 +2800,7 @@ declare const routes: {
|
|
|
2800
2800
|
has_humidity_sensor: boolean;
|
|
2801
2801
|
has_temperature_sensor: boolean;
|
|
2802
2802
|
has_occupancy_detection: boolean;
|
|
2803
|
-
available_modes: ("heat" | "cool" | "
|
|
2803
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
2804
2804
|
is_heat_pump_compatible: boolean;
|
|
2805
2805
|
supports_demand_response: boolean;
|
|
2806
2806
|
supports_emergency_heating_mode: boolean;
|
|
@@ -2893,8 +2893,8 @@ declare const routes: {
|
|
|
2893
2893
|
description: string;
|
|
2894
2894
|
device_model_id: string;
|
|
2895
2895
|
manufacturer: {
|
|
2896
|
-
display_name: string;
|
|
2897
2896
|
manufacturer_id: string;
|
|
2897
|
+
display_name: string;
|
|
2898
2898
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2899
2899
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
2900
2900
|
is_connect_webview_supported: boolean;
|
|
@@ -2979,7 +2979,7 @@ declare const routes: {
|
|
|
2979
2979
|
has_humidity_sensor: boolean;
|
|
2980
2980
|
has_temperature_sensor: boolean;
|
|
2981
2981
|
has_occupancy_detection: boolean;
|
|
2982
|
-
available_modes: ("heat" | "cool" | "
|
|
2982
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
2983
2983
|
is_heat_pump_compatible: boolean;
|
|
2984
2984
|
supports_demand_response: boolean;
|
|
2985
2985
|
supports_emergency_heating_mode: boolean;
|
|
@@ -3016,8 +3016,8 @@ declare const routes: {
|
|
|
3016
3016
|
description: string;
|
|
3017
3017
|
device_model_id: string;
|
|
3018
3018
|
manufacturer: {
|
|
3019
|
-
display_name: string;
|
|
3020
3019
|
manufacturer_id: string;
|
|
3020
|
+
display_name: string;
|
|
3021
3021
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3022
3022
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3023
3023
|
is_connect_webview_supported: boolean;
|
|
@@ -3102,7 +3102,7 @@ declare const routes: {
|
|
|
3102
3102
|
has_humidity_sensor: boolean;
|
|
3103
3103
|
has_temperature_sensor: boolean;
|
|
3104
3104
|
has_occupancy_detection: boolean;
|
|
3105
|
-
available_modes: ("heat" | "cool" | "
|
|
3105
|
+
available_modes: ("heat" | "cool" | "fan" | "eco")[];
|
|
3106
3106
|
is_heat_pump_compatible: boolean;
|
|
3107
3107
|
supports_demand_response: boolean;
|
|
3108
3108
|
supports_emergency_heating_mode: boolean;
|
|
@@ -3190,8 +3190,8 @@ declare const routes: {
|
|
|
3190
3190
|
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
3191
3191
|
description: z.ZodOptional<z.ZodString>;
|
|
3192
3192
|
}, "strip", z.ZodTypeAny, {
|
|
3193
|
-
display_name: string;
|
|
3194
3193
|
manufacturer_id: string;
|
|
3194
|
+
display_name: string;
|
|
3195
3195
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3196
3196
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3197
3197
|
is_connect_webview_supported: boolean;
|
|
@@ -3218,8 +3218,8 @@ declare const routes: {
|
|
|
3218
3218
|
seam_api_guide?: string | undefined;
|
|
3219
3219
|
description?: string | undefined;
|
|
3220
3220
|
}, {
|
|
3221
|
-
display_name: string;
|
|
3222
3221
|
manufacturer_id: string;
|
|
3222
|
+
display_name: string;
|
|
3223
3223
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3224
3224
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3225
3225
|
is_connect_webview_supported: boolean;
|
|
@@ -3248,8 +3248,8 @@ declare const routes: {
|
|
|
3248
3248
|
}>;
|
|
3249
3249
|
}, "strip", z.ZodTypeAny, {
|
|
3250
3250
|
manufacturer: {
|
|
3251
|
-
display_name: string;
|
|
3252
3251
|
manufacturer_id: string;
|
|
3252
|
+
display_name: string;
|
|
3253
3253
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3254
3254
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3255
3255
|
is_connect_webview_supported: boolean;
|
|
@@ -3278,8 +3278,8 @@ declare const routes: {
|
|
|
3278
3278
|
};
|
|
3279
3279
|
}, {
|
|
3280
3280
|
manufacturer: {
|
|
3281
|
-
display_name: string;
|
|
3282
3281
|
manufacturer_id: string;
|
|
3282
|
+
display_name: string;
|
|
3283
3283
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3284
3284
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3285
3285
|
is_connect_webview_supported: boolean;
|
|
@@ -3370,8 +3370,8 @@ declare const routes: {
|
|
|
3370
3370
|
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
3371
3371
|
description: z.ZodOptional<z.ZodString>;
|
|
3372
3372
|
}, "strip", z.ZodTypeAny, {
|
|
3373
|
-
display_name: string;
|
|
3374
3373
|
manufacturer_id: string;
|
|
3374
|
+
display_name: string;
|
|
3375
3375
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3376
3376
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3377
3377
|
is_connect_webview_supported: boolean;
|
|
@@ -3398,8 +3398,8 @@ declare const routes: {
|
|
|
3398
3398
|
seam_api_guide?: string | undefined;
|
|
3399
3399
|
description?: string | undefined;
|
|
3400
3400
|
}, {
|
|
3401
|
-
display_name: string;
|
|
3402
3401
|
manufacturer_id: string;
|
|
3402
|
+
display_name: string;
|
|
3403
3403
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3404
3404
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3405
3405
|
is_connect_webview_supported: boolean;
|
|
@@ -3428,8 +3428,8 @@ declare const routes: {
|
|
|
3428
3428
|
}>, "many">;
|
|
3429
3429
|
}, "strip", z.ZodTypeAny, {
|
|
3430
3430
|
manufacturers: {
|
|
3431
|
-
display_name: string;
|
|
3432
3431
|
manufacturer_id: string;
|
|
3432
|
+
display_name: string;
|
|
3433
3433
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3434
3434
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3435
3435
|
is_connect_webview_supported: boolean;
|
|
@@ -3458,8 +3458,8 @@ declare const routes: {
|
|
|
3458
3458
|
}[];
|
|
3459
3459
|
}, {
|
|
3460
3460
|
manufacturers: {
|
|
3461
|
-
display_name: string;
|
|
3462
3461
|
manufacturer_id: string;
|
|
3462
|
+
display_name: string;
|
|
3463
3463
|
integration: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3464
3464
|
integration_support_level: "stable" | "beta" | "planned" | "unsupported" | "inquire";
|
|
3465
3465
|
is_connect_webview_supported: boolean;
|