grapp-common-se 0.6.270 → 0.6.272

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.
@@ -190,9 +190,9 @@ export interface AgendaEvent {
190
190
  nameAppointmentPerson?: string;
191
191
  }
192
192
  export declare enum AnesthesiologyStates {
193
- Decline = 0,
194
- Aproved = 1,
195
- None = 2
193
+ Decline = "0",
194
+ Aproved = "1",
195
+ None = "2"
196
196
  }
197
197
  export declare enum AgendaEventStatus {
198
198
  SUCCESSFUL = "Exitosa",
@@ -15,9 +15,9 @@ var Priority;
15
15
  })(Priority = exports.Priority || (exports.Priority = {}));
16
16
  var AnesthesiologyStates;
17
17
  (function (AnesthesiologyStates) {
18
- AnesthesiologyStates[AnesthesiologyStates["Decline"] = 0] = "Decline";
19
- AnesthesiologyStates[AnesthesiologyStates["Aproved"] = 1] = "Aproved";
20
- AnesthesiologyStates[AnesthesiologyStates["None"] = 2] = "None";
18
+ AnesthesiologyStates["Decline"] = "0";
19
+ AnesthesiologyStates["Aproved"] = "1";
20
+ AnesthesiologyStates["None"] = "2";
21
21
  })(AnesthesiologyStates = exports.AnesthesiologyStates || (exports.AnesthesiologyStates = {}));
22
22
  var AgendaEventStatus;
23
23
  (function (AgendaEventStatus) {
@@ -49,7 +49,6 @@ export interface Patient extends User {
49
49
  activePatientContract?: boolean;
50
50
  populationlabels?: any[];
51
51
  justify?: string;
52
- birthDate?: number;
53
52
  }
54
53
  export interface ChangeTraceability {
55
54
  modifiedBy: User;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grapp-common-se",
3
- "version": "0.6.270",
3
+ "version": "0.6.272",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {