grapp-common-se 0.6.161 → 0.6.164
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 +1 -13
- package/dist/orders/order.js +1 -7
- package/package.json +1 -1
package/dist/client/client.d.ts
CHANGED
|
@@ -11,7 +11,6 @@ export interface Client {
|
|
|
11
11
|
integrationsWs?: ClientWs[];
|
|
12
12
|
addLegendInfo?: string;
|
|
13
13
|
messageEmail?: messageEmailByIntitution;
|
|
14
|
-
whatsappQuantity?: number;
|
|
15
14
|
}
|
|
16
15
|
export interface messageEmailByIntitution {
|
|
17
16
|
messageExecutor?: string;
|
|
@@ -31,7 +30,4 @@ export interface RequestMethods {
|
|
|
31
30
|
TYPE_AUTHENTICATION?: string;
|
|
32
31
|
PASSWORD_TOKEN_API?: string;
|
|
33
32
|
USER_TOKEN_API?: string;
|
|
34
|
-
APPOINMENT_CIRUGIA_API?: string;
|
|
35
|
-
UPDATE_APPOINMENT_CIRUGIA_API?: string;
|
|
36
|
-
UPDATE_APPOINMENT_CIRUGIA_STATE_API?: string;
|
|
37
33
|
}
|
package/dist/orders/order.d.ts
CHANGED
|
@@ -67,11 +67,8 @@ export interface Order extends Resource {
|
|
|
67
67
|
isPendingToReactivate?: ExecutorActivate;
|
|
68
68
|
modifyws?: ModifyWsFlag;
|
|
69
69
|
orderPriority?: Priority;
|
|
70
|
-
commentJustification?: string;
|
|
71
|
-
anesthesiologyStatus?: AnesthesiologyStates;
|
|
72
|
-
anesthesiologyDate?: any;
|
|
73
70
|
orderType?: any;
|
|
74
|
-
|
|
71
|
+
commentJustification?: string;
|
|
75
72
|
}
|
|
76
73
|
export declare enum ExecutorActivateStates {
|
|
77
74
|
REQUEST = 0,
|
|
@@ -157,15 +154,6 @@ export interface AgendaEvent {
|
|
|
157
154
|
};
|
|
158
155
|
appointmentIdWS?: string;
|
|
159
156
|
updatedAt?: Number;
|
|
160
|
-
turest?: string;
|
|
161
|
-
turpropro?: string;
|
|
162
|
-
anesthesiology?: boolean;
|
|
163
|
-
anesthesiologyState?: AnesthesiologyStates;
|
|
164
|
-
}
|
|
165
|
-
export declare enum AnesthesiologyStates {
|
|
166
|
-
Decline = 0,
|
|
167
|
-
Aproved = 1,
|
|
168
|
-
None = 2
|
|
169
157
|
}
|
|
170
158
|
export declare enum AgendaEventStatus {
|
|
171
159
|
SUCCESSFUL = "Exitosa",
|
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.
|
|
3
|
+
exports.GeneralOrderStatus = exports.OrderStatus = exports.TransferStatus = exports.SuccessCallTypeStatus = exports.AgendaEventStatus = exports.Priority = exports.ExecutorActivateStates = void 0;
|
|
4
4
|
var ExecutorActivateStates;
|
|
5
5
|
(function (ExecutorActivateStates) {
|
|
6
6
|
ExecutorActivateStates[ExecutorActivateStates["REQUEST"] = 0] = "REQUEST";
|
|
@@ -13,12 +13,6 @@ 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 = {}));
|
|
22
16
|
var AgendaEventStatus;
|
|
23
17
|
(function (AgendaEventStatus) {
|
|
24
18
|
AgendaEventStatus["SUCCESSFUL"] = "Exitosa";
|