@gus-eip/loggers 3.1.8 → 3.2.0

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
@@ -19,11 +19,12 @@ export declare class LoggerEnumService {
19
19
  static UseCase: {
20
20
  SAVE_BASIC_DETAILS: string;
21
21
  SAVE_PROGRAMME_DETAILS: string;
22
+ SAVE_ACADEMIC_INFORMATION: string;
23
+ SAVE_ADDITIONAL_INFORMATION: string;
22
24
  SAVE_APPLICATION: string;
23
25
  UPLOAD_DOCUMENT: string;
24
26
  DELETE_DOCUMENT: string;
25
27
  SUBMIT_APPLICATION: string;
26
- SAVE_SECTION_NAME: string;
27
28
  };
28
29
  static Component: {
29
30
  OAP_FRONTEND: string;
package/dist/enum.js CHANGED
@@ -30,11 +30,12 @@ LoggerEnumService.Event = {
30
30
  LoggerEnumService.UseCase = {
31
31
  SAVE_BASIC_DETAILS: 'SAVE_BASIC_DETAILS',
32
32
  SAVE_PROGRAMME_DETAILS: 'SAVE_PROGRAMME_DETAILS',
33
+ SAVE_ACADEMIC_INFORMATION: 'SAVE_ACADEMIC_INFORMATION',
34
+ SAVE_ADDITIONAL_INFORMATION: 'SAVE_ADDITIONAL_INFORMATION',
33
35
  SAVE_APPLICATION: 'SAVE_APPLICATION',
34
36
  UPLOAD_DOCUMENT: 'UPLOAD_DOCUMENT',
35
37
  DELETE_DOCUMENT: 'DELETE_DOCUMENT',
36
- SUBMIT_APPLICATION: 'SUBMIT_APPLICATION',
37
- SAVE_SECTION_NAME: 'SAVE_SECTION_NAME',
38
+ SUBMIT_APPLICATION: 'SUBMIT_APPLICATION'
38
39
  };
39
40
  LoggerEnumService.Component = {
40
41
  OAP_FRONTEND: 'OAP-FRONTEND',
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export * from './cloudwatch.logger';
2
+ export * from './enum';
2
3
  export * from './interface';
3
4
  export * from './module';
4
5
  export * from './provider';
5
6
  export * from './cloudwatch.event.formatter';
6
- export * from './enum';
package/dist/index.js CHANGED
@@ -15,8 +15,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./cloudwatch.logger"), exports);
18
+ __exportStar(require("./enum"), exports);
18
19
  __exportStar(require("./interface"), exports);
19
20
  __exportStar(require("./module"), exports);
20
21
  __exportStar(require("./provider"), exports);
21
22
  __exportStar(require("./cloudwatch.event.formatter"), exports);
22
- __exportStar(require("./enum"), exports);
package/dist/module.js CHANGED
@@ -10,6 +10,7 @@ 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");
13
14
  let LoggerModule = LoggerModule_1 = class LoggerModule {
14
15
  static forRoot(params) {
15
16
  const cloudwatchProvider = {
@@ -22,8 +23,8 @@ let LoggerModule = LoggerModule_1 = class LoggerModule {
22
23
  };
23
24
  return {
24
25
  module: LoggerModule_1,
25
- exports: [cloudwatchProvider, cloudwatchProviders],
26
- providers: [cloudwatchProvider, cloudwatchProviders],
26
+ exports: [cloudwatchProvider, cloudwatchProviders, enum_1.LoggerEnumService],
27
+ providers: [cloudwatchProvider, cloudwatchProviders, enum_1.LoggerEnumService],
27
28
  };
28
29
  }
29
30
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gus-eip/loggers",
3
- "version": "3.1.8",
3
+ "version": "3.2.0",
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",