@seamapi/types 1.223.0 → 1.225.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +149 -574
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +481 -3562
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +10 -506
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +23 -1425
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +6 -25
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +31 -763
- package/lib/seam/connect/models/devices/phone.d.ts +10 -506
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +10 -506
- package/lib/seam/connect/openapi.d.ts +229 -642
- package/lib/seam/connect/openapi.js +135 -535
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +154 -1594
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +35 -67
- package/src/lib/seam/connect/openapi.ts +136 -538
- package/src/lib/seam/connect/route-types.ts +900 -3228
|
@@ -1260,16 +1260,10 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1260
1260
|
level: number;
|
|
1261
1261
|
} | undefined;
|
|
1262
1262
|
door_open?: boolean | undefined;
|
|
1263
|
-
}>, z.
|
|
1264
|
-
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1265
|
-
min_cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1266
|
-
max_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1267
|
-
max_cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1263
|
+
}>, z.ZodObject<{
|
|
1268
1264
|
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1269
1265
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1270
1266
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1271
|
-
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1272
|
-
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1273
1267
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1274
1268
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1275
1269
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1304,7 +1298,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1304
1298
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1305
1299
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1306
1300
|
}>>;
|
|
1307
|
-
default_climate_setting: z.ZodOptional<z.
|
|
1301
|
+
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1308
1302
|
automatic_heating_enabled: z.ZodBoolean;
|
|
1309
1303
|
automatic_cooling_enabled: z.ZodBoolean;
|
|
1310
1304
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
@@ -1331,9 +1325,9 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1331
1325
|
heating_set_point_celsius?: number | undefined;
|
|
1332
1326
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1333
1327
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1334
|
-
}
|
|
1328
|
+
}>>;
|
|
1335
1329
|
is_climate_setting_schedule_active: z.ZodOptional<z.ZodBoolean>;
|
|
1336
|
-
active_climate_setting_schedule: z.ZodOptional<z.
|
|
1330
|
+
active_climate_setting_schedule: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1337
1331
|
climate_setting_schedule_id: z.ZodString;
|
|
1338
1332
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
1339
1333
|
device_id: z.ZodString;
|
|
@@ -1385,24 +1379,22 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1385
1379
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1386
1380
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1387
1381
|
manual_override_allowed?: boolean | undefined;
|
|
1388
|
-
}
|
|
1382
|
+
}>>;
|
|
1383
|
+
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1384
|
+
min_cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1385
|
+
max_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1386
|
+
max_cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1389
1387
|
min_heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1390
1388
|
min_heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1391
1389
|
max_heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1392
1390
|
max_heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1393
|
-
is_cooling_available: z.ZodOptional<z.ZodLiteral<true>>;
|
|
1394
|
-
is_heating_available: z.ZodOptional<z.ZodLiteral<true>>;
|
|
1395
1391
|
min_heating_cooling_delta_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1396
1392
|
min_heating_cooling_delta_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1397
1393
|
}, "strip", z.ZodTypeAny, {
|
|
1398
1394
|
temperature_fahrenheit?: number | undefined;
|
|
1399
1395
|
temperature_celsius?: number | undefined;
|
|
1400
1396
|
relative_humidity?: number | undefined;
|
|
1401
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
1402
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
1403
1397
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1404
|
-
is_heating_available?: true | undefined;
|
|
1405
|
-
is_cooling_available?: true | undefined;
|
|
1406
1398
|
is_heating?: boolean | undefined;
|
|
1407
1399
|
is_cooling?: boolean | undefined;
|
|
1408
1400
|
is_fan_running?: boolean | undefined;
|
|
@@ -1461,11 +1453,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1461
1453
|
temperature_fahrenheit?: number | undefined;
|
|
1462
1454
|
temperature_celsius?: number | undefined;
|
|
1463
1455
|
relative_humidity?: number | undefined;
|
|
1464
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
1465
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
1466
1456
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1467
|
-
is_heating_available?: true | undefined;
|
|
1468
|
-
is_cooling_available?: true | undefined;
|
|
1469
1457
|
is_heating?: boolean | undefined;
|
|
1470
1458
|
is_cooling?: boolean | undefined;
|
|
1471
1459
|
is_fan_running?: boolean | undefined;
|
|
@@ -1520,491 +1508,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1520
1508
|
max_heating_set_point_fahrenheit?: number | undefined;
|
|
1521
1509
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
1522
1510
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
1523
|
-
}
|
|
1524
|
-
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1525
|
-
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1526
|
-
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1527
|
-
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1528
|
-
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1529
|
-
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1530
|
-
is_cooling_available: z.ZodOptional<z.ZodLiteral<false>>;
|
|
1531
|
-
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1532
|
-
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1533
|
-
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
1534
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1535
|
-
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
1536
|
-
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1537
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
1538
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
1539
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1540
|
-
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1541
|
-
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1542
|
-
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1543
|
-
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1544
|
-
manual_override_allowed: z.ZodBoolean;
|
|
1545
|
-
}, "strip", z.ZodTypeAny, {
|
|
1546
|
-
automatic_heating_enabled: boolean;
|
|
1547
|
-
automatic_cooling_enabled: boolean;
|
|
1548
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1549
|
-
manual_override_allowed: boolean;
|
|
1550
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1551
|
-
heating_set_point_celsius?: number | undefined;
|
|
1552
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1553
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1554
|
-
}, {
|
|
1555
|
-
automatic_heating_enabled: boolean;
|
|
1556
|
-
automatic_cooling_enabled: boolean;
|
|
1557
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1558
|
-
manual_override_allowed: boolean;
|
|
1559
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1560
|
-
heating_set_point_celsius?: number | undefined;
|
|
1561
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1562
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1563
|
-
}>>;
|
|
1564
|
-
default_climate_setting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1565
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
1566
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
1567
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1568
|
-
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1569
|
-
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1570
|
-
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1571
|
-
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1572
|
-
manual_override_allowed: z.ZodBoolean;
|
|
1573
|
-
}, "strip", z.ZodTypeAny, {
|
|
1574
|
-
automatic_heating_enabled: boolean;
|
|
1575
|
-
automatic_cooling_enabled: boolean;
|
|
1576
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1577
|
-
manual_override_allowed: boolean;
|
|
1578
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1579
|
-
heating_set_point_celsius?: number | undefined;
|
|
1580
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1581
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1582
|
-
}, {
|
|
1583
|
-
automatic_heating_enabled: boolean;
|
|
1584
|
-
automatic_cooling_enabled: boolean;
|
|
1585
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1586
|
-
manual_override_allowed: boolean;
|
|
1587
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1588
|
-
heating_set_point_celsius?: number | undefined;
|
|
1589
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1590
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1591
|
-
}>>>;
|
|
1592
|
-
is_climate_setting_schedule_active: z.ZodOptional<z.ZodBoolean>;
|
|
1593
|
-
active_climate_setting_schedule: z.ZodOptional<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1594
|
-
climate_setting_schedule_id: z.ZodString;
|
|
1595
|
-
schedule_type: z.ZodLiteral<"time_bound">;
|
|
1596
|
-
device_id: z.ZodString;
|
|
1597
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1598
|
-
schedule_starts_at: z.ZodString;
|
|
1599
|
-
schedule_ends_at: z.ZodString;
|
|
1600
|
-
created_at: z.ZodString;
|
|
1601
|
-
errors: z.ZodAny;
|
|
1602
|
-
}, {
|
|
1603
|
-
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1604
|
-
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1605
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1606
|
-
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1607
|
-
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1608
|
-
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1609
|
-
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1610
|
-
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
1611
|
-
}>, "strip", z.ZodTypeAny, {
|
|
1612
|
-
created_at: string;
|
|
1613
|
-
climate_setting_schedule_id: string;
|
|
1614
|
-
schedule_type: "time_bound";
|
|
1615
|
-
device_id: string;
|
|
1616
|
-
schedule_starts_at: string;
|
|
1617
|
-
schedule_ends_at: string;
|
|
1618
|
-
name?: string | undefined;
|
|
1619
|
-
errors?: any;
|
|
1620
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1621
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1622
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1623
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1624
|
-
heating_set_point_celsius?: number | undefined;
|
|
1625
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1626
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1627
|
-
manual_override_allowed?: boolean | undefined;
|
|
1628
|
-
}, {
|
|
1629
|
-
created_at: string;
|
|
1630
|
-
climate_setting_schedule_id: string;
|
|
1631
|
-
schedule_type: "time_bound";
|
|
1632
|
-
device_id: string;
|
|
1633
|
-
schedule_starts_at: string;
|
|
1634
|
-
schedule_ends_at: string;
|
|
1635
|
-
name?: string | undefined;
|
|
1636
|
-
errors?: any;
|
|
1637
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1638
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1639
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1640
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1641
|
-
heating_set_point_celsius?: number | undefined;
|
|
1642
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1643
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1644
|
-
manual_override_allowed?: boolean | undefined;
|
|
1645
|
-
}>>>;
|
|
1646
|
-
min_heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1647
|
-
min_heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1648
|
-
max_heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1649
|
-
max_heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1650
|
-
is_heating_available: z.ZodOptional<z.ZodLiteral<true>>;
|
|
1651
|
-
}, "strip", z.ZodTypeAny, {
|
|
1652
|
-
temperature_fahrenheit?: number | undefined;
|
|
1653
|
-
temperature_celsius?: number | undefined;
|
|
1654
|
-
relative_humidity?: number | undefined;
|
|
1655
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
1656
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
1657
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1658
|
-
is_heating_available?: true | undefined;
|
|
1659
|
-
is_cooling_available?: false | undefined;
|
|
1660
|
-
is_heating?: boolean | undefined;
|
|
1661
|
-
is_cooling?: boolean | undefined;
|
|
1662
|
-
is_fan_running?: boolean | undefined;
|
|
1663
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1664
|
-
is_temporary_manual_override_active?: boolean | undefined;
|
|
1665
|
-
current_climate_setting?: {
|
|
1666
|
-
automatic_heating_enabled: boolean;
|
|
1667
|
-
automatic_cooling_enabled: boolean;
|
|
1668
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1669
|
-
manual_override_allowed: boolean;
|
|
1670
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1671
|
-
heating_set_point_celsius?: number | undefined;
|
|
1672
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1673
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1674
|
-
} | undefined;
|
|
1675
|
-
default_climate_setting?: {
|
|
1676
|
-
automatic_heating_enabled: boolean;
|
|
1677
|
-
automatic_cooling_enabled: boolean;
|
|
1678
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1679
|
-
manual_override_allowed: boolean;
|
|
1680
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1681
|
-
heating_set_point_celsius?: number | undefined;
|
|
1682
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1683
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1684
|
-
} | undefined;
|
|
1685
|
-
is_climate_setting_schedule_active?: boolean | undefined;
|
|
1686
|
-
active_climate_setting_schedule?: {
|
|
1687
|
-
created_at: string;
|
|
1688
|
-
climate_setting_schedule_id: string;
|
|
1689
|
-
schedule_type: "time_bound";
|
|
1690
|
-
device_id: string;
|
|
1691
|
-
schedule_starts_at: string;
|
|
1692
|
-
schedule_ends_at: string;
|
|
1693
|
-
name?: string | undefined;
|
|
1694
|
-
errors?: any;
|
|
1695
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1696
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1697
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1698
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1699
|
-
heating_set_point_celsius?: number | undefined;
|
|
1700
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1701
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1702
|
-
manual_override_allowed?: boolean | undefined;
|
|
1703
|
-
} | undefined;
|
|
1704
|
-
min_heating_set_point_celsius?: number | undefined;
|
|
1705
|
-
min_heating_set_point_fahrenheit?: number | undefined;
|
|
1706
|
-
max_heating_set_point_celsius?: number | undefined;
|
|
1707
|
-
max_heating_set_point_fahrenheit?: number | undefined;
|
|
1708
|
-
}, {
|
|
1709
|
-
temperature_fahrenheit?: number | undefined;
|
|
1710
|
-
temperature_celsius?: number | undefined;
|
|
1711
|
-
relative_humidity?: number | undefined;
|
|
1712
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
1713
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
1714
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1715
|
-
is_heating_available?: true | undefined;
|
|
1716
|
-
is_cooling_available?: false | undefined;
|
|
1717
|
-
is_heating?: boolean | undefined;
|
|
1718
|
-
is_cooling?: boolean | undefined;
|
|
1719
|
-
is_fan_running?: boolean | undefined;
|
|
1720
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1721
|
-
is_temporary_manual_override_active?: boolean | undefined;
|
|
1722
|
-
current_climate_setting?: {
|
|
1723
|
-
automatic_heating_enabled: boolean;
|
|
1724
|
-
automatic_cooling_enabled: boolean;
|
|
1725
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1726
|
-
manual_override_allowed: boolean;
|
|
1727
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1728
|
-
heating_set_point_celsius?: number | undefined;
|
|
1729
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1730
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1731
|
-
} | undefined;
|
|
1732
|
-
default_climate_setting?: {
|
|
1733
|
-
automatic_heating_enabled: boolean;
|
|
1734
|
-
automatic_cooling_enabled: boolean;
|
|
1735
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1736
|
-
manual_override_allowed: boolean;
|
|
1737
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1738
|
-
heating_set_point_celsius?: number | undefined;
|
|
1739
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1740
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1741
|
-
} | undefined;
|
|
1742
|
-
is_climate_setting_schedule_active?: boolean | undefined;
|
|
1743
|
-
active_climate_setting_schedule?: {
|
|
1744
|
-
created_at: string;
|
|
1745
|
-
climate_setting_schedule_id: string;
|
|
1746
|
-
schedule_type: "time_bound";
|
|
1747
|
-
device_id: string;
|
|
1748
|
-
schedule_starts_at: string;
|
|
1749
|
-
schedule_ends_at: string;
|
|
1750
|
-
name?: string | undefined;
|
|
1751
|
-
errors?: any;
|
|
1752
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1753
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1754
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1755
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1756
|
-
heating_set_point_celsius?: number | undefined;
|
|
1757
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1758
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1759
|
-
manual_override_allowed?: boolean | undefined;
|
|
1760
|
-
} | undefined;
|
|
1761
|
-
min_heating_set_point_celsius?: number | undefined;
|
|
1762
|
-
min_heating_set_point_fahrenheit?: number | undefined;
|
|
1763
|
-
max_heating_set_point_celsius?: number | undefined;
|
|
1764
|
-
max_heating_set_point_fahrenheit?: number | undefined;
|
|
1765
|
-
}>, z.ZodObject<{
|
|
1766
|
-
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1767
|
-
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1768
|
-
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1769
|
-
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1770
|
-
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1771
|
-
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1772
|
-
is_heating_available: z.ZodOptional<z.ZodLiteral<false>>;
|
|
1773
|
-
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1774
|
-
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1775
|
-
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
1776
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1777
|
-
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
1778
|
-
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1779
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
1780
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
1781
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1782
|
-
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1783
|
-
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1784
|
-
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1785
|
-
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1786
|
-
manual_override_allowed: z.ZodBoolean;
|
|
1787
|
-
}, "strip", z.ZodTypeAny, {
|
|
1788
|
-
automatic_heating_enabled: boolean;
|
|
1789
|
-
automatic_cooling_enabled: boolean;
|
|
1790
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1791
|
-
manual_override_allowed: boolean;
|
|
1792
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1793
|
-
heating_set_point_celsius?: number | undefined;
|
|
1794
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1795
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1796
|
-
}, {
|
|
1797
|
-
automatic_heating_enabled: boolean;
|
|
1798
|
-
automatic_cooling_enabled: boolean;
|
|
1799
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1800
|
-
manual_override_allowed: boolean;
|
|
1801
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1802
|
-
heating_set_point_celsius?: number | undefined;
|
|
1803
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1804
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1805
|
-
}>>;
|
|
1806
|
-
default_climate_setting: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1807
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
1808
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
1809
|
-
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1810
|
-
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1811
|
-
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1812
|
-
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1813
|
-
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1814
|
-
manual_override_allowed: z.ZodBoolean;
|
|
1815
|
-
}, "strip", z.ZodTypeAny, {
|
|
1816
|
-
automatic_heating_enabled: boolean;
|
|
1817
|
-
automatic_cooling_enabled: boolean;
|
|
1818
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1819
|
-
manual_override_allowed: boolean;
|
|
1820
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1821
|
-
heating_set_point_celsius?: number | undefined;
|
|
1822
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1823
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1824
|
-
}, {
|
|
1825
|
-
automatic_heating_enabled: boolean;
|
|
1826
|
-
automatic_cooling_enabled: boolean;
|
|
1827
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1828
|
-
manual_override_allowed: boolean;
|
|
1829
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1830
|
-
heating_set_point_celsius?: number | undefined;
|
|
1831
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1832
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1833
|
-
}>>>;
|
|
1834
|
-
is_climate_setting_schedule_active: z.ZodOptional<z.ZodBoolean>;
|
|
1835
|
-
active_climate_setting_schedule: z.ZodOptional<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
1836
|
-
climate_setting_schedule_id: z.ZodString;
|
|
1837
|
-
schedule_type: z.ZodLiteral<"time_bound">;
|
|
1838
|
-
device_id: z.ZodString;
|
|
1839
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1840
|
-
schedule_starts_at: z.ZodString;
|
|
1841
|
-
schedule_ends_at: z.ZodString;
|
|
1842
|
-
created_at: z.ZodString;
|
|
1843
|
-
errors: z.ZodAny;
|
|
1844
|
-
}, {
|
|
1845
|
-
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1846
|
-
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1847
|
-
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1848
|
-
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1849
|
-
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1850
|
-
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1851
|
-
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1852
|
-
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
1853
|
-
}>, "strip", z.ZodTypeAny, {
|
|
1854
|
-
created_at: string;
|
|
1855
|
-
climate_setting_schedule_id: string;
|
|
1856
|
-
schedule_type: "time_bound";
|
|
1857
|
-
device_id: string;
|
|
1858
|
-
schedule_starts_at: string;
|
|
1859
|
-
schedule_ends_at: string;
|
|
1860
|
-
name?: string | undefined;
|
|
1861
|
-
errors?: any;
|
|
1862
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1863
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1864
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1865
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1866
|
-
heating_set_point_celsius?: number | undefined;
|
|
1867
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1868
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1869
|
-
manual_override_allowed?: boolean | undefined;
|
|
1870
|
-
}, {
|
|
1871
|
-
created_at: string;
|
|
1872
|
-
climate_setting_schedule_id: string;
|
|
1873
|
-
schedule_type: "time_bound";
|
|
1874
|
-
device_id: string;
|
|
1875
|
-
schedule_starts_at: string;
|
|
1876
|
-
schedule_ends_at: string;
|
|
1877
|
-
name?: string | undefined;
|
|
1878
|
-
errors?: any;
|
|
1879
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1880
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1881
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1882
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1883
|
-
heating_set_point_celsius?: number | undefined;
|
|
1884
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1885
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1886
|
-
manual_override_allowed?: boolean | undefined;
|
|
1887
|
-
}>>>;
|
|
1888
|
-
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1889
|
-
min_cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1890
|
-
max_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1891
|
-
max_cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1892
|
-
is_cooling_available: z.ZodOptional<z.ZodLiteral<true>>;
|
|
1893
|
-
}, "strip", z.ZodTypeAny, {
|
|
1894
|
-
temperature_fahrenheit?: number | undefined;
|
|
1895
|
-
temperature_celsius?: number | undefined;
|
|
1896
|
-
relative_humidity?: number | undefined;
|
|
1897
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
1898
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
1899
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1900
|
-
is_heating_available?: false | undefined;
|
|
1901
|
-
is_cooling_available?: true | undefined;
|
|
1902
|
-
is_heating?: boolean | undefined;
|
|
1903
|
-
is_cooling?: boolean | undefined;
|
|
1904
|
-
is_fan_running?: boolean | undefined;
|
|
1905
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1906
|
-
is_temporary_manual_override_active?: boolean | undefined;
|
|
1907
|
-
current_climate_setting?: {
|
|
1908
|
-
automatic_heating_enabled: boolean;
|
|
1909
|
-
automatic_cooling_enabled: boolean;
|
|
1910
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1911
|
-
manual_override_allowed: boolean;
|
|
1912
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1913
|
-
heating_set_point_celsius?: number | undefined;
|
|
1914
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1915
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1916
|
-
} | undefined;
|
|
1917
|
-
default_climate_setting?: {
|
|
1918
|
-
automatic_heating_enabled: boolean;
|
|
1919
|
-
automatic_cooling_enabled: boolean;
|
|
1920
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1921
|
-
manual_override_allowed: boolean;
|
|
1922
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1923
|
-
heating_set_point_celsius?: number | undefined;
|
|
1924
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1925
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1926
|
-
} | undefined;
|
|
1927
|
-
is_climate_setting_schedule_active?: boolean | undefined;
|
|
1928
|
-
active_climate_setting_schedule?: {
|
|
1929
|
-
created_at: string;
|
|
1930
|
-
climate_setting_schedule_id: string;
|
|
1931
|
-
schedule_type: "time_bound";
|
|
1932
|
-
device_id: string;
|
|
1933
|
-
schedule_starts_at: string;
|
|
1934
|
-
schedule_ends_at: string;
|
|
1935
|
-
name?: string | undefined;
|
|
1936
|
-
errors?: any;
|
|
1937
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1938
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1939
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1940
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1941
|
-
heating_set_point_celsius?: number | undefined;
|
|
1942
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1943
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1944
|
-
manual_override_allowed?: boolean | undefined;
|
|
1945
|
-
} | undefined;
|
|
1946
|
-
min_cooling_set_point_celsius?: number | undefined;
|
|
1947
|
-
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
1948
|
-
max_cooling_set_point_celsius?: number | undefined;
|
|
1949
|
-
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
1950
|
-
}, {
|
|
1951
|
-
temperature_fahrenheit?: number | undefined;
|
|
1952
|
-
temperature_celsius?: number | undefined;
|
|
1953
|
-
relative_humidity?: number | undefined;
|
|
1954
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
1955
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
1956
|
-
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1957
|
-
is_heating_available?: false | undefined;
|
|
1958
|
-
is_cooling_available?: true | undefined;
|
|
1959
|
-
is_heating?: boolean | undefined;
|
|
1960
|
-
is_cooling?: boolean | undefined;
|
|
1961
|
-
is_fan_running?: boolean | undefined;
|
|
1962
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1963
|
-
is_temporary_manual_override_active?: boolean | undefined;
|
|
1964
|
-
current_climate_setting?: {
|
|
1965
|
-
automatic_heating_enabled: boolean;
|
|
1966
|
-
automatic_cooling_enabled: boolean;
|
|
1967
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1968
|
-
manual_override_allowed: boolean;
|
|
1969
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1970
|
-
heating_set_point_celsius?: number | undefined;
|
|
1971
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1972
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1973
|
-
} | undefined;
|
|
1974
|
-
default_climate_setting?: {
|
|
1975
|
-
automatic_heating_enabled: boolean;
|
|
1976
|
-
automatic_cooling_enabled: boolean;
|
|
1977
|
-
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1978
|
-
manual_override_allowed: boolean;
|
|
1979
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1980
|
-
heating_set_point_celsius?: number | undefined;
|
|
1981
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
1982
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
1983
|
-
} | undefined;
|
|
1984
|
-
is_climate_setting_schedule_active?: boolean | undefined;
|
|
1985
|
-
active_climate_setting_schedule?: {
|
|
1986
|
-
created_at: string;
|
|
1987
|
-
climate_setting_schedule_id: string;
|
|
1988
|
-
schedule_type: "time_bound";
|
|
1989
|
-
device_id: string;
|
|
1990
|
-
schedule_starts_at: string;
|
|
1991
|
-
schedule_ends_at: string;
|
|
1992
|
-
name?: string | undefined;
|
|
1993
|
-
errors?: any;
|
|
1994
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1995
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1996
|
-
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1997
|
-
cooling_set_point_celsius?: number | undefined;
|
|
1998
|
-
heating_set_point_celsius?: number | undefined;
|
|
1999
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
2000
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
2001
|
-
manual_override_allowed?: boolean | undefined;
|
|
2002
|
-
} | undefined;
|
|
2003
|
-
min_cooling_set_point_celsius?: number | undefined;
|
|
2004
|
-
min_cooling_set_point_fahrenheit?: number | undefined;
|
|
2005
|
-
max_cooling_set_point_celsius?: number | undefined;
|
|
2006
|
-
max_cooling_set_point_fahrenheit?: number | undefined;
|
|
2007
|
-
}>]>>>;
|
|
1511
|
+
}>>>;
|
|
2008
1512
|
location: z.ZodNullable<z.ZodObject<{
|
|
2009
1513
|
location_name: z.ZodOptional<z.ZodString>;
|
|
2010
1514
|
timezone: z.ZodOptional<z.ZodString>;
|