grapp-common-se 0.6.94 → 0.6.97

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.
package/dist/index.d.ts CHANGED
@@ -31,4 +31,5 @@ export declare namespace Collections {
31
31
  const CUSTOM_CAUSES = "CustomCauses";
32
32
  const REQUEST_ORIGINS = "RequestOrigins";
33
33
  const CONTRACT_TYPE = "ContractType";
34
+ const VIDEO_TUTORIALES = "VideoTutoriales";
34
35
  }
package/dist/index.js CHANGED
@@ -44,4 +44,5 @@ var Collections;
44
44
  Collections.CUSTOM_CAUSES = 'CustomCauses';
45
45
  Collections.REQUEST_ORIGINS = 'RequestOrigins';
46
46
  Collections.CONTRACT_TYPE = 'ContractType';
47
+ Collections.VIDEO_TUTORIALES = 'VideoTutoriales';
47
48
  })(Collections = exports.Collections || (exports.Collections = {}));
@@ -5,6 +5,7 @@ import { CIE10 } from '../clinics/CIE10';
5
5
  import { InnerFile } from '../fileSystem';
6
6
  import { Users } from '..';
7
7
  import { Contract, RequestReduced, Speciality } from './request';
8
+ import { UserType } from '../users/user';
8
9
  export interface Order extends Resource {
9
10
  _id?: string;
10
11
  file?: string[] | (File | InnerFile)[];
@@ -166,6 +167,7 @@ export interface OrderComment {
166
167
  agenda?: AgendaEvent[];
167
168
  notifyPatient?: boolean;
168
169
  commentOrderTrans?: string;
170
+ userTypeDateControlUpdate?: UserType;
169
171
  }
170
172
  export interface orderTraceabilityStatus {
171
173
  direction?: boolean;
@@ -17,6 +17,7 @@ export interface Request extends Resource {
17
17
  specialty?: Speciality;
18
18
  status: RequestStatus;
19
19
  specialty2?: Speciality;
20
+ prescribingDoctor?: PrescribingDoctor;
20
21
  observations?: string;
21
22
  suborders?: Order[];
22
23
  verifierDoctor?: PrescribingDoctor;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grapp-common-se",
3
- "version": "0.6.94",
3
+ "version": "0.6.97",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {