grapp-common-se 0.6.79 → 0.6.82
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/request.d.ts +8 -0
- package/dist/users/user.d.ts +1 -0
- package/package.json +1 -1
package/dist/orders/request.d.ts
CHANGED
|
@@ -304,6 +304,14 @@ export interface Eps {
|
|
|
304
304
|
createdAt?: number;
|
|
305
305
|
lastModified?: number;
|
|
306
306
|
activeContract?: boolean;
|
|
307
|
+
comments?: EpsComments[];
|
|
308
|
+
}
|
|
309
|
+
export interface EpsComments {
|
|
310
|
+
name?: string;
|
|
311
|
+
date?: number;
|
|
312
|
+
oldValue?: string;
|
|
313
|
+
newValue?: string;
|
|
314
|
+
justify?: string;
|
|
307
315
|
}
|
|
308
316
|
export interface Contract {
|
|
309
317
|
id?: string;
|
package/dist/users/user.d.ts
CHANGED