@ngn-net/nestjs-telescope 0.2.12 → 0.2.13

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.
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@ngn-net/nestjs-telescope",
3
- "version": "0.2.12",
4
- "builtAt": "2026-06-08T12:55:28.493Z"
3
+ "version": "0.2.13",
4
+ "builtAt": "2026-06-08T12:58:05.511Z"
5
5
  }
@@ -4,4 +4,5 @@ export declare class LogWatcher implements OnApplicationBootstrap {
4
4
  private readonly telescope;
5
5
  constructor(telescope: TelescopeService);
6
6
  onApplicationBootstrap(): void;
7
+ private init;
7
8
  }
@@ -18,8 +18,12 @@ let LogWatcher = class LogWatcher {
18
18
  telescope;
19
19
  constructor(telescope) {
20
20
  this.telescope = telescope;
21
+ this.init();
21
22
  }
22
23
  onApplicationBootstrap() {
24
+ // Keep for framework interface compatibility
25
+ }
26
+ init() {
23
27
  const self = this;
24
28
  const originalStdoutWrite = process.stdout.write;
25
29
  const originalStderrWrite = process.stderr.write;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngn-net/nestjs-telescope",
3
- "version": "0.2.12",
3
+ "version": "0.2.13",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },