@felixgeelhaar/govee-api-client 3.3.5 → 3.3.6

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.
@@ -73,7 +73,7 @@ export declare class GoveeClient {
73
73
  canExecuteImmediately: boolean;
74
74
  nextAvailableSlot: number;
75
75
  };
76
- getRetryMetrics(): Readonly<import("./infrastructure/retry").RetryMetrics> | null;
76
+ getRetryMetrics(): Readonly<import("./infrastructure").RetryMetrics> | null;
77
77
  getServiceStats(): {
78
78
  rateLimiter: {
79
79
  currentRequests: number;
@@ -84,7 +84,7 @@ export declare class GoveeClient {
84
84
  canExecuteImmediately: boolean;
85
85
  nextAvailableSlot: number;
86
86
  };
87
- retries: Readonly<import("./infrastructure/retry").RetryMetrics> | null;
87
+ retries: Readonly<import("./infrastructure").RetryMetrics> | null;
88
88
  configuration: {
89
89
  enableRetries: boolean;
90
90
  rateLimit: number;
@@ -177,7 +177,7 @@ export declare class GoveeControlService {
177
177
  /**
178
178
  * Gets retry metrics if retry functionality is enabled
179
179
  */
180
- getRetryMetrics(): Readonly<import("../infrastructure").RetryMetrics> | null;
180
+ getRetryMetrics(): Readonly<import("..").RetryMetrics> | null;
181
181
  /**
182
182
  * Resets retry metrics if retry functionality is enabled
183
183
  */
@@ -195,7 +195,7 @@ export declare class GoveeControlService {
195
195
  canExecuteImmediately: boolean;
196
196
  nextAvailableSlot: number;
197
197
  };
198
- retries: Readonly<import("../infrastructure").RetryMetrics> | null;
198
+ retries: Readonly<import("..").RetryMetrics> | null;
199
199
  configuration: {
200
200
  enableRetries: boolean;
201
201
  rateLimit: number;
@@ -0,0 +1,6 @@
1
+
2
+ ## Update dependencies to latest versions
3
+
4
+ Audit all project dependencies and devDependencies, upgrade them to latest compatible versions, resolve any breaking changes, and verify the package builds and tests pass with updated lockfile.
5
+
6
+ ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@felixgeelhaar/govee-api-client",
3
- "version": "3.3.5",
3
+ "version": "3.3.6",
4
4
  "description": "Enterprise-grade TypeScript client library for the Govee Developer REST API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -36,22 +36,22 @@
36
36
  "author": "Felix Geelhaar <felix@geelhaar.com>",
37
37
  "license": "MIT",
38
38
  "dependencies": {
39
- "axios": "1.15.0",
40
- "pino": "10.0.0",
41
- "zod": "4.1.11"
39
+ "axios": "^1.16.0",
40
+ "pino": "^10.3.1",
41
+ "zod": "^4.4.3"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/nock": "10.0.3",
45
- "@types/node": "24.6.2",
46
- "@vitest/coverage-v8": "4.0.16",
47
- "@vitest/ui": "4.0.16",
45
+ "@types/node": "^25.6.2",
46
+ "@vitest/coverage-v8": "^4.1.5",
47
+ "@vitest/ui": "^4.1.5",
48
48
  "husky": "9.1.7",
49
- "lint-staged": "16.2.3",
50
- "msw": "2.12.7",
51
- "nock": "14.0.10",
52
- "prettier": "3.6.2",
53
- "typescript": "5.9.3",
54
- "vitest": "4.0.16"
49
+ "lint-staged": "^17.0.2",
50
+ "msw": "^2.14.5",
51
+ "nock": "^14.0.15",
52
+ "prettier": "^3.8.3",
53
+ "typescript": "^6.0.3",
54
+ "vitest": "^4.1.5"
55
55
  },
56
56
  "engines": {
57
57
  "node": ">=20.0.0"