@digital-alchemy/hass 25.2.2 → 25.3.2
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/dev/index.d.mts +3 -0
- package/dist/dev/index.mjs +4 -0
- package/dist/dev/index.mjs.map +1 -0
- package/dist/dev/mappings.d.mts +70 -0
- package/dist/dev/mappings.mjs +2 -0
- package/dist/dev/mappings.mjs.map +1 -0
- package/dist/dev/registry.d.mts +328 -0
- package/dist/dev/registry.mjs +2 -0
- package/dist/dev/registry.mjs.map +1 -0
- package/dist/dev/services.d.mts +2431 -0
- package/dist/dev/services.mjs +5 -0
- package/dist/dev/services.mjs.map +1 -0
- package/dist/helpers/device.d.mts +1 -1
- package/dist/helpers/entity-state.d.mts +2 -2
- package/dist/helpers/fetch/calendar.d.mts +1 -1
- package/dist/helpers/fetch/configuration.d.mts +1 -1
- package/dist/helpers/fetch/service-list.d.mts +28 -3
- package/dist/helpers/id-by.d.mts +2 -3
- package/dist/helpers/interfaces.d.mts +4 -5
- package/dist/helpers/interfaces.mjs.map +1 -1
- package/dist/helpers/registry.d.mts +1 -2
- package/dist/helpers/registry.mjs.map +1 -1
- package/dist/helpers/utility.d.mts +5 -21
- package/dist/helpers/utility.mjs +0 -5
- package/dist/helpers/utility.mjs.map +1 -1
- package/dist/helpers/websocket.d.mts +2 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/dist/mock_assistant/helpers/fixtures.d.mts +2 -1
- package/dist/mock_assistant/services/device.service.mjs.map +1 -1
- package/dist/mock_assistant/services/entity-registry.service.d.mts +1 -1
- package/dist/mock_assistant/services/entity.service.d.mts +2 -2
- package/dist/mock_assistant/services/events.service.d.mts +2 -1
- package/dist/mock_assistant/services/events.service.mjs.map +1 -1
- package/dist/mock_assistant/services/fixtures.service.d.mts +3 -2
- package/dist/mock_assistant/services/fixtures.service.mjs.map +1 -1
- package/dist/mock_assistant/services/zone.service.mjs +1 -1
- package/dist/mock_assistant/services/zone.service.mjs.map +1 -1
- package/dist/services/area.service.d.mts +1 -1
- package/dist/services/area.service.mjs +1 -1
- package/dist/services/area.service.mjs.map +1 -1
- package/dist/services/call-proxy.service.d.mts +1 -1
- package/dist/services/call-proxy.service.mjs.map +1 -1
- package/dist/services/config.service.mjs.map +1 -1
- package/dist/services/entity.service.d.mts +1 -1
- package/dist/services/entity.service.mjs +1 -1
- package/dist/services/entity.service.mjs.map +1 -1
- package/dist/services/fetch-api.service.d.mts +3 -2
- package/dist/services/fetch-api.service.mjs.map +1 -1
- package/dist/services/floor.service.mjs.map +1 -1
- package/dist/services/id-by.service.d.mts +1 -1
- package/dist/services/id-by.service.mjs +28 -3
- package/dist/services/id-by.service.mjs.map +1 -1
- package/dist/services/label.service.mjs.map +1 -1
- package/dist/services/reference.service.mjs +4 -3
- package/dist/services/reference.service.mjs.map +1 -1
- package/dist/services/websocket-api.service.mjs +2 -2
- package/dist/services/websocket-api.service.mjs.map +1 -1
- package/dist/testing/area.spec.mjs.map +1 -1
- package/dist/testing/entity.spec.mjs.map +1 -1
- package/dist/testing/floor.spec.mjs.map +1 -1
- package/dist/testing/id-by.spec.mjs.map +1 -1
- package/dist/testing/label.spec.mjs.map +1 -1
- package/dist/testing/ref-by.spec.mjs.map +1 -1
- package/dist/user.d.mts +43 -0
- package/dist/user.mjs +4 -0
- package/dist/user.mjs.map +1 -0
- package/package.json +18 -17
- package/src/dev/index.mts +3 -0
- package/src/dev/mappings.mts +121 -0
- package/src/dev/registry.mts +330 -0
- package/src/dev/services.mts +2759 -0
- package/src/helpers/device.mts +1 -1
- package/src/helpers/entity-state.mts +6 -9
- package/src/helpers/fetch/calendar.mts +1 -1
- package/src/helpers/fetch/configuration.mts +1 -1
- package/src/helpers/fetch/service-list.mts +23 -3
- package/src/helpers/id-by.mts +11 -13
- package/src/helpers/interfaces.mts +14 -18
- package/src/helpers/registry.mts +9 -2
- package/src/helpers/utility.mts +13 -67
- package/src/helpers/websocket.mts +2 -1
- package/src/index.mts +2 -1
- package/src/mock_assistant/helpers/fixtures.mts +1 -1
- package/src/mock_assistant/services/area.service.mts +1 -1
- package/src/mock_assistant/services/device.service.mts +1 -1
- package/src/mock_assistant/services/entity-registry.service.mts +1 -1
- package/src/mock_assistant/services/entity.service.mts +2 -2
- package/src/mock_assistant/services/events.service.mts +2 -1
- package/src/mock_assistant/services/fixtures.service.mts +2 -1
- package/src/mock_assistant/services/floor.service.mts +1 -1
- package/src/mock_assistant/services/label.service.mts +1 -1
- package/src/mock_assistant/services/zone.service.mts +13 -10
- package/src/services/area.service.mts +2 -3
- package/src/services/call-proxy.service.mts +2 -2
- package/src/services/config.service.mts +1 -1
- package/src/services/entity.service.mts +2 -4
- package/src/services/fetch-api.service.mts +1 -1
- package/src/services/floor.service.mts +1 -1
- package/src/services/id-by.service.mts +47 -19
- package/src/services/label.service.mts +1 -1
- package/src/services/reference.service.mts +19 -18
- package/src/services/websocket-api.service.mts +2 -2
- package/src/testing/area.spec.mts +1 -1
- package/src/testing/entity.spec.mts +2 -1
- package/src/testing/floor.spec.mts +1 -1
- package/src/testing/id-by.spec.mts +1 -1
- package/src/testing/label.spec.mts +1 -1
- package/src/testing/ref-by.spec.mts +2 -1
- package/src/user.mts +97 -0
- package/dist/dynamic.d.mts +0 -3764
- package/dist/dynamic.mjs +0 -7
- package/dist/dynamic.mjs.map +0 -1
- package/src/dynamic.mts +0 -4302
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/dev/index.mts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC"}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
declare module "../user.mts" {
|
|
2
|
+
interface HassUniqueIdMapping {
|
|
3
|
+
"5622d76001a335e3ea893c4d60d31b3d-next_dawn": "sensor.sun_next_dawn";
|
|
4
|
+
"5622d76001a335e3ea893c4d60d31b3d-next_dusk": "sensor.sun_next_dusk";
|
|
5
|
+
"5622d76001a335e3ea893c4d60d31b3d-next_midnight": "sensor.sun_next_midnight";
|
|
6
|
+
"5622d76001a335e3ea893c4d60d31b3d-next_noon": "sensor.sun_next_noon";
|
|
7
|
+
"5622d76001a335e3ea893c4d60d31b3d-next_rising": "sensor.sun_next_rising";
|
|
8
|
+
"5622d76001a335e3ea893c4d60d31b3d-next_setting": "sensor.sun_next_setting";
|
|
9
|
+
"5622d76001a335e3ea893c4d60d31b3d-solar_elevation": "sensor.sun_solar_elevation";
|
|
10
|
+
"6d8acf36200c5ff8d2d9bb1b1f1dbe00c7eb5b7540103fd90c9a035f82967431": "button.start_white_noise";
|
|
11
|
+
"5622d76001a335e3ea893c4d60d31b3d-solar_azimuth": "sensor.sun_solar_azimuth";
|
|
12
|
+
"5622d76001a335e3ea893c4d60d31b3d-solar_rising": "sensor.sun_solar_rising";
|
|
13
|
+
digital_alchemy: "person.digital_alchemy";
|
|
14
|
+
"6acd101923c0460fc31bad82c4efa140": "todo.shopping_list";
|
|
15
|
+
"4a7fc2592d3a98e0eed8cbc73e839c1c": "tts.google_en_com";
|
|
16
|
+
hass_e2e_is_online: "binary_sensor.hass_e2e_online";
|
|
17
|
+
e1806fdc93296bbd5ab42967003cd38729ff9ba6cfeefc3e15a03ad01ac894fe: "sensor.magic";
|
|
18
|
+
a6e8373221727e197144ba689d7606d4be6f609f2fd0fd8e17516548780465ab: "binary_sensor.toggles";
|
|
19
|
+
"413eb6d69bbec134a07a6d32effd3c3763955e611f43256600cca40725276816": "switch.bedroom_lamp";
|
|
20
|
+
"06d5a22e681ee9c668f8563bd3108853fb053c43342131782afe989090c4ced9": "switch.kitchen_cabinets";
|
|
21
|
+
"27b4fc99f35bbdd1a07173caff5b52f86e3bc342db96f48427e47980b0fb6b49": "switch.living_room_mood_lights";
|
|
22
|
+
"8eb8c1f8c760e97cfa49a0a29cd6891313a1e9a45dd046a556a9f317778cf50a": "switch.porch_light";
|
|
23
|
+
"05ecbbc6111791b6baacbbb60397db14": "calendar.united_states_tx";
|
|
24
|
+
}
|
|
25
|
+
interface HassZoneMapping {
|
|
26
|
+
test: true;
|
|
27
|
+
}
|
|
28
|
+
interface HassDomainMapping {
|
|
29
|
+
automation: "automation.example";
|
|
30
|
+
binary_sensor: "binary_sensor.hass_e2e_online" | "binary_sensor.toggles";
|
|
31
|
+
button: "button.example";
|
|
32
|
+
calendar: "calendar.united_states_tx";
|
|
33
|
+
light: "light.bedroom_ceiling_fan";
|
|
34
|
+
person: "person.digital_alchemy";
|
|
35
|
+
scene: "scene.games_room_auto";
|
|
36
|
+
sensor: "sensor.magic" | "sensor.sun_next_dawn" | "sensor.sun_next_dusk" | "sensor.sun_next_midnight" | "sensor.sun_next_noon" | "sensor.sun_next_rising" | "sensor.sun_next_setting";
|
|
37
|
+
sun: "sun.sun";
|
|
38
|
+
switch: "switch.bedroom_lamp" | "switch.kitchen_cabinets" | "switch.living_room_mood_lights" | "switch.porch_light";
|
|
39
|
+
todo: "todo.shopping_list";
|
|
40
|
+
tts: "tts.google_en_com";
|
|
41
|
+
zone: "zone.home";
|
|
42
|
+
}
|
|
43
|
+
interface HassPlatformMapping {
|
|
44
|
+
_sun: "sensor.sun_next_dawn" | "sensor.sun_next_dusk" | "sensor.sun_next_midnight" | "sensor.sun_next_noon" | "sensor.sun_next_rising" | "sensor.sun_next_setting" | "sensor.sun_solar_elevation" | "sensor.sun_solar_azimuth" | "sensor.sun_solar_rising";
|
|
45
|
+
_person: "person.digital_alchemy";
|
|
46
|
+
_shopping_list: "todo.shopping_list";
|
|
47
|
+
_google_translate: "tts.google_en_com";
|
|
48
|
+
_synapse: "binary_sensor.hass_e2e_online" | "sensor.magic" | "button.example" | "binary_sensor.toggles" | "switch.bedroom_lamp" | "switch.kitchen_cabinets" | "switch.living_room_mood_lights" | "switch.porch_light";
|
|
49
|
+
_holiday: "calendar.united_states_tx";
|
|
50
|
+
}
|
|
51
|
+
interface HassDeviceMapping {
|
|
52
|
+
_308e39cf50a9fc6c30b4110724ed1f2e: "sensor.sun_next_dawn" | "sensor.sun_next_dusk" | "sensor.sun_next_midnight" | "sensor.sun_next_noon" | "sensor.sun_next_rising" | "sensor.sun_next_setting" | "button.example" | "sensor.sun_solar_elevation" | "sensor.sun_solar_azimuth" | "sensor.sun_solar_rising";
|
|
53
|
+
_e58841e47cf86097b310316e55d6bb12: "calendar.united_states_tx";
|
|
54
|
+
}
|
|
55
|
+
interface HassAreaMapping {
|
|
56
|
+
_test: "switch.living_room_mood_lights";
|
|
57
|
+
_living_room: "switch.living_room_mood_lights";
|
|
58
|
+
_kitchen: "switch.kitchen_cabinets";
|
|
59
|
+
_bedroom: "switch.bedroom_lamp" | "light.bedroom_ceiling_fan";
|
|
60
|
+
}
|
|
61
|
+
interface HassLabelMapping {
|
|
62
|
+
_synapse: "binary_sensor.hass_e2e_online" | "sensor.magic" | "binary_sensor.toggles" | "switch.bedroom_lamp" | "switch.kitchen_cabinets" | "switch.living_room_mood_lights" | "switch.porch_light";
|
|
63
|
+
_test: never;
|
|
64
|
+
}
|
|
65
|
+
interface HassFloorMapping {
|
|
66
|
+
_downstairs: "switch.kitchen_cabinets" | "switch.living_room_mood_lights";
|
|
67
|
+
_upstairs: "switch.bedroom_lamp";
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mappings.mjs","sourceRoot":"","sources":["../../src/dev/mappings.mts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,328 @@
|
|
|
1
|
+
declare module "../user.mts" {
|
|
2
|
+
interface HassEntitySetupMapping {
|
|
3
|
+
"button.example": {
|
|
4
|
+
state: string;
|
|
5
|
+
entity_id: "button.example";
|
|
6
|
+
attributes: {
|
|
7
|
+
friendly_name: "Example button";
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
"binary_sensor.hass_e2e_online": {
|
|
11
|
+
attributes: {
|
|
12
|
+
friendly_name: "hass_e2e online";
|
|
13
|
+
restored: true;
|
|
14
|
+
supported_features: 0;
|
|
15
|
+
};
|
|
16
|
+
context: {
|
|
17
|
+
id: "01HWXTSCSBGW129NV7WY8MMG1E";
|
|
18
|
+
parent_id: null;
|
|
19
|
+
user_id: null;
|
|
20
|
+
};
|
|
21
|
+
entity_id: "binary_sensor.hass_e2e_online";
|
|
22
|
+
state: "unavailable";
|
|
23
|
+
};
|
|
24
|
+
"binary_sensor.toggles": {
|
|
25
|
+
attributes: {
|
|
26
|
+
friendly_name: "toggles";
|
|
27
|
+
icon: "mdi:toggle-switch-variant-off";
|
|
28
|
+
restored: true;
|
|
29
|
+
supported_features: 0;
|
|
30
|
+
};
|
|
31
|
+
context: {
|
|
32
|
+
id: "01HWXTSCSB43FF1R6FX0QEE4Z6";
|
|
33
|
+
parent_id: null;
|
|
34
|
+
user_id: null;
|
|
35
|
+
};
|
|
36
|
+
entity_id: "binary_sensor.toggles";
|
|
37
|
+
state: "unavailable";
|
|
38
|
+
};
|
|
39
|
+
"calendar.united_states_tx": {
|
|
40
|
+
attributes: {
|
|
41
|
+
all_day: true;
|
|
42
|
+
description: "";
|
|
43
|
+
end_time: "2024-05-28 00:00:00";
|
|
44
|
+
friendly_name: "United States, TX";
|
|
45
|
+
location: "United States, TX";
|
|
46
|
+
message: "Memorial Day";
|
|
47
|
+
start_time: "2024-05-27 00:00:00";
|
|
48
|
+
};
|
|
49
|
+
context: {
|
|
50
|
+
id: "01HWXTYEEFBB7QQC1CSM6PAR36";
|
|
51
|
+
parent_id: null;
|
|
52
|
+
user_id: null;
|
|
53
|
+
};
|
|
54
|
+
entity_id: "calendar.united_states_tx";
|
|
55
|
+
state: "off";
|
|
56
|
+
};
|
|
57
|
+
"light.bedroom_ceiling_fan": {
|
|
58
|
+
attributes: {
|
|
59
|
+
brightness: null;
|
|
60
|
+
color_mode: null;
|
|
61
|
+
color_temp: null;
|
|
62
|
+
color_temp_kelvin: null;
|
|
63
|
+
friendly_name: "Bedroom Ceiling Fan";
|
|
64
|
+
hs_color: null;
|
|
65
|
+
icon: "mdi:lightbulb-group";
|
|
66
|
+
max_color_temp_kelvin: 6535;
|
|
67
|
+
max_mireds: 500;
|
|
68
|
+
min_color_temp_kelvin: 2000;
|
|
69
|
+
min_mireds: 153;
|
|
70
|
+
rgb_color: null;
|
|
71
|
+
supported_color_modes: ["color_temp", "xy"];
|
|
72
|
+
supported_features: 40;
|
|
73
|
+
xy_color: null;
|
|
74
|
+
};
|
|
75
|
+
context: {
|
|
76
|
+
id: "01HX722Y1JFS6KN2MDERK0VJ2D";
|
|
77
|
+
parent_id: null;
|
|
78
|
+
user_id: null;
|
|
79
|
+
};
|
|
80
|
+
entity_id: "light.bedroom_ceiling_fan";
|
|
81
|
+
state: "off";
|
|
82
|
+
};
|
|
83
|
+
"person.digital_alchemy": {
|
|
84
|
+
attributes: {
|
|
85
|
+
device_trackers: [];
|
|
86
|
+
editable: true;
|
|
87
|
+
friendly_name: "digital-alchemy";
|
|
88
|
+
id: "digital_alchemy";
|
|
89
|
+
user_id: "4dd1cf7e93e94f3fbaf419501f9a3d59";
|
|
90
|
+
};
|
|
91
|
+
context: {
|
|
92
|
+
id: "01HWXTSCSBRKJ9T2KV1JNER5KQ";
|
|
93
|
+
parent_id: null;
|
|
94
|
+
user_id: null;
|
|
95
|
+
};
|
|
96
|
+
entity_id: "person.digital_alchemy";
|
|
97
|
+
state: "unknown";
|
|
98
|
+
};
|
|
99
|
+
"scene.games_room_auto": {
|
|
100
|
+
attributes: {
|
|
101
|
+
"Managed By": "home_automation";
|
|
102
|
+
friendly_name: "bedroom off";
|
|
103
|
+
};
|
|
104
|
+
context: {
|
|
105
|
+
id: "01HWXW289S8HP5MSGNNTNB2CBG";
|
|
106
|
+
parent_id: null;
|
|
107
|
+
user_id: null;
|
|
108
|
+
};
|
|
109
|
+
entity_id: "scene.games_room_auto";
|
|
110
|
+
state: "unknown";
|
|
111
|
+
};
|
|
112
|
+
"sensor.magic": {
|
|
113
|
+
attributes: {
|
|
114
|
+
friendly_name: "magic";
|
|
115
|
+
icon: "mdi:satellite-uplink";
|
|
116
|
+
restored: true;
|
|
117
|
+
supported_features: 0;
|
|
118
|
+
};
|
|
119
|
+
context: {
|
|
120
|
+
id: "01HWXTSCSBW34BP3R20RJ09CVZ";
|
|
121
|
+
parent_id: null;
|
|
122
|
+
user_id: null;
|
|
123
|
+
};
|
|
124
|
+
entity_id: "sensor.magic";
|
|
125
|
+
state: string;
|
|
126
|
+
};
|
|
127
|
+
"sensor.sun_next_dawn": {
|
|
128
|
+
attributes: {
|
|
129
|
+
device_class: "timestamp";
|
|
130
|
+
friendly_name: "Sun Next dawn";
|
|
131
|
+
};
|
|
132
|
+
context: {
|
|
133
|
+
id: "01HWXTS8W1SRTPT5K1XM0G491X";
|
|
134
|
+
parent_id: null;
|
|
135
|
+
user_id: null;
|
|
136
|
+
};
|
|
137
|
+
entity_id: "sensor.sun_next_dawn";
|
|
138
|
+
state: "2024-05-03T03:24:45+00:00";
|
|
139
|
+
};
|
|
140
|
+
"sensor.sun_next_dusk": {
|
|
141
|
+
attributes: {
|
|
142
|
+
device_class: "timestamp";
|
|
143
|
+
friendly_name: "Sun Next dusk";
|
|
144
|
+
};
|
|
145
|
+
context: {
|
|
146
|
+
id: "01HWXTS8W1S95P1MVHDGHSQEB2";
|
|
147
|
+
parent_id: null;
|
|
148
|
+
user_id: null;
|
|
149
|
+
};
|
|
150
|
+
entity_id: "sensor.sun_next_dusk";
|
|
151
|
+
state: "2024-05-03T19:51:10+00:00";
|
|
152
|
+
};
|
|
153
|
+
"sensor.sun_next_midnight": {
|
|
154
|
+
attributes: {
|
|
155
|
+
device_class: "timestamp";
|
|
156
|
+
friendly_name: "Sun Next midnight";
|
|
157
|
+
};
|
|
158
|
+
context: {
|
|
159
|
+
id: "01HWXTS8W1YQCPA3WZ69Y9JSPD";
|
|
160
|
+
parent_id: null;
|
|
161
|
+
user_id: null;
|
|
162
|
+
};
|
|
163
|
+
entity_id: "sensor.sun_next_midnight";
|
|
164
|
+
state: "2024-05-03T23:37:12+00:00";
|
|
165
|
+
};
|
|
166
|
+
"sensor.sun_next_noon": {
|
|
167
|
+
attributes: {
|
|
168
|
+
device_class: "timestamp";
|
|
169
|
+
friendly_name: "Sun Next noon";
|
|
170
|
+
};
|
|
171
|
+
context: {
|
|
172
|
+
id: "01HWXTS8W28MVV48CQ31JB2WKC";
|
|
173
|
+
parent_id: null;
|
|
174
|
+
user_id: null;
|
|
175
|
+
};
|
|
176
|
+
entity_id: "sensor.sun_next_noon";
|
|
177
|
+
state: "2024-05-03T11:37:19+00:00";
|
|
178
|
+
};
|
|
179
|
+
"sensor.sun_next_rising": {
|
|
180
|
+
attributes: {
|
|
181
|
+
device_class: "timestamp";
|
|
182
|
+
friendly_name: "Sun Next rising";
|
|
183
|
+
};
|
|
184
|
+
context: {
|
|
185
|
+
id: "01HWXTS8W2MMADKGWE4A5BMH51";
|
|
186
|
+
parent_id: null;
|
|
187
|
+
user_id: null;
|
|
188
|
+
};
|
|
189
|
+
entity_id: "sensor.sun_next_rising";
|
|
190
|
+
state: "2024-05-03T04:05:17+00:00";
|
|
191
|
+
};
|
|
192
|
+
"sensor.sun_next_setting": {
|
|
193
|
+
attributes: {
|
|
194
|
+
device_class: "timestamp";
|
|
195
|
+
friendly_name: "Sun Next setting";
|
|
196
|
+
};
|
|
197
|
+
context: {
|
|
198
|
+
id: "01HWXTS8W24KWTHR2B6V32NCXG";
|
|
199
|
+
parent_id: null;
|
|
200
|
+
user_id: null;
|
|
201
|
+
};
|
|
202
|
+
entity_id: "sensor.sun_next_setting";
|
|
203
|
+
state: "2024-05-03T19:10:21+00:00";
|
|
204
|
+
};
|
|
205
|
+
"sun.sun": {
|
|
206
|
+
attributes: {
|
|
207
|
+
azimuth: 0.35;
|
|
208
|
+
elevation: -21.86;
|
|
209
|
+
friendly_name: "Sun";
|
|
210
|
+
next_dawn: "2024-05-03T03:24:45.747945+00:00";
|
|
211
|
+
next_dusk: "2024-05-03T19:51:10.358970+00:00";
|
|
212
|
+
next_midnight: "2024-05-03T23:37:12+00:00";
|
|
213
|
+
next_noon: "2024-05-03T11:37:19+00:00";
|
|
214
|
+
next_rising: "2024-05-03T04:05:17.926549+00:00";
|
|
215
|
+
next_setting: "2024-05-03T19:10:21.280558+00:00";
|
|
216
|
+
rising: true;
|
|
217
|
+
};
|
|
218
|
+
context: {
|
|
219
|
+
id: "01HWXTS8W1J2TDGMN7KKNWP8DV";
|
|
220
|
+
parent_id: null;
|
|
221
|
+
user_id: null;
|
|
222
|
+
};
|
|
223
|
+
entity_id: "sun.sun";
|
|
224
|
+
state: "below_horizon";
|
|
225
|
+
};
|
|
226
|
+
"switch.bedroom_lamp": {
|
|
227
|
+
attributes: {
|
|
228
|
+
friendly_name: "bedroom_lamp";
|
|
229
|
+
restored: true;
|
|
230
|
+
supported_features: 0;
|
|
231
|
+
};
|
|
232
|
+
context: {
|
|
233
|
+
id: "01HWXTSCSB7BK003CH3AYYVXCB";
|
|
234
|
+
parent_id: null;
|
|
235
|
+
user_id: null;
|
|
236
|
+
};
|
|
237
|
+
entity_id: "switch.bedroom_lamp";
|
|
238
|
+
state: "unavailable";
|
|
239
|
+
};
|
|
240
|
+
"switch.kitchen_cabinets": {
|
|
241
|
+
attributes: {
|
|
242
|
+
friendly_name: "kitchen_cabinets";
|
|
243
|
+
restored: true;
|
|
244
|
+
supported_features: 0;
|
|
245
|
+
};
|
|
246
|
+
context: {
|
|
247
|
+
id: "01HWXTSCSBM9Y3SRQTFJ5CVK6H";
|
|
248
|
+
parent_id: null;
|
|
249
|
+
user_id: null;
|
|
250
|
+
};
|
|
251
|
+
entity_id: "switch.kitchen_cabinets";
|
|
252
|
+
state: "unavailable";
|
|
253
|
+
};
|
|
254
|
+
"switch.living_room_mood_lights": {
|
|
255
|
+
attributes: {
|
|
256
|
+
friendly_name: "living_room_mood_lights";
|
|
257
|
+
restored: true;
|
|
258
|
+
supported_features: 0;
|
|
259
|
+
};
|
|
260
|
+
context: {
|
|
261
|
+
id: "01HWXTSCSBS5B586JJ7VFH10SX";
|
|
262
|
+
parent_id: null;
|
|
263
|
+
user_id: null;
|
|
264
|
+
};
|
|
265
|
+
entity_id: "switch.living_room_mood_lights";
|
|
266
|
+
state: "unavailable";
|
|
267
|
+
};
|
|
268
|
+
"switch.porch_light": {
|
|
269
|
+
attributes: {
|
|
270
|
+
friendly_name: "porch_light";
|
|
271
|
+
restored: true;
|
|
272
|
+
supported_features: 0;
|
|
273
|
+
};
|
|
274
|
+
context: {
|
|
275
|
+
id: "01HWXTSCSBFTSZR1M5XAK7XSR8";
|
|
276
|
+
parent_id: null;
|
|
277
|
+
user_id: null;
|
|
278
|
+
};
|
|
279
|
+
entity_id: "switch.porch_light";
|
|
280
|
+
state: string;
|
|
281
|
+
};
|
|
282
|
+
"todo.shopping_list": {
|
|
283
|
+
attributes: {
|
|
284
|
+
friendly_name: "Shopping List";
|
|
285
|
+
supported_features: 15;
|
|
286
|
+
};
|
|
287
|
+
context: {
|
|
288
|
+
id: "01HWXTS8X3D417XC4YJTG8QJWB";
|
|
289
|
+
parent_id: null;
|
|
290
|
+
user_id: null;
|
|
291
|
+
};
|
|
292
|
+
entity_id: "todo.shopping_list";
|
|
293
|
+
state: "0";
|
|
294
|
+
};
|
|
295
|
+
"tts.google_en_com": {
|
|
296
|
+
attributes: {
|
|
297
|
+
friendly_name: "Google en com";
|
|
298
|
+
};
|
|
299
|
+
context: {
|
|
300
|
+
id: "01HWXTS8XMPQ236CDJ6X7C6E60";
|
|
301
|
+
parent_id: null;
|
|
302
|
+
user_id: null;
|
|
303
|
+
};
|
|
304
|
+
entity_id: "tts.google_en_com";
|
|
305
|
+
state: "unknown";
|
|
306
|
+
};
|
|
307
|
+
"zone.home": {
|
|
308
|
+
attributes: {
|
|
309
|
+
editable: true;
|
|
310
|
+
friendly_name: "Home";
|
|
311
|
+
icon: "mdi:home";
|
|
312
|
+
latitude: 52.373_133_9;
|
|
313
|
+
longitude: 4.890_314_7;
|
|
314
|
+
passive: false;
|
|
315
|
+
persons: [];
|
|
316
|
+
radius: 100;
|
|
317
|
+
};
|
|
318
|
+
context: {
|
|
319
|
+
id: "01HWXTS8GMB4ZW20P8MGMX0QSN";
|
|
320
|
+
parent_id: null;
|
|
321
|
+
user_id: null;
|
|
322
|
+
};
|
|
323
|
+
entity_id: "zone.home";
|
|
324
|
+
state: "0";
|
|
325
|
+
};
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"registry.mjs","sourceRoot":"","sources":["../../src/dev/registry.mts"],"names":[],"mappings":""}
|