@sitel/common 1.0.91 → 1.0.92

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.
@@ -18,4 +18,5 @@ export * from './substitute/information-substitute-reminded-event';
18
18
  export * from './member/ts-validation-reminded-event';
19
19
  export * from './notify-completed-event';
20
20
  export * from './notify-type-value';
21
- export * from './extra';
21
+ export * from './extra/notify-manuel-event';
22
+ export * from '../worker/worker-manuel-event';
@@ -30,4 +30,5 @@ __exportStar(require("./substitute/information-substitute-reminded-event"), expo
30
30
  __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
- __exportStar(require("./extra"), exports);
33
+ __exportStar(require("./extra/notify-manuel-event"), exports);
34
+ __exportStar(require("../worker/worker-manuel-event"), exports);
@@ -1,5 +1,5 @@
1
- import { Subjects } from '../../subjects';
2
- import { ExtraManuelPaylod } from './extra-manuel-payload';
1
+ import { Subjects } from '../subjects';
2
+ import { ExtraManuelPaylod } from '../notify/extra/extra-manuel-payload';
3
3
  export interface WorkerExtraManuelEvent {
4
4
  subject: Subjects.WorkerExtraManuel;
5
5
  data: ExtraManuelPaylod;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sitel/common",
3
- "version": "1.0.91",
3
+ "version": "1.0.92",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -1,2 +0,0 @@
1
- export * from './notify-manuel-event';
2
- export * from './worker-manuel-event';
@@ -1,14 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
- }) : (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- o[k2] = m[k];
8
- }));
9
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
- };
12
- Object.defineProperty(exports, "__esModule", { value: true });
13
- __exportStar(require("./notify-manuel-event"), exports);
14
- __exportStar(require("./worker-manuel-event"), exports);