grapp-common-se 0.6.116 → 0.6.117
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.
package/dist/orders/order.d.ts
CHANGED
|
@@ -60,6 +60,7 @@ export interface Order extends Resource {
|
|
|
60
60
|
authAsistant?: boolean;
|
|
61
61
|
userModified?: string;
|
|
62
62
|
userModifiedLogs?: Array<UserReduced>;
|
|
63
|
+
DateAndHourCreatedByGestor?: Timestamp | Date;
|
|
63
64
|
}
|
|
64
65
|
export interface GroupReduced {
|
|
65
66
|
id?: string;
|
|
@@ -180,6 +181,7 @@ export interface OrderComment {
|
|
|
180
181
|
notifyPatient?: boolean;
|
|
181
182
|
commentOrderTrans?: string;
|
|
182
183
|
userTypeDateControlUpdate?: UserType;
|
|
184
|
+
copyRequestFile?: boolean;
|
|
183
185
|
}
|
|
184
186
|
export interface orderTraceabilityStatus {
|
|
185
187
|
direction?: boolean;
|
package/dist/orders/request.d.ts
CHANGED
|
@@ -101,7 +101,8 @@ export declare enum RequestStatus {
|
|
|
101
101
|
RETURNED = 6,
|
|
102
102
|
NO_AUTHORIZED = 7,
|
|
103
103
|
PATIENT_ATTENDED = 8,
|
|
104
|
-
DEFERRED_ORDERS = 9
|
|
104
|
+
DEFERRED_ORDERS = 9,
|
|
105
|
+
ALL_IN_PROCESS_EPS = 10
|
|
105
106
|
}
|
|
106
107
|
export declare enum RequestType {
|
|
107
108
|
HOSP = "Hospitalario externo",
|
package/dist/orders/request.js
CHANGED
|
@@ -13,6 +13,7 @@ var RequestStatus;
|
|
|
13
13
|
RequestStatus[RequestStatus["NO_AUTHORIZED"] = 7] = "NO_AUTHORIZED";
|
|
14
14
|
RequestStatus[RequestStatus["PATIENT_ATTENDED"] = 8] = "PATIENT_ATTENDED";
|
|
15
15
|
RequestStatus[RequestStatus["DEFERRED_ORDERS"] = 9] = "DEFERRED_ORDERS";
|
|
16
|
+
RequestStatus[RequestStatus["ALL_IN_PROCESS_EPS"] = 10] = "ALL_IN_PROCESS_EPS";
|
|
16
17
|
})(RequestStatus = exports.RequestStatus || (exports.RequestStatus = {}));
|
|
17
18
|
var RequestType;
|
|
18
19
|
(function (RequestType) {
|
package/dist/users/user.d.ts
CHANGED