grapp-common-se 0.6.112 → 0.6.114
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/client/client.d.ts
CHANGED
package/dist/orders/order.d.ts
CHANGED
|
@@ -57,6 +57,9 @@ export interface Order extends Resource {
|
|
|
57
57
|
executionDate?: number;
|
|
58
58
|
headquarters?: string;
|
|
59
59
|
group?: GroupReduced[];
|
|
60
|
+
authAsistant?: boolean;
|
|
61
|
+
userModified?: string;
|
|
62
|
+
userModifiedLogs?: Array<UserReduced>;
|
|
60
63
|
}
|
|
61
64
|
export interface GroupReduced {
|
|
62
65
|
id?: string;
|
|
@@ -215,4 +218,8 @@ export interface IPlanContract {
|
|
|
215
218
|
modifiedBy?: string;
|
|
216
219
|
active?: boolean;
|
|
217
220
|
}
|
|
221
|
+
export interface UserReduced {
|
|
222
|
+
name?: string;
|
|
223
|
+
date?: string;
|
|
224
|
+
}
|
|
218
225
|
export {};
|