@osovitny/anatoly 3.21.34 → 3.21.35

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": "@osovitny/anatoly",
3
- "version": "3.21.34",
3
+ "version": "3.21.35",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.11",
6
6
  "@angular/core": "^21.2.11",
@@ -373,7 +373,9 @@ declare enum AnatolyLogLevel {
373
373
  Verbose = 3
374
374
  }
375
375
  declare class LoggingService {
376
+ static readonly packagePrefix = "@osovitny/anatoly";
376
377
  constructor();
378
+ static getEventName(eventName: string): string;
377
379
  private static getConfiguredLogLevel;
378
380
  private static getMsalLogLevel;
379
381
  private static toLogLevel;
@@ -386,6 +388,7 @@ declare class LoggingService {
386
388
  info(info: any, ...optionalParams: any[]): void;
387
389
  warn(info: any, ...optionalParams: any[]): void;
388
390
  error(error: any, ...optionalParams: any[]): void;
391
+ getEventName(eventName: string): string;
389
392
  static ɵfac: i0.ɵɵFactoryDeclaration<LoggingService, never>;
390
393
  static ɵprov: i0.ɵɵInjectableDeclaration<LoggingService>;
391
394
  }