@ngx-smz/core 19.3.5 → 19.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.
@@ -3,5 +3,5 @@ export interface LoggingConfig {
3
3
  enabled: boolean;
4
4
  production?: boolean;
5
5
  level?: 'debug' | 'info' | 'warn' | 'error';
6
- restrictedScopes?: LoggingScope[];
6
+ restrictedScopes?: (LoggingScope | string)[];
7
7
  }
@@ -15,7 +15,7 @@ export declare class LoggingService {
15
15
  /** expose current settings */
16
16
  readonly isEnabled: import("@angular/core").Signal<boolean>;
17
17
  readonly currentLevel: import("@angular/core").Signal<"debug" | "info" | "warn" | "error">;
18
- readonly activeScopes: import("@angular/core").Signal<LoggingScope[]>;
18
+ readonly activeScopes: import("@angular/core").Signal<string[]>;
19
19
  /** toggle logging global */
20
20
  enable(): void;
21
21
  disable(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngx-smz/core",
3
- "version": "19.3.5",
3
+ "version": "19.3.6",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.0",
6
6
  "@angular/core": "^19.2.0"