grapp-common-se 0.6.43 → 0.6.47

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.
@@ -119,11 +119,16 @@ export interface ContractTech {
119
119
  epsId: string;
120
120
  buyCost: number;
121
121
  contractId: string;
122
- createdAt: number;
122
+ createdAt?: number;
123
123
  frecuency: number;
124
124
  frecuencyAlert: number;
125
125
  sellPrice: number;
126
126
  state: boolean;
127
127
  techName: string;
128
128
  technologyCode: number;
129
+ monthlyFrecuency?: number;
130
+ weeklyFrecuency?: number;
131
+ createdBy?: string;
132
+ lastModifiedAt?: number;
133
+ lastModifiedBy?: string;
129
134
  }
@@ -319,6 +319,7 @@ export interface Contract {
319
319
  weeklyCheck?: boolean;
320
320
  topWeekly?: number;
321
321
  weeklyAlertPercent?: number;
322
+ priceControl?: boolean;
322
323
  }
323
324
  export interface epsGroup {
324
325
  id?: string;
@@ -41,6 +41,7 @@ export interface Patient extends User {
41
41
  * Trazabilidad de cambios
42
42
  */
43
43
  changesTraceability?: ChangeTraceability[];
44
+ messagePatientLog?: string[];
44
45
  }
45
46
  export interface ChangeTraceability {
46
47
  modifiedBy: User;
@@ -62,4 +63,5 @@ export interface PatientLog {
62
63
  patientID?: string;
63
64
  createdAt?: number;
64
65
  createBy?: {};
66
+ changeCamp?: {};
65
67
  }
@@ -28,7 +28,7 @@ export declare enum IDType {
28
28
  PE = "PE",
29
29
  AS = "AS",
30
30
  MS = "MS",
31
- NV = "NV",
31
+ CN = "CN",
32
32
  DE = "DE",
33
33
  SC = "SC"
34
34
  }
@@ -14,7 +14,7 @@ var IDType;
14
14
  IDType["PE"] = "PE";
15
15
  IDType["AS"] = "AS";
16
16
  IDType["MS"] = "MS";
17
- IDType["NV"] = "NV";
17
+ IDType["CN"] = "CN";
18
18
  IDType["DE"] = "DE";
19
19
  IDType["SC"] = "SC";
20
20
  })(IDType = exports.IDType || (exports.IDType = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grapp-common-se",
3
- "version": "0.6.43",
3
+ "version": "0.6.47",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {