grapp-common-se 0.6.126 → 0.6.127
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 +21 -17
- package/dist/orders/order.js +1 -7
- package/package.json +1 -1
package/dist/orders/order.d.ts
CHANGED
|
@@ -65,8 +65,6 @@ export interface Order extends Resource {
|
|
|
65
65
|
authorizationExpirationDate?: any;
|
|
66
66
|
isPendingToReactivate?: ExecutorActivate;
|
|
67
67
|
modifyws?: ModifyWsFlag;
|
|
68
|
-
orderPriority?: Priority;
|
|
69
|
-
orderType?: any;
|
|
70
68
|
}
|
|
71
69
|
export declare enum ExecutorActivateStates {
|
|
72
70
|
REQUEST = 0,
|
|
@@ -77,11 +75,6 @@ export interface ExecutorActivate {
|
|
|
77
75
|
message?: string;
|
|
78
76
|
state?: ExecutorActivateStates;
|
|
79
77
|
}
|
|
80
|
-
export declare enum Priority {
|
|
81
|
-
ALTA = "Alta",
|
|
82
|
-
MEDIA = "Media",
|
|
83
|
-
BAJA = "Baja"
|
|
84
|
-
}
|
|
85
78
|
export interface ModifyWsFlag {
|
|
86
79
|
flagAutomaticAppointment?: Boolean;
|
|
87
80
|
flagAutomaticCancelateOrder?: Boolean;
|
|
@@ -216,16 +209,27 @@ export interface orderTraceabilityStatus {
|
|
|
216
209
|
destinatary?: User;
|
|
217
210
|
}
|
|
218
211
|
export interface ContractTech {
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
212
|
+
_id?: string;
|
|
213
|
+
epsId?: string;
|
|
214
|
+
epsCode?: string;
|
|
215
|
+
typeContract?: string;
|
|
216
|
+
contractId?: string;
|
|
217
|
+
technologyCode?: string;
|
|
218
|
+
techName?: string;
|
|
219
|
+
techCodeDescription?: string;
|
|
220
|
+
buyCost?: number;
|
|
221
|
+
sellPrice?: number;
|
|
222
|
+
frecuency?: number;
|
|
223
|
+
frecuencyAlert?: number;
|
|
224
|
+
monthlyFrecuency?: number;
|
|
225
|
+
weeklyFrecuency?: number;
|
|
226
|
+
createdAt?: number;
|
|
227
|
+
createdBy?: string;
|
|
228
|
+
lastModifiedAt?: number;
|
|
229
|
+
lastModifiedBy?: string;
|
|
230
|
+
state?: boolean;
|
|
231
|
+
ownCodeCups?: string;
|
|
232
|
+
planContractTech?: string;
|
|
229
233
|
}
|
|
230
234
|
export interface SpecialitiesDoctorComplete {
|
|
231
235
|
habilitado: boolean;
|
package/dist/orders/order.js
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GeneralOrderStatus = exports.OrderStatus = exports.TransferStatus = exports.SuccessCallTypeStatus = exports.AgendaEventStatus = exports.
|
|
3
|
+
exports.GeneralOrderStatus = exports.OrderStatus = exports.TransferStatus = exports.SuccessCallTypeStatus = exports.AgendaEventStatus = exports.ExecutorActivateStates = void 0;
|
|
4
4
|
var ExecutorActivateStates;
|
|
5
5
|
(function (ExecutorActivateStates) {
|
|
6
6
|
ExecutorActivateStates[ExecutorActivateStates["REQUEST"] = 0] = "REQUEST";
|
|
7
7
|
ExecutorActivateStates[ExecutorActivateStates["ACCEPTED"] = 1] = "ACCEPTED";
|
|
8
8
|
ExecutorActivateStates[ExecutorActivateStates["NO_ACCEPTED"] = 2] = "NO_ACCEPTED";
|
|
9
9
|
})(ExecutorActivateStates = exports.ExecutorActivateStates || (exports.ExecutorActivateStates = {}));
|
|
10
|
-
var Priority;
|
|
11
|
-
(function (Priority) {
|
|
12
|
-
Priority["ALTA"] = "Alta";
|
|
13
|
-
Priority["MEDIA"] = "Media";
|
|
14
|
-
Priority["BAJA"] = "Baja";
|
|
15
|
-
})(Priority = exports.Priority || (exports.Priority = {}));
|
|
16
10
|
var AgendaEventStatus;
|
|
17
11
|
(function (AgendaEventStatus) {
|
|
18
12
|
AgendaEventStatus["SUCCESSFUL"] = "Exitosa";
|