grapp-common-se 0.6.136 → 0.6.138
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 +0 -4
- package/dist/orders/order.d.ts +10 -21
- package/package.json +1 -1
package/dist/client/client.d.ts
CHANGED
|
@@ -10,10 +10,6 @@ export interface Client {
|
|
|
10
10
|
termsOfServiceHD: InnerFile;
|
|
11
11
|
integrationsWs?: ClientWs[];
|
|
12
12
|
addLegendInfo?: string;
|
|
13
|
-
messageEmail?: messageEmailByIntitution;
|
|
14
|
-
}
|
|
15
|
-
export interface messageEmailByIntitution {
|
|
16
|
-
messageExecutor?: string;
|
|
17
13
|
}
|
|
18
14
|
export interface ClientWs {
|
|
19
15
|
REQUEST_URL?: string;
|
package/dist/orders/order.d.ts
CHANGED
|
@@ -216,27 +216,16 @@ export interface orderTraceabilityStatus {
|
|
|
216
216
|
destinatary?: User;
|
|
217
217
|
}
|
|
218
218
|
export interface ContractTech {
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
frecuency?: number;
|
|
230
|
-
frecuencyAlert?: number;
|
|
231
|
-
monthlyFrecuency?: number;
|
|
232
|
-
weeklyFrecuency?: number;
|
|
233
|
-
createdAt?: number;
|
|
234
|
-
createdBy?: string;
|
|
235
|
-
lastModifiedAt?: number;
|
|
236
|
-
lastModifiedBy?: string;
|
|
237
|
-
state?: boolean;
|
|
238
|
-
ownCodeCups?: string;
|
|
239
|
-
planContractTech?: string;
|
|
219
|
+
epsId: string;
|
|
220
|
+
buyCost: number;
|
|
221
|
+
contractId: string;
|
|
222
|
+
createdAt: number;
|
|
223
|
+
frecuency: number;
|
|
224
|
+
frecuencyAlert: number;
|
|
225
|
+
sellPrice: number;
|
|
226
|
+
state: boolean;
|
|
227
|
+
techName: string;
|
|
228
|
+
technologyCode: number;
|
|
240
229
|
}
|
|
241
230
|
export interface SpecialitiesDoctorComplete {
|
|
242
231
|
habilitado: boolean;
|