grapp-common-se 0.6.136 → 0.6.137
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 +0 -4
- package/dist/orders/order.d.ts +10 -47
- package/dist/orders/order.js +1 -13
- package/dist/orders/request.d.ts +1 -2
- package/package.json +1 -1
package/dist/client/client.d.ts
CHANGED
|
@@ -10,10 +10,6 @@ export interface Client {
|
|
|
10
10
|
termsOfServiceHD: InnerFile;
|
|
11
11
|
integrationsWs?: ClientWs[];
|
|
12
12
|
addLegendInfo?: string;
|
|
13
|
-
messageEmail?: messageEmailByIntitution;
|
|
14
|
-
}
|
|
15
|
-
export interface messageEmailByIntitution {
|
|
16
|
-
messageExecutor?: string;
|
|
17
13
|
}
|
|
18
14
|
export interface ClientWs {
|
|
19
15
|
REQUEST_URL?: string;
|
package/dist/orders/order.d.ts
CHANGED
|
@@ -61,32 +61,6 @@ export interface Order extends Resource {
|
|
|
61
61
|
userModified?: string;
|
|
62
62
|
userModifiedLogs?: Array<UserReduced>;
|
|
63
63
|
DateAndHourCreatedByGestor?: Timestamp | Date;
|
|
64
|
-
authorizationNumber?: any;
|
|
65
|
-
authorizationExpirationDate?: any;
|
|
66
|
-
isPendingToReactivate?: ExecutorActivate;
|
|
67
|
-
modifyws?: ModifyWsFlag;
|
|
68
|
-
orderPriority?: Priority;
|
|
69
|
-
orderType?: any;
|
|
70
|
-
}
|
|
71
|
-
export declare enum ExecutorActivateStates {
|
|
72
|
-
REQUEST = 0,
|
|
73
|
-
ACCEPTED = 1,
|
|
74
|
-
NO_ACCEPTED = 2
|
|
75
|
-
}
|
|
76
|
-
export interface ExecutorActivate {
|
|
77
|
-
message?: string;
|
|
78
|
-
state?: ExecutorActivateStates;
|
|
79
|
-
}
|
|
80
|
-
export declare enum Priority {
|
|
81
|
-
ALTA = "Alta",
|
|
82
|
-
MEDIA = "Media",
|
|
83
|
-
BAJA = "Baja"
|
|
84
|
-
}
|
|
85
|
-
export interface ModifyWsFlag {
|
|
86
|
-
flagAutomaticAppointment?: Boolean;
|
|
87
|
-
flagAutomaticCancelateOrder?: Boolean;
|
|
88
|
-
flagAutomaticDefferOrder?: Boolean;
|
|
89
|
-
flagAutomaticExecutedOrder?: Boolean;
|
|
90
64
|
}
|
|
91
65
|
export interface GroupReduced {
|
|
92
66
|
id?: string;
|
|
@@ -216,27 +190,16 @@ export interface orderTraceabilityStatus {
|
|
|
216
190
|
destinatary?: User;
|
|
217
191
|
}
|
|
218
192
|
export interface ContractTech {
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
frecuency?: number;
|
|
230
|
-
frecuencyAlert?: number;
|
|
231
|
-
monthlyFrecuency?: number;
|
|
232
|
-
weeklyFrecuency?: number;
|
|
233
|
-
createdAt?: number;
|
|
234
|
-
createdBy?: string;
|
|
235
|
-
lastModifiedAt?: number;
|
|
236
|
-
lastModifiedBy?: string;
|
|
237
|
-
state?: boolean;
|
|
238
|
-
ownCodeCups?: string;
|
|
239
|
-
planContractTech?: string;
|
|
193
|
+
epsId: string;
|
|
194
|
+
buyCost: number;
|
|
195
|
+
contractId: string;
|
|
196
|
+
createdAt: number;
|
|
197
|
+
frecuency: number;
|
|
198
|
+
frecuencyAlert: number;
|
|
199
|
+
sellPrice: number;
|
|
200
|
+
state: boolean;
|
|
201
|
+
techName: string;
|
|
202
|
+
technologyCode: number;
|
|
240
203
|
}
|
|
241
204
|
export interface SpecialitiesDoctorComplete {
|
|
242
205
|
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
|
/**
|
|
@@ -34,7 +34,6 @@ export interface Request extends Resource {
|
|
|
34
34
|
authorizationNumber?: string;
|
|
35
35
|
auditAlert?: IAlerts;
|
|
36
36
|
nroatencion?: string;
|
|
37
|
-
isPendingToReactivate?: ExecutorActivate;
|
|
38
37
|
}
|
|
39
38
|
interface IAlerts {
|
|
40
39
|
visible: boolean;
|