grapp-common-se 0.6.95 → 0.6.98
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/orders/order.d.ts
CHANGED
|
@@ -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;
|
|
@@ -185,4 +187,8 @@ export interface ContractTech {
|
|
|
185
187
|
techName: string;
|
|
186
188
|
technologyCode: number;
|
|
187
189
|
}
|
|
190
|
+
export interface SpecialitiesDoctorComplete {
|
|
191
|
+
habilitado: boolean;
|
|
192
|
+
descripcion: string;
|
|
193
|
+
}
|
|
188
194
|
export {};
|
package/dist/orders/request.d.ts
CHANGED