grapp-common-se 0.6.152 → 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",
@@ -217,16 +226,27 @@ export interface orderTraceabilityStatus {
217
226
  destinatary?: User;
218
227
  }
219
228
  export interface ContractTech {
220
- epsId: string;
221
- buyCost: number;
222
- contractId: string;
223
- createdAt: number;
224
- frecuency: number;
225
- frecuencyAlert: number;
226
- sellPrice: number;
227
- state: boolean;
228
- techName: string;
229
- technologyCode: number;
229
+ _id?: string;
230
+ epsId?: string;
231
+ epsCode?: string;
232
+ typeContract?: string;
233
+ contractId?: string;
234
+ technologyCode?: string;
235
+ techName?: string;
236
+ techCodeDescription?: string;
237
+ buyCost?: number;
238
+ sellPrice?: number;
239
+ frecuency?: number;
240
+ frecuencyAlert?: number;
241
+ monthlyFrecuency?: number;
242
+ weeklyFrecuency?: number;
243
+ createdAt?: number;
244
+ createdBy?: string;
245
+ lastModifiedAt?: number;
246
+ lastModifiedBy?: string;
247
+ state?: boolean;
248
+ ownCodeCups?: string;
249
+ planContractTech?: string;
230
250
  }
231
251
  export interface SpecialitiesDoctorComplete {
232
252
  habilitado: boolean;
@@ -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.152",
3
+ "version": "0.6.154",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {