@seamapi/types 1.433.0 → 1.435.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 +188 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +882 -28
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +99 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +99 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +8 -8
- package/lib/seam/connect/models/devices/device.d.ts +145 -16
- package/lib/seam/connect/models/devices/device.js +14 -8
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +107 -8
- package/lib/seam/connect/models/events/devices.d.ts +26 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +13 -0
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +46 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js +15 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +49 -4
- package/lib/seam/connect/models/user-identities/user-identity.js +12 -1
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +120 -0
- package/lib/seam/connect/openapi.js +149 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +472 -0
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/device.ts +20 -18
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +17 -0
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +19 -1
- package/src/lib/seam/connect/openapi.ts +177 -0
- package/src/lib/seam/connect/route-types.ts +665 -24
|
@@ -956,6 +956,10 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
956
956
|
product_type: string;
|
|
957
957
|
}>>;
|
|
958
958
|
}, "strip", z.ZodTypeAny, {
|
|
959
|
+
ecobee_metadata?: {
|
|
960
|
+
device_name: string;
|
|
961
|
+
ecobee_device_id: string;
|
|
962
|
+
} | undefined;
|
|
959
963
|
salto_ks_metadata?: {
|
|
960
964
|
lock_type: string;
|
|
961
965
|
lock_id: string;
|
|
@@ -1113,10 +1117,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1113
1117
|
device_custom_name: string;
|
|
1114
1118
|
display_name?: string | undefined;
|
|
1115
1119
|
} | undefined;
|
|
1116
|
-
ecobee_metadata?: {
|
|
1117
|
-
device_name: string;
|
|
1118
|
-
ecobee_device_id: string;
|
|
1119
|
-
} | undefined;
|
|
1120
1120
|
honeywell_resideo_metadata?: {
|
|
1121
1121
|
device_name: string;
|
|
1122
1122
|
honeywell_resideo_device_id: string;
|
|
@@ -1188,6 +1188,10 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1188
1188
|
product_type: string;
|
|
1189
1189
|
} | undefined;
|
|
1190
1190
|
}, {
|
|
1191
|
+
ecobee_metadata?: {
|
|
1192
|
+
device_name: string;
|
|
1193
|
+
ecobee_device_id: string;
|
|
1194
|
+
} | undefined;
|
|
1191
1195
|
salto_ks_metadata?: {
|
|
1192
1196
|
lock_type: string;
|
|
1193
1197
|
lock_id: string;
|
|
@@ -1345,10 +1349,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1345
1349
|
device_custom_name: string;
|
|
1346
1350
|
display_name?: string | undefined;
|
|
1347
1351
|
} | undefined;
|
|
1348
|
-
ecobee_metadata?: {
|
|
1349
|
-
device_name: string;
|
|
1350
|
-
ecobee_device_id: string;
|
|
1351
|
-
} | undefined;
|
|
1352
1352
|
honeywell_resideo_metadata?: {
|
|
1353
1353
|
device_name: string;
|
|
1354
1354
|
honeywell_resideo_device_id: string;
|
|
@@ -1517,6 +1517,19 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1517
1517
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1518
1518
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1519
1519
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
1520
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1521
|
+
climate_ref: z.ZodString;
|
|
1522
|
+
is_optimized: z.ZodBoolean;
|
|
1523
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
1524
|
+
}, "strip", z.ZodTypeAny, {
|
|
1525
|
+
climate_ref: string;
|
|
1526
|
+
is_optimized: boolean;
|
|
1527
|
+
owner: "user" | "system";
|
|
1528
|
+
}, {
|
|
1529
|
+
climate_ref: string;
|
|
1530
|
+
is_optimized: boolean;
|
|
1531
|
+
owner: "user" | "system";
|
|
1532
|
+
}>>>;
|
|
1520
1533
|
}, "strip", z.ZodTypeAny, {
|
|
1521
1534
|
name?: string | null | undefined;
|
|
1522
1535
|
climate_preset_key?: string | undefined;
|
|
@@ -1532,6 +1545,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1532
1545
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1533
1546
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1534
1547
|
manual_override_allowed?: boolean | undefined;
|
|
1548
|
+
ecobee_metadata?: {
|
|
1549
|
+
climate_ref: string;
|
|
1550
|
+
is_optimized: boolean;
|
|
1551
|
+
owner: "user" | "system";
|
|
1552
|
+
} | undefined;
|
|
1535
1553
|
}, {
|
|
1536
1554
|
name?: string | null | undefined;
|
|
1537
1555
|
climate_preset_key?: string | undefined;
|
|
@@ -1547,6 +1565,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1547
1565
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1548
1566
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1549
1567
|
manual_override_allowed?: boolean | undefined;
|
|
1568
|
+
ecobee_metadata?: {
|
|
1569
|
+
climate_ref: string;
|
|
1570
|
+
is_optimized: boolean;
|
|
1571
|
+
owner: "user" | "system";
|
|
1572
|
+
} | undefined;
|
|
1550
1573
|
}>>;
|
|
1551
1574
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1552
1575
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -1563,6 +1586,19 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1563
1586
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1564
1587
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1565
1588
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
1589
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1590
|
+
climate_ref: z.ZodString;
|
|
1591
|
+
is_optimized: z.ZodBoolean;
|
|
1592
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
1593
|
+
}, "strip", z.ZodTypeAny, {
|
|
1594
|
+
climate_ref: string;
|
|
1595
|
+
is_optimized: boolean;
|
|
1596
|
+
owner: "user" | "system";
|
|
1597
|
+
}, {
|
|
1598
|
+
climate_ref: string;
|
|
1599
|
+
is_optimized: boolean;
|
|
1600
|
+
owner: "user" | "system";
|
|
1601
|
+
}>>>;
|
|
1566
1602
|
}, "strip", z.ZodTypeAny, {
|
|
1567
1603
|
name?: string | null | undefined;
|
|
1568
1604
|
climate_preset_key?: string | undefined;
|
|
@@ -1578,6 +1614,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1578
1614
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1579
1615
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1580
1616
|
manual_override_allowed?: boolean | undefined;
|
|
1617
|
+
ecobee_metadata?: {
|
|
1618
|
+
climate_ref: string;
|
|
1619
|
+
is_optimized: boolean;
|
|
1620
|
+
owner: "user" | "system";
|
|
1621
|
+
} | undefined;
|
|
1581
1622
|
}, {
|
|
1582
1623
|
name?: string | null | undefined;
|
|
1583
1624
|
climate_preset_key?: string | undefined;
|
|
@@ -1593,6 +1634,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1593
1634
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1594
1635
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1595
1636
|
manual_override_allowed?: boolean | undefined;
|
|
1637
|
+
ecobee_metadata?: {
|
|
1638
|
+
climate_ref: string;
|
|
1639
|
+
is_optimized: boolean;
|
|
1640
|
+
owner: "user" | "system";
|
|
1641
|
+
} | undefined;
|
|
1596
1642
|
}>>;
|
|
1597
1643
|
available_climate_presets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1598
1644
|
climate_preset_key: z.ZodString;
|
|
@@ -1609,6 +1655,19 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1609
1655
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1610
1656
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1611
1657
|
manual_override_allowed: z.ZodBoolean;
|
|
1658
|
+
ecobee_metadata: z.ZodOptional<z.ZodObject<{
|
|
1659
|
+
climate_ref: z.ZodString;
|
|
1660
|
+
is_optimized: z.ZodBoolean;
|
|
1661
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
1662
|
+
}, "strip", z.ZodTypeAny, {
|
|
1663
|
+
climate_ref: string;
|
|
1664
|
+
is_optimized: boolean;
|
|
1665
|
+
owner: "user" | "system";
|
|
1666
|
+
}, {
|
|
1667
|
+
climate_ref: string;
|
|
1668
|
+
is_optimized: boolean;
|
|
1669
|
+
owner: "user" | "system";
|
|
1670
|
+
}>>;
|
|
1612
1671
|
}, "strip", z.ZodTypeAny, {
|
|
1613
1672
|
climate_preset_key: string;
|
|
1614
1673
|
can_edit: boolean;
|
|
@@ -1624,6 +1683,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1624
1683
|
heating_set_point_celsius?: number | undefined;
|
|
1625
1684
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1626
1685
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1686
|
+
ecobee_metadata?: {
|
|
1687
|
+
climate_ref: string;
|
|
1688
|
+
is_optimized: boolean;
|
|
1689
|
+
owner: "user" | "system";
|
|
1690
|
+
} | undefined;
|
|
1627
1691
|
}, {
|
|
1628
1692
|
climate_preset_key: string;
|
|
1629
1693
|
can_edit: boolean;
|
|
@@ -1639,6 +1703,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1639
1703
|
heating_set_point_celsius?: number | undefined;
|
|
1640
1704
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1641
1705
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1706
|
+
ecobee_metadata?: {
|
|
1707
|
+
climate_ref: string;
|
|
1708
|
+
is_optimized: boolean;
|
|
1709
|
+
owner: "user" | "system";
|
|
1710
|
+
} | undefined;
|
|
1642
1711
|
}>, "many">>;
|
|
1643
1712
|
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1644
1713
|
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1812,6 +1881,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1812
1881
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1813
1882
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1814
1883
|
manual_override_allowed?: boolean | undefined;
|
|
1884
|
+
ecobee_metadata?: {
|
|
1885
|
+
climate_ref: string;
|
|
1886
|
+
is_optimized: boolean;
|
|
1887
|
+
owner: "user" | "system";
|
|
1888
|
+
} | undefined;
|
|
1815
1889
|
} | undefined;
|
|
1816
1890
|
default_climate_setting?: {
|
|
1817
1891
|
name?: string | null | undefined;
|
|
@@ -1828,6 +1902,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1828
1902
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1829
1903
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1830
1904
|
manual_override_allowed?: boolean | undefined;
|
|
1905
|
+
ecobee_metadata?: {
|
|
1906
|
+
climate_ref: string;
|
|
1907
|
+
is_optimized: boolean;
|
|
1908
|
+
owner: "user" | "system";
|
|
1909
|
+
} | undefined;
|
|
1831
1910
|
} | undefined;
|
|
1832
1911
|
available_climate_presets?: {
|
|
1833
1912
|
climate_preset_key: string;
|
|
@@ -1844,6 +1923,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1844
1923
|
heating_set_point_celsius?: number | undefined;
|
|
1845
1924
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1846
1925
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1926
|
+
ecobee_metadata?: {
|
|
1927
|
+
climate_ref: string;
|
|
1928
|
+
is_optimized: boolean;
|
|
1929
|
+
owner: "user" | "system";
|
|
1930
|
+
} | undefined;
|
|
1847
1931
|
}[] | undefined;
|
|
1848
1932
|
fallback_climate_preset_key?: string | null | undefined;
|
|
1849
1933
|
active_thermostat_schedule?: {
|
|
@@ -1927,6 +2011,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1927
2011
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1928
2012
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1929
2013
|
manual_override_allowed?: boolean | undefined;
|
|
2014
|
+
ecobee_metadata?: {
|
|
2015
|
+
climate_ref: string;
|
|
2016
|
+
is_optimized: boolean;
|
|
2017
|
+
owner: "user" | "system";
|
|
2018
|
+
} | undefined;
|
|
1930
2019
|
} | undefined;
|
|
1931
2020
|
default_climate_setting?: {
|
|
1932
2021
|
name?: string | null | undefined;
|
|
@@ -1943,6 +2032,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1943
2032
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1944
2033
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1945
2034
|
manual_override_allowed?: boolean | undefined;
|
|
2035
|
+
ecobee_metadata?: {
|
|
2036
|
+
climate_ref: string;
|
|
2037
|
+
is_optimized: boolean;
|
|
2038
|
+
owner: "user" | "system";
|
|
2039
|
+
} | undefined;
|
|
1946
2040
|
} | undefined;
|
|
1947
2041
|
available_climate_presets?: {
|
|
1948
2042
|
climate_preset_key: string;
|
|
@@ -1959,6 +2053,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1959
2053
|
heating_set_point_celsius?: number | undefined;
|
|
1960
2054
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1961
2055
|
heating_set_point_fahrenheit?: number | undefined;
|
|
2056
|
+
ecobee_metadata?: {
|
|
2057
|
+
climate_ref: string;
|
|
2058
|
+
is_optimized: boolean;
|
|
2059
|
+
owner: "user" | "system";
|
|
2060
|
+
} | undefined;
|
|
1962
2061
|
}[] | undefined;
|
|
1963
2062
|
fallback_climate_preset_key?: string | null | undefined;
|
|
1964
2063
|
active_thermostat_schedule?: {
|
|
@@ -847,6 +847,19 @@ export declare const thermostat_manually_adjusted_event: z.ZodObject<z.objectUti
|
|
|
847
847
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
848
848
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
849
849
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
850
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
851
|
+
climate_ref: z.ZodString;
|
|
852
|
+
is_optimized: z.ZodBoolean;
|
|
853
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
854
|
+
}, "strip", z.ZodTypeAny, {
|
|
855
|
+
climate_ref: string;
|
|
856
|
+
is_optimized: boolean;
|
|
857
|
+
owner: "user" | "system";
|
|
858
|
+
}, {
|
|
859
|
+
climate_ref: string;
|
|
860
|
+
is_optimized: boolean;
|
|
861
|
+
owner: "user" | "system";
|
|
862
|
+
}>>>;
|
|
850
863
|
}, "fan_mode_setting" | "hvac_mode_setting" | "cooling_set_point_celsius" | "heating_set_point_celsius" | "cooling_set_point_fahrenheit" | "heating_set_point_fahrenheit">>, "strip", z.ZodTypeAny, {
|
|
851
864
|
method: "external" | "seam";
|
|
852
865
|
device_id: string;
|
|
@@ -1867,6 +1880,19 @@ export declare const device_events: readonly [z.ZodObject<z.objectUtil.extendSha
|
|
|
1867
1880
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1868
1881
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1869
1882
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
1883
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1884
|
+
climate_ref: z.ZodString;
|
|
1885
|
+
is_optimized: z.ZodBoolean;
|
|
1886
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
1887
|
+
}, "strip", z.ZodTypeAny, {
|
|
1888
|
+
climate_ref: string;
|
|
1889
|
+
is_optimized: boolean;
|
|
1890
|
+
owner: "user" | "system";
|
|
1891
|
+
}, {
|
|
1892
|
+
climate_ref: string;
|
|
1893
|
+
is_optimized: boolean;
|
|
1894
|
+
owner: "user" | "system";
|
|
1895
|
+
}>>>;
|
|
1870
1896
|
}, "fan_mode_setting" | "hvac_mode_setting" | "cooling_set_point_celsius" | "heating_set_point_celsius" | "cooling_set_point_fahrenheit" | "heating_set_point_fahrenheit">>, "strip", z.ZodTypeAny, {
|
|
1871
1897
|
method: "external" | "seam";
|
|
1872
1898
|
device_id: string;
|
|
@@ -2297,6 +2297,19 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2297
2297
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2298
2298
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2299
2299
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
2300
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
2301
|
+
climate_ref: z.ZodString;
|
|
2302
|
+
is_optimized: z.ZodBoolean;
|
|
2303
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
2304
|
+
}, "strip", z.ZodTypeAny, {
|
|
2305
|
+
climate_ref: string;
|
|
2306
|
+
is_optimized: boolean;
|
|
2307
|
+
owner: "user" | "system";
|
|
2308
|
+
}, {
|
|
2309
|
+
climate_ref: string;
|
|
2310
|
+
is_optimized: boolean;
|
|
2311
|
+
owner: "user" | "system";
|
|
2312
|
+
}>>>;
|
|
2300
2313
|
}, "fan_mode_setting" | "hvac_mode_setting" | "cooling_set_point_celsius" | "heating_set_point_celsius" | "cooling_set_point_fahrenheit" | "heating_set_point_fahrenheit">>, "strip", z.ZodTypeAny, {
|
|
2301
2314
|
method: "external" | "seam";
|
|
2302
2315
|
device_id: string;
|
|
@@ -14,6 +14,19 @@ export declare const climate_preset: z.ZodObject<{
|
|
|
14
14
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
15
15
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
16
16
|
manual_override_allowed: z.ZodBoolean;
|
|
17
|
+
ecobee_metadata: z.ZodOptional<z.ZodObject<{
|
|
18
|
+
climate_ref: z.ZodString;
|
|
19
|
+
is_optimized: z.ZodBoolean;
|
|
20
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
21
|
+
}, "strip", z.ZodTypeAny, {
|
|
22
|
+
climate_ref: string;
|
|
23
|
+
is_optimized: boolean;
|
|
24
|
+
owner: "user" | "system";
|
|
25
|
+
}, {
|
|
26
|
+
climate_ref: string;
|
|
27
|
+
is_optimized: boolean;
|
|
28
|
+
owner: "user" | "system";
|
|
29
|
+
}>>;
|
|
17
30
|
}, "strip", z.ZodTypeAny, {
|
|
18
31
|
climate_preset_key: string;
|
|
19
32
|
can_edit: boolean;
|
|
@@ -29,6 +42,11 @@ export declare const climate_preset: z.ZodObject<{
|
|
|
29
42
|
heating_set_point_celsius?: number | undefined;
|
|
30
43
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
31
44
|
heating_set_point_fahrenheit?: number | undefined;
|
|
45
|
+
ecobee_metadata?: {
|
|
46
|
+
climate_ref: string;
|
|
47
|
+
is_optimized: boolean;
|
|
48
|
+
owner: "user" | "system";
|
|
49
|
+
} | undefined;
|
|
32
50
|
}, {
|
|
33
51
|
climate_preset_key: string;
|
|
34
52
|
can_edit: boolean;
|
|
@@ -44,6 +62,11 @@ export declare const climate_preset: z.ZodObject<{
|
|
|
44
62
|
heating_set_point_celsius?: number | undefined;
|
|
45
63
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
46
64
|
heating_set_point_fahrenheit?: number | undefined;
|
|
65
|
+
ecobee_metadata?: {
|
|
66
|
+
climate_ref: string;
|
|
67
|
+
is_optimized: boolean;
|
|
68
|
+
owner: "user" | "system";
|
|
69
|
+
} | undefined;
|
|
47
70
|
}>;
|
|
48
71
|
export type ClimatePreset = z.infer<typeof climate_preset>;
|
|
49
72
|
export declare const climate_setting: z.ZodObject<{
|
|
@@ -61,6 +84,19 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
61
84
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
62
85
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
63
86
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
87
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
88
|
+
climate_ref: z.ZodString;
|
|
89
|
+
is_optimized: z.ZodBoolean;
|
|
90
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
91
|
+
}, "strip", z.ZodTypeAny, {
|
|
92
|
+
climate_ref: string;
|
|
93
|
+
is_optimized: boolean;
|
|
94
|
+
owner: "user" | "system";
|
|
95
|
+
}, {
|
|
96
|
+
climate_ref: string;
|
|
97
|
+
is_optimized: boolean;
|
|
98
|
+
owner: "user" | "system";
|
|
99
|
+
}>>>;
|
|
64
100
|
}, "strip", z.ZodTypeAny, {
|
|
65
101
|
name?: string | null | undefined;
|
|
66
102
|
climate_preset_key?: string | undefined;
|
|
@@ -76,6 +112,11 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
76
112
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
77
113
|
heating_set_point_fahrenheit?: number | undefined;
|
|
78
114
|
manual_override_allowed?: boolean | undefined;
|
|
115
|
+
ecobee_metadata?: {
|
|
116
|
+
climate_ref: string;
|
|
117
|
+
is_optimized: boolean;
|
|
118
|
+
owner: "user" | "system";
|
|
119
|
+
} | undefined;
|
|
79
120
|
}, {
|
|
80
121
|
name?: string | null | undefined;
|
|
81
122
|
climate_preset_key?: string | undefined;
|
|
@@ -91,5 +132,10 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
91
132
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
92
133
|
heating_set_point_fahrenheit?: number | undefined;
|
|
93
134
|
manual_override_allowed?: boolean | undefined;
|
|
135
|
+
ecobee_metadata?: {
|
|
136
|
+
climate_ref: string;
|
|
137
|
+
is_optimized: boolean;
|
|
138
|
+
owner: "user" | "system";
|
|
139
|
+
} | undefined;
|
|
94
140
|
}>;
|
|
95
141
|
export type ClimateSetting = z.infer<typeof climate_setting>;
|
|
@@ -52,6 +52,21 @@ export const climate_preset = z.object({
|
|
|
52
52
|
deprecated: Use 'thermostat_schedule.is_override_allowed'
|
|
53
53
|
---
|
|
54
54
|
Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).`),
|
|
55
|
+
ecobee_metadata: z
|
|
56
|
+
.object({
|
|
57
|
+
climate_ref: z
|
|
58
|
+
.string()
|
|
59
|
+
.describe(`Reference to the Ecobee climate, if applicable.`),
|
|
60
|
+
is_optimized: z
|
|
61
|
+
.boolean()
|
|
62
|
+
.describe(`Indicates if the climate preset is optimized by Ecobee.`),
|
|
63
|
+
owner: z
|
|
64
|
+
.enum(['user', 'system'])
|
|
65
|
+
.describe(`Indicates whether the climate preset is owned by the user or the system.`),
|
|
66
|
+
})
|
|
67
|
+
.optional().describe(`
|
|
68
|
+
Metadata specific to the Ecobee climate, if applicable.
|
|
69
|
+
`),
|
|
55
70
|
});
|
|
56
71
|
export const climate_setting = climate_preset.partial();
|
|
57
72
|
//# sourceMappingURL=climate-preset.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"climate-preset.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/thermostats/climate-preset.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,mBAAmB,EACnB,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,YAAY,CAAA;AAEnB,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,kBAAkB,EAAE,CAAC;SAClB,MAAM,EAAE;SACR,QAAQ,CACP,+IAA+I,CAChJ;IACH,QAAQ,EAAE,CAAC;SACR,OAAO,EAAE;SACT,QAAQ,CACP,4JAA4J,CAC7J;IACH,UAAU,EAAE,CAAC;SACV,OAAO,EAAE;SACT,QAAQ,CACP,6JAA6J,CAC9J;IACH,WAAW,EAAE,CAAC;SACX,OAAO,EAAE;SACT,QAAQ,CACP,8LAA8L,CAC/L;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,EAAE;SACV,QAAQ,CACP,uJAAuJ,CACxJ;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,CACP,yIAAyI,CAC1I;IACH,mBAAmB,EAAE,mBAAmB,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;GAE5D,CAAC;IACF,gBAAgB,EAAE,gBAAgB;SAC/B,QAAQ,EAAE;SACV,QAAQ,CACP,mLAAmL,CACpL;IACH,iBAAiB,EAAE,iBAAiB;SACjC,QAAQ,EAAE;SACV,QAAQ,CACP,oLAAoL,CACrL;IACH,yBAAyB,EAAE,CAAC;SACzB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,yBAAyB,EAAE,CAAC;SACzB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,4BAA4B,EAAE,CAAC;SAC5B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,4BAA4B,EAAE,CAAC;SAC5B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAC3C;;;;oRAIgR,CACjR;
|
|
1
|
+
{"version":3,"file":"climate-preset.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/thermostats/climate-preset.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,mBAAmB,EACnB,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,YAAY,CAAA;AAEnB,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,kBAAkB,EAAE,CAAC;SAClB,MAAM,EAAE;SACR,QAAQ,CACP,+IAA+I,CAChJ;IACH,QAAQ,EAAE,CAAC;SACR,OAAO,EAAE;SACT,QAAQ,CACP,4JAA4J,CAC7J;IACH,UAAU,EAAE,CAAC;SACV,OAAO,EAAE;SACT,QAAQ,CACP,6JAA6J,CAC9J;IACH,WAAW,EAAE,CAAC;SACX,OAAO,EAAE;SACT,QAAQ,CACP,8LAA8L,CAC/L;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,EAAE;SACV,QAAQ,CACP,uJAAuJ,CACxJ;IACH,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,CACP,yIAAyI,CAC1I;IACH,mBAAmB,EAAE,mBAAmB,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;GAE5D,CAAC;IACF,gBAAgB,EAAE,gBAAgB;SAC/B,QAAQ,EAAE;SACV,QAAQ,CACP,mLAAmL,CACpL;IACH,iBAAiB,EAAE,iBAAiB;SACjC,QAAQ,EAAE;SACV,QAAQ,CACP,oLAAoL,CACrL;IACH,yBAAyB,EAAE,CAAC;SACzB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,yBAAyB,EAAE,CAAC;SACzB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,4BAA4B,EAAE,CAAC;SAC5B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,4BAA4B,EAAE,CAAC;SAC5B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,yLAAyL,CAC1L;IACH,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAC3C;;;;oRAIgR,CACjR;IACD,eAAe,EAAE,CAAC;SACf,MAAM,CAAC;QACN,WAAW,EAAE,CAAC;aACX,MAAM,EAAE;aACR,QAAQ,CAAC,iDAAiD,CAAC;QAC9D,YAAY,EAAE,CAAC;aACZ,OAAO,EAAE;aACT,QAAQ,CAAC,yDAAyD,CAAC;QACtE,KAAK,EAAE,CAAC;aACL,IAAI,CAAC,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;aACxB,QAAQ,CACP,0EAA0E,CAC3E;KACJ,CAAC;SACD,QAAQ,EAAE,CAAC,QAAQ,CAAC;;GAEtB,CAAC;CACH,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,eAAe,GAAG,cAAc,CAAC,OAAO,EAAE,CAAA"}
|
|
@@ -53,13 +53,37 @@ export declare const user_identity_warning_map: z.ZodObject<{
|
|
|
53
53
|
created_at: string;
|
|
54
54
|
warning_code: "being_deleted";
|
|
55
55
|
}>>>;
|
|
56
|
+
acs_user_profile_does_not_match_user_identity: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
57
|
+
created_at: z.ZodString;
|
|
58
|
+
message: z.ZodString;
|
|
59
|
+
}, {
|
|
60
|
+
warning_code: z.ZodLiteral<"acs_user_profile_does_not_match_user_identity">;
|
|
61
|
+
}>, "strip", z.ZodTypeAny, {
|
|
62
|
+
message: string;
|
|
63
|
+
created_at: string;
|
|
64
|
+
warning_code: "acs_user_profile_does_not_match_user_identity";
|
|
65
|
+
}, {
|
|
66
|
+
message: string;
|
|
67
|
+
created_at: string;
|
|
68
|
+
warning_code: "acs_user_profile_does_not_match_user_identity";
|
|
69
|
+
}>>>;
|
|
56
70
|
}, "strip", z.ZodTypeAny, {
|
|
71
|
+
acs_user_profile_does_not_match_user_identity?: {
|
|
72
|
+
message: string;
|
|
73
|
+
created_at: string;
|
|
74
|
+
warning_code: "acs_user_profile_does_not_match_user_identity";
|
|
75
|
+
} | null | undefined;
|
|
57
76
|
user_identity_being_deleted?: {
|
|
58
77
|
message: string;
|
|
59
78
|
created_at: string;
|
|
60
79
|
warning_code: "being_deleted";
|
|
61
80
|
} | null | undefined;
|
|
62
81
|
}, {
|
|
82
|
+
acs_user_profile_does_not_match_user_identity?: {
|
|
83
|
+
message: string;
|
|
84
|
+
created_at: string;
|
|
85
|
+
warning_code: "acs_user_profile_does_not_match_user_identity";
|
|
86
|
+
} | null | undefined;
|
|
63
87
|
user_identity_being_deleted?: {
|
|
64
88
|
message: string;
|
|
65
89
|
created_at: string;
|
|
@@ -109,6 +133,19 @@ export declare const user_identity: z.ZodObject<{
|
|
|
109
133
|
message: string;
|
|
110
134
|
created_at: string;
|
|
111
135
|
warning_code: "being_deleted";
|
|
136
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
137
|
+
created_at: z.ZodString;
|
|
138
|
+
message: z.ZodString;
|
|
139
|
+
}, {
|
|
140
|
+
warning_code: z.ZodLiteral<"acs_user_profile_does_not_match_user_identity">;
|
|
141
|
+
}>, "strip", z.ZodTypeAny, {
|
|
142
|
+
message: string;
|
|
143
|
+
created_at: string;
|
|
144
|
+
warning_code: "acs_user_profile_does_not_match_user_identity";
|
|
145
|
+
}, {
|
|
146
|
+
message: string;
|
|
147
|
+
created_at: string;
|
|
148
|
+
warning_code: "acs_user_profile_does_not_match_user_identity";
|
|
112
149
|
}>]>, "many">;
|
|
113
150
|
}, "strip", z.ZodTypeAny, {
|
|
114
151
|
display_name: string;
|
|
@@ -121,11 +158,15 @@ export declare const user_identity: z.ZodObject<{
|
|
|
121
158
|
acs_system_id: string;
|
|
122
159
|
acs_user_id: string;
|
|
123
160
|
}[];
|
|
124
|
-
warnings: {
|
|
161
|
+
warnings: ({
|
|
125
162
|
message: string;
|
|
126
163
|
created_at: string;
|
|
127
164
|
warning_code: "being_deleted";
|
|
128
|
-
}
|
|
165
|
+
} | {
|
|
166
|
+
message: string;
|
|
167
|
+
created_at: string;
|
|
168
|
+
warning_code: "acs_user_profile_does_not_match_user_identity";
|
|
169
|
+
})[];
|
|
129
170
|
user_identity_id: string;
|
|
130
171
|
email_address: string | null;
|
|
131
172
|
full_name: string | null;
|
|
@@ -142,11 +183,15 @@ export declare const user_identity: z.ZodObject<{
|
|
|
142
183
|
acs_system_id: string;
|
|
143
184
|
acs_user_id: string;
|
|
144
185
|
}[];
|
|
145
|
-
warnings: {
|
|
186
|
+
warnings: ({
|
|
146
187
|
message: string;
|
|
147
188
|
created_at: string;
|
|
148
189
|
warning_code: "being_deleted";
|
|
149
|
-
}
|
|
190
|
+
} | {
|
|
191
|
+
message: string;
|
|
192
|
+
created_at: string;
|
|
193
|
+
warning_code: "acs_user_profile_does_not_match_user_identity";
|
|
194
|
+
})[];
|
|
150
195
|
user_identity_id: string;
|
|
151
196
|
email_address: string | null;
|
|
152
197
|
full_name: string | null;
|
|
@@ -25,6 +25,13 @@ const user_identity_being_deleted = common_user_identity_warning
|
|
|
25
25
|
.describe('Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.'),
|
|
26
26
|
})
|
|
27
27
|
.describe('Indicates that the user identity is currently being deleted.');
|
|
28
|
+
const acs_user_profile_does_not_match_user_identity = common_user_identity_warning
|
|
29
|
+
.extend({
|
|
30
|
+
warning_code: z
|
|
31
|
+
.literal('acs_user_profile_does_not_match_user_identity')
|
|
32
|
+
.describe('Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.'),
|
|
33
|
+
})
|
|
34
|
+
.describe("Indicates that the ACS user's profile does not match the user identity's profile");
|
|
28
35
|
const user_identity_issue_with_acs_user = common_user_identity_error
|
|
29
36
|
.extend({
|
|
30
37
|
error_code: z
|
|
@@ -48,12 +55,16 @@ export const user_identity_error_map = z.object({
|
|
|
48
55
|
.describe('Map of access system user IDs to issues with the access system user. The key is the access system user ID, and the value is the issue with the access system user.'),
|
|
49
56
|
});
|
|
50
57
|
const user_identity_warnings = z
|
|
51
|
-
.discriminatedUnion('warning_code', [
|
|
58
|
+
.discriminatedUnion('warning_code', [
|
|
59
|
+
user_identity_being_deleted,
|
|
60
|
+
acs_user_profile_does_not_match_user_identity,
|
|
61
|
+
])
|
|
52
62
|
.describe('Warnings associated with the user identity.');
|
|
53
63
|
export const user_identity_warning_map = z.object({
|
|
54
64
|
user_identity_being_deleted: user_identity_being_deleted
|
|
55
65
|
.optional()
|
|
56
66
|
.nullable(),
|
|
67
|
+
acs_user_profile_does_not_match_user_identity: acs_user_profile_does_not_match_user_identity.optional().nullable(),
|
|
57
68
|
});
|
|
58
69
|
const user_identity_errors = z
|
|
59
70
|
.discriminatedUnion('error_code', [user_identity_issue_with_acs_user])
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user-identity.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/user-identities/user-identity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAEjD,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC,CAAA;AAEF,MAAM,4BAA4B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,0GAA0G,CAC3G;CACJ,CAAC,CAAA;AAEF,MAAM,2BAA2B,GAAG,4BAA4B;KAC7D,MAAM,CAAC;IACN,YAAY,EAAE,CAAC;SACZ,OAAO,CAAC,eAAe,CAAC;SACxB,QAAQ,CACP,sGAAsG,CACvG;CACJ,CAAC;KACD,QAAQ,CAAC,8DAA8D,CAAC,CAAA;AAE3E,MAAM,iCAAiC,GAAG,0BAA0B;KACjE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,qBAAqB,CAAC;SAC9B,QAAQ,CACP,oGAAoG,CACrG;IACH,WAAW,EAAE,CAAC;SACX,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,iDAAiD,CAAC;IAC9D,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,oEAAoE,CACrE;CACJ,CAAC;KACD,QAAQ,CACP,iGAAiG,CAClG,CAAA;AAEH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,mBAAmB,EAAE,CAAC;SACnB,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,EAAE,iCAAiC,CAAC;SAC5D,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CACP,oKAAoK,CACrK;CACJ,CAAC,CAAA;AAIF,MAAM,sBAAsB,GAAG,CAAC;KAC7B,kBAAkB,CAAC,cAAc,EAAE,
|
|
1
|
+
{"version":3,"file":"user-identity.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/user-identities/user-identity.ts"],"names":[],"mappings":"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"}
|