Generic Commit; Most likely a fix or small feature

This commit is contained in:
Darius
2025-11-21 17:16:39 +01:00
parent c9357d0371
commit a2a0c963ea
5 changed files with 15 additions and 11 deletions

4
package-lock.json generated
View File

@@ -20,8 +20,8 @@
} }
}, },
"node_modules/@dpu/shared": { "node_modules/@dpu/shared": {
"version": "1.1.4", "version": "1.2.0",
"resolved": "git+https://git.dariusbag.dev/DarDarBinks/dpu-shared.git#a35a3e7ecbc23444bcfbfc2e89770f490fd4123f", "resolved": "git+https://git.dariusbag.dev/DarDarBinks/dpu-shared.git#50c951e0d354ef959ed61589f538dfe19c8658c2",
"dependencies": { "dependencies": {
"axios": "^1.7.9", "axios": "^1.7.9",
"chalk": "^5.6.2", "chalk": "^5.6.2",

View File

@@ -1,5 +1,4 @@
import type { HomeAssistantEntity } from "@dpu/shared"; import { BaseClient, type HomeAssistantEntity } from "@dpu/shared";
import { BaseClient } from "@dpu/shared/dist/fastify.js";
import { printNetworkError } from "@dpu/shared/dist/logger.js"; import { printNetworkError } from "@dpu/shared/dist/logger.js";
export class HomeAssistantClient extends BaseClient { export class HomeAssistantClient extends BaseClient {

View File

@@ -1,8 +1,9 @@
import type { import {
HomeAssistantDeskPositionResult, BaseService,
HomeAssistantEntity, type HomeAssistantDeskPositionResult,
type HomeAssistantEntity,
type ServiceResult,
} from "@dpu/shared"; } from "@dpu/shared";
import { BaseService, type ServiceResult } from "@dpu/shared/dist/fastify.js";
import { logWarning } from "@dpu/shared/dist/logger.js"; import { logWarning } from "@dpu/shared/dist/logger.js";
import { calculateSecondsBetween } from "@dpu/shared/dist/timehelper.js"; import { calculateSecondsBetween } from "@dpu/shared/dist/timehelper.js";
import { Config } from "../config.js"; import { Config } from "../config.js";

View File

@@ -1,4 +1,4 @@
import { BaseClient } from "@dpu/shared/dist/fastify.js"; import { BaseClient } from "@dpu/shared";
import { printNetworkError } from "@dpu/shared/dist/logger.js"; import { printNetworkError } from "@dpu/shared/dist/logger.js";
export class TidalClient extends BaseClient { export class TidalClient extends BaseClient {

View File

@@ -1,5 +1,9 @@
import type { TidalSong, TidalVolume } from "@dpu/shared"; import {
import { BaseService, type ServiceResult } from "@dpu/shared/dist/fastify.js"; BaseService,
type ServiceResult,
type TidalSong,
type TidalVolume,
} from "@dpu/shared";
import { logWarning } from "@dpu/shared/dist/logger.js"; import { logWarning } from "@dpu/shared/dist/logger.js";
import type { TidalClient } from "./client.js"; import type { TidalClient } from "./client.js";