grapp-common-se 0.6.152 → 0.6.154
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/client/client.d.ts +3 -0
- package/dist/orders/order.d.ts +30 -10
- package/dist/orders/order.js +7 -1
- package/package.json +1 -1
package/dist/client/client.d.ts
CHANGED
package/dist/orders/order.d.ts
CHANGED
|
@@ -153,6 +153,15 @@ export interface AgendaEvent {
|
|
|
153
153
|
};
|
|
154
154
|
appointmentIdWS?: string;
|
|
155
155
|
updatedAt?: Number;
|
|
156
|
+
turest?: string;
|
|
157
|
+
turpropro?: string;
|
|
158
|
+
anesthesiology?: boolean;
|
|
159
|
+
anesthesiologyState?: AnesthesiologyStates;
|
|
160
|
+
}
|
|
161
|
+
export declare enum AnesthesiologyStates {
|
|
162
|
+
Decline = 0,
|
|
163
|
+
Aproved = 1,
|
|
164
|
+
None = 2
|
|
156
165
|
}
|
|
157
166
|
export declare enum AgendaEventStatus {
|
|
158
167
|
SUCCESSFUL = "Exitosa",
|
|
@@ -217,16 +226,27 @@ export interface orderTraceabilityStatus {
|
|
|
217
226
|
destinatary?: User;
|
|
218
227
|
}
|
|
219
228
|
export interface ContractTech {
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
229
|
+
_id?: string;
|
|
230
|
+
epsId?: string;
|
|
231
|
+
epsCode?: string;
|
|
232
|
+
typeContract?: string;
|
|
233
|
+
contractId?: string;
|
|
234
|
+
technologyCode?: string;
|
|
235
|
+
techName?: string;
|
|
236
|
+
techCodeDescription?: string;
|
|
237
|
+
buyCost?: number;
|
|
238
|
+
sellPrice?: number;
|
|
239
|
+
frecuency?: number;
|
|
240
|
+
frecuencyAlert?: number;
|
|
241
|
+
monthlyFrecuency?: number;
|
|
242
|
+
weeklyFrecuency?: number;
|
|
243
|
+
createdAt?: number;
|
|
244
|
+
createdBy?: string;
|
|
245
|
+
lastModifiedAt?: number;
|
|
246
|
+
lastModifiedBy?: string;
|
|
247
|
+
state?: boolean;
|
|
248
|
+
ownCodeCups?: string;
|
|
249
|
+
planContractTech?: string;
|
|
230
250
|
}
|
|
231
251
|
export interface SpecialitiesDoctorComplete {
|
|
232
252
|
habilitado: boolean;
|
package/dist/orders/order.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GeneralOrderStatus = exports.OrderStatus = exports.TransferStatus = exports.SuccessCallTypeStatus = exports.AgendaEventStatus = exports.Priority = exports.ExecutorActivateStates = void 0;
|
|
3
|
+
exports.GeneralOrderStatus = exports.OrderStatus = exports.TransferStatus = exports.SuccessCallTypeStatus = exports.AgendaEventStatus = exports.AnesthesiologyStates = exports.Priority = exports.ExecutorActivateStates = void 0;
|
|
4
4
|
var ExecutorActivateStates;
|
|
5
5
|
(function (ExecutorActivateStates) {
|
|
6
6
|
ExecutorActivateStates[ExecutorActivateStates["REQUEST"] = 0] = "REQUEST";
|
|
@@ -13,6 +13,12 @@ var Priority;
|
|
|
13
13
|
Priority["MEDIA"] = "Media";
|
|
14
14
|
Priority["BAJA"] = "Baja";
|
|
15
15
|
})(Priority = exports.Priority || (exports.Priority = {}));
|
|
16
|
+
var AnesthesiologyStates;
|
|
17
|
+
(function (AnesthesiologyStates) {
|
|
18
|
+
AnesthesiologyStates[AnesthesiologyStates["Decline"] = 0] = "Decline";
|
|
19
|
+
AnesthesiologyStates[AnesthesiologyStates["Aproved"] = 1] = "Aproved";
|
|
20
|
+
AnesthesiologyStates[AnesthesiologyStates["None"] = 2] = "None";
|
|
21
|
+
})(AnesthesiologyStates = exports.AnesthesiologyStates || (exports.AnesthesiologyStates = {}));
|
|
16
22
|
var AgendaEventStatus;
|
|
17
23
|
(function (AgendaEventStatus) {
|
|
18
24
|
AgendaEventStatus["SUCCESSFUL"] = "Exitosa";
|