grapp-common-se 0.6.78 → 0.6.79

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.
@@ -46,9 +46,6 @@ export interface Order extends Resource {
46
46
  transferDate?: Number;
47
47
  orderContract?: Contract;
48
48
  justifyTransfer?: string;
49
- paymentByCustomer?: boolean;
50
- offered?: Boolean;
51
- originNit?: any;
52
49
  prescribingDoctor?: PrescribingDoctor;
53
50
  speciality?: Speciality;
54
51
  servicesRequested?: string;
@@ -77,14 +74,6 @@ interface DataCreatedBy {
77
74
  idType?: string;
78
75
  userType?: Users.UserType;
79
76
  }
80
- export interface OrderOffered extends Order {
81
- offered: boolean;
82
- offeredDate: number;
83
- nameOrg?: string;
84
- patient?: Patient;
85
- request?: RequestReduced;
86
- organizationalGroup?: [];
87
- }
88
77
  export interface OrderComplete extends Order {
89
78
  patient?: Patient;
90
79
  request?: RequestReduced;
@@ -124,8 +113,7 @@ export declare enum TransferStatus {
124
113
  TRANSFERRED = 0,
125
114
  CANCELED = 1,
126
115
  OFFERED = 2,
127
- RETURN = 3,
128
- RETURNED_OFFERED = 4
116
+ RETURN = 3
129
117
  }
130
118
  export declare enum OrderStatus {
131
119
  APROOVED = 0,
@@ -163,7 +151,6 @@ export interface OrderComment {
163
151
  auditComment?: boolean;
164
152
  agenda?: AgendaEvent[];
165
153
  notifyPatient?: boolean;
166
- commentOrderTrans?: string;
167
154
  }
168
155
  export interface orderTraceabilityStatus {
169
156
  direction?: boolean;
@@ -18,7 +18,6 @@ var TransferStatus;
18
18
  TransferStatus[TransferStatus["CANCELED"] = 1] = "CANCELED";
19
19
  TransferStatus[TransferStatus["OFFERED"] = 2] = "OFFERED";
20
20
  TransferStatus[TransferStatus["RETURN"] = 3] = "RETURN";
21
- TransferStatus[TransferStatus["RETURNED_OFFERED"] = 4] = "RETURNED_OFFERED";
22
21
  })(TransferStatus = exports.TransferStatus || (exports.TransferStatus = {}));
23
22
  var OrderStatus;
24
23
  (function (OrderStatus) {
@@ -304,14 +304,6 @@ export interface Eps {
304
304
  createdAt?: number;
305
305
  lastModified?: number;
306
306
  activeContract?: boolean;
307
- comments?: EpsComments[];
308
- }
309
- export interface EpsComments {
310
- name?: string;
311
- date?: number;
312
- oldValue?: string;
313
- newValue?: string;
314
- justify?: string;
315
307
  }
316
308
  export interface Contract {
317
309
  id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grapp-common-se",
3
- "version": "0.6.78",
3
+ "version": "0.6.79",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {