@nestjs/common 11.1.17 → 11.1.18

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjs/common",
3
- "version": "11.1.17",
3
+ "version": "11.1.18",
4
4
  "description": "Nest - modern, fast, powerful node.js web framework (@common)",
5
5
  "author": "Kamil Mysliwiec",
6
6
  "homepage": "https://nestjs.com",
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "license": "MIT",
20
20
  "dependencies": {
21
- "file-type": "21.3.2",
21
+ "file-type": "21.3.4",
22
22
  "iterare": "1.2.1",
23
23
  "load-esm": "1.0.3",
24
24
  "tslib": "2.8.1",
@@ -38,5 +38,5 @@
38
38
  "optional": true
39
39
  }
40
40
  },
41
- "gitHead": "447a373ebebd2c58b5b3c8d718f25922a025f2fe"
41
+ "gitHead": "3c1cc5f91e95fcec27c3694cd42a08a50e85cc5f"
42
42
  }
@@ -195,8 +195,19 @@ export declare class ConsoleLogger implements LoggerService {
195
195
  protected formatTimestampDiff(timestampDiff: number): string;
196
196
  protected getInspectOptions(): InspectOptions;
197
197
  protected stringifyReplacer(key: string, value: unknown): unknown;
198
- private getContextAndMessagesToPrint;
199
- private getContextAndStackAndMessagesToPrint;
200
- private isStackFormat;
201
- private getColorByLogLevel;
198
+ protected getContextAndMessagesToPrint(args: unknown[]): {
199
+ messages: unknown[];
200
+ context: string | undefined;
201
+ };
202
+ protected getContextAndStackAndMessagesToPrint(args: unknown[]): {
203
+ messages: unknown[];
204
+ context: string | undefined;
205
+ stack?: undefined;
206
+ } | {
207
+ stack: string | undefined;
208
+ messages: unknown[];
209
+ context: string | undefined;
210
+ };
211
+ protected isStackFormat(stack: unknown): boolean;
212
+ protected getColorByLogLevel(level: LogLevel): (text: string) => string;
202
213
  }