grapp-common-se 0.6.143 → 0.6.145
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 +10 -47
- package/dist/orders/order.js +1 -13
- package/dist/orders/request.d.ts +1 -3
- package/dist/users/user.d.ts +0 -1
- package/package.json +1 -1
package/dist/orders/order.d.ts
CHANGED
|
@@ -62,32 +62,6 @@ export interface Order extends Resource {
|
|
|
62
62
|
userModified?: string;
|
|
63
63
|
userModifiedLogs?: Array<UserReduced>;
|
|
64
64
|
DateAndHourCreatedByGestor?: Timestamp | Date;
|
|
65
|
-
authorizationNumber?: any;
|
|
66
|
-
authorizationExpirationDate?: any;
|
|
67
|
-
isPendingToReactivate?: ExecutorActivate;
|
|
68
|
-
modifyws?: ModifyWsFlag;
|
|
69
|
-
orderPriority?: Priority;
|
|
70
|
-
orderType?: any;
|
|
71
|
-
}
|
|
72
|
-
export declare enum ExecutorActivateStates {
|
|
73
|
-
REQUEST = 0,
|
|
74
|
-
ACCEPTED = 1,
|
|
75
|
-
NO_ACCEPTED = 2
|
|
76
|
-
}
|
|
77
|
-
export interface ExecutorActivate {
|
|
78
|
-
message?: string;
|
|
79
|
-
state?: ExecutorActivateStates;
|
|
80
|
-
}
|
|
81
|
-
export declare enum Priority {
|
|
82
|
-
ALTA = "Alta",
|
|
83
|
-
MEDIA = "Media",
|
|
84
|
-
BAJA = "Baja"
|
|
85
|
-
}
|
|
86
|
-
export interface ModifyWsFlag {
|
|
87
|
-
flagAutomaticAppointment?: Boolean;
|
|
88
|
-
flagAutomaticCancelateOrder?: Boolean;
|
|
89
|
-
flagAutomaticDefferOrder?: Boolean;
|
|
90
|
-
flagAutomaticExecutedOrder?: Boolean;
|
|
91
65
|
}
|
|
92
66
|
export interface GroupReduced {
|
|
93
67
|
id?: string;
|
|
@@ -217,27 +191,16 @@ export interface orderTraceabilityStatus {
|
|
|
217
191
|
destinatary?: User;
|
|
218
192
|
}
|
|
219
193
|
export interface ContractTech {
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
frecuency?: number;
|
|
231
|
-
frecuencyAlert?: number;
|
|
232
|
-
monthlyFrecuency?: number;
|
|
233
|
-
weeklyFrecuency?: number;
|
|
234
|
-
createdAt?: number;
|
|
235
|
-
createdBy?: string;
|
|
236
|
-
lastModifiedAt?: number;
|
|
237
|
-
lastModifiedBy?: string;
|
|
238
|
-
state?: boolean;
|
|
239
|
-
ownCodeCups?: string;
|
|
240
|
-
planContractTech?: string;
|
|
194
|
+
epsId: string;
|
|
195
|
+
buyCost: number;
|
|
196
|
+
contractId: string;
|
|
197
|
+
createdAt: number;
|
|
198
|
+
frecuency: number;
|
|
199
|
+
frecuencyAlert: number;
|
|
200
|
+
sellPrice: number;
|
|
201
|
+
state: boolean;
|
|
202
|
+
techName: string;
|
|
203
|
+
technologyCode: number;
|
|
241
204
|
}
|
|
242
205
|
export interface SpecialitiesDoctorComplete {
|
|
243
206
|
habilitado: boolean;
|
package/dist/orders/order.js
CHANGED
|
@@ -1,18 +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 =
|
|
4
|
-
var ExecutorActivateStates;
|
|
5
|
-
(function (ExecutorActivateStates) {
|
|
6
|
-
ExecutorActivateStates[ExecutorActivateStates["REQUEST"] = 0] = "REQUEST";
|
|
7
|
-
ExecutorActivateStates[ExecutorActivateStates["ACCEPTED"] = 1] = "ACCEPTED";
|
|
8
|
-
ExecutorActivateStates[ExecutorActivateStates["NO_ACCEPTED"] = 2] = "NO_ACCEPTED";
|
|
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 = {}));
|
|
3
|
+
exports.GeneralOrderStatus = exports.OrderStatus = exports.TransferStatus = exports.SuccessCallTypeStatus = exports.AgendaEventStatus = void 0;
|
|
16
4
|
var AgendaEventStatus;
|
|
17
5
|
(function (AgendaEventStatus) {
|
|
18
6
|
AgendaEventStatus["SUCCESSFUL"] = "Exitosa";
|
package/dist/orders/request.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Resource, Timestamp } from '3a-common';
|
|
2
|
-
import {
|
|
2
|
+
import { Order, OrderComment, SpecialitiesDoctorComplete } from './order';
|
|
3
3
|
import { Patient, User } from '../users';
|
|
4
4
|
import { Users } from '..';
|
|
5
5
|
/**
|
|
@@ -31,11 +31,9 @@ export interface Request extends Resource {
|
|
|
31
31
|
deletionObservations?: DeletionInfo;
|
|
32
32
|
requestTraceabilityStatus?: requestTraceabilityStatus;
|
|
33
33
|
files?: any[];
|
|
34
|
-
filesConfidential?: any[];
|
|
35
34
|
authorizationNumber?: string;
|
|
36
35
|
auditAlert?: IAlerts;
|
|
37
36
|
nroatencion?: string;
|
|
38
|
-
isPendingToReactivate?: ExecutorActivate;
|
|
39
37
|
}
|
|
40
38
|
interface IAlerts {
|
|
41
39
|
visible: boolean;
|
package/dist/users/user.d.ts
CHANGED