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