grapp-common-se 0.6.150 → 0.6.151
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 +23 -10
- package/dist/orders/request.d.ts +1 -0
- package/dist/users/user.d.ts +2 -0
- package/package.json +1 -1
package/dist/orders/order.d.ts
CHANGED
|
@@ -153,6 +153,8 @@ export interface AgendaEvent {
|
|
|
153
153
|
};
|
|
154
154
|
appointmentIdWS?: string;
|
|
155
155
|
updatedAt?: Number;
|
|
156
|
+
turest?: string;
|
|
157
|
+
turpropro?: string;
|
|
156
158
|
}
|
|
157
159
|
export declare enum AgendaEventStatus {
|
|
158
160
|
SUCCESSFUL = "Exitosa",
|
|
@@ -217,16 +219,27 @@ export interface orderTraceabilityStatus {
|
|
|
217
219
|
destinatary?: User;
|
|
218
220
|
}
|
|
219
221
|
export interface ContractTech {
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
222
|
+
_id?: string;
|
|
223
|
+
epsId?: string;
|
|
224
|
+
epsCode?: string;
|
|
225
|
+
typeContract?: string;
|
|
226
|
+
contractId?: string;
|
|
227
|
+
technologyCode?: string;
|
|
228
|
+
techName?: string;
|
|
229
|
+
techCodeDescription?: string;
|
|
230
|
+
buyCost?: number;
|
|
231
|
+
sellPrice?: number;
|
|
232
|
+
frecuency?: number;
|
|
233
|
+
frecuencyAlert?: number;
|
|
234
|
+
monthlyFrecuency?: number;
|
|
235
|
+
weeklyFrecuency?: number;
|
|
236
|
+
createdAt?: number;
|
|
237
|
+
createdBy?: string;
|
|
238
|
+
lastModifiedAt?: number;
|
|
239
|
+
lastModifiedBy?: string;
|
|
240
|
+
state?: boolean;
|
|
241
|
+
ownCodeCups?: string;
|
|
242
|
+
planContractTech?: string;
|
|
230
243
|
}
|
|
231
244
|
export interface SpecialitiesDoctorComplete {
|
|
232
245
|
habilitado: boolean;
|
package/dist/orders/request.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export interface Request extends Resource {
|
|
|
31
31
|
deletionObservations?: DeletionInfo;
|
|
32
32
|
requestTraceabilityStatus?: requestTraceabilityStatus;
|
|
33
33
|
files?: any[];
|
|
34
|
+
filesConfidential?: any[];
|
|
34
35
|
authorizationNumber?: string;
|
|
35
36
|
auditAlert?: IAlerts;
|
|
36
37
|
nroatencion?: string;
|
package/dist/users/user.d.ts
CHANGED