grapp-common-se 0.6.153 → 0.6.154

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
  }
@@ -153,6 +153,15 @@ export interface AgendaEvent {
153
153
  };
154
154
  appointmentIdWS?: string;
155
155
  updatedAt?: Number;
156
+ turest?: string;
157
+ turpropro?: string;
158
+ anesthesiology?: boolean;
159
+ anesthesiologyState?: AnesthesiologyStates;
160
+ }
161
+ export declare enum AnesthesiologyStates {
162
+ Decline = 0,
163
+ Aproved = 1,
164
+ None = 2
156
165
  }
157
166
  export declare enum AgendaEventStatus {
158
167
  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.154",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {