@gus-eip/loggers 3.9.7 → 3.9.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.
@@ -153,6 +153,7 @@ let CloudWatchLoggerService = class CloudWatchLoggerService {
153
153
  event: fullLogObject.event || '',
154
154
  status,
155
155
  message: type === 'error' ? fullLogObject.errorMessage : fullLogObject.logMessage,
156
+ logGroupName: this.logGroupName,
156
157
  };
157
158
  const sqsUrl = await ssm_utils_1.ssmUtils.getSqsUrl();
158
159
  if (status === 'IN_PROGRESS' || !sqsUrl) {
package/dist/enum.d.ts CHANGED
@@ -450,6 +450,7 @@ export declare class LoggerEnum {
450
450
  GUS_DOCUMENT_UPLOAD: string;
451
451
  GUS_NEW_APPLICATION: string;
452
452
  GUS_WITHDRAW_APPLICATION: string;
453
+ STUDENT_OAP_LEAD_OWNER_ASSIGNMENT: string;
453
454
  };
454
455
  Component: {
455
456
  OAP_FRONTEND: string;
package/dist/enum.js CHANGED
@@ -461,6 +461,7 @@ let LoggerEnum = class LoggerEnum {
461
461
  GUS_DOCUMENT_UPLOAD: 'GUS_DOCUMENT_UPLOAD',
462
462
  GUS_NEW_APPLICATION: 'GUS_NEW_APPLICATION',
463
463
  GUS_WITHDRAW_APPLICATION: 'GUS_WITHDRAW_APPLICATION',
464
+ STUDENT_OAP_LEAD_OWNER_ASSIGNMENT: 'STUDENT_OAP_LEAD_OWNER_ASSIGNMENT',
464
465
  };
465
466
  this.Component = {
466
467
  OAP_FRONTEND: 'OAP-FRONTEND',
@@ -9,4 +9,5 @@ export interface LogEvent {
9
9
  event: any;
10
10
  status: string;
11
11
  message: string;
12
+ logGroupName: string;
12
13
  }
@@ -67,5 +67,6 @@ export declare enum UsecaseMapping {
67
67
  UEG_REJECT_DOCUMENT = "Document rejection",
68
68
  UEG_DOCUMENT_ISSUED = "Admission document issued",
69
69
  GUS_DOCUMENT_UPLOAD = "Gus document upload",
70
- GUS_WITHDRAW_APPLICATION = "Withdraw application"
70
+ GUS_WITHDRAW_APPLICATION = "Withdraw application",
71
+ STUDENT_OAP_LEAD_OWNER_ASSIGNMENT = "Student OAP lead owner assignment"
71
72
  }
@@ -72,4 +72,5 @@ var UsecaseMapping;
72
72
  UsecaseMapping["UEG_DOCUMENT_ISSUED"] = "Admission document issued";
73
73
  UsecaseMapping["GUS_DOCUMENT_UPLOAD"] = "Gus document upload";
74
74
  UsecaseMapping["GUS_WITHDRAW_APPLICATION"] = "Withdraw application";
75
+ UsecaseMapping["STUDENT_OAP_LEAD_OWNER_ASSIGNMENT"] = "Student OAP lead owner assignment";
75
76
  })(UsecaseMapping || (exports.UsecaseMapping = UsecaseMapping = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gus-eip/loggers",
3
- "version": "3.9.7",
3
+ "version": "3.9.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",