grapp-common-se 0.6.89 → 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.
@@ -80,8 +80,7 @@ export declare enum RequestStatus {
80
80
  DELETED = 5,
81
81
  RETURNED = 6,
82
82
  NO_AUTHORIZED = 7,
83
- PATIENT_ATTENDED = 8,
84
- DEFERRED_ORDERS = 9
83
+ PATIENT_ATTENDED = 8
85
84
  }
86
85
  export declare enum RequestType {
87
86
  HOSP = "Hospitalario externo",
@@ -299,6 +298,7 @@ export interface Eps {
299
298
  name: string;
300
299
  nit: string;
301
300
  regimen: string[];
301
+ notifyContractTop: NotifyContractTop[];
302
302
  resourceID?: string;
303
303
  resources?: string[];
304
304
  tableName?: string;
@@ -307,6 +307,9 @@ export interface Eps {
307
307
  activeContract?: boolean;
308
308
  comments?: EpsComments[];
309
309
  }
310
+ export interface NotifyContractTop {
311
+ email: string;
312
+ }
310
313
  export interface EpsComments {
311
314
  name?: string;
312
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,6 +1,6 @@
1
1
  {
2
2
  "name": "grapp-common-se",
3
- "version": "0.6.89",
3
+ "version": "0.6.90",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {