@gus-eip/loggers 3.9.8 → 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.
package/dist/enum.d.ts
CHANGED
package/dist/enum.js
CHANGED
@@ -462,6 +462,7 @@ let LoggerEnum = class LoggerEnum {
|
|
462
462
|
GUS_NEW_APPLICATION: 'GUS_NEW_APPLICATION',
|
463
463
|
GUS_WITHDRAW_APPLICATION: 'GUS_WITHDRAW_APPLICATION',
|
464
464
|
STUDENT_OAP_LEAD_OWNER_ASSIGNMENT: 'STUDENT_OAP_LEAD_OWNER_ASSIGNMENT',
|
465
|
+
UEG_DEPOSIT_CONFIRMED: 'UEG_DEPOSIT_CONFIRMED',
|
465
466
|
};
|
466
467
|
this.Component = {
|
467
468
|
OAP_FRONTEND: 'OAP-FRONTEND',
|
@@ -179,8 +179,8 @@ exports.BRAND_USECASE_MAPPING = [
|
|
179
179
|
{
|
180
180
|
brands: ['HZU'],
|
181
181
|
usecase: 'GUS_NEW_APPLICATION',
|
182
|
-
source: '
|
183
|
-
destination: '
|
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
|
];
|
@@ -68,5 +68,6 @@ export declare enum UsecaseMapping {
|
|
68
68
|
UEG_DOCUMENT_ISSUED = "Admission document issued",
|
69
69
|
GUS_DOCUMENT_UPLOAD = "Gus document upload",
|
70
70
|
GUS_WITHDRAW_APPLICATION = "Withdraw application",
|
71
|
-
STUDENT_OAP_LEAD_OWNER_ASSIGNMENT = "Student OAP lead owner assignment"
|
71
|
+
STUDENT_OAP_LEAD_OWNER_ASSIGNMENT = "Student OAP lead owner assignment",
|
72
|
+
UEG_DEPOSIT_CONFIRMED = "Deposit confirmed"
|
72
73
|
}
|
@@ -73,4 +73,5 @@ var UsecaseMapping;
|
|
73
73
|
UsecaseMapping["GUS_DOCUMENT_UPLOAD"] = "Gus document upload";
|
74
74
|
UsecaseMapping["GUS_WITHDRAW_APPLICATION"] = "Withdraw application";
|
75
75
|
UsecaseMapping["STUDENT_OAP_LEAD_OWNER_ASSIGNMENT"] = "Student OAP lead owner assignment";
|
76
|
+
UsecaseMapping["UEG_DEPOSIT_CONFIRMED"] = "Deposit confirmed";
|
76
77
|
})(UsecaseMapping || (exports.UsecaseMapping = UsecaseMapping = {}));
|
package/package.json
CHANGED