@gus-eip/loggers 3.1.6 → 3.1.8

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/dist/enum.d.ts CHANGED
@@ -25,4 +25,11 @@ export declare class LoggerEnumService {
25
25
  SUBMIT_APPLICATION: string;
26
26
  SAVE_SECTION_NAME: string;
27
27
  };
28
+ static Component: {
29
+ OAP_FRONTEND: string;
30
+ OAP_BACKEND: string;
31
+ OAP_HANDLERS: string;
32
+ GUS_EIP_SERVICE: string;
33
+ SALESFORCE: string;
34
+ };
28
35
  }
package/dist/enum.js CHANGED
@@ -36,6 +36,13 @@ LoggerEnumService.UseCase = {
36
36
  SUBMIT_APPLICATION: 'SUBMIT_APPLICATION',
37
37
  SAVE_SECTION_NAME: 'SAVE_SECTION_NAME',
38
38
  };
39
+ LoggerEnumService.Component = {
40
+ OAP_FRONTEND: 'OAP-FRONTEND',
41
+ OAP_BACKEND: 'OAP-BACKEND',
42
+ OAP_HANDLERS: 'OAP-HANDLERS',
43
+ GUS_EIP_SERVICE: 'GUS-EIP-SERVICE',
44
+ SALESFORCE: 'SALESFORCE',
45
+ };
39
46
  LoggerEnumService = __decorate([
40
47
  (0, common_1.Injectable)()
41
48
  ], LoggerEnumService);
package/dist/module.js CHANGED
@@ -10,12 +10,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
10
10
  exports.LoggerModule = void 0;
11
11
  const common_1 = require("@nestjs/common");
12
12
  const cloudwatch_logger_1 = require("./cloudwatch.logger");
13
- const enum_1 = require("./enum");
14
13
  let LoggerModule = LoggerModule_1 = class LoggerModule {
15
14
  static forRoot(params) {
16
15
  const cloudwatchProvider = {
17
16
  provide: params.options,
18
- useClass: cloudwatch_logger_1.CloudWatchLoggerService, LoggerEnumService: enum_1.LoggerEnumService
17
+ useClass: cloudwatch_logger_1.CloudWatchLoggerService
19
18
  };
20
19
  const cloudwatchProviders = {
21
20
  provide: params.options,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gus-eip/loggers",
3
- "version": "3.1.6",
3
+ "version": "3.1.8",
4
4
  "description": "@gus-eip/loggers is a package designed to provide logging functionality for your Node.js applications.",
5
5
  "author": "gus",
6
6
  "readmeFilename": "README.md",