@gus-eip/loggers 3.8.6 → 3.8.7
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 +2 -0
- package/dist/enum.js +3 -1
- package/package.json +1 -1
package/dist/enum.d.ts
CHANGED
@@ -354,6 +354,8 @@ export declare class LoggerEnum {
|
|
354
354
|
GET_OPPORTUNITY_COMPLETED: string;
|
355
355
|
GET_OPPORTUNITY_FAILED: string;
|
356
356
|
UPDATE_OPPORTUNITY: string;
|
357
|
+
CONTENT_DOCUMENT_LINK_BY_LINKED_ENTITY_ID_FAILED: string;
|
358
|
+
OPPORTUNITY_BY_OPPID_FAILED: string;
|
357
359
|
};
|
358
360
|
UseCase: {
|
359
361
|
PROGRAM_INFO: string;
|
package/dist/enum.js
CHANGED
@@ -364,7 +364,9 @@ let LoggerEnum = class LoggerEnum {
|
|
364
364
|
GET_OPPORTUNITY_INITIATED: 'GET_OPPORTUNITY_INITIATED',
|
365
365
|
GET_OPPORTUNITY_COMPLETED: 'GET_OPPORTUNITY_COMPLETED',
|
366
366
|
GET_OPPORTUNITY_FAILED: 'GET_OPPORTUNITY_FAILED',
|
367
|
-
UPDATE_OPPORTUNITY: 'UPDATE_OPPORTUNITY'
|
367
|
+
UPDATE_OPPORTUNITY: 'UPDATE_OPPORTUNITY',
|
368
|
+
CONTENT_DOCUMENT_LINK_BY_LINKED_ENTITY_ID_FAILED: 'CONTENT_DOCUMENT_LINK_BY_LINKED_ENTITY_ID_FAILED',
|
369
|
+
OPPORTUNITY_BY_OPPID_FAILED: 'OPPORTUNITY_BY_OPPID_FAILED'
|
368
370
|
};
|
369
371
|
this.UseCase = {
|
370
372
|
PROGRAM_INFO: 'SAVE_PROGRAMME_DETAILS',
|
package/package.json
CHANGED