grapp-common-se 0.6.85 → 0.6.88

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.
@@ -52,7 +52,6 @@ export interface Order extends Resource {
52
52
  prescribingDoctor?: PrescribingDoctor;
53
53
  speciality?: Speciality;
54
54
  servicesRequested?: string;
55
- executionDate?: number;
56
55
  }
57
56
  export interface SendTo {
58
57
  transferStatus?: TransferStatus;
@@ -80,7 +80,8 @@ export declare enum RequestStatus {
80
80
  DELETED = 5,
81
81
  RETURNED = 6,
82
82
  NO_AUTHORIZED = 7,
83
- PATIENT_ATTENDED = 8
83
+ PATIENT_ATTENDED = 8,
84
+ DEFERRED_ORDERS = 9
84
85
  }
85
86
  export declare enum RequestType {
86
87
  HOSP = "Hospitalario externo",
@@ -12,6 +12,7 @@ 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";
15
16
  })(RequestStatus = exports.RequestStatus || (exports.RequestStatus = {}));
16
17
  var RequestType;
17
18
  (function (RequestType) {
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "grapp-common-se",
3
- "version": "0.6.85",
3
+ "version": "0.6.88",
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
  },