grapp-common-se 0.6.92 → 0.6.93
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 +4 -0
- package/package.json +1 -1
package/dist/orders/request.d.ts
CHANGED
|
@@ -299,6 +299,7 @@ export interface Eps {
|
|
|
299
299
|
name: string;
|
|
300
300
|
nit: string;
|
|
301
301
|
regimen: string[];
|
|
302
|
+
notifyContractTop: NotifyContractTop[];
|
|
302
303
|
resourceID?: string;
|
|
303
304
|
resources?: string[];
|
|
304
305
|
tableName?: string;
|
|
@@ -307,6 +308,9 @@ export interface Eps {
|
|
|
307
308
|
activeContract?: boolean;
|
|
308
309
|
comments?: EpsComments[];
|
|
309
310
|
}
|
|
311
|
+
export interface NotifyContractTop {
|
|
312
|
+
email: string;
|
|
313
|
+
}
|
|
310
314
|
export interface EpsComments {
|
|
311
315
|
name?: string;
|
|
312
316
|
date?: number;
|