grapp-common-se 0.6.153 → 0.6.155

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.
@@ -30,4 +30,7 @@ export interface RequestMethods {
30
30
  TYPE_AUTHENTICATION?: string;
31
31
  PASSWORD_TOKEN_API?: string;
32
32
  USER_TOKEN_API?: string;
33
+ APPOINMENT_CIRUGIA_API?: string;
34
+ UPDATE_APPOINMENT_CIRUGIA_API?: string;
35
+ UPDATE_APPOINMENT_CIRUGIA_STATE_API?: string;
33
36
  }
@@ -68,6 +68,7 @@ export interface Order extends Resource {
68
68
  modifyws?: ModifyWsFlag;
69
69
  orderPriority?: Priority;
70
70
  orderType?: any;
71
+ commentJustification?: string;
71
72
  }
72
73
  export declare enum ExecutorActivateStates {
73
74
  REQUEST = 0,
@@ -153,6 +154,15 @@ export interface AgendaEvent {
153
154
  };
154
155
  appointmentIdWS?: string;
155
156
  updatedAt?: Number;
157
+ turest?: string;
158
+ turpropro?: string;
159
+ anesthesiology?: boolean;
160
+ anesthesiologyState?: AnesthesiologyStates;
161
+ }
162
+ export declare enum AnesthesiologyStates {
163
+ Decline = 0,
164
+ Aproved = 1,
165
+ None = 2
156
166
  }
157
167
  export declare enum AgendaEventStatus {
158
168
  SUCCESSFUL = "Exitosa",
@@ -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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grapp-common-se",
3
- "version": "0.6.153",
3
+ "version": "0.6.155",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {