grapp-common-se 0.6.176 → 0.6.177
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 +3 -0
- package/package.json +1 -1
package/dist/orders/order.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export interface Order extends Resource {
|
|
|
25
25
|
authorizationDate?: Timestamp;
|
|
26
26
|
agenda?: AgendaEvent[];
|
|
27
27
|
appointmentAddress?: string;
|
|
28
|
+
completeAppointmentAddress?: string;
|
|
28
29
|
appointmentDate?: Timestamp;
|
|
29
30
|
appointmentDateWithoutHour?: Timestamp;
|
|
30
31
|
appointmentTime?: string;
|
|
@@ -72,6 +73,7 @@ export interface Order extends Resource {
|
|
|
72
73
|
anesthesiologyDate?: any;
|
|
73
74
|
haveCups?: any;
|
|
74
75
|
commentJustification?: string;
|
|
76
|
+
patientAutomaticEmail?: boolean;
|
|
75
77
|
}
|
|
76
78
|
export declare enum ExecutorActivateStates {
|
|
77
79
|
REQUEST = 0,
|
|
@@ -140,6 +142,7 @@ export interface AgendaEvent {
|
|
|
140
142
|
date?: Timestamp;
|
|
141
143
|
state?: AgendaEventStatus;
|
|
142
144
|
appointmentAddress?: string;
|
|
145
|
+
completeAppointmentAddress?: string;
|
|
143
146
|
appointmentDate?: Timestamp | Date;
|
|
144
147
|
appointmentTime?: string;
|
|
145
148
|
answeredBy?: {
|