grapp-common-se 0.6.42 → 0.6.46

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.
@@ -36,6 +36,9 @@ export interface Order extends Resource {
36
36
  successCallType?: SuccessCallTypeStatus;
37
37
  orderIdWS?: string;
38
38
  lastModified?: number;
39
+ sellPrice?: number;
40
+ buyCost?: number;
41
+ totalSale?: number;
39
42
  }
40
43
  export interface OrderComplete extends Order {
41
44
  patient?: Patient;
@@ -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;
@@ -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.42",
3
+ "version": "0.6.46",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {