grapp-common-se 0.6.251 → 0.6.252

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.
@@ -33,7 +33,7 @@ export interface Patient extends User {
33
33
  /**
34
34
  * Pais de nacionalidad
35
35
  */
36
- nationality?: string;
36
+ nationality?: Country;
37
37
  /**
38
38
  * Si es creado por importacion masiva o por el aplicativo
39
39
  */
@@ -57,6 +57,12 @@ export interface ChangeTraceability {
57
57
  attributes: AttributeChangedPatient;
58
58
  justify?: string;
59
59
  }
60
+ export interface Country {
61
+ Codigo?: string;
62
+ Nombre?: string;
63
+ Extra_II?: string;
64
+ Extra_III?: string;
65
+ }
60
66
  export interface AttributeChangedPatient {
61
67
  [key: string]: ValueChange;
62
68
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grapp-common-se",
3
- "version": "0.6.251",
3
+ "version": "0.6.252",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {