@sitel/common 1.0.93 → 1.0.94

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.
@@ -0,0 +1,14 @@
1
+ import { Subjects } from '../../subjects';
2
+ import { Contact } from '../contact';
3
+ interface NotifyBipeSyncPayload {
4
+ recipient: Contact;
5
+ members: {
6
+ prev: Contact[];
7
+ current: Contact[];
8
+ };
9
+ }
10
+ export interface NotifyBipeSyncEvent {
11
+ subject: Subjects.NotifyBipeSync;
12
+ data: NotifyBipeSyncPayload;
13
+ }
14
+ export {};
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -19,3 +19,4 @@ export * from './member/ts-validation-reminded-event';
19
19
  export * from './notify-completed-event';
20
20
  export * from './notify-type-value';
21
21
  export * from './manual/manual-event';
22
+ export * from './admin/bipe-sync-event';
@@ -31,3 +31,4 @@ __exportStar(require("./member/ts-validation-reminded-event"), exports);
31
31
  __exportStar(require("./notify-completed-event"), exports);
32
32
  __exportStar(require("./notify-type-value"), exports);
33
33
  __exportStar(require("./manual/manual-event"), exports);
34
+ __exportStar(require("./admin/bipe-sync-event"), exports);
@@ -41,5 +41,9 @@ export declare enum Subjects {
41
41
  * to be used only by admin
42
42
  */
43
43
  NotifyManual = "notify:manual",
44
- WorkerManual = "worker:manual"
44
+ WorkerManual = "worker:manual",
45
+ /**
46
+ * Notify Bipe Sync log
47
+ */
48
+ NotifyBipeSync = "notify:bipe:sync"
45
49
  }
@@ -61,4 +61,8 @@ var Subjects;
61
61
  */
62
62
  Subjects["NotifyManual"] = "notify:manual";
63
63
  Subjects["WorkerManual"] = "worker:manual";
64
+ /**
65
+ * Notify Bipe Sync log
66
+ */
67
+ Subjects["NotifyBipeSync"] = "notify:bipe:sync";
64
68
  })(Subjects = exports.Subjects || (exports.Subjects = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sitel/common",
3
- "version": "1.0.93",
3
+ "version": "1.0.94",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",