@seamapi/types 1.429.1 → 1.431.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 +145 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +573 -0
- package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs-credential.js +5 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +18 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +18 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +8 -1
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +26 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +18 -0
- package/lib/seam/connect/models/events/devices.d.ts +2 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +1 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +12 -0
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js +4 -1
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/models/thermostats/modes.d.ts +2 -0
- package/lib/seam/connect/models/thermostats/modes.js +8 -0
- package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +76 -0
- package/lib/seam/connect/openapi.js +124 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +422 -0
- package/package.json +2 -2
- package/src/lib/seam/connect/models/acs/acs-credential.ts +7 -0
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +8 -0
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +8 -1
- package/src/lib/seam/connect/models/thermostats/modes.ts +11 -0
- package/src/lib/seam/connect/openapi.ts +138 -0
- package/src/lib/seam/connect/route-types.ts +907 -0
|
@@ -19,6 +19,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
19
19
|
acs_credentials: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUtil.extendShape<{
|
|
20
20
|
acs_credential_id: z.ZodString;
|
|
21
21
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
22
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
22
23
|
connected_account_id: z.ZodString;
|
|
23
24
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
24
25
|
acs_system_id: z.ZodString;
|
|
@@ -531,6 +532,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
531
532
|
door_names?: string[] | undefined;
|
|
532
533
|
} | undefined;
|
|
533
534
|
is_one_time_use?: boolean | undefined;
|
|
535
|
+
user_identity_id?: string | undefined;
|
|
534
536
|
issued_at?: string | null | undefined;
|
|
535
537
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
536
538
|
external_type_display_name?: string | undefined;
|
|
@@ -655,6 +657,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
655
657
|
door_names?: string[] | undefined;
|
|
656
658
|
} | undefined;
|
|
657
659
|
is_one_time_use?: boolean | undefined;
|
|
660
|
+
user_identity_id?: string | undefined;
|
|
658
661
|
issued_at?: string | null | undefined;
|
|
659
662
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
660
663
|
external_type_display_name?: string | undefined;
|
|
@@ -787,6 +790,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
787
790
|
door_names?: string[] | undefined;
|
|
788
791
|
} | undefined;
|
|
789
792
|
is_one_time_use?: boolean | undefined;
|
|
793
|
+
user_identity_id?: string | undefined;
|
|
790
794
|
issued_at?: string | null | undefined;
|
|
791
795
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
792
796
|
external_type_display_name?: string | undefined;
|
|
@@ -919,6 +923,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
919
923
|
door_names?: string[] | undefined;
|
|
920
924
|
} | undefined;
|
|
921
925
|
is_one_time_use?: boolean | undefined;
|
|
926
|
+
user_identity_id?: string | undefined;
|
|
922
927
|
issued_at?: string | null | undefined;
|
|
923
928
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
924
929
|
external_type_display_name?: string | undefined;
|
|
@@ -953,6 +958,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
953
958
|
acs_credentials: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUtil.extendShape<{
|
|
954
959
|
acs_credential_id: z.ZodString;
|
|
955
960
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
961
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
956
962
|
connected_account_id: z.ZodString;
|
|
957
963
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
958
964
|
acs_system_id: z.ZodString;
|
|
@@ -1465,6 +1471,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1465
1471
|
door_names?: string[] | undefined;
|
|
1466
1472
|
} | undefined;
|
|
1467
1473
|
is_one_time_use?: boolean | undefined;
|
|
1474
|
+
user_identity_id?: string | undefined;
|
|
1468
1475
|
issued_at?: string | null | undefined;
|
|
1469
1476
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1470
1477
|
external_type_display_name?: string | undefined;
|
|
@@ -1589,6 +1596,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1589
1596
|
door_names?: string[] | undefined;
|
|
1590
1597
|
} | undefined;
|
|
1591
1598
|
is_one_time_use?: boolean | undefined;
|
|
1599
|
+
user_identity_id?: string | undefined;
|
|
1592
1600
|
issued_at?: string | null | undefined;
|
|
1593
1601
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1594
1602
|
external_type_display_name?: string | undefined;
|
|
@@ -1721,6 +1729,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1721
1729
|
door_names?: string[] | undefined;
|
|
1722
1730
|
} | undefined;
|
|
1723
1731
|
is_one_time_use?: boolean | undefined;
|
|
1732
|
+
user_identity_id?: string | undefined;
|
|
1724
1733
|
issued_at?: string | null | undefined;
|
|
1725
1734
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1726
1735
|
external_type_display_name?: string | undefined;
|
|
@@ -1853,6 +1862,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1853
1862
|
door_names?: string[] | undefined;
|
|
1854
1863
|
} | undefined;
|
|
1855
1864
|
is_one_time_use?: boolean | undefined;
|
|
1865
|
+
user_identity_id?: string | undefined;
|
|
1856
1866
|
issued_at?: string | null | undefined;
|
|
1857
1867
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1858
1868
|
external_type_display_name?: string | undefined;
|
|
@@ -1987,6 +1997,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1987
1997
|
door_names?: string[] | undefined;
|
|
1988
1998
|
} | undefined;
|
|
1989
1999
|
is_one_time_use?: boolean | undefined;
|
|
2000
|
+
user_identity_id?: string | undefined;
|
|
1990
2001
|
issued_at?: string | null | undefined;
|
|
1991
2002
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1992
2003
|
external_type_display_name?: string | undefined;
|
|
@@ -2121,6 +2132,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2121
2132
|
door_names?: string[] | undefined;
|
|
2122
2133
|
} | undefined;
|
|
2123
2134
|
is_one_time_use?: boolean | undefined;
|
|
2135
|
+
user_identity_id?: string | undefined;
|
|
2124
2136
|
issued_at?: string | null | undefined;
|
|
2125
2137
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2126
2138
|
external_type_display_name?: string | undefined;
|
|
@@ -6,6 +6,7 @@ export declare const climate_preset: z.ZodObject<{
|
|
|
6
6
|
can_program: z.ZodBoolean;
|
|
7
7
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
8
8
|
display_name: z.ZodString;
|
|
9
|
+
climate_preset_mode: z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>;
|
|
9
10
|
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
10
11
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
11
12
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -21,6 +22,7 @@ export declare const climate_preset: z.ZodObject<{
|
|
|
21
22
|
display_name: string;
|
|
22
23
|
manual_override_allowed: boolean;
|
|
23
24
|
name?: string | null | undefined;
|
|
25
|
+
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
24
26
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
25
27
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
26
28
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -35,6 +37,7 @@ export declare const climate_preset: z.ZodObject<{
|
|
|
35
37
|
display_name: string;
|
|
36
38
|
manual_override_allowed: boolean;
|
|
37
39
|
name?: string | null | undefined;
|
|
40
|
+
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
38
41
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
39
42
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
40
43
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -50,6 +53,7 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
50
53
|
can_program: z.ZodOptional<z.ZodBoolean>;
|
|
51
54
|
name: z.ZodOptional<z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>>;
|
|
52
55
|
display_name: z.ZodOptional<z.ZodString>;
|
|
56
|
+
climate_preset_mode: z.ZodOptional<z.ZodOptional<z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>>>;
|
|
53
57
|
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
54
58
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
55
59
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -64,6 +68,7 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
64
68
|
can_delete?: boolean | undefined;
|
|
65
69
|
can_program?: boolean | undefined;
|
|
66
70
|
display_name?: string | undefined;
|
|
71
|
+
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
67
72
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
68
73
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
69
74
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -78,6 +83,7 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
78
83
|
can_delete?: boolean | undefined;
|
|
79
84
|
can_program?: boolean | undefined;
|
|
80
85
|
display_name?: string | undefined;
|
|
86
|
+
climate_preset_mode?: "home" | "away" | "wake" | "sleep" | "occupied" | "unoccupied" | undefined;
|
|
81
87
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
82
88
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
83
89
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { fan_mode_setting, hvac_mode_setting } from './modes.js';
|
|
2
|
+
import { climate_preset_mode, fan_mode_setting, hvac_mode_setting, } from './modes.js';
|
|
3
3
|
export const climate_preset = z.object({
|
|
4
4
|
climate_preset_key: z
|
|
5
5
|
.string()
|
|
@@ -22,6 +22,9 @@ export const climate_preset = z.object({
|
|
|
22
22
|
display_name: z
|
|
23
23
|
.string()
|
|
24
24
|
.describe('Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets).'),
|
|
25
|
+
climate_preset_mode: climate_preset_mode.optional().describe(`
|
|
26
|
+
The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.
|
|
27
|
+
`),
|
|
25
28
|
fan_mode_setting: fan_mode_setting
|
|
26
29
|
.optional()
|
|
27
30
|
.describe('Desired [fan mode setting](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`.'),
|
|
@@ -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,
|
|
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;CACF,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,eAAe,GAAG,cAAc,CAAC,OAAO,EAAE,CAAA"}
|
|
@@ -5,3 +5,5 @@ export declare const fan_mode_setting: z.ZodEnum<["auto", "on", "circulate"]>;
|
|
|
5
5
|
export type FanModeSetting = z.infer<typeof fan_mode_setting>;
|
|
6
6
|
export declare const available_fan_mode_settings: z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">;
|
|
7
7
|
export type AvailableFanModeSettings = z.infer<typeof available_fan_mode_settings>;
|
|
8
|
+
export declare const climate_preset_mode: z.ZodEnum<["home", "away", "wake", "sleep", "occupied", "unoccupied"]>;
|
|
9
|
+
export type ClimatePresetMode = z.infer<typeof climate_preset_mode>;
|
|
@@ -2,4 +2,12 @@ import { z } from 'zod';
|
|
|
2
2
|
export const hvac_mode_setting = z.enum(['off', 'heat', 'cool', 'heat_cool']);
|
|
3
3
|
export const fan_mode_setting = z.enum(['auto', 'on', 'circulate']);
|
|
4
4
|
export const available_fan_mode_settings = z.array(fan_mode_setting);
|
|
5
|
+
export const climate_preset_mode = z.enum([
|
|
6
|
+
'home',
|
|
7
|
+
'away',
|
|
8
|
+
'wake',
|
|
9
|
+
'sleep',
|
|
10
|
+
'occupied',
|
|
11
|
+
'unoccupied',
|
|
12
|
+
]);
|
|
5
13
|
//# sourceMappingURL=modes.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"modes.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/thermostats/modes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,CAAC,CAAC,CAAA;AAI7E,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAA;AAInE,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"modes.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/thermostats/modes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,CAAC,CAAC,CAAA;AAI7E,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,IAAI,EAAE,WAAW,CAAC,CAAC,CAAA;AAInE,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAA;AAMpE,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,IAAI,CAAC;IACxC,MAAM;IACN,MAAM;IACN,MAAM;IACN,OAAO;IACP,UAAU;IACV,YAAY;CACb,CAAC,CAAA"}
|
|
@@ -772,6 +772,11 @@ declare const _default: {
|
|
|
772
772
|
description: string;
|
|
773
773
|
type: string;
|
|
774
774
|
};
|
|
775
|
+
user_identity_id: {
|
|
776
|
+
description: string;
|
|
777
|
+
format: string;
|
|
778
|
+
type: string;
|
|
779
|
+
};
|
|
775
780
|
visionline_metadata: {
|
|
776
781
|
description: string;
|
|
777
782
|
properties: {
|
|
@@ -2322,6 +2327,11 @@ declare const _default: {
|
|
|
2322
2327
|
description: string;
|
|
2323
2328
|
type: string;
|
|
2324
2329
|
};
|
|
2330
|
+
user_identity_id: {
|
|
2331
|
+
description: string;
|
|
2332
|
+
format: string;
|
|
2333
|
+
type: string;
|
|
2334
|
+
};
|
|
2325
2335
|
visionline_metadata: {
|
|
2326
2336
|
description: string;
|
|
2327
2337
|
properties: {
|
|
@@ -2574,6 +2584,11 @@ declare const _default: {
|
|
|
2574
2584
|
description: string;
|
|
2575
2585
|
type: string;
|
|
2576
2586
|
};
|
|
2587
|
+
user_identity_id: {
|
|
2588
|
+
description: string;
|
|
2589
|
+
format: string;
|
|
2590
|
+
type: string;
|
|
2591
|
+
};
|
|
2577
2592
|
visionline_metadata: {
|
|
2578
2593
|
description: string;
|
|
2579
2594
|
properties: {
|
|
@@ -2938,6 +2953,11 @@ declare const _default: {
|
|
|
2938
2953
|
description: string;
|
|
2939
2954
|
type: string;
|
|
2940
2955
|
};
|
|
2956
|
+
user_identity_id: {
|
|
2957
|
+
description: string;
|
|
2958
|
+
format: string;
|
|
2959
|
+
type: string;
|
|
2960
|
+
};
|
|
2941
2961
|
visionline_metadata: {
|
|
2942
2962
|
description: string;
|
|
2943
2963
|
properties: {
|
|
@@ -3190,6 +3210,11 @@ declare const _default: {
|
|
|
3190
3210
|
description: string;
|
|
3191
3211
|
type: string;
|
|
3192
3212
|
};
|
|
3213
|
+
user_identity_id: {
|
|
3214
|
+
description: string;
|
|
3215
|
+
format: string;
|
|
3216
|
+
type: string;
|
|
3217
|
+
};
|
|
3193
3218
|
visionline_metadata: {
|
|
3194
3219
|
description: string;
|
|
3195
3220
|
properties: {
|
|
@@ -5767,6 +5792,7 @@ declare const _default: {
|
|
|
5767
5792
|
};
|
|
5768
5793
|
active_thermostat_schedule?: never;
|
|
5769
5794
|
active_thermostat_schedule_id?: never;
|
|
5795
|
+
available_climate_preset_modes?: never;
|
|
5770
5796
|
available_climate_presets?: never;
|
|
5771
5797
|
available_fan_mode_settings?: never;
|
|
5772
5798
|
available_hvac_mode_settings?: never;
|
|
@@ -5885,6 +5911,16 @@ declare const _default: {
|
|
|
5885
5911
|
type: string;
|
|
5886
5912
|
'x-property-group-key': string;
|
|
5887
5913
|
};
|
|
5914
|
+
available_climate_preset_modes: {
|
|
5915
|
+
description: string;
|
|
5916
|
+
items: {
|
|
5917
|
+
enum: string[];
|
|
5918
|
+
type: string;
|
|
5919
|
+
};
|
|
5920
|
+
type: string;
|
|
5921
|
+
'x-draft': string;
|
|
5922
|
+
'x-property-group-key': string;
|
|
5923
|
+
};
|
|
5888
5924
|
available_climate_presets: {
|
|
5889
5925
|
description: string;
|
|
5890
5926
|
items: {
|
|
@@ -5905,6 +5941,11 @@ declare const _default: {
|
|
|
5905
5941
|
description: string;
|
|
5906
5942
|
type: string;
|
|
5907
5943
|
};
|
|
5944
|
+
climate_preset_mode: {
|
|
5945
|
+
description: string;
|
|
5946
|
+
enum: string[];
|
|
5947
|
+
type: string;
|
|
5948
|
+
};
|
|
5908
5949
|
cooling_set_point_celsius: {
|
|
5909
5950
|
description: string;
|
|
5910
5951
|
format: string;
|
|
@@ -5995,6 +6036,11 @@ declare const _default: {
|
|
|
5995
6036
|
description: string;
|
|
5996
6037
|
type: string;
|
|
5997
6038
|
};
|
|
6039
|
+
climate_preset_mode: {
|
|
6040
|
+
description: string;
|
|
6041
|
+
enum: string[];
|
|
6042
|
+
type: string;
|
|
6043
|
+
};
|
|
5998
6044
|
cooling_set_point_celsius: {
|
|
5999
6045
|
description: string;
|
|
6000
6046
|
format: string;
|
|
@@ -6064,6 +6110,11 @@ declare const _default: {
|
|
|
6064
6110
|
description: string;
|
|
6065
6111
|
type: string;
|
|
6066
6112
|
};
|
|
6113
|
+
climate_preset_mode: {
|
|
6114
|
+
description: string;
|
|
6115
|
+
enum: string[];
|
|
6116
|
+
type: string;
|
|
6117
|
+
};
|
|
6067
6118
|
cooling_set_point_celsius: {
|
|
6068
6119
|
description: string;
|
|
6069
6120
|
format: string;
|
|
@@ -10432,6 +10483,11 @@ declare const _default: {
|
|
|
10432
10483
|
description: string;
|
|
10433
10484
|
type: string;
|
|
10434
10485
|
};
|
|
10486
|
+
user_identity_id: {
|
|
10487
|
+
description: string;
|
|
10488
|
+
format: string;
|
|
10489
|
+
type: string;
|
|
10490
|
+
};
|
|
10435
10491
|
visionline_metadata: {
|
|
10436
10492
|
description: string;
|
|
10437
10493
|
properties: {
|
|
@@ -11305,6 +11361,11 @@ declare const _default: {
|
|
|
11305
11361
|
description: string;
|
|
11306
11362
|
type: string;
|
|
11307
11363
|
};
|
|
11364
|
+
user_identity_id: {
|
|
11365
|
+
description: string;
|
|
11366
|
+
format: string;
|
|
11367
|
+
type: string;
|
|
11368
|
+
};
|
|
11308
11369
|
visionline_metadata: {
|
|
11309
11370
|
description: string;
|
|
11310
11371
|
properties: {
|
|
@@ -37846,6 +37907,11 @@ declare const _default: {
|
|
|
37846
37907
|
description: string;
|
|
37847
37908
|
type: string;
|
|
37848
37909
|
};
|
|
37910
|
+
climate_preset_mode: {
|
|
37911
|
+
description: string;
|
|
37912
|
+
enum: string[];
|
|
37913
|
+
type: string;
|
|
37914
|
+
};
|
|
37849
37915
|
cooling_set_point_celsius: {
|
|
37850
37916
|
description: string;
|
|
37851
37917
|
format: string;
|
|
@@ -41031,6 +41097,11 @@ declare const _default: {
|
|
|
41031
41097
|
description: string;
|
|
41032
41098
|
type: string;
|
|
41033
41099
|
};
|
|
41100
|
+
climate_preset_mode: {
|
|
41101
|
+
description: string;
|
|
41102
|
+
enum: string[];
|
|
41103
|
+
type: string;
|
|
41104
|
+
};
|
|
41034
41105
|
cooling_set_point_celsius: {
|
|
41035
41106
|
description: string;
|
|
41036
41107
|
format: string;
|
|
@@ -41149,6 +41220,11 @@ declare const _default: {
|
|
|
41149
41220
|
description: string;
|
|
41150
41221
|
type: string;
|
|
41151
41222
|
};
|
|
41223
|
+
climate_preset_mode: {
|
|
41224
|
+
description: string;
|
|
41225
|
+
enum: string[];
|
|
41226
|
+
type: string;
|
|
41227
|
+
};
|
|
41152
41228
|
cooling_set_point_celsius: {
|
|
41153
41229
|
description: string;
|
|
41154
41230
|
format: string;
|
|
@@ -1992,6 +1992,11 @@ export default {
|
|
|
1992
1992
|
description: 'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
1993
1993
|
type: 'string',
|
|
1994
1994
|
},
|
|
1995
|
+
user_identity_id: {
|
|
1996
|
+
description: 'ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.',
|
|
1997
|
+
format: 'uuid',
|
|
1998
|
+
type: 'string',
|
|
1999
|
+
},
|
|
1995
2000
|
visionline_metadata: {
|
|
1996
2001
|
description: 'Visionline-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).',
|
|
1997
2002
|
properties: {
|
|
@@ -4082,6 +4087,11 @@ export default {
|
|
|
4082
4087
|
description: 'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
4083
4088
|
type: 'string',
|
|
4084
4089
|
},
|
|
4090
|
+
user_identity_id: {
|
|
4091
|
+
description: 'ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.',
|
|
4092
|
+
format: 'uuid',
|
|
4093
|
+
type: 'string',
|
|
4094
|
+
},
|
|
4085
4095
|
visionline_metadata: {
|
|
4086
4096
|
description: 'Visionline-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).',
|
|
4087
4097
|
properties: {
|
|
@@ -4465,6 +4475,11 @@ export default {
|
|
|
4465
4475
|
description: 'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
4466
4476
|
type: 'string',
|
|
4467
4477
|
},
|
|
4478
|
+
user_identity_id: {
|
|
4479
|
+
description: 'ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.',
|
|
4480
|
+
format: 'uuid',
|
|
4481
|
+
type: 'string',
|
|
4482
|
+
},
|
|
4468
4483
|
visionline_metadata: {
|
|
4469
4484
|
description: 'Visionline-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).',
|
|
4470
4485
|
properties: {
|
|
@@ -5026,6 +5041,11 @@ export default {
|
|
|
5026
5041
|
description: 'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
5027
5042
|
type: 'string',
|
|
5028
5043
|
},
|
|
5044
|
+
user_identity_id: {
|
|
5045
|
+
description: 'ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.',
|
|
5046
|
+
format: 'uuid',
|
|
5047
|
+
type: 'string',
|
|
5048
|
+
},
|
|
5029
5049
|
visionline_metadata: {
|
|
5030
5050
|
description: 'Visionline-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).',
|
|
5031
5051
|
properties: {
|
|
@@ -5407,6 +5427,11 @@ export default {
|
|
|
5407
5427
|
description: 'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
5408
5428
|
type: 'string',
|
|
5409
5429
|
},
|
|
5430
|
+
user_identity_id: {
|
|
5431
|
+
description: 'ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.',
|
|
5432
|
+
format: 'uuid',
|
|
5433
|
+
type: 'string',
|
|
5434
|
+
},
|
|
5410
5435
|
visionline_metadata: {
|
|
5411
5436
|
description: 'Visionline-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).',
|
|
5412
5437
|
properties: {
|
|
@@ -10182,6 +10207,23 @@ export default {
|
|
|
10182
10207
|
type: 'string',
|
|
10183
10208
|
'x-property-group-key': 'thermostats',
|
|
10184
10209
|
},
|
|
10210
|
+
available_climate_preset_modes: {
|
|
10211
|
+
description: 'Climate preset modes that the thermostat supports, such as "home", "away", "wake", "sleep", "occupied", and "unoccupied".',
|
|
10212
|
+
items: {
|
|
10213
|
+
enum: [
|
|
10214
|
+
'home',
|
|
10215
|
+
'away',
|
|
10216
|
+
'wake',
|
|
10217
|
+
'sleep',
|
|
10218
|
+
'occupied',
|
|
10219
|
+
'unoccupied',
|
|
10220
|
+
],
|
|
10221
|
+
type: 'string',
|
|
10222
|
+
},
|
|
10223
|
+
type: 'array',
|
|
10224
|
+
'x-draft': 'Needs review.',
|
|
10225
|
+
'x-property-group-key': 'thermostats',
|
|
10226
|
+
},
|
|
10185
10227
|
available_climate_presets: {
|
|
10186
10228
|
description: 'Available [climate presets](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) for the thermostat.',
|
|
10187
10229
|
items: {
|
|
@@ -10202,6 +10244,18 @@ export default {
|
|
|
10202
10244
|
description: 'Unique key to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets).',
|
|
10203
10245
|
type: 'string',
|
|
10204
10246
|
},
|
|
10247
|
+
climate_preset_mode: {
|
|
10248
|
+
description: '\n The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.\n ',
|
|
10249
|
+
enum: [
|
|
10250
|
+
'home',
|
|
10251
|
+
'away',
|
|
10252
|
+
'wake',
|
|
10253
|
+
'sleep',
|
|
10254
|
+
'occupied',
|
|
10255
|
+
'unoccupied',
|
|
10256
|
+
],
|
|
10257
|
+
type: 'string',
|
|
10258
|
+
},
|
|
10205
10259
|
cooling_set_point_celsius: {
|
|
10206
10260
|
description: 'Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).',
|
|
10207
10261
|
format: 'float',
|
|
@@ -10299,6 +10353,18 @@ export default {
|
|
|
10299
10353
|
description: 'Unique key to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets).',
|
|
10300
10354
|
type: 'string',
|
|
10301
10355
|
},
|
|
10356
|
+
climate_preset_mode: {
|
|
10357
|
+
description: '\n The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.\n ',
|
|
10358
|
+
enum: [
|
|
10359
|
+
'home',
|
|
10360
|
+
'away',
|
|
10361
|
+
'wake',
|
|
10362
|
+
'sleep',
|
|
10363
|
+
'occupied',
|
|
10364
|
+
'unoccupied',
|
|
10365
|
+
],
|
|
10366
|
+
type: 'string',
|
|
10367
|
+
},
|
|
10302
10368
|
cooling_set_point_celsius: {
|
|
10303
10369
|
description: 'Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).',
|
|
10304
10370
|
format: 'float',
|
|
@@ -10368,6 +10434,18 @@ export default {
|
|
|
10368
10434
|
description: 'Unique key to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets).',
|
|
10369
10435
|
type: 'string',
|
|
10370
10436
|
},
|
|
10437
|
+
climate_preset_mode: {
|
|
10438
|
+
description: '\n The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.\n ',
|
|
10439
|
+
enum: [
|
|
10440
|
+
'home',
|
|
10441
|
+
'away',
|
|
10442
|
+
'wake',
|
|
10443
|
+
'sleep',
|
|
10444
|
+
'occupied',
|
|
10445
|
+
'unoccupied',
|
|
10446
|
+
],
|
|
10447
|
+
type: 'string',
|
|
10448
|
+
},
|
|
10371
10449
|
cooling_set_point_celsius: {
|
|
10372
10450
|
description: 'Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).',
|
|
10373
10451
|
format: 'float',
|
|
@@ -16822,6 +16900,11 @@ export default {
|
|
|
16822
16900
|
description: 'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
16823
16901
|
type: 'string',
|
|
16824
16902
|
},
|
|
16903
|
+
user_identity_id: {
|
|
16904
|
+
description: 'ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.',
|
|
16905
|
+
format: 'uuid',
|
|
16906
|
+
type: 'string',
|
|
16907
|
+
},
|
|
16825
16908
|
visionline_metadata: {
|
|
16826
16909
|
description: 'Visionline-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).',
|
|
16827
16910
|
properties: {
|
|
@@ -19057,6 +19140,11 @@ export default {
|
|
|
19057
19140
|
description: 'Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
19058
19141
|
type: 'string',
|
|
19059
19142
|
},
|
|
19143
|
+
user_identity_id: {
|
|
19144
|
+
description: 'ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.',
|
|
19145
|
+
format: 'uuid',
|
|
19146
|
+
type: 'string',
|
|
19147
|
+
},
|
|
19060
19148
|
visionline_metadata: {
|
|
19061
19149
|
description: 'Visionline-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).',
|
|
19062
19150
|
properties: {
|
|
@@ -42759,6 +42847,18 @@ export default {
|
|
|
42759
42847
|
description: 'Unique key to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets).',
|
|
42760
42848
|
type: 'string',
|
|
42761
42849
|
},
|
|
42850
|
+
climate_preset_mode: {
|
|
42851
|
+
description: '\n The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.\n ',
|
|
42852
|
+
enum: [
|
|
42853
|
+
'home',
|
|
42854
|
+
'away',
|
|
42855
|
+
'wake',
|
|
42856
|
+
'sleep',
|
|
42857
|
+
'occupied',
|
|
42858
|
+
'unoccupied',
|
|
42859
|
+
],
|
|
42860
|
+
type: 'string',
|
|
42861
|
+
},
|
|
42762
42862
|
cooling_set_point_celsius: {
|
|
42763
42863
|
description: 'Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).',
|
|
42764
42864
|
format: 'float',
|
|
@@ -45315,6 +45415,18 @@ export default {
|
|
|
45315
45415
|
description: 'Unique key to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets).',
|
|
45316
45416
|
type: 'string',
|
|
45317
45417
|
},
|
|
45418
|
+
climate_preset_mode: {
|
|
45419
|
+
description: '\n The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.\n ',
|
|
45420
|
+
enum: [
|
|
45421
|
+
'home',
|
|
45422
|
+
'away',
|
|
45423
|
+
'wake',
|
|
45424
|
+
'sleep',
|
|
45425
|
+
'occupied',
|
|
45426
|
+
'unoccupied',
|
|
45427
|
+
],
|
|
45428
|
+
type: 'string',
|
|
45429
|
+
},
|
|
45318
45430
|
cooling_set_point_celsius: {
|
|
45319
45431
|
description: 'Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).',
|
|
45320
45432
|
format: 'float',
|
|
@@ -45410,6 +45522,18 @@ export default {
|
|
|
45410
45522
|
description: 'Unique key to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets).',
|
|
45411
45523
|
type: 'string',
|
|
45412
45524
|
},
|
|
45525
|
+
climate_preset_mode: {
|
|
45526
|
+
description: '\n The climate preset mode for the thermostat, based on the available climate preset modes reported by the device.\n ',
|
|
45527
|
+
enum: [
|
|
45528
|
+
'home',
|
|
45529
|
+
'away',
|
|
45530
|
+
'wake',
|
|
45531
|
+
'sleep',
|
|
45532
|
+
'occupied',
|
|
45533
|
+
'unoccupied',
|
|
45534
|
+
],
|
|
45535
|
+
type: 'string',
|
|
45536
|
+
},
|
|
45413
45537
|
cooling_set_point_celsius: {
|
|
45414
45538
|
description: 'Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).',
|
|
45415
45539
|
format: 'float',
|