grapp-common-se 0.6.259 → 0.6.261

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.
@@ -15,4 +15,9 @@ export interface CodableConcept {
15
15
  name: string;
16
16
  group: Array<String>;
17
17
  }>;
18
+ comments?: Array<{
19
+ property: string;
20
+ value: string;
21
+ oldValue: string;
22
+ }>;
18
23
  }
@@ -305,6 +305,11 @@ export interface RequestTypes {
305
305
  deleted?: boolean;
306
306
  createdAt?: number;
307
307
  lastModified?: number;
308
+ comments?: Array<{
309
+ property: string;
310
+ value: string;
311
+ oldValue: string;
312
+ }>;
308
313
  }
309
314
  export interface CustomCauses {
310
315
  name: string;
@@ -317,6 +322,11 @@ export interface CustomCauses {
317
322
  tableName?: string;
318
323
  createdAt?: number;
319
324
  lastModified?: number;
325
+ comments?: Array<{
326
+ property: string;
327
+ value: string;
328
+ oldValue: string;
329
+ }>;
320
330
  }
321
331
  export interface Eps {
322
332
  id?: string;
@@ -386,6 +396,11 @@ export interface Specialties {
386
396
  name?: string;
387
397
  code?: string;
388
398
  active?: boolean;
399
+ comments?: Array<{
400
+ property: string;
401
+ value: string;
402
+ oldValue: string;
403
+ }>;
389
404
  }
390
405
  export interface DeletionInfo {
391
406
  date?: Timestamp;
@@ -30,6 +30,10 @@ export interface Patient extends User {
30
30
  * Eps
31
31
  */
32
32
  eps?: Orders.Eps;
33
+ /**
34
+ * Pais de nacionalidad
35
+ */
36
+ nationality?: Country;
33
37
  /**
34
38
  * Si es creado por importacion masiva o por el aplicativo
35
39
  */
@@ -53,6 +57,12 @@ export interface ChangeTraceability {
53
57
  attributes: AttributeChangedPatient;
54
58
  justify?: string;
55
59
  }
60
+ export interface Country {
61
+ Codigo?: string;
62
+ Nombre?: string;
63
+ Extra_II?: string;
64
+ Extra_III?: string;
65
+ }
56
66
  export interface AttributeChangedPatient {
57
67
  [key: string]: ValueChange;
58
68
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grapp-common-se",
3
- "version": "0.6.259",
3
+ "version": "0.6.261",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {