@tsed/terminus 8.25.5 → 8.26.1

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.
@@ -58,7 +58,7 @@ let TerminusModule = class TerminusModule {
58
58
  return {
59
59
  provider,
60
60
  propertyKey,
61
- options
61
+ options: options
62
62
  };
63
63
  });
64
64
  }
@@ -18,7 +18,7 @@ export declare class TerminusModule implements OnInit {
18
18
  statusError?: number | undefined;
19
19
  statusErrorResponse?: Record<string, unknown> | undefined;
20
20
  useExit0?: boolean | undefined;
21
- logger: (event: string, error: any) => any;
21
+ logger: (msg: string, err: Error) => void;
22
22
  headers?: {
23
23
  [key: string]: string;
24
24
  } | undefined;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@tsed/terminus",
3
3
  "description": "Adds graceful shutdown and Kubernetes readiness / liveness checks for any HTTP applications.",
4
4
  "type": "module",
5
- "version": "8.25.5",
5
+ "version": "8.26.1",
6
6
  "author": "Romain Lenzotti",
7
7
  "source": "./src/index.ts",
8
8
  "main": "./lib/esm/index.js",
@@ -25,18 +25,18 @@
25
25
  "test:ci": "vitest run --coverage.thresholds.autoUpdate=true"
26
26
  },
27
27
  "dependencies": {
28
- "tslib": "2.7.0"
28
+ "tslib": ">=2.7.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@godaddy/terminus": "^4.12.1",
32
- "@tsed/barrels": "8.25.5",
33
- "@tsed/core": "8.25.5",
34
- "@tsed/di": "8.25.5",
35
- "@tsed/platform-http": "8.25.5",
36
- "@tsed/schema": "8.25.5",
37
- "@tsed/typescript": "8.25.5",
32
+ "@tsed/barrels": "8.26.1",
33
+ "@tsed/core": "8.26.1",
34
+ "@tsed/di": "8.26.1",
35
+ "@tsed/platform-http": "8.26.1",
36
+ "@tsed/schema": "8.26.1",
37
+ "@tsed/typescript": "8.26.1",
38
38
  "eslint": "9.12.0",
39
- "typescript": "5.9.3",
39
+ "typescript": "6.0.2",
40
40
  "vitest": "3.2.4"
41
41
  },
42
42
  "peerDependencies": {