grapp-common-se 0.6.207 → 0.6.208

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.
@@ -5,6 +5,7 @@ export interface Client {
5
5
  nit: string;
6
6
  logo: InnerFile;
7
7
  urlBI: string;
8
+ nameDb?: string;
8
9
  maximumLicenses: number;
9
10
  notificationsEmail: string;
10
11
  termsOfServiceHD: InnerFile;
@@ -26,6 +27,8 @@ export interface ClientWs {
26
27
  REQUEST_HEADER?: boolean;
27
28
  refreshTokenRequired?: boolean;
28
29
  methods?: RequestMethods;
30
+ wsID?: string;
31
+ wsName?: string;
29
32
  }
30
33
  export interface RequestMethods {
31
34
  REQUESTS_API?: string;
@@ -123,7 +123,7 @@ interface PrescribingDoctor {
123
123
  idType?: string;
124
124
  document?: string;
125
125
  }
126
- interface DataCreatedBy {
126
+ export interface DataCreatedBy {
127
127
  id?: string;
128
128
  name?: string;
129
129
  document?: string;
@@ -43,12 +43,15 @@ export interface Patient extends User {
43
43
  changesTraceability?: ChangeTraceability[];
44
44
  messagePatientLog?: string[];
45
45
  activePatientContract?: boolean;
46
+ populationlabels?: any[];
47
+ justify?: string;
46
48
  }
47
49
  export interface ChangeTraceability {
48
50
  modifiedBy: User;
49
51
  medio: string;
50
52
  date: Timestamp;
51
53
  attributes: AttributeChangedPatient;
54
+ justify?: string;
52
55
  }
53
56
  export interface AttributeChangedPatient {
54
57
  [key: string]: ValueChange;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grapp-common-se",
3
- "version": "0.6.207",
3
+ "version": "0.6.208",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {