Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3dd61ab4e8 | ||
|
|
b7ea7bc552 | ||
|
|
d23c89c3c9 | ||
|
|
fd766a822c |
6
dist/homepage.d.ts
vendored
6
dist/homepage.d.ts
vendored
@@ -1,8 +1,8 @@
|
|||||||
import { API_HA_DeskPosition } from "./homeassistant";
|
import { API_HA_DeskPosition } from "./homeassistant";
|
||||||
import { TidalGetCurrent } from "./tidal";
|
import { TidalGetCurrent } from "./tidal";
|
||||||
export type FullInformation = {
|
export type FullInformation = {
|
||||||
ha_desk_position: API_HA_DeskPosition;
|
ha_desk_position: API_HA_DeskPosition | null;
|
||||||
ha_temp: string;
|
ha_temp: string | null;
|
||||||
tidal_current: TidalGetCurrent;
|
tidal_current: TidalGetCurrent | null;
|
||||||
};
|
};
|
||||||
//# sourceMappingURL=homepage.d.ts.map
|
//# sourceMappingURL=homepage.d.ts.map
|
||||||
2
dist/homepage.d.ts.map
vendored
2
dist/homepage.d.ts.map
vendored
@@ -1 +1 @@
|
|||||||
{"version":3,"file":"homepage.d.ts","sourceRoot":"","sources":["../src/homepage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAE1C,MAAM,MAAM,eAAe,GAAG;IAC7B,gBAAgB,EAAE,mBAAmB,CAAC;IACtC,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,eAAe,CAAC;CAC/B,CAAA"}
|
{"version":3,"file":"homepage.d.ts","sourceRoot":"","sources":["../src/homepage.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAE1C,MAAM,MAAM,eAAe,GAAG;IAC7B,gBAAgB,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAC7C,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,aAAa,EAAE,eAAe,GAAG,IAAI,CAAC;CACtC,CAAA"}
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@dpu/shared",
|
"name": "@dpu/shared",
|
||||||
"version": "1.5.1",
|
"version": "1.5.3",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@dpu/shared",
|
"name": "@dpu/shared",
|
||||||
"version": "1.5.1",
|
"version": "1.5.3",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.7.9",
|
"axios": "^1.7.9",
|
||||||
"chalk": "^5.6.2",
|
"chalk": "^5.6.2",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@dpu/shared",
|
"name": "@dpu/shared",
|
||||||
"version": "1.5.1",
|
"version": "1.5.3",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"types": "dist/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import { API_HA_DeskPosition } from "./homeassistant";
|
|||||||
import { TidalGetCurrent } from "./tidal";
|
import { TidalGetCurrent } from "./tidal";
|
||||||
|
|
||||||
export type FullInformation = {
|
export type FullInformation = {
|
||||||
ha_desk_position: API_HA_DeskPosition;
|
ha_desk_position: API_HA_DeskPosition | null;
|
||||||
ha_temp: string;
|
ha_temp: string | null;
|
||||||
tidal_current: TidalGetCurrent;
|
tidal_current: TidalGetCurrent | null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user