grapp-common-se 0.6.87 → 0.6.90

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.
@@ -298,6 +298,7 @@ export interface Eps {
298
298
  name: string;
299
299
  nit: string;
300
300
  regimen: string[];
301
+ notifyContractTop: NotifyContractTop[];
301
302
  resourceID?: string;
302
303
  resources?: string[];
303
304
  tableName?: string;
@@ -306,6 +307,9 @@ export interface Eps {
306
307
  activeContract?: boolean;
307
308
  comments?: EpsComments[];
308
309
  }
310
+ export interface NotifyContractTop {
311
+ email: string;
312
+ }
309
313
  export interface EpsComments {
310
314
  name?: string;
311
315
  date?: number;
@@ -12,7 +12,6 @@ var RequestStatus;
12
12
  RequestStatus[RequestStatus["RETURNED"] = 6] = "RETURNED";
13
13
  RequestStatus[RequestStatus["NO_AUTHORIZED"] = 7] = "NO_AUTHORIZED";
14
14
  RequestStatus[RequestStatus["PATIENT_ATTENDED"] = 8] = "PATIENT_ATTENDED";
15
- RequestStatus[RequestStatus["DEFERRED_ORDERS"] = 9] = "DEFERRED_ORDERS";
16
15
  })(RequestStatus = exports.RequestStatus || (exports.RequestStatus = {}));
17
16
  var RequestType;
18
17
  (function (RequestType) {
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "grapp-common-se",
3
- "version": "0.6.87",
3
+ "version": "0.6.90",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
7
+ "prepublishOnly": "npm run build",
7
8
  "build": "del -rf dist && tsc --skipLibCheck",
8
9
  "test": "echo \"Error: no test specified\" && exit 1"
9
10
  },