@sitel/common 1.0.81 → 1.0.82
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/build/events/notify/index.d.ts +1 -0
- package/build/events/notify/index.js +1 -0
- package/build/events/notify/member/ts-validation-reminded-event.d.ts +6 -0
- package/build/events/notify/member/ts-validation-reminded-event.js +2 -0
- package/build/events/subjects.d.ts +1 -0
- package/build/events/subjects.js +2 -0
- package/package.json +1 -1
|
@@ -14,5 +14,6 @@ export * from './service/approval-service-requested-event';
|
|
|
14
14
|
export * from './substitute/approval-substitute-reminded-event';
|
|
15
15
|
export * from './substitute/approval-substitute-requested-event';
|
|
16
16
|
export * from './substitute/information-substitute-reminded-event';
|
|
17
|
+
export * from './member/ts-validation-reminded-event';
|
|
17
18
|
export * from './notify-completed-event';
|
|
18
19
|
export * from './notify-type-value';
|
|
@@ -26,5 +26,6 @@ __exportStar(require("./service/approval-service-requested-event"), exports);
|
|
|
26
26
|
__exportStar(require("./substitute/approval-substitute-reminded-event"), exports);
|
|
27
27
|
__exportStar(require("./substitute/approval-substitute-requested-event"), exports);
|
|
28
28
|
__exportStar(require("./substitute/information-substitute-reminded-event"), exports);
|
|
29
|
+
__exportStar(require("./member/ts-validation-reminded-event"), exports);
|
|
29
30
|
__exportStar(require("./notify-completed-event"), exports);
|
|
30
31
|
__exportStar(require("./notify-type-value"), exports);
|
|
@@ -20,6 +20,7 @@ export declare enum Subjects {
|
|
|
20
20
|
/** Service will receive */
|
|
21
21
|
NotifyServiceRequested = "notify:service:approval:requested",
|
|
22
22
|
NotifyServiceReminded = "notify:service:approval:reminded",
|
|
23
|
+
NotifyTSValidationReminded = "notify:ts:validation:reminded",
|
|
23
24
|
/** acknowledgement notification has been sent to the target audiences */
|
|
24
25
|
NotifyCompleted = "notify:completed",
|
|
25
26
|
/**
|
package/build/events/subjects.js
CHANGED
|
@@ -36,6 +36,8 @@ var Subjects;
|
|
|
36
36
|
Subjects["NotifyServiceRequested"] = "notify:service:approval:requested";
|
|
37
37
|
// when a received approval request is waiting to be answered after x days
|
|
38
38
|
Subjects["NotifyServiceReminded"] = "notify:service:approval:reminded";
|
|
39
|
+
// at 00:05 on day-of-month 5, if TS is not locked send an email as a reminder 'Feuille d'heures à valider'
|
|
40
|
+
Subjects["NotifyTSValidationReminded"] = "notify:ts:validation:reminded";
|
|
39
41
|
/** acknowledgement notification has been sent to the target audiences */
|
|
40
42
|
Subjects["NotifyCompleted"] = "notify:completed";
|
|
41
43
|
/**
|