grapp-common-se 0.6.187 → 0.6.189

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.
@@ -77,6 +77,7 @@ export interface Order extends Resource {
77
77
  daysDeferred?: number;
78
78
  deferredDate?: number;
79
79
  ambit?: string;
80
+ executorAssignedBy?: string[];
80
81
  }
81
82
  export declare enum ExecutorActivateStates {
82
83
  REQUEST = 0,
@@ -121,7 +122,7 @@ interface PrescribingDoctor {
121
122
  idType?: string;
122
123
  document?: string;
123
124
  }
124
- interface DataCreatedBy {
125
+ export interface DataCreatedBy {
125
126
  id?: string;
126
127
  name?: string;
127
128
  document?: string;
@@ -0,0 +1,26 @@
1
+ import { Users } from "..";
2
+ import { DataCreatedBy } from "../orders";
3
+ export interface PopulationLabel {
4
+ id?: string;
5
+ _id?: string;
6
+ name?: string;
7
+ description?: string;
8
+ status?: boolean;
9
+ updates?: Array<Traceability>;
10
+ save?: boolean;
11
+ delete?: boolean;
12
+ user?: Users.User;
13
+ }
14
+ export interface PopulationLabelComplete extends PopulationLabel {
15
+ id?: string;
16
+ _id?: string;
17
+ createdAt?: Number;
18
+ lastModified?: number;
19
+ createdBy?: DataCreatedBy;
20
+ updates?: Array<Traceability>;
21
+ }
22
+ export interface Traceability {
23
+ user?: string;
24
+ modified?: Number;
25
+ change?: string;
26
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -43,6 +43,7 @@ export interface Patient extends User {
43
43
  changesTraceability?: ChangeTraceability[];
44
44
  messagePatientLog?: string[];
45
45
  activePatientContract?: boolean;
46
+ populationlabels?: string[];
46
47
  }
47
48
  export interface ChangeTraceability {
48
49
  modifiedBy: User;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grapp-common-se",
3
- "version": "0.6.187",
3
+ "version": "0.6.189",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {