@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.
@@ -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);
@@ -0,0 +1,6 @@
1
+ import { Subjects } from '../../subjects';
2
+ import { Contact } from '../contact';
3
+ export interface NotifyTSValidationRemindedEvent {
4
+ subject: Subjects.NotifyTSValidationReminded;
5
+ data: Contact;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
  /**
@@ -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
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sitel/common",
3
- "version": "1.0.81",
3
+ "version": "1.0.82",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",