grapp-common-se 0.6.53 → 0.6.57
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 +4 -1
- package/package.json +1 -1
package/dist/orders/order.d.ts
CHANGED
|
@@ -44,7 +44,7 @@ export interface Order extends Resource {
|
|
|
44
44
|
transferStatus?: TransferStatus;
|
|
45
45
|
sendTo?: SendTo[];
|
|
46
46
|
transferDate?: Number;
|
|
47
|
-
orderContract
|
|
47
|
+
orderContract?: Contract;
|
|
48
48
|
}
|
|
49
49
|
export interface SendTo {
|
|
50
50
|
transferStatus?: TransferStatus;
|
|
@@ -88,6 +88,8 @@ export interface AgendaEvent {
|
|
|
88
88
|
orderBy?: {
|
|
89
89
|
name?: string;
|
|
90
90
|
};
|
|
91
|
+
appointmentIdWS?: string;
|
|
92
|
+
updatedAt?: Number;
|
|
91
93
|
}
|
|
92
94
|
export declare enum AgendaEventStatus {
|
|
93
95
|
SUCCESSFUL = "Exitosa",
|
|
@@ -137,6 +139,7 @@ export interface OrderComment {
|
|
|
137
139
|
deferredReason?: string;
|
|
138
140
|
auditComment?: boolean;
|
|
139
141
|
agenda?: AgendaEvent[];
|
|
142
|
+
notifyPatient?: boolean;
|
|
140
143
|
}
|
|
141
144
|
export interface orderTraceabilityStatus {
|
|
142
145
|
direction?: boolean;
|