grapp-common-se 0.6.168 → 0.6.170
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 +2 -0
- package/dist/orders/order.d.ts +10 -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;
|
package/dist/orders/order.d.ts
CHANGED
|
@@ -68,8 +68,11 @@ 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;
|
|
75
|
+
patientAutomaticEmail?: boolean;
|
|
73
76
|
}
|
|
74
77
|
export declare enum ExecutorActivateStates {
|
|
75
78
|
REQUEST = 0,
|
|
@@ -155,9 +158,16 @@ export interface AgendaEvent {
|
|
|
155
158
|
};
|
|
156
159
|
appointmentIdWS?: string;
|
|
157
160
|
updatedAt?: Number;
|
|
161
|
+
anesthesiology?: boolean;
|
|
162
|
+
anesthesiologyState?: AnesthesiologyStates;
|
|
158
163
|
turest?: string;
|
|
159
164
|
turpropro?: string;
|
|
160
165
|
}
|
|
166
|
+
export declare enum AnesthesiologyStates {
|
|
167
|
+
Decline = 0,
|
|
168
|
+
Aproved = 1,
|
|
169
|
+
None = 2
|
|
170
|
+
}
|
|
161
171
|
export declare enum AgendaEventStatus {
|
|
162
172
|
SUCCESSFUL = "Exitosa",
|
|
163
173
|
CANCELED = "Cancelada",
|
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";
|