@gus-eip/loggers 3.9.7 → 3.9.9

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,8 @@ 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;
454
+ UEG_DEPOSIT_CONFIRMED: string;
453
455
  };
454
456
  Component: {
455
457
  OAP_FRONTEND: string;
package/dist/enum.js CHANGED
@@ -461,6 +461,8 @@ 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',
465
+ UEG_DEPOSIT_CONFIRMED: 'UEG_DEPOSIT_CONFIRMED',
464
466
  };
465
467
  this.Component = {
466
468
  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
  }
@@ -179,8 +179,8 @@ exports.BRAND_USECASE_MAPPING = [
179
179
  {
180
180
  brands: ['HZU'],
181
181
  usecase: 'GUS_NEW_APPLICATION',
182
- source: 'OAP',
183
- destination: 'GUS Salesforce',
182
+ source: 'GUS Salesforce',
183
+ destination: 'HZU education cloud',
184
184
  },
185
185
  {
186
186
  brands: ['HZU'],
@@ -476,4 +476,10 @@ exports.BRAND_USECASE_MAPPING = [
476
476
  source: 'GUS Salesforce',
477
477
  destination: 'UE Campusnet',
478
478
  },
479
+ {
480
+ brands: ['UEG'],
481
+ usecase: 'UEG_DEPOSIT_CONFIRMED',
482
+ source: 'UE Campusnet',
483
+ destination: 'GUS Salesforce',
484
+ }
479
485
  ];
@@ -67,5 +67,7 @@ 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",
72
+ UEG_DEPOSIT_CONFIRMED = "Deposit confirmed"
71
73
  }
@@ -72,4 +72,6 @@ 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";
76
+ UsecaseMapping["UEG_DEPOSIT_CONFIRMED"] = "Deposit confirmed";
75
77
  })(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.9",
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",