grapp-common-se 0.6.230 → 0.6.232
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
|
@@ -80,6 +80,7 @@ export interface Order extends Resource {
|
|
|
80
80
|
executorAssignedBy?: string[];
|
|
81
81
|
executedReason?: string;
|
|
82
82
|
controlDate?: any;
|
|
83
|
+
doctorAssingDate?: Timestamp;
|
|
83
84
|
LastAssistantModified?: LastAssistantModified;
|
|
84
85
|
otherObservations?: string;
|
|
85
86
|
}
|
|
@@ -172,6 +173,7 @@ export interface AgendaEvent {
|
|
|
172
173
|
anesthesiologyState?: AnesthesiologyStates;
|
|
173
174
|
turest?: string;
|
|
174
175
|
turpropro?: string;
|
|
176
|
+
nameAppointmentPerson?: string;
|
|
175
177
|
}
|
|
176
178
|
export declare enum AnesthesiologyStates {
|
|
177
179
|
Decline = 0,
|
package/dist/orders/request.d.ts
CHANGED
|
@@ -32,10 +32,12 @@ export interface Request extends Resource {
|
|
|
32
32
|
requestTraceabilityStatus?: requestTraceabilityStatus;
|
|
33
33
|
files?: any[];
|
|
34
34
|
filesConfidential?: any[];
|
|
35
|
+
filesDeleted?: any[];
|
|
35
36
|
authorizationNumber?: string;
|
|
36
37
|
auditAlert?: IAlerts;
|
|
37
38
|
nroatencion?: string;
|
|
38
39
|
isPendingToReactivate?: ExecutorActivate;
|
|
40
|
+
doctorAssingDate?: Timestamp;
|
|
39
41
|
otherObservations?: string;
|
|
40
42
|
}
|
|
41
43
|
interface IAlerts {
|
package/dist/users/user.d.ts
CHANGED