@erpp/react-api-cronos-frontend 1.0.26 → 1.0.27
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/index.d.mts +3054 -930
- package/dist/index.d.ts +3054 -930
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/readme.md +6 -2
package/dist/index.d.mts
CHANGED
|
@@ -206,273 +206,356 @@ declare class AdeudoAPI extends APICRUDClientBase<AdeudoDTO, AdeudoCreateDTO, Ad
|
|
|
206
206
|
constructor(params?: AdeudoParams);
|
|
207
207
|
}
|
|
208
208
|
|
|
209
|
-
interface
|
|
210
|
-
/** @maxLength (
|
|
211
|
-
|
|
212
|
-
/** @maxLength (
|
|
213
|
-
|
|
209
|
+
interface AdeudoPagoResumenMensualDTO {
|
|
210
|
+
/** @maxLength (7) @primaryKey */
|
|
211
|
+
anio_mes: string;
|
|
212
|
+
/** @maxLength (9) @nullable */
|
|
213
|
+
total_adeudo?: number;
|
|
214
|
+
/** @maxLength (9) @nullable */
|
|
215
|
+
total_pago?: number;
|
|
216
|
+
/** @maxLength (9) @nullable */
|
|
217
|
+
saldo?: number;
|
|
218
|
+
/** @maxLength (7) */
|
|
219
|
+
estado_saldo: string;
|
|
220
|
+
/** @maxLength (8) @nullable */
|
|
221
|
+
fecha_actualizacion?: string;
|
|
214
222
|
}
|
|
215
|
-
interface
|
|
216
|
-
/** @maxLength (
|
|
217
|
-
|
|
223
|
+
interface AdeudoPagoResumenMensualCreateDTO {
|
|
224
|
+
/** @maxLength (7) @primaryKey */
|
|
225
|
+
anio_mes: string;
|
|
226
|
+
/** @maxLength (9) @nullable */
|
|
227
|
+
total_adeudo?: number;
|
|
228
|
+
/** @maxLength (9) @nullable */
|
|
229
|
+
total_pago?: number;
|
|
230
|
+
/** @maxLength (9) @nullable */
|
|
231
|
+
saldo?: number;
|
|
232
|
+
/** @maxLength (7) */
|
|
233
|
+
estado_saldo: string;
|
|
234
|
+
/** @maxLength (8) @nullable */
|
|
235
|
+
fecha_actualizacion?: string;
|
|
218
236
|
}
|
|
219
|
-
interface
|
|
220
|
-
/** @maxLength (
|
|
221
|
-
|
|
237
|
+
interface AdeudoPagoResumenMensualUpdateDTO {
|
|
238
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
239
|
+
anio_mes?: string;
|
|
240
|
+
/** @maxLength (9) @nullable @optional */
|
|
241
|
+
total_adeudo?: number;
|
|
242
|
+
/** @maxLength (9) @nullable @optional */
|
|
243
|
+
total_pago?: number;
|
|
244
|
+
/** @maxLength (9) @nullable @optional */
|
|
245
|
+
saldo?: number;
|
|
246
|
+
/** @maxLength (7) @optional */
|
|
247
|
+
estado_saldo?: string;
|
|
248
|
+
/** @maxLength (8) @nullable @optional */
|
|
249
|
+
fecha_actualizacion?: string;
|
|
222
250
|
}
|
|
223
251
|
|
|
224
252
|
/**
|
|
225
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
253
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de AdeudoPagoResumenMensual.
|
|
226
254
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
227
255
|
*/
|
|
228
|
-
interface
|
|
256
|
+
interface AdeudoPagoResumenMensualQuery extends BaseQuery {
|
|
229
257
|
}
|
|
230
258
|
/**
|
|
231
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
259
|
+
* @description Parámetros explicitos para la configuración del cliente API de AdeudoPagoResumenMensual.
|
|
232
260
|
*/
|
|
233
|
-
interface
|
|
261
|
+
interface AdeudoPagoResumenMensualParams extends APIClientParams {
|
|
234
262
|
}
|
|
235
|
-
declare class
|
|
236
|
-
constructor(params?:
|
|
263
|
+
declare class AdeudoPagoResumenMensualAPI extends APICRUDClientBase<AdeudoPagoResumenMensualDTO, AdeudoPagoResumenMensualCreateDTO, AdeudoPagoResumenMensualUpdateDTO, AdeudoPagoResumenMensualQuery, AdeudoPagoResumenMensualDTO> {
|
|
264
|
+
constructor(params?: AdeudoPagoResumenMensualParams);
|
|
237
265
|
}
|
|
238
266
|
|
|
239
|
-
interface
|
|
240
|
-
/**
|
|
241
|
-
|
|
242
|
-
/**
|
|
243
|
-
|
|
267
|
+
interface AdeudoResumenMensualDTO {
|
|
268
|
+
/** @maxLength (7) @primaryKey */
|
|
269
|
+
anio_mes: string;
|
|
270
|
+
/** @maxLength (9) @nullable */
|
|
271
|
+
total_adeudo?: number;
|
|
272
|
+
/** @maxLength (8) @nullable */
|
|
273
|
+
fecha_actualizacion?: string;
|
|
244
274
|
}
|
|
245
|
-
interface
|
|
246
|
-
/**
|
|
247
|
-
|
|
248
|
-
/**
|
|
249
|
-
|
|
275
|
+
interface AdeudoResumenMensualCreateDTO {
|
|
276
|
+
/** @maxLength (7) @primaryKey */
|
|
277
|
+
anio_mes: string;
|
|
278
|
+
/** @maxLength (9) @nullable */
|
|
279
|
+
total_adeudo?: number;
|
|
280
|
+
/** @maxLength (8) @nullable */
|
|
281
|
+
fecha_actualizacion?: string;
|
|
250
282
|
}
|
|
251
|
-
interface
|
|
252
|
-
/**
|
|
253
|
-
|
|
254
|
-
/**
|
|
255
|
-
|
|
283
|
+
interface AdeudoResumenMensualUpdateDTO {
|
|
284
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
285
|
+
anio_mes?: string;
|
|
286
|
+
/** @maxLength (9) @nullable @optional */
|
|
287
|
+
total_adeudo?: number;
|
|
288
|
+
/** @maxLength (8) @nullable @optional */
|
|
289
|
+
fecha_actualizacion?: string;
|
|
256
290
|
}
|
|
257
291
|
|
|
258
292
|
/**
|
|
259
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
293
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de AdeudoResumenMensual.
|
|
260
294
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
261
295
|
*/
|
|
262
|
-
interface
|
|
296
|
+
interface AdeudoResumenMensualQuery extends BaseQuery {
|
|
263
297
|
}
|
|
264
298
|
/**
|
|
265
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
299
|
+
* @description Parámetros explicitos para la configuración del cliente API de AdeudoResumenMensual.
|
|
266
300
|
*/
|
|
267
|
-
interface
|
|
301
|
+
interface AdeudoResumenMensualParams extends APIClientParams {
|
|
268
302
|
}
|
|
269
|
-
declare class
|
|
270
|
-
constructor(params?:
|
|
303
|
+
declare class AdeudoResumenMensualAPI extends APICRUDClientBase<AdeudoResumenMensualDTO, AdeudoResumenMensualCreateDTO, AdeudoResumenMensualUpdateDTO, AdeudoResumenMensualQuery, AdeudoResumenMensualDTO> {
|
|
304
|
+
constructor(params?: AdeudoResumenMensualParams);
|
|
271
305
|
}
|
|
272
306
|
|
|
273
|
-
interface
|
|
274
|
-
/** @maxLength (
|
|
275
|
-
|
|
276
|
-
/**
|
|
277
|
-
|
|
278
|
-
/**
|
|
279
|
-
|
|
280
|
-
/** @foreignKey (dashboard_grafica_elemento_detalle.dashboard_grafica_elemento_detalle_id) @maxLength (4) */
|
|
281
|
-
dashboard_grafica_elemento_detalle_id: number;
|
|
282
|
-
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) @nullable */
|
|
283
|
-
tipo_grafica_id?: number;
|
|
307
|
+
interface AdeudoResumenTipoSueloDTO {
|
|
308
|
+
/** @maxLength (200) @primaryKey */
|
|
309
|
+
tipo_suelo: string;
|
|
310
|
+
/** @maxLength (9) @nullable */
|
|
311
|
+
total_adeudo?: number;
|
|
312
|
+
/** @maxLength (8) @nullable */
|
|
313
|
+
fecha_actualizacion?: string;
|
|
284
314
|
}
|
|
285
|
-
interface
|
|
286
|
-
/**
|
|
287
|
-
|
|
288
|
-
/**
|
|
289
|
-
|
|
290
|
-
/**
|
|
291
|
-
|
|
292
|
-
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) @nullable */
|
|
293
|
-
tipo_grafica_id?: number;
|
|
315
|
+
interface AdeudoResumenTipoSueloCreateDTO {
|
|
316
|
+
/** @maxLength (200) @primaryKey */
|
|
317
|
+
tipo_suelo: string;
|
|
318
|
+
/** @maxLength (9) @nullable */
|
|
319
|
+
total_adeudo?: number;
|
|
320
|
+
/** @maxLength (8) @nullable */
|
|
321
|
+
fecha_actualizacion?: string;
|
|
294
322
|
}
|
|
295
|
-
interface
|
|
296
|
-
/**
|
|
297
|
-
|
|
298
|
-
/**
|
|
299
|
-
|
|
300
|
-
/**
|
|
301
|
-
|
|
302
|
-
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) @nullable @optional */
|
|
303
|
-
tipo_grafica_id?: number;
|
|
323
|
+
interface AdeudoResumenTipoSueloUpdateDTO {
|
|
324
|
+
/** @maxLength (200) @primaryKey @optional */
|
|
325
|
+
tipo_suelo?: string;
|
|
326
|
+
/** @maxLength (9) @nullable @optional */
|
|
327
|
+
total_adeudo?: number;
|
|
328
|
+
/** @maxLength (8) @nullable @optional */
|
|
329
|
+
fecha_actualizacion?: string;
|
|
304
330
|
}
|
|
305
331
|
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
interface Item {
|
|
312
|
-
id: number;
|
|
313
|
-
parentId: any;
|
|
314
|
-
styles: Styles;
|
|
315
|
-
origin: string;
|
|
316
|
-
data: Data;
|
|
332
|
+
/**
|
|
333
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de AdeudoResumenTipoSuelo.
|
|
334
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
335
|
+
*/
|
|
336
|
+
interface AdeudoResumenTipoSueloQuery extends BaseQuery {
|
|
317
337
|
}
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
flexGrow: string;
|
|
323
|
-
flexDirection: any;
|
|
324
|
-
flexWrap: string;
|
|
338
|
+
/**
|
|
339
|
+
* @description Parámetros explicitos para la configuración del cliente API de AdeudoResumenTipoSuelo.
|
|
340
|
+
*/
|
|
341
|
+
interface AdeudoResumenTipoSueloParams extends APIClientParams {
|
|
325
342
|
}
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
dashboard_grafica_elemento?: DashboardGraficaElemento;
|
|
343
|
+
declare class AdeudoResumenTipoSueloAPI extends APICRUDClientBase<AdeudoResumenTipoSueloDTO, AdeudoResumenTipoSueloCreateDTO, AdeudoResumenTipoSueloUpdateDTO, AdeudoResumenTipoSueloQuery, AdeudoResumenTipoSueloDTO> {
|
|
344
|
+
constructor(params?: AdeudoResumenTipoSueloParams);
|
|
329
345
|
}
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
346
|
+
|
|
347
|
+
interface AdeudoResumenTipoSueloResumenDTO {
|
|
348
|
+
/** @maxLength (7) @primaryKey */
|
|
349
|
+
anio_mes: string;
|
|
350
|
+
/** @maxLength (200) @primaryKey */
|
|
351
|
+
tipo_suelo: string;
|
|
352
|
+
/** @maxLength (9) @nullable */
|
|
353
|
+
total_adeudo?: number;
|
|
354
|
+
/** @maxLength (8) @nullable */
|
|
355
|
+
fecha_actualizacion?: string;
|
|
339
356
|
}
|
|
340
|
-
interface
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
357
|
+
interface AdeudoResumenTipoSueloResumenCreateDTO {
|
|
358
|
+
/** @maxLength (7) @primaryKey */
|
|
359
|
+
anio_mes: string;
|
|
360
|
+
/** @maxLength (200) @primaryKey */
|
|
361
|
+
tipo_suelo: string;
|
|
362
|
+
/** @maxLength (9) @nullable */
|
|
363
|
+
total_adeudo?: number;
|
|
364
|
+
/** @maxLength (8) @nullable */
|
|
365
|
+
fecha_actualizacion?: string;
|
|
349
366
|
}
|
|
350
|
-
interface
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
367
|
+
interface AdeudoResumenTipoSueloResumenUpdateDTO {
|
|
368
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
369
|
+
anio_mes?: string;
|
|
370
|
+
/** @maxLength (200) @primaryKey @optional */
|
|
371
|
+
tipo_suelo?: string;
|
|
372
|
+
/** @maxLength (9) @nullable @optional */
|
|
373
|
+
total_adeudo?: number;
|
|
374
|
+
/** @maxLength (8) @nullable @optional */
|
|
375
|
+
fecha_actualizacion?: string;
|
|
354
376
|
}
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
grafica_parametro_defectos: GraficaParametroDefecto[];
|
|
377
|
+
|
|
378
|
+
/**
|
|
379
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de AdeudoResumenTipoSueloResumen.
|
|
380
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
381
|
+
*/
|
|
382
|
+
interface AdeudoResumenTipoSueloResumenQuery extends BaseQuery {
|
|
362
383
|
}
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
384
|
+
/**
|
|
385
|
+
* @description Parámetros explicitos para la configuración del cliente API de AdeudoResumenTipoSueloResumen.
|
|
386
|
+
*/
|
|
387
|
+
interface AdeudoResumenTipoSueloResumenParams extends APIClientParams {
|
|
367
388
|
}
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
valor: string;
|
|
389
|
+
declare class AdeudoResumenTipoSueloResumenAPI extends APICRUDClientBase<AdeudoResumenTipoSueloResumenDTO, AdeudoResumenTipoSueloResumenCreateDTO, AdeudoResumenTipoSueloResumenUpdateDTO, AdeudoResumenTipoSueloResumenQuery, AdeudoResumenTipoSueloResumenDTO> {
|
|
390
|
+
constructor(params?: AdeudoResumenTipoSueloResumenParams);
|
|
371
391
|
}
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
392
|
+
|
|
393
|
+
interface AdeudosPorPlazaResumenDTO {
|
|
394
|
+
/** @maxLength (4) @primaryKey */
|
|
395
|
+
plaza_id: number;
|
|
396
|
+
/** @maxLength (300) @nullable */
|
|
397
|
+
plaza?: string;
|
|
398
|
+
/** @maxLength (4) @nullable */
|
|
399
|
+
total_adeudos?: number;
|
|
400
|
+
/** @maxLength (9) @nullable */
|
|
401
|
+
monto_total_adeudos?: number;
|
|
402
|
+
/** @maxLength (9) @nullable */
|
|
403
|
+
adeudo_promedio?: number;
|
|
404
|
+
/** @maxLength (9) @nullable */
|
|
405
|
+
adeudo_minimo?: number;
|
|
406
|
+
/** @maxLength (9) @nullable */
|
|
407
|
+
adeudo_maximo?: number;
|
|
408
|
+
/** @maxLength (8) @nullable */
|
|
409
|
+
fecha_actualizacion?: string;
|
|
380
410
|
}
|
|
381
|
-
interface
|
|
382
|
-
|
|
383
|
-
|
|
411
|
+
interface AdeudosPorPlazaResumenCreateDTO {
|
|
412
|
+
/** @maxLength (4) @primaryKey */
|
|
413
|
+
plaza_id: number;
|
|
414
|
+
/** @maxLength (300) @nullable */
|
|
415
|
+
plaza?: string;
|
|
416
|
+
/** @maxLength (4) @nullable */
|
|
417
|
+
total_adeudos?: number;
|
|
418
|
+
/** @maxLength (9) @nullable */
|
|
419
|
+
monto_total_adeudos?: number;
|
|
420
|
+
/** @maxLength (9) @nullable */
|
|
421
|
+
adeudo_promedio?: number;
|
|
422
|
+
/** @maxLength (9) @nullable */
|
|
423
|
+
adeudo_minimo?: number;
|
|
424
|
+
/** @maxLength (9) @nullable */
|
|
425
|
+
adeudo_maximo?: number;
|
|
426
|
+
/** @maxLength (8) @nullable */
|
|
427
|
+
fecha_actualizacion?: string;
|
|
384
428
|
}
|
|
385
|
-
interface
|
|
386
|
-
|
|
429
|
+
interface AdeudosPorPlazaResumenUpdateDTO {
|
|
430
|
+
/** @maxLength (4) @primaryKey @optional */
|
|
431
|
+
plaza_id?: number;
|
|
432
|
+
/** @maxLength (300) @nullable @optional */
|
|
433
|
+
plaza?: string;
|
|
434
|
+
/** @maxLength (4) @nullable @optional */
|
|
435
|
+
total_adeudos?: number;
|
|
436
|
+
/** @maxLength (9) @nullable @optional */
|
|
437
|
+
monto_total_adeudos?: number;
|
|
438
|
+
/** @maxLength (9) @nullable @optional */
|
|
439
|
+
adeudo_promedio?: number;
|
|
440
|
+
/** @maxLength (9) @nullable @optional */
|
|
441
|
+
adeudo_minimo?: number;
|
|
442
|
+
/** @maxLength (9) @nullable @optional */
|
|
443
|
+
adeudo_maximo?: number;
|
|
444
|
+
/** @maxLength (8) @nullable @optional */
|
|
445
|
+
fecha_actualizacion?: string;
|
|
387
446
|
}
|
|
388
447
|
|
|
389
448
|
/**
|
|
390
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
449
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de AdeudosPorPlazaResumen.
|
|
391
450
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
392
451
|
*/
|
|
393
|
-
interface
|
|
452
|
+
interface AdeudosPorPlazaResumenQuery extends BaseQuery {
|
|
394
453
|
}
|
|
395
454
|
/**
|
|
396
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
455
|
+
* @description Parámetros explicitos para la configuración del cliente API de AdeudosPorPlazaResumen.
|
|
397
456
|
*/
|
|
398
|
-
interface
|
|
399
|
-
}
|
|
400
|
-
interface DashboardGraficaElementoTreeParams {
|
|
401
|
-
rol_id?: number;
|
|
402
|
-
orderBy?: string;
|
|
403
|
-
page: number;
|
|
404
|
-
limit: number;
|
|
457
|
+
interface AdeudosPorPlazaResumenParams extends APIClientParams {
|
|
405
458
|
}
|
|
406
|
-
declare class
|
|
407
|
-
constructor(params?:
|
|
408
|
-
/**
|
|
409
|
-
* @description Obtiene la estructura en árbol de los elementos del dashboard gráfico, posiblemente filtrada por rol.
|
|
410
|
-
*/
|
|
411
|
-
tree: (params: DashboardGraficaElementoTreeParams) => Promise<DashboardGraficaElementoTreeDTO>;
|
|
459
|
+
declare class AdeudosPorPlazaResumenAPI extends APICRUDClientBase<AdeudosPorPlazaResumenDTO, AdeudosPorPlazaResumenCreateDTO, AdeudosPorPlazaResumenUpdateDTO, AdeudosPorPlazaResumenQuery, AdeudosPorPlazaResumenDTO> {
|
|
460
|
+
constructor(params?: AdeudosPorPlazaResumenParams);
|
|
412
461
|
}
|
|
413
462
|
|
|
414
|
-
interface
|
|
415
|
-
/** @maxLength (
|
|
416
|
-
|
|
417
|
-
/** @maxLength (200) */
|
|
418
|
-
|
|
419
|
-
/** @maxLength (
|
|
420
|
-
|
|
421
|
-
/** @maxLength (
|
|
422
|
-
|
|
423
|
-
/** @maxLength (510) */
|
|
424
|
-
ruta_componente: string;
|
|
463
|
+
interface AdeudoTipoSueloResumenMensualDTO {
|
|
464
|
+
/** @maxLength (7) @primaryKey */
|
|
465
|
+
anio_mes: string;
|
|
466
|
+
/** @maxLength (200) @primaryKey */
|
|
467
|
+
tipo_suelo: string;
|
|
468
|
+
/** @maxLength (9) @nullable */
|
|
469
|
+
total_adeudo?: number;
|
|
470
|
+
/** @maxLength (8) @nullable */
|
|
471
|
+
fecha_actualizacion?: string;
|
|
425
472
|
}
|
|
426
|
-
interface
|
|
427
|
-
/** @maxLength (
|
|
428
|
-
|
|
429
|
-
/** @maxLength (
|
|
430
|
-
|
|
431
|
-
/** @maxLength (
|
|
432
|
-
|
|
433
|
-
/** @maxLength (
|
|
434
|
-
|
|
473
|
+
interface AdeudoTipoSueloResumenMensualCreateDTO {
|
|
474
|
+
/** @maxLength (7) @primaryKey */
|
|
475
|
+
anio_mes: string;
|
|
476
|
+
/** @maxLength (200) @primaryKey */
|
|
477
|
+
tipo_suelo: string;
|
|
478
|
+
/** @maxLength (9) @nullable */
|
|
479
|
+
total_adeudo?: number;
|
|
480
|
+
/** @maxLength (8) @nullable */
|
|
481
|
+
fecha_actualizacion?: string;
|
|
435
482
|
}
|
|
436
|
-
interface
|
|
437
|
-
/** @maxLength (
|
|
438
|
-
|
|
439
|
-
/** @maxLength (
|
|
440
|
-
|
|
441
|
-
/** @maxLength (
|
|
442
|
-
|
|
443
|
-
/** @maxLength (
|
|
444
|
-
|
|
483
|
+
interface AdeudoTipoSueloResumenMensualUpdateDTO {
|
|
484
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
485
|
+
anio_mes?: string;
|
|
486
|
+
/** @maxLength (200) @primaryKey @optional */
|
|
487
|
+
tipo_suelo?: string;
|
|
488
|
+
/** @maxLength (9) @nullable @optional */
|
|
489
|
+
total_adeudo?: number;
|
|
490
|
+
/** @maxLength (8) @nullable @optional */
|
|
491
|
+
fecha_actualizacion?: string;
|
|
445
492
|
}
|
|
446
493
|
|
|
447
494
|
/**
|
|
448
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
495
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de AdeudoTipoSueloResumenMensual.
|
|
449
496
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
450
497
|
*/
|
|
451
|
-
interface
|
|
498
|
+
interface AdeudoTipoSueloResumenMensualQuery extends BaseQuery {
|
|
452
499
|
}
|
|
453
500
|
/**
|
|
454
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
501
|
+
* @description Parámetros explicitos para la configuración del cliente API de AdeudoTipoSueloResumenMensual.
|
|
455
502
|
*/
|
|
456
|
-
interface
|
|
503
|
+
interface AdeudoTipoSueloResumenMensualParams extends APIClientParams {
|
|
457
504
|
}
|
|
458
|
-
declare class
|
|
459
|
-
constructor(params?:
|
|
505
|
+
declare class AdeudoTipoSueloResumenMensualAPI extends APICRUDClientBase<AdeudoTipoSueloResumenMensualDTO, AdeudoTipoSueloResumenMensualCreateDTO, AdeudoTipoSueloResumenMensualUpdateDTO, AdeudoTipoSueloResumenMensualQuery, AdeudoTipoSueloResumenMensualDTO> {
|
|
506
|
+
constructor(params?: AdeudoTipoSueloResumenMensualParams);
|
|
460
507
|
}
|
|
461
508
|
|
|
462
|
-
interface
|
|
509
|
+
interface CatAccionDTO {
|
|
463
510
|
/** @maxLength (4) @identity @primaryKey */
|
|
464
|
-
|
|
465
|
-
/** @maxLength (100) */
|
|
466
|
-
|
|
467
|
-
/** @maxLength (
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
/** @maxLength (
|
|
472
|
-
|
|
473
|
-
/** @maxLength (
|
|
474
|
-
|
|
475
|
-
}
|
|
511
|
+
cat_accion_id: number;
|
|
512
|
+
/** @maxLength (100) @nullable */
|
|
513
|
+
cat_accion_nombre?: string;
|
|
514
|
+
/** @maxLength (-1) @nullable */
|
|
515
|
+
cat_accion_status?: string;
|
|
516
|
+
}
|
|
517
|
+
interface CatAccionCreateDTO {
|
|
518
|
+
/** @maxLength (100) @nullable */
|
|
519
|
+
cat_accion_nombre?: string;
|
|
520
|
+
/** @maxLength (-1) @nullable */
|
|
521
|
+
cat_accion_status?: string;
|
|
522
|
+
}
|
|
523
|
+
interface CatAccionUpdateDTO {
|
|
524
|
+
/** @maxLength (100) @nullable @optional */
|
|
525
|
+
cat_accion_nombre?: string;
|
|
526
|
+
/** @maxLength (-1) @nullable @optional */
|
|
527
|
+
cat_accion_status?: string;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
/**
|
|
531
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatAccion.
|
|
532
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
533
|
+
*/
|
|
534
|
+
interface CatAccionQuery extends BaseQuery {
|
|
535
|
+
}
|
|
536
|
+
/**
|
|
537
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatAccion.
|
|
538
|
+
*/
|
|
539
|
+
interface CatAccionParams extends APIClientParams {
|
|
540
|
+
}
|
|
541
|
+
declare class CatAccionAPI extends APICRUDClientBase<CatAccionDTO, CatAccionCreateDTO, CatAccionUpdateDTO, CatAccionQuery, CatAccionDTO> {
|
|
542
|
+
constructor(params?: CatAccionParams);
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
interface CatColorDTO {
|
|
546
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
547
|
+
color_id: number;
|
|
548
|
+
/** @maxLength (100) */
|
|
549
|
+
nombre_color: string;
|
|
550
|
+
/** @maxLength (32) */
|
|
551
|
+
valor_hex: string;
|
|
552
|
+
/** @maxLength (255) @nullable */
|
|
553
|
+
descripcion?: string;
|
|
554
|
+
/** @maxLength (8) @nullable */
|
|
555
|
+
fecha_creacion?: string;
|
|
556
|
+
/** @maxLength (8) @nullable */
|
|
557
|
+
fecha_actualizacion?: string;
|
|
558
|
+
}
|
|
476
559
|
interface CatColorCreateDTO {
|
|
477
560
|
/** @maxLength (100) */
|
|
478
561
|
nombre_color: string;
|
|
@@ -561,147 +644,261 @@ declare class CatColorGrupoAPI extends APICRUDClientBase<CatColorGrupoDTO, CatCo
|
|
|
561
644
|
constructor(params?: CatColorGrupoParams);
|
|
562
645
|
}
|
|
563
646
|
|
|
564
|
-
interface
|
|
647
|
+
interface CatConceptoPagoDTO {
|
|
565
648
|
/** @maxLength (4) @identity @primaryKey */
|
|
566
|
-
|
|
649
|
+
id: number;
|
|
567
650
|
/** @maxLength (100) */
|
|
568
|
-
|
|
651
|
+
nombre: string;
|
|
569
652
|
/** @maxLength (255) @nullable */
|
|
570
653
|
descripcion?: string;
|
|
571
|
-
/** @maxLength (8) @nullable */
|
|
572
|
-
fecha_creacion?: string;
|
|
573
|
-
/** @maxLength (8) @nullable */
|
|
574
|
-
fecha_actualizacion?: string;
|
|
575
654
|
}
|
|
576
|
-
interface
|
|
655
|
+
interface CatConceptoPagoCreateDTO {
|
|
577
656
|
/** @maxLength (100) */
|
|
578
|
-
|
|
657
|
+
nombre: string;
|
|
579
658
|
/** @maxLength (255) @nullable */
|
|
580
659
|
descripcion?: string;
|
|
581
|
-
/** @maxLength (8) @nullable */
|
|
582
|
-
fecha_creacion?: string;
|
|
583
|
-
/** @maxLength (8) @nullable */
|
|
584
|
-
fecha_actualizacion?: string;
|
|
585
660
|
}
|
|
586
|
-
interface
|
|
661
|
+
interface CatConceptoPagoUpdateDTO {
|
|
587
662
|
/** @maxLength (100) @optional */
|
|
588
|
-
|
|
663
|
+
nombre?: string;
|
|
589
664
|
/** @maxLength (255) @nullable @optional */
|
|
590
665
|
descripcion?: string;
|
|
591
|
-
/** @maxLength (8) @nullable @optional */
|
|
592
|
-
fecha_creacion?: string;
|
|
593
|
-
/** @maxLength (8) @nullable @optional */
|
|
594
|
-
fecha_actualizacion?: string;
|
|
595
666
|
}
|
|
596
667
|
|
|
597
668
|
/**
|
|
598
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
669
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatConceptoPago.
|
|
599
670
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
600
671
|
*/
|
|
601
|
-
interface
|
|
672
|
+
interface CatConceptoPagoQuery extends BaseQuery {
|
|
602
673
|
}
|
|
603
674
|
/**
|
|
604
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
675
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatConceptoPago.
|
|
605
676
|
*/
|
|
606
|
-
interface
|
|
677
|
+
interface CatConceptoPagoParams extends APIClientParams {
|
|
607
678
|
}
|
|
608
|
-
declare class
|
|
609
|
-
constructor(params?:
|
|
679
|
+
declare class CatConceptoPagoAPI extends APICRUDClientBase<CatConceptoPagoDTO, CatConceptoPagoCreateDTO, CatConceptoPagoUpdateDTO, CatConceptoPagoQuery, CatConceptoPagoDTO> {
|
|
680
|
+
constructor(params?: CatConceptoPagoParams);
|
|
610
681
|
}
|
|
611
682
|
|
|
612
|
-
interface
|
|
683
|
+
interface CatEntidadDTO {
|
|
613
684
|
/** @maxLength (4) @identity @primaryKey */
|
|
614
|
-
|
|
685
|
+
cat_entidad_id: number;
|
|
686
|
+
/** @maxLength (100) @nullable */
|
|
687
|
+
cat_entidad_nombre?: string;
|
|
688
|
+
/** @maxLength (-1) @nullable */
|
|
689
|
+
cat_entidad_status?: string;
|
|
690
|
+
}
|
|
691
|
+
interface CatEntidadCreateDTO {
|
|
692
|
+
/** @maxLength (100) @nullable */
|
|
693
|
+
cat_entidad_nombre?: string;
|
|
694
|
+
/** @maxLength (-1) @nullable */
|
|
695
|
+
cat_entidad_status?: string;
|
|
696
|
+
}
|
|
697
|
+
interface CatEntidadUpdateDTO {
|
|
698
|
+
/** @maxLength (100) @nullable @optional */
|
|
699
|
+
cat_entidad_nombre?: string;
|
|
700
|
+
/** @maxLength (-1) @nullable @optional */
|
|
701
|
+
cat_entidad_status?: string;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
/**
|
|
705
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatEntidad.
|
|
706
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
707
|
+
*/
|
|
708
|
+
interface CatEntidadQuery extends BaseQuery {
|
|
709
|
+
}
|
|
710
|
+
/**
|
|
711
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatEntidad.
|
|
712
|
+
*/
|
|
713
|
+
interface CatEntidadParams extends APIClientParams {
|
|
714
|
+
}
|
|
715
|
+
declare class CatEntidadAPI extends APICRUDClientBase<CatEntidadDTO, CatEntidadCreateDTO, CatEntidadUpdateDTO, CatEntidadQuery, CatEntidadDTO> {
|
|
716
|
+
constructor(params?: CatEntidadParams);
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
interface CatFechaAgrupacionDTO {
|
|
720
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
721
|
+
fecha_agrupacion_id: number;
|
|
722
|
+
/** @maxLength (100) @nullable */
|
|
723
|
+
nombre?: string;
|
|
724
|
+
/** @maxLength (200) @nullable */
|
|
725
|
+
descripcion?: string;
|
|
726
|
+
}
|
|
727
|
+
interface CatFechaAgrupacionCreateDTO {
|
|
728
|
+
/** @maxLength (100) @nullable */
|
|
729
|
+
nombre?: string;
|
|
730
|
+
/** @maxLength (200) @nullable */
|
|
731
|
+
descripcion?: string;
|
|
732
|
+
}
|
|
733
|
+
interface CatFechaAgrupacionUpdateDTO {
|
|
734
|
+
/** @maxLength (100) @nullable @optional */
|
|
735
|
+
nombre?: string;
|
|
736
|
+
/** @maxLength (200) @nullable @optional */
|
|
737
|
+
descripcion?: string;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
/**
|
|
741
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatFechaAgrupacion.
|
|
742
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
743
|
+
*/
|
|
744
|
+
interface CatFechaAgrupacionQuery extends BaseQuery {
|
|
745
|
+
}
|
|
746
|
+
/**
|
|
747
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatFechaAgrupacion.
|
|
748
|
+
*/
|
|
749
|
+
interface CatFechaAgrupacionParams extends APIClientParams {
|
|
750
|
+
}
|
|
751
|
+
declare class CatFechaAgrupacionAPI extends APICRUDClientBase<CatFechaAgrupacionDTO, CatFechaAgrupacionCreateDTO, CatFechaAgrupacionUpdateDTO, CatFechaAgrupacionQuery, CatFechaAgrupacionDTO> {
|
|
752
|
+
constructor(params?: CatFechaAgrupacionParams);
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
interface CatGraficaGrupoDTO {
|
|
756
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
757
|
+
cat_grafica_grupo_id: number;
|
|
615
758
|
/** @maxLength (200) */
|
|
616
759
|
nombre: string;
|
|
617
760
|
/** @maxLength (510) @nullable */
|
|
618
761
|
descripcion?: string;
|
|
619
|
-
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) */
|
|
620
|
-
tipo_grafica_id: number;
|
|
621
|
-
/** @maxLength (1000) */
|
|
622
|
-
endpoint_url: string;
|
|
623
762
|
}
|
|
624
|
-
interface
|
|
763
|
+
interface CatGraficaGrupoCreateDTO {
|
|
625
764
|
/** @maxLength (200) */
|
|
626
765
|
nombre: string;
|
|
627
766
|
/** @maxLength (510) @nullable */
|
|
628
767
|
descripcion?: string;
|
|
629
|
-
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) */
|
|
630
|
-
tipo_grafica_id: number;
|
|
631
|
-
/** @maxLength (1000) */
|
|
632
|
-
endpoint_url: string;
|
|
633
768
|
}
|
|
634
|
-
interface
|
|
769
|
+
interface CatGraficaGrupoUpdateDTO {
|
|
635
770
|
/** @maxLength (200) @optional */
|
|
636
771
|
nombre?: string;
|
|
637
772
|
/** @maxLength (510) @nullable @optional */
|
|
638
773
|
descripcion?: string;
|
|
639
|
-
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) @optional */
|
|
640
|
-
tipo_grafica_id?: number;
|
|
641
|
-
/** @maxLength (1000) @optional */
|
|
642
|
-
endpoint_url?: string;
|
|
643
774
|
}
|
|
644
775
|
|
|
645
776
|
/**
|
|
646
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
777
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatGraficaGrupo.
|
|
647
778
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
648
779
|
*/
|
|
649
|
-
interface
|
|
780
|
+
interface CatGraficaGrupoQuery extends BaseQuery {
|
|
650
781
|
}
|
|
651
782
|
/**
|
|
652
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
783
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatGraficaGrupo.
|
|
653
784
|
*/
|
|
654
|
-
interface
|
|
785
|
+
interface CatGraficaGrupoParams extends APIClientParams {
|
|
655
786
|
}
|
|
656
|
-
declare class
|
|
657
|
-
constructor(params?:
|
|
787
|
+
declare class CatGraficaGrupoAPI extends APICRUDClientBase<CatGraficaGrupoDTO, CatGraficaGrupoCreateDTO, CatGraficaGrupoUpdateDTO, CatGraficaGrupoQuery, CatGraficaGrupoDTO> {
|
|
788
|
+
constructor(params?: CatGraficaGrupoParams);
|
|
658
789
|
}
|
|
659
790
|
|
|
660
|
-
interface
|
|
791
|
+
interface CatPlazaDTO {
|
|
661
792
|
/** @maxLength (4) @identity @primaryKey */
|
|
662
|
-
|
|
663
|
-
/** @maxLength (
|
|
664
|
-
|
|
665
|
-
/** @maxLength (
|
|
666
|
-
|
|
667
|
-
/** @maxLength (
|
|
668
|
-
|
|
669
|
-
/** @maxLength (
|
|
670
|
-
|
|
671
|
-
/** @maxLength (
|
|
672
|
-
|
|
793
|
+
plaza_id: number;
|
|
794
|
+
/** @maxLength (150) */
|
|
795
|
+
nombre: string;
|
|
796
|
+
/** @maxLength (150) */
|
|
797
|
+
municipio: string;
|
|
798
|
+
/** @maxLength (255) @nullable */
|
|
799
|
+
imagen?: string;
|
|
800
|
+
/** @maxLength (5) @nullable */
|
|
801
|
+
latitud?: number;
|
|
802
|
+
/** @maxLength (5) @nullable */
|
|
803
|
+
longitud?: number;
|
|
804
|
+
}
|
|
805
|
+
interface CatPlazaCreateDTO {
|
|
806
|
+
/** @maxLength (150) */
|
|
807
|
+
nombre: string;
|
|
808
|
+
/** @maxLength (150) */
|
|
809
|
+
municipio: string;
|
|
810
|
+
/** @maxLength (255) @nullable */
|
|
811
|
+
imagen?: string;
|
|
812
|
+
/** @maxLength (5) @nullable */
|
|
813
|
+
latitud?: number;
|
|
814
|
+
/** @maxLength (5) @nullable */
|
|
815
|
+
longitud?: number;
|
|
816
|
+
}
|
|
817
|
+
interface CatPlazaUpdateDTO {
|
|
818
|
+
/** @maxLength (150) @optional */
|
|
819
|
+
nombre?: string;
|
|
820
|
+
/** @maxLength (150) @optional */
|
|
821
|
+
municipio?: string;
|
|
822
|
+
/** @maxLength (255) @nullable @optional */
|
|
823
|
+
imagen?: string;
|
|
824
|
+
/** @maxLength (5) @nullable @optional */
|
|
825
|
+
latitud?: number;
|
|
826
|
+
/** @maxLength (5) @nullable @optional */
|
|
827
|
+
longitud?: number;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
/**
|
|
831
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatPlaza.
|
|
832
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
833
|
+
*/
|
|
834
|
+
interface CatPlazaQuery extends BaseQuery {
|
|
835
|
+
}
|
|
836
|
+
/**
|
|
837
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatPlaza.
|
|
838
|
+
*/
|
|
839
|
+
interface CatPlazaParams extends APIClientParams {
|
|
840
|
+
}
|
|
841
|
+
declare class CatPlazaAPI extends APICRUDClientBase<CatPlazaDTO, CatPlazaCreateDTO, CatPlazaUpdateDTO, CatPlazaQuery, CatPlazaDTO> {
|
|
842
|
+
constructor(params?: CatPlazaParams);
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
interface CatRolGrupoDTO {
|
|
846
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
847
|
+
cat_rol_grupo_id: number;
|
|
848
|
+
/** @maxLength (200) */
|
|
849
|
+
nombre: string;
|
|
850
|
+
}
|
|
851
|
+
interface CatRolGrupoCreateDTO {
|
|
852
|
+
/** @maxLength (200) */
|
|
853
|
+
nombre: string;
|
|
854
|
+
}
|
|
855
|
+
interface CatRolGrupoUpdateDTO {
|
|
856
|
+
/** @maxLength (200) @optional */
|
|
857
|
+
nombre?: string;
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
/**
|
|
861
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatRolGrupo.
|
|
862
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
863
|
+
*/
|
|
864
|
+
interface CatRolGrupoQuery extends BaseQuery {
|
|
865
|
+
}
|
|
866
|
+
/**
|
|
867
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatRolGrupo.
|
|
868
|
+
*/
|
|
869
|
+
interface CatRolGrupoParams extends APIClientParams {
|
|
870
|
+
}
|
|
871
|
+
declare class CatRolGrupoAPI extends APICRUDClientBase<CatRolGrupoDTO, CatRolGrupoCreateDTO, CatRolGrupoUpdateDTO, CatRolGrupoQuery, CatRolGrupoDTO> {
|
|
872
|
+
constructor(params?: CatRolGrupoParams);
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
interface CatTemaDTO {
|
|
876
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
877
|
+
tema_id: number;
|
|
878
|
+
/** @maxLength (100) */
|
|
879
|
+
nombre_tema: string;
|
|
880
|
+
/** @maxLength (255) @nullable */
|
|
881
|
+
descripcion?: string;
|
|
673
882
|
/** @maxLength (8) @nullable */
|
|
674
883
|
fecha_creacion?: string;
|
|
675
884
|
/** @maxLength (8) @nullable */
|
|
676
885
|
fecha_actualizacion?: string;
|
|
677
886
|
}
|
|
678
|
-
interface
|
|
679
|
-
/** @maxLength (
|
|
680
|
-
|
|
681
|
-
/** @maxLength (
|
|
682
|
-
|
|
683
|
-
/** @maxLength (7) @nullable */
|
|
684
|
-
color_texto_y?: string;
|
|
685
|
-
/** @maxLength (7) @nullable */
|
|
686
|
-
color_texto_fecha?: string;
|
|
687
|
-
/** @maxLength (7) @nullable */
|
|
688
|
-
color_texto_general?: string;
|
|
887
|
+
interface CatTemaCreateDTO {
|
|
888
|
+
/** @maxLength (100) */
|
|
889
|
+
nombre_tema: string;
|
|
890
|
+
/** @maxLength (255) @nullable */
|
|
891
|
+
descripcion?: string;
|
|
689
892
|
/** @maxLength (8) @nullable */
|
|
690
893
|
fecha_creacion?: string;
|
|
691
894
|
/** @maxLength (8) @nullable */
|
|
692
895
|
fecha_actualizacion?: string;
|
|
693
896
|
}
|
|
694
|
-
interface
|
|
695
|
-
/** @maxLength (
|
|
696
|
-
|
|
697
|
-
/** @maxLength (
|
|
698
|
-
|
|
699
|
-
/** @maxLength (7) @nullable @optional */
|
|
700
|
-
color_texto_y?: string;
|
|
701
|
-
/** @maxLength (7) @nullable @optional */
|
|
702
|
-
color_texto_fecha?: string;
|
|
703
|
-
/** @maxLength (7) @nullable @optional */
|
|
704
|
-
color_texto_general?: string;
|
|
897
|
+
interface CatTemaUpdateDTO {
|
|
898
|
+
/** @maxLength (100) @optional */
|
|
899
|
+
nombre_tema?: string;
|
|
900
|
+
/** @maxLength (255) @nullable @optional */
|
|
901
|
+
descripcion?: string;
|
|
705
902
|
/** @maxLength (8) @nullable @optional */
|
|
706
903
|
fecha_creacion?: string;
|
|
707
904
|
/** @maxLength (8) @nullable @optional */
|
|
@@ -709,480 +906,2487 @@ interface GraficaColorUpdateDTO {
|
|
|
709
906
|
}
|
|
710
907
|
|
|
711
908
|
/**
|
|
712
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
909
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatTema.
|
|
713
910
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
714
911
|
*/
|
|
715
|
-
interface
|
|
912
|
+
interface CatTemaQuery extends BaseQuery {
|
|
716
913
|
}
|
|
717
914
|
/**
|
|
718
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
915
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatTema.
|
|
719
916
|
*/
|
|
720
|
-
interface
|
|
917
|
+
interface CatTemaParams extends APIClientParams {
|
|
721
918
|
}
|
|
722
|
-
declare class
|
|
723
|
-
constructor(params?:
|
|
919
|
+
declare class CatTemaAPI extends APICRUDClientBase<CatTemaDTO, CatTemaCreateDTO, CatTemaUpdateDTO, CatTemaQuery, CatTemaDTO> {
|
|
920
|
+
constructor(params?: CatTemaParams);
|
|
724
921
|
}
|
|
725
922
|
|
|
726
|
-
interface
|
|
923
|
+
interface CatTipoParametroDTO {
|
|
727
924
|
/** @maxLength (4) @identity @primaryKey */
|
|
728
|
-
|
|
729
|
-
/**
|
|
730
|
-
|
|
731
|
-
/**
|
|
732
|
-
|
|
733
|
-
/** @foreignKey (cat_color_grupo.color_grupo_id) @maxLength (4) */
|
|
734
|
-
color_grupo_id: number;
|
|
735
|
-
/** @maxLength (8) @nullable */
|
|
736
|
-
fecha_creacion?: string;
|
|
737
|
-
/** @maxLength (8) @nullable */
|
|
738
|
-
fecha_actualizacion?: string;
|
|
925
|
+
cat_tipo_parametro_id: number;
|
|
926
|
+
/** @maxLength (100) */
|
|
927
|
+
nombre: string;
|
|
928
|
+
/** @maxLength (255) @nullable */
|
|
929
|
+
descripcion?: string;
|
|
739
930
|
}
|
|
740
|
-
interface
|
|
741
|
-
/**
|
|
742
|
-
|
|
743
|
-
/**
|
|
744
|
-
|
|
745
|
-
/** @foreignKey (cat_color_grupo.color_grupo_id) @maxLength (4) */
|
|
746
|
-
color_grupo_id: number;
|
|
747
|
-
/** @maxLength (8) @nullable */
|
|
748
|
-
fecha_creacion?: string;
|
|
749
|
-
/** @maxLength (8) @nullable */
|
|
750
|
-
fecha_actualizacion?: string;
|
|
931
|
+
interface CatTipoParametroCreateDTO {
|
|
932
|
+
/** @maxLength (100) */
|
|
933
|
+
nombre: string;
|
|
934
|
+
/** @maxLength (255) @nullable */
|
|
935
|
+
descripcion?: string;
|
|
751
936
|
}
|
|
752
|
-
interface
|
|
753
|
-
/**
|
|
754
|
-
|
|
755
|
-
/**
|
|
756
|
-
|
|
757
|
-
/** @foreignKey (cat_color_grupo.color_grupo_id) @maxLength (4) @optional */
|
|
758
|
-
color_grupo_id?: number;
|
|
759
|
-
/** @maxLength (8) @nullable @optional */
|
|
760
|
-
fecha_creacion?: string;
|
|
761
|
-
/** @maxLength (8) @nullable @optional */
|
|
762
|
-
fecha_actualizacion?: string;
|
|
937
|
+
interface CatTipoParametroUpdateDTO {
|
|
938
|
+
/** @maxLength (100) @optional */
|
|
939
|
+
nombre?: string;
|
|
940
|
+
/** @maxLength (255) @nullable @optional */
|
|
941
|
+
descripcion?: string;
|
|
763
942
|
}
|
|
764
943
|
|
|
765
944
|
/**
|
|
766
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
945
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatTipoParametro.
|
|
767
946
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
768
947
|
*/
|
|
769
|
-
interface
|
|
948
|
+
interface CatTipoParametroQuery extends BaseQuery {
|
|
770
949
|
}
|
|
771
950
|
/**
|
|
772
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
951
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatTipoParametro.
|
|
773
952
|
*/
|
|
774
|
-
interface
|
|
953
|
+
interface CatTipoParametroParams extends APIClientParams {
|
|
775
954
|
}
|
|
776
|
-
declare class
|
|
777
|
-
constructor(params?:
|
|
955
|
+
declare class CatTipoParametroAPI extends APICRUDClientBase<CatTipoParametroDTO, CatTipoParametroCreateDTO, CatTipoParametroUpdateDTO, CatTipoParametroQuery, CatTipoParametroDTO> {
|
|
956
|
+
constructor(params?: CatTipoParametroParams);
|
|
778
957
|
}
|
|
779
958
|
|
|
780
|
-
interface
|
|
959
|
+
interface CatTipoServicioDTO {
|
|
781
960
|
/** @maxLength (4) @identity @primaryKey */
|
|
782
|
-
|
|
783
|
-
/**
|
|
784
|
-
|
|
785
|
-
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) */
|
|
786
|
-
grafica_color_id: number;
|
|
787
|
-
/** @maxLength (8) @nullable */
|
|
788
|
-
fecha_creacion?: string;
|
|
789
|
-
/** @maxLength (8) @nullable */
|
|
790
|
-
fecha_actualizacion?: string;
|
|
961
|
+
tipo_servicio_id: number;
|
|
962
|
+
/** @maxLength (100) */
|
|
963
|
+
tipo_servicio: string;
|
|
791
964
|
}
|
|
792
|
-
interface
|
|
793
|
-
/**
|
|
794
|
-
|
|
795
|
-
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) */
|
|
796
|
-
grafica_color_id: number;
|
|
797
|
-
/** @maxLength (8) @nullable */
|
|
798
|
-
fecha_creacion?: string;
|
|
799
|
-
/** @maxLength (8) @nullable */
|
|
800
|
-
fecha_actualizacion?: string;
|
|
965
|
+
interface CatTipoServicioCreateDTO {
|
|
966
|
+
/** @maxLength (100) */
|
|
967
|
+
tipo_servicio: string;
|
|
801
968
|
}
|
|
802
|
-
interface
|
|
803
|
-
/**
|
|
804
|
-
|
|
805
|
-
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) @optional */
|
|
806
|
-
grafica_color_id?: number;
|
|
807
|
-
/** @maxLength (8) @nullable @optional */
|
|
808
|
-
fecha_creacion?: string;
|
|
809
|
-
/** @maxLength (8) @nullable @optional */
|
|
810
|
-
fecha_actualizacion?: string;
|
|
969
|
+
interface CatTipoServicioUpdateDTO {
|
|
970
|
+
/** @maxLength (100) @optional */
|
|
971
|
+
tipo_servicio?: string;
|
|
811
972
|
}
|
|
812
973
|
|
|
813
974
|
/**
|
|
814
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
975
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatTipoServicio.
|
|
815
976
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
816
977
|
*/
|
|
817
|
-
interface
|
|
978
|
+
interface CatTipoServicioQuery extends BaseQuery {
|
|
818
979
|
}
|
|
819
980
|
/**
|
|
820
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
981
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatTipoServicio.
|
|
821
982
|
*/
|
|
822
|
-
interface
|
|
983
|
+
interface CatTipoServicioParams extends APIClientParams {
|
|
823
984
|
}
|
|
824
|
-
declare class
|
|
825
|
-
constructor(params?:
|
|
985
|
+
declare class CatTipoServicioAPI extends APICRUDClientBase<CatTipoServicioDTO, CatTipoServicioCreateDTO, CatTipoServicioUpdateDTO, CatTipoServicioQuery, CatTipoServicioDTO> {
|
|
986
|
+
constructor(params?: CatTipoServicioParams);
|
|
826
987
|
}
|
|
827
988
|
|
|
828
|
-
interface
|
|
989
|
+
interface CatTipoSueloDTO {
|
|
829
990
|
/** @maxLength (4) @identity @primaryKey */
|
|
830
|
-
|
|
831
|
-
/**
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
/**
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
991
|
+
tipo_suelo_id: number;
|
|
992
|
+
/** @maxLength (100) */
|
|
993
|
+
tipo_suelo: string;
|
|
994
|
+
}
|
|
995
|
+
interface CatTipoSueloCreateDTO {
|
|
996
|
+
/** @maxLength (100) */
|
|
997
|
+
tipo_suelo: string;
|
|
998
|
+
}
|
|
999
|
+
interface CatTipoSueloUpdateDTO {
|
|
1000
|
+
/** @maxLength (100) @optional */
|
|
1001
|
+
tipo_suelo?: string;
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
/**
|
|
1005
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatTipoSuelo.
|
|
1006
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1007
|
+
*/
|
|
1008
|
+
interface CatTipoSueloQuery extends BaseQuery {
|
|
1009
|
+
}
|
|
1010
|
+
/**
|
|
1011
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatTipoSuelo.
|
|
1012
|
+
*/
|
|
1013
|
+
interface CatTipoSueloParams extends APIClientParams {
|
|
1014
|
+
}
|
|
1015
|
+
declare class CatTipoSueloAPI extends APICRUDClientBase<CatTipoSueloDTO, CatTipoSueloCreateDTO, CatTipoSueloUpdateDTO, CatTipoSueloQuery, CatTipoSueloDTO> {
|
|
1016
|
+
constructor(params?: CatTipoSueloParams);
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
interface CatTipoTarifaDTO {
|
|
1020
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1021
|
+
tipo_tarifa_id: number;
|
|
1022
|
+
/** @maxLength (100) */
|
|
1023
|
+
tipo_tarifa: string;
|
|
1024
|
+
}
|
|
1025
|
+
interface CatTipoTarifaCreateDTO {
|
|
1026
|
+
/** @maxLength (100) */
|
|
1027
|
+
tipo_tarifa: string;
|
|
1028
|
+
}
|
|
1029
|
+
interface CatTipoTarifaUpdateDTO {
|
|
1030
|
+
/** @maxLength (100) @optional */
|
|
1031
|
+
tipo_tarifa?: string;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
/**
|
|
1035
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatTipoTarifa.
|
|
1036
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1037
|
+
*/
|
|
1038
|
+
interface CatTipoTarifaQuery extends BaseQuery {
|
|
1039
|
+
}
|
|
1040
|
+
/**
|
|
1041
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatTipoTarifa.
|
|
1042
|
+
*/
|
|
1043
|
+
interface CatTipoTarifaParams extends APIClientParams {
|
|
1044
|
+
}
|
|
1045
|
+
declare class CatTipoTarifaAPI extends APICRUDClientBase<CatTipoTarifaDTO, CatTipoTarifaCreateDTO, CatTipoTarifaUpdateDTO, CatTipoTarifaQuery, CatTipoTarifaDTO> {
|
|
1046
|
+
constructor(params?: CatTipoTarifaParams);
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
interface ContribuyenteDTO {
|
|
1050
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1051
|
+
contribuyente_id: number;
|
|
1052
|
+
/** @maxLength (50) */
|
|
1053
|
+
cuenta_id: string;
|
|
1054
|
+
/** @maxLength (150) */
|
|
1055
|
+
propietario: string;
|
|
1056
|
+
/** @foreignKey (cat_tipo_suelo.tipo_suelo_id) @maxLength (4) */
|
|
1057
|
+
tipo_suelo_id: number;
|
|
1058
|
+
/** @foreignKey (cat_tipo_tarifa.tipo_tarifa_id) @maxLength (4) */
|
|
1059
|
+
tipo_tarifa_id: number;
|
|
1060
|
+
/** @foreignKey (cat_tipo_servicio.tipo_servicio_id) @maxLength (4) */
|
|
1061
|
+
tipo_servicio_id: number;
|
|
1062
|
+
/** @foreignKey (cat_plaza.plaza_id) @maxLength (4) */
|
|
1063
|
+
plaza_id: number;
|
|
1064
|
+
}
|
|
1065
|
+
interface ContribuyenteCreateDTO {
|
|
1066
|
+
/** @maxLength (50) */
|
|
1067
|
+
cuenta_id: string;
|
|
1068
|
+
/** @maxLength (150) */
|
|
1069
|
+
propietario: string;
|
|
1070
|
+
/** @foreignKey (cat_tipo_suelo.tipo_suelo_id) @maxLength (4) */
|
|
1071
|
+
tipo_suelo_id: number;
|
|
1072
|
+
/** @foreignKey (cat_tipo_tarifa.tipo_tarifa_id) @maxLength (4) */
|
|
1073
|
+
tipo_tarifa_id: number;
|
|
1074
|
+
/** @foreignKey (cat_tipo_servicio.tipo_servicio_id) @maxLength (4) */
|
|
1075
|
+
tipo_servicio_id: number;
|
|
1076
|
+
/** @foreignKey (cat_plaza.plaza_id) @maxLength (4) */
|
|
1077
|
+
plaza_id: number;
|
|
1078
|
+
}
|
|
1079
|
+
interface ContribuyenteUpdateDTO {
|
|
1080
|
+
/** @maxLength (50) @optional */
|
|
1081
|
+
cuenta_id?: string;
|
|
1082
|
+
/** @maxLength (150) @optional */
|
|
1083
|
+
propietario?: string;
|
|
1084
|
+
/** @foreignKey (cat_tipo_suelo.tipo_suelo_id) @maxLength (4) @optional */
|
|
1085
|
+
tipo_suelo_id?: number;
|
|
1086
|
+
/** @foreignKey (cat_tipo_tarifa.tipo_tarifa_id) @maxLength (4) @optional */
|
|
1087
|
+
tipo_tarifa_id?: number;
|
|
1088
|
+
/** @foreignKey (cat_tipo_servicio.tipo_servicio_id) @maxLength (4) @optional */
|
|
1089
|
+
tipo_servicio_id?: number;
|
|
1090
|
+
/** @foreignKey (cat_plaza.plaza_id) @maxLength (4) @optional */
|
|
1091
|
+
plaza_id?: number;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
/**
|
|
1095
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Contribuyente.
|
|
1096
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1097
|
+
*/
|
|
1098
|
+
interface ContribuyenteQuery extends BaseQuery {
|
|
1099
|
+
}
|
|
1100
|
+
/**
|
|
1101
|
+
* @description Parámetros explicitos para la configuración del cliente API de Contribuyente.
|
|
1102
|
+
*/
|
|
1103
|
+
interface ContribuyenteParams extends APIClientParams {
|
|
1104
|
+
}
|
|
1105
|
+
declare class ContribuyenteAPI extends APICRUDClientBase<ContribuyenteDTO, ContribuyenteCreateDTO, ContribuyenteUpdateDTO, ContribuyenteQuery, ContribuyenteDTO> {
|
|
1106
|
+
constructor(params?: ContribuyenteParams);
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
interface ContribuyenteDomicilioDTO {
|
|
1110
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1111
|
+
contribuyente_domicilio_id: number;
|
|
1112
|
+
/** @foreignKey (contribuyente.contribuyente_id) @maxLength (4) */
|
|
1113
|
+
contribuyente_id: number;
|
|
1114
|
+
/** @maxLength (50) */
|
|
1115
|
+
cuenta_id: string;
|
|
1116
|
+
/** @maxLength (150) */
|
|
1117
|
+
calle: string;
|
|
1118
|
+
/** @maxLength (20) */
|
|
1119
|
+
numero: string;
|
|
1120
|
+
/** @maxLength (100) */
|
|
1121
|
+
colonia: string;
|
|
1122
|
+
/** @maxLength (9) @nullable */
|
|
1123
|
+
latitud?: number;
|
|
1124
|
+
/** @maxLength (9) @nullable */
|
|
1125
|
+
longitud?: number;
|
|
1126
|
+
}
|
|
1127
|
+
interface ContribuyenteDomicilioCreateDTO {
|
|
1128
|
+
/** @foreignKey (contribuyente.contribuyente_id) @maxLength (4) */
|
|
1129
|
+
contribuyente_id: number;
|
|
1130
|
+
/** @maxLength (50) */
|
|
1131
|
+
cuenta_id: string;
|
|
1132
|
+
/** @maxLength (150) */
|
|
1133
|
+
calle: string;
|
|
1134
|
+
/** @maxLength (20) */
|
|
1135
|
+
numero: string;
|
|
1136
|
+
/** @maxLength (100) */
|
|
1137
|
+
colonia: string;
|
|
1138
|
+
/** @maxLength (9) @nullable */
|
|
1139
|
+
latitud?: number;
|
|
1140
|
+
/** @maxLength (9) @nullable */
|
|
1141
|
+
longitud?: number;
|
|
1142
|
+
}
|
|
1143
|
+
interface ContribuyenteDomicilioUpdateDTO {
|
|
1144
|
+
/** @foreignKey (contribuyente.contribuyente_id) @maxLength (4) @optional */
|
|
1145
|
+
contribuyente_id?: number;
|
|
1146
|
+
/** @maxLength (50) @optional */
|
|
1147
|
+
cuenta_id?: string;
|
|
1148
|
+
/** @maxLength (150) @optional */
|
|
1149
|
+
calle?: string;
|
|
1150
|
+
/** @maxLength (20) @optional */
|
|
1151
|
+
numero?: string;
|
|
1152
|
+
/** @maxLength (100) @optional */
|
|
1153
|
+
colonia?: string;
|
|
1154
|
+
/** @maxLength (9) @nullable @optional */
|
|
1155
|
+
latitud?: number;
|
|
1156
|
+
/** @maxLength (9) @nullable @optional */
|
|
1157
|
+
longitud?: number;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
/**
|
|
1161
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de ContribuyenteDomicilio.
|
|
1162
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1163
|
+
*/
|
|
1164
|
+
interface ContribuyenteDomicilioQuery extends BaseQuery {
|
|
1165
|
+
}
|
|
1166
|
+
/**
|
|
1167
|
+
* @description Parámetros explicitos para la configuración del cliente API de ContribuyenteDomicilio.
|
|
1168
|
+
*/
|
|
1169
|
+
interface ContribuyenteDomicilioParams extends APIClientParams {
|
|
1170
|
+
}
|
|
1171
|
+
declare class ContribuyenteDomicilioAPI extends APICRUDClientBase<ContribuyenteDomicilioDTO, ContribuyenteDomicilioCreateDTO, ContribuyenteDomicilioUpdateDTO, ContribuyenteDomicilioQuery, ContribuyenteDomicilioDTO> {
|
|
1172
|
+
constructor(params?: ContribuyenteDomicilioParams);
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
interface CuentasConAltosMontosResumenDTO {
|
|
1176
|
+
/** @maxLength (100) @primaryKey */
|
|
1177
|
+
rango: string;
|
|
1178
|
+
/** @maxLength (4) @nullable */
|
|
1179
|
+
cantidad_cuentas?: number;
|
|
1180
|
+
/** @maxLength (9) @nullable */
|
|
1181
|
+
total_adeudo?: number;
|
|
1182
|
+
/** @maxLength (-1) @nullable */
|
|
1183
|
+
cuentas_listado?: string;
|
|
839
1184
|
/** @maxLength (8) @nullable */
|
|
840
1185
|
fecha_actualizacion?: string;
|
|
841
|
-
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) @nullable */
|
|
842
|
-
grafica_color_id?: number;
|
|
843
1186
|
}
|
|
844
|
-
interface
|
|
845
|
-
/**
|
|
846
|
-
|
|
847
|
-
/**
|
|
848
|
-
|
|
849
|
-
/**
|
|
850
|
-
|
|
851
|
-
/** @maxLength (
|
|
852
|
-
|
|
1187
|
+
interface CuentasConAltosMontosResumenCreateDTO {
|
|
1188
|
+
/** @maxLength (100) @primaryKey */
|
|
1189
|
+
rango: string;
|
|
1190
|
+
/** @maxLength (4) @nullable */
|
|
1191
|
+
cantidad_cuentas?: number;
|
|
1192
|
+
/** @maxLength (9) @nullable */
|
|
1193
|
+
total_adeudo?: number;
|
|
1194
|
+
/** @maxLength (-1) @nullable */
|
|
1195
|
+
cuentas_listado?: string;
|
|
853
1196
|
/** @maxLength (8) @nullable */
|
|
854
1197
|
fecha_actualizacion?: string;
|
|
855
|
-
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) @nullable */
|
|
856
|
-
grafica_color_id?: number;
|
|
857
1198
|
}
|
|
858
|
-
interface
|
|
859
|
-
/**
|
|
860
|
-
|
|
861
|
-
/**
|
|
862
|
-
|
|
863
|
-
/**
|
|
864
|
-
|
|
865
|
-
/** @maxLength (
|
|
866
|
-
|
|
1199
|
+
interface CuentasConAltosMontosResumenUpdateDTO {
|
|
1200
|
+
/** @maxLength (100) @primaryKey @optional */
|
|
1201
|
+
rango?: string;
|
|
1202
|
+
/** @maxLength (4) @nullable @optional */
|
|
1203
|
+
cantidad_cuentas?: number;
|
|
1204
|
+
/** @maxLength (9) @nullable @optional */
|
|
1205
|
+
total_adeudo?: number;
|
|
1206
|
+
/** @maxLength (-1) @nullable @optional */
|
|
1207
|
+
cuentas_listado?: string;
|
|
867
1208
|
/** @maxLength (8) @nullable @optional */
|
|
868
1209
|
fecha_actualizacion?: string;
|
|
869
|
-
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) @nullable @optional */
|
|
870
|
-
grafica_color_id?: number;
|
|
871
1210
|
}
|
|
872
1211
|
|
|
873
1212
|
/**
|
|
874
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
1213
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CuentasConAltosMontosResumen.
|
|
875
1214
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
876
1215
|
*/
|
|
877
|
-
interface
|
|
1216
|
+
interface CuentasConAltosMontosResumenQuery extends BaseQuery {
|
|
878
1217
|
}
|
|
879
1218
|
/**
|
|
880
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
1219
|
+
* @description Parámetros explicitos para la configuración del cliente API de CuentasConAltosMontosResumen.
|
|
881
1220
|
*/
|
|
882
|
-
interface
|
|
1221
|
+
interface CuentasConAltosMontosResumenParams extends APIClientParams {
|
|
883
1222
|
}
|
|
884
|
-
declare class
|
|
885
|
-
constructor(params?:
|
|
1223
|
+
declare class CuentasConAltosMontosResumenAPI extends APICRUDClientBase<CuentasConAltosMontosResumenDTO, CuentasConAltosMontosResumenCreateDTO, CuentasConAltosMontosResumenUpdateDTO, CuentasConAltosMontosResumenQuery, CuentasConAltosMontosResumenDTO> {
|
|
1224
|
+
constructor(params?: CuentasConAltosMontosResumenParams);
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
interface DashboardEstiloDTO {
|
|
1228
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1229
|
+
dashboard_estilo_id: number;
|
|
1230
|
+
/** @maxLength (64) */
|
|
1231
|
+
height: string;
|
|
1232
|
+
/** @maxLength (64) */
|
|
1233
|
+
width: string;
|
|
1234
|
+
/** @maxLength (4) @nullable */
|
|
1235
|
+
flexGrow?: number;
|
|
1236
|
+
}
|
|
1237
|
+
interface DashboardEstiloCreateDTO {
|
|
1238
|
+
/** @maxLength (64) */
|
|
1239
|
+
height: string;
|
|
1240
|
+
/** @maxLength (64) */
|
|
1241
|
+
width: string;
|
|
1242
|
+
/** @maxLength (4) @nullable */
|
|
1243
|
+
flexGrow?: number;
|
|
1244
|
+
}
|
|
1245
|
+
interface DashboardEstiloUpdateDTO {
|
|
1246
|
+
/** @maxLength (64) @optional */
|
|
1247
|
+
height?: string;
|
|
1248
|
+
/** @maxLength (64) @optional */
|
|
1249
|
+
width?: string;
|
|
1250
|
+
/** @maxLength (4) @nullable @optional */
|
|
1251
|
+
flexGrow?: number;
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
/**
|
|
1255
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardEstilo.
|
|
1256
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1257
|
+
*/
|
|
1258
|
+
interface DashboardEstiloQuery extends BaseQuery {
|
|
1259
|
+
}
|
|
1260
|
+
/**
|
|
1261
|
+
* @description Parámetros explicitos para la configuración del cliente API de DashboardEstilo.
|
|
1262
|
+
*/
|
|
1263
|
+
interface DashboardEstiloParams extends APIClientParams {
|
|
1264
|
+
}
|
|
1265
|
+
declare class DashboardEstiloAPI extends APICRUDClientBase<DashboardEstiloDTO, DashboardEstiloCreateDTO, DashboardEstiloUpdateDTO, DashboardEstiloQuery, DashboardEstiloDTO> {
|
|
1266
|
+
constructor(params?: DashboardEstiloParams);
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
interface DashboardGraficaDTO {
|
|
1270
|
+
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) */
|
|
1271
|
+
dashboard_grafica_grupo_id: number;
|
|
1272
|
+
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) */
|
|
1273
|
+
dashboard_grafica_elemento_id: number;
|
|
1274
|
+
}
|
|
1275
|
+
interface DashboardGraficaCreateDTO {
|
|
1276
|
+
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) */
|
|
1277
|
+
dashboard_grafica_grupo_id: number;
|
|
1278
|
+
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) */
|
|
1279
|
+
dashboard_grafica_elemento_id: number;
|
|
1280
|
+
}
|
|
1281
|
+
interface DashboardGraficaUpdateDTO {
|
|
1282
|
+
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @optional */
|
|
1283
|
+
dashboard_grafica_grupo_id?: number;
|
|
1284
|
+
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) @optional */
|
|
1285
|
+
dashboard_grafica_elemento_id?: number;
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
/**
|
|
1289
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGrafica.
|
|
1290
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1291
|
+
*/
|
|
1292
|
+
interface DashboardGraficaQuery extends BaseQuery {
|
|
1293
|
+
}
|
|
1294
|
+
/**
|
|
1295
|
+
* @description Parámetros explicitos para la configuración del cliente API de DashboardGrafica.
|
|
1296
|
+
*/
|
|
1297
|
+
interface DashboardGraficaParams extends APIClientParams {
|
|
1298
|
+
}
|
|
1299
|
+
declare class DashboardGraficaAPI extends APICRUDClientBase<DashboardGraficaDTO, DashboardGraficaCreateDTO, DashboardGraficaUpdateDTO, DashboardGraficaQuery, DashboardGraficaDTO> {
|
|
1300
|
+
constructor(params?: DashboardGraficaParams);
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
interface DashboardGraficaElementoDTO {
|
|
1304
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1305
|
+
dashboard_grafica_elemento_id: number;
|
|
1306
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
1307
|
+
grafica_id: number;
|
|
1308
|
+
/** @foreignKey (dashboard_estilo.dashboard_estilo_id) @maxLength (4) */
|
|
1309
|
+
dashboard_estilo_id: number;
|
|
1310
|
+
/** @foreignKey (dashboard_grafica_elemento_detalle.dashboard_grafica_elemento_detalle_id) @maxLength (4) */
|
|
1311
|
+
dashboard_grafica_elemento_detalle_id: number;
|
|
1312
|
+
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) @nullable */
|
|
1313
|
+
tipo_grafica_id?: number;
|
|
1314
|
+
}
|
|
1315
|
+
interface DashboardGraficaElementoCreateDTO {
|
|
1316
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
1317
|
+
grafica_id: number;
|
|
1318
|
+
/** @foreignKey (dashboard_estilo.dashboard_estilo_id) @maxLength (4) */
|
|
1319
|
+
dashboard_estilo_id: number;
|
|
1320
|
+
/** @foreignKey (dashboard_grafica_elemento_detalle.dashboard_grafica_elemento_detalle_id) @maxLength (4) */
|
|
1321
|
+
dashboard_grafica_elemento_detalle_id: number;
|
|
1322
|
+
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) @nullable */
|
|
1323
|
+
tipo_grafica_id?: number;
|
|
1324
|
+
}
|
|
1325
|
+
interface DashboardGraficaElementoUpdateDTO {
|
|
1326
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @optional */
|
|
1327
|
+
grafica_id?: number;
|
|
1328
|
+
/** @foreignKey (dashboard_estilo.dashboard_estilo_id) @maxLength (4) @optional */
|
|
1329
|
+
dashboard_estilo_id?: number;
|
|
1330
|
+
/** @foreignKey (dashboard_grafica_elemento_detalle.dashboard_grafica_elemento_detalle_id) @maxLength (4) @optional */
|
|
1331
|
+
dashboard_grafica_elemento_detalle_id?: number;
|
|
1332
|
+
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) @nullable @optional */
|
|
1333
|
+
tipo_grafica_id?: number;
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
interface DashboardGraficaElementoTreeDTO {
|
|
1337
|
+
items: Item[];
|
|
1338
|
+
param_references: ParamReference[];
|
|
1339
|
+
root_style_ids: number[];
|
|
1340
|
+
}
|
|
1341
|
+
interface Item {
|
|
1342
|
+
id: number;
|
|
1343
|
+
parentId: any;
|
|
1344
|
+
styles: Styles;
|
|
1345
|
+
origin: string;
|
|
1346
|
+
data: Data;
|
|
1347
|
+
}
|
|
1348
|
+
interface Styles {
|
|
1349
|
+
width: string;
|
|
1350
|
+
height: string;
|
|
1351
|
+
display: string;
|
|
1352
|
+
flexGrow: string;
|
|
1353
|
+
flexDirection: any;
|
|
1354
|
+
flexWrap: string;
|
|
1355
|
+
}
|
|
1356
|
+
interface Data {
|
|
1357
|
+
dashboard_estilo?: DashboardEstilo;
|
|
1358
|
+
dashboard_grafica_elemento?: DashboardGraficaElemento;
|
|
1359
|
+
}
|
|
1360
|
+
interface DashboardEstilo {
|
|
1361
|
+
dashboard_estilo_id: number;
|
|
1362
|
+
height: string;
|
|
1363
|
+
width: string;
|
|
1364
|
+
flexGrow: string;
|
|
1365
|
+
dashboard_estilo_id_parent: any;
|
|
1366
|
+
name: any;
|
|
1367
|
+
flexDirection: any;
|
|
1368
|
+
orden: number;
|
|
1369
|
+
}
|
|
1370
|
+
interface DashboardGraficaElemento {
|
|
1371
|
+
dashboard_grafica_elemento_id: number;
|
|
1372
|
+
grafica_id: number;
|
|
1373
|
+
dashboard_estilo_id: number;
|
|
1374
|
+
dashboard_grafica_elemento_detalle_id: number;
|
|
1375
|
+
tipo_grafica_id: number;
|
|
1376
|
+
dashboard_grafica_elemento_detalle: DashboardGraficaElementoDetalle;
|
|
1377
|
+
grafica: Grafica;
|
|
1378
|
+
dashboard_estilo: DashboardEstilo;
|
|
1379
|
+
}
|
|
1380
|
+
interface DashboardGraficaElementoDetalle {
|
|
1381
|
+
dashboard_grafica_elemento_detalle_id: number;
|
|
1382
|
+
titulo: string;
|
|
1383
|
+
orden: number;
|
|
1384
|
+
}
|
|
1385
|
+
interface Grafica {
|
|
1386
|
+
grafica_id: number;
|
|
1387
|
+
nombre: string;
|
|
1388
|
+
descripcion: string;
|
|
1389
|
+
tipo_grafica_id: number;
|
|
1390
|
+
endpoint_url: string;
|
|
1391
|
+
grafica_parametro_defectos: GraficaParametroDefecto[];
|
|
1392
|
+
}
|
|
1393
|
+
interface GraficaParametroDefecto {
|
|
1394
|
+
grafica_parametro_defecto_id: number;
|
|
1395
|
+
grafica_parametro_id: number;
|
|
1396
|
+
dashboard_grafica_elemento_parametro?: DashboardGraficaElementoParametro;
|
|
1397
|
+
}
|
|
1398
|
+
interface DashboardGraficaElementoParametro {
|
|
1399
|
+
dashboard_grafica_elemento_parametro_id: number;
|
|
1400
|
+
valor: string;
|
|
1401
|
+
}
|
|
1402
|
+
interface ParamReference {
|
|
1403
|
+
grafica_parametro_id: number;
|
|
1404
|
+
nombre: string;
|
|
1405
|
+
descripcion?: string;
|
|
1406
|
+
requerido: boolean;
|
|
1407
|
+
valor_defecto: any;
|
|
1408
|
+
etiqueta: string;
|
|
1409
|
+
grafica_parametro_tipos: GraficaParametroTipo[];
|
|
1410
|
+
}
|
|
1411
|
+
interface GraficaParametroTipo {
|
|
1412
|
+
cat_tipo_parametro_id: number;
|
|
1413
|
+
cat_tipo_parametro: CatTipoParametro;
|
|
1414
|
+
}
|
|
1415
|
+
interface CatTipoParametro {
|
|
1416
|
+
nombre: string;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
/**
|
|
1420
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGraficaElemento.
|
|
1421
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1422
|
+
*/
|
|
1423
|
+
interface DashboardGraficaElementoQuery extends BaseQuery {
|
|
1424
|
+
}
|
|
1425
|
+
/**
|
|
1426
|
+
* @description Parámetros explicitos para la configuración del cliente API de DashboardGraficaElemento.
|
|
1427
|
+
*/
|
|
1428
|
+
interface DashboardGraficaElementoParams extends APIClientParams {
|
|
1429
|
+
}
|
|
1430
|
+
interface DashboardGraficaElementoTreeParams {
|
|
1431
|
+
rol_id?: number;
|
|
1432
|
+
orderBy?: string;
|
|
1433
|
+
page: number;
|
|
1434
|
+
limit: number;
|
|
1435
|
+
}
|
|
1436
|
+
declare class DashboardGraficaElementoAPI extends APICRUDClientBase<DashboardGraficaElementoDTO, DashboardGraficaElementoCreateDTO, DashboardGraficaElementoUpdateDTO, DashboardGraficaElementoQuery, DashboardGraficaElementoDTO> {
|
|
1437
|
+
constructor(params?: DashboardGraficaElementoParams);
|
|
1438
|
+
/**
|
|
1439
|
+
* @description Obtiene la estructura en árbol de los elementos del dashboard gráfico, posiblemente filtrada por rol.
|
|
1440
|
+
*/
|
|
1441
|
+
tree: (params: DashboardGraficaElementoTreeParams) => Promise<DashboardGraficaElementoTreeDTO>;
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
interface DashboardGraficaElementoDetalleDTO {
|
|
1445
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1446
|
+
dashboard_grafica_elemento_detalle_id: number;
|
|
1447
|
+
/** @maxLength (255) @nullable */
|
|
1448
|
+
titulo?: string;
|
|
1449
|
+
/** @maxLength (4) @nullable */
|
|
1450
|
+
orden?: number;
|
|
1451
|
+
}
|
|
1452
|
+
interface DashboardGraficaElementoDetalleCreateDTO {
|
|
1453
|
+
/** @maxLength (255) @nullable */
|
|
1454
|
+
titulo?: string;
|
|
1455
|
+
/** @maxLength (4) @nullable */
|
|
1456
|
+
orden?: number;
|
|
1457
|
+
}
|
|
1458
|
+
interface DashboardGraficaElementoDetalleUpdateDTO {
|
|
1459
|
+
/** @maxLength (255) @nullable @optional */
|
|
1460
|
+
titulo?: string;
|
|
1461
|
+
/** @maxLength (4) @nullable @optional */
|
|
1462
|
+
orden?: number;
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
/**
|
|
1466
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGraficaElementoDetalle.
|
|
1467
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1468
|
+
*/
|
|
1469
|
+
interface DashboardGraficaElementoDetalleQuery extends BaseQuery {
|
|
1470
|
+
}
|
|
1471
|
+
/**
|
|
1472
|
+
* @description Parámetros explicitos para la configuración del cliente API de DashboardGraficaElementoDetalle.
|
|
1473
|
+
*/
|
|
1474
|
+
interface DashboardGraficaElementoDetalleParams extends APIClientParams {
|
|
1475
|
+
}
|
|
1476
|
+
declare class DashboardGraficaElementoDetalleAPI extends APICRUDClientBase<DashboardGraficaElementoDetalleDTO, DashboardGraficaElementoDetalleCreateDTO, DashboardGraficaElementoDetalleUpdateDTO, DashboardGraficaElementoDetalleQuery, DashboardGraficaElementoDetalleDTO> {
|
|
1477
|
+
constructor(params?: DashboardGraficaElementoDetalleParams);
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
interface DashboardGraficaElementoEstiloDTO {
|
|
1481
|
+
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) */
|
|
1482
|
+
dashboard_grafica_elemento_id: number;
|
|
1483
|
+
/** @foreignKey (dashboard_estilo.dashboard_estilo_id) @maxLength (4) */
|
|
1484
|
+
dashboard_estilo_id: number;
|
|
1485
|
+
}
|
|
1486
|
+
interface DashboardGraficaElementoEstiloCreateDTO {
|
|
1487
|
+
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) */
|
|
1488
|
+
dashboard_grafica_elemento_id: number;
|
|
1489
|
+
/** @foreignKey (dashboard_estilo.dashboard_estilo_id) @maxLength (4) */
|
|
1490
|
+
dashboard_estilo_id: number;
|
|
1491
|
+
}
|
|
1492
|
+
interface DashboardGraficaElementoEstiloUpdateDTO {
|
|
1493
|
+
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) @optional */
|
|
1494
|
+
dashboard_grafica_elemento_id?: number;
|
|
1495
|
+
/** @foreignKey (dashboard_estilo.dashboard_estilo_id) @maxLength (4) @optional */
|
|
1496
|
+
dashboard_estilo_id?: number;
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
/**
|
|
1500
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGraficaElementoEstilo.
|
|
1501
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1502
|
+
*/
|
|
1503
|
+
interface DashboardGraficaElementoEstiloQuery extends BaseQuery {
|
|
1504
|
+
}
|
|
1505
|
+
/**
|
|
1506
|
+
* @description Parámetros explicitos para la configuración del cliente API de DashboardGraficaElementoEstilo.
|
|
1507
|
+
*/
|
|
1508
|
+
interface DashboardGraficaElementoEstiloParams extends APIClientParams {
|
|
1509
|
+
}
|
|
1510
|
+
declare class DashboardGraficaElementoEstiloAPI extends APICRUDClientBase<DashboardGraficaElementoEstiloDTO, DashboardGraficaElementoEstiloCreateDTO, DashboardGraficaElementoEstiloUpdateDTO, DashboardGraficaElementoEstiloQuery, DashboardGraficaElementoEstiloDTO> {
|
|
1511
|
+
constructor(params?: DashboardGraficaElementoEstiloParams);
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
interface DashboardGraficaElementoParametroDTO {
|
|
1515
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1516
|
+
dashboard_grafica_elemento_parametro_id: number;
|
|
1517
|
+
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) */
|
|
1518
|
+
dashboard_grafica_elemento_id: number;
|
|
1519
|
+
/** @foreignKey (grafica_parametro_defecto.grafica_parametro_defecto_id) @maxLength (4) */
|
|
1520
|
+
grafica_parametro_defecto_id: number;
|
|
1521
|
+
/** @maxLength (255) @nullable */
|
|
1522
|
+
valor?: string;
|
|
1523
|
+
}
|
|
1524
|
+
interface DashboardGraficaElementoParametroCreateDTO {
|
|
1525
|
+
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) */
|
|
1526
|
+
dashboard_grafica_elemento_id: number;
|
|
1527
|
+
/** @foreignKey (grafica_parametro_defecto.grafica_parametro_defecto_id) @maxLength (4) */
|
|
1528
|
+
grafica_parametro_defecto_id: number;
|
|
1529
|
+
/** @maxLength (255) @nullable */
|
|
1530
|
+
valor?: string;
|
|
1531
|
+
}
|
|
1532
|
+
interface DashboardGraficaElementoParametroUpdateDTO {
|
|
1533
|
+
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) @optional */
|
|
1534
|
+
dashboard_grafica_elemento_id?: number;
|
|
1535
|
+
/** @foreignKey (grafica_parametro_defecto.grafica_parametro_defecto_id) @maxLength (4) @optional */
|
|
1536
|
+
grafica_parametro_defecto_id?: number;
|
|
1537
|
+
/** @maxLength (255) @nullable @optional */
|
|
1538
|
+
valor?: string;
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
/**
|
|
1542
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGraficaElementoParametro.
|
|
1543
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1544
|
+
*/
|
|
1545
|
+
interface DashboardGraficaElementoParametroQuery extends BaseQuery {
|
|
1546
|
+
}
|
|
1547
|
+
/**
|
|
1548
|
+
* @description Parámetros explicitos para la configuración del cliente API de DashboardGraficaElementoParametro.
|
|
1549
|
+
*/
|
|
1550
|
+
interface DashboardGraficaElementoParametroParams extends APIClientParams {
|
|
1551
|
+
}
|
|
1552
|
+
declare class DashboardGraficaElementoParametroAPI extends APICRUDClientBase<DashboardGraficaElementoParametroDTO, DashboardGraficaElementoParametroCreateDTO, DashboardGraficaElementoParametroUpdateDTO, DashboardGraficaElementoParametroQuery, DashboardGraficaElementoParametroDTO> {
|
|
1553
|
+
constructor(params?: DashboardGraficaElementoParametroParams);
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
interface DashboardGraficaGrupoDTO {
|
|
1557
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1558
|
+
dashboard_grafica_grupo_id: number;
|
|
1559
|
+
/** @maxLength (100) @nullable */
|
|
1560
|
+
titulo?: string;
|
|
1561
|
+
}
|
|
1562
|
+
interface DashboardGraficaGrupoCreateDTO {
|
|
1563
|
+
/** @maxLength (100) @nullable */
|
|
1564
|
+
titulo?: string;
|
|
1565
|
+
}
|
|
1566
|
+
interface DashboardGraficaGrupoUpdateDTO {
|
|
1567
|
+
/** @maxLength (100) @nullable @optional */
|
|
1568
|
+
titulo?: string;
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1571
|
+
/**
|
|
1572
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGraficaGrupo.
|
|
1573
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1574
|
+
*/
|
|
1575
|
+
interface DashboardGraficaGrupoQuery extends BaseQuery {
|
|
1576
|
+
}
|
|
1577
|
+
/**
|
|
1578
|
+
* @description Parámetros explicitos para la configuración del cliente API de DashboardGraficaGrupo.
|
|
1579
|
+
*/
|
|
1580
|
+
interface DashboardGraficaGrupoParams extends APIClientParams {
|
|
1581
|
+
}
|
|
1582
|
+
declare class DashboardGraficaGrupoAPI extends APICRUDClientBase<DashboardGraficaGrupoDTO, DashboardGraficaGrupoCreateDTO, DashboardGraficaGrupoUpdateDTO, DashboardGraficaGrupoQuery, DashboardGraficaGrupoDTO> {
|
|
1583
|
+
constructor(params?: DashboardGraficaGrupoParams);
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
interface DashboardGraficaGrupoEstiloDTO {
|
|
1587
|
+
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey */
|
|
1588
|
+
dashboard_grafica_grupo_id: number;
|
|
1589
|
+
/** @foreignKey (dashboard_estilo.dashboard_estilo_id) @maxLength (4) @primaryKey */
|
|
1590
|
+
dashboard_estilo_id: number;
|
|
1591
|
+
}
|
|
1592
|
+
interface DashboardGraficaGrupoEstiloCreateDTO {
|
|
1593
|
+
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey */
|
|
1594
|
+
dashboard_grafica_grupo_id: number;
|
|
1595
|
+
/** @foreignKey (dashboard_estilo.dashboard_estilo_id) @maxLength (4) @primaryKey */
|
|
1596
|
+
dashboard_estilo_id: number;
|
|
1597
|
+
}
|
|
1598
|
+
interface DashboardGraficaGrupoEstiloUpdateDTO {
|
|
1599
|
+
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey @optional */
|
|
1600
|
+
dashboard_grafica_grupo_id?: number;
|
|
1601
|
+
/** @foreignKey (dashboard_estilo.dashboard_estilo_id) @maxLength (4) @primaryKey @optional */
|
|
1602
|
+
dashboard_estilo_id?: number;
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
/**
|
|
1606
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGraficaGrupoEstilo.
|
|
1607
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1608
|
+
*/
|
|
1609
|
+
interface DashboardGraficaGrupoEstiloQuery extends BaseQuery {
|
|
1610
|
+
}
|
|
1611
|
+
/**
|
|
1612
|
+
* @description Parámetros explicitos para la configuración del cliente API de DashboardGraficaGrupoEstilo.
|
|
1613
|
+
*/
|
|
1614
|
+
interface DashboardGraficaGrupoEstiloParams extends APIClientParams {
|
|
1615
|
+
}
|
|
1616
|
+
declare class DashboardGraficaGrupoEstiloAPI extends APICRUDClientBase<DashboardGraficaGrupoEstiloDTO, DashboardGraficaGrupoEstiloCreateDTO, DashboardGraficaGrupoEstiloUpdateDTO, DashboardGraficaGrupoEstiloQuery, DashboardGraficaGrupoEstiloDTO> {
|
|
1617
|
+
constructor(params?: DashboardGraficaGrupoEstiloParams);
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
interface DashboardGraficaGrupoRolDTO {
|
|
1621
|
+
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey */
|
|
1622
|
+
dashboard_grafica_grupo_id: number;
|
|
1623
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @nullable */
|
|
1624
|
+
rol_id?: number;
|
|
1625
|
+
}
|
|
1626
|
+
interface DashboardGraficaGrupoRolCreateDTO {
|
|
1627
|
+
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey */
|
|
1628
|
+
dashboard_grafica_grupo_id: number;
|
|
1629
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @nullable */
|
|
1630
|
+
rol_id?: number;
|
|
1631
|
+
}
|
|
1632
|
+
interface DashboardGraficaGrupoRolUpdateDTO {
|
|
1633
|
+
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey @optional */
|
|
1634
|
+
dashboard_grafica_grupo_id?: number;
|
|
1635
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @nullable @optional */
|
|
1636
|
+
rol_id?: number;
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
/**
|
|
1640
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGraficaGrupoRol.
|
|
1641
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1642
|
+
*/
|
|
1643
|
+
interface DashboardGraficaGrupoRolQuery extends BaseQuery {
|
|
1644
|
+
}
|
|
1645
|
+
/**
|
|
1646
|
+
* @description Parámetros explicitos para la configuración del cliente API de DashboardGraficaGrupoRol.
|
|
1647
|
+
*/
|
|
1648
|
+
interface DashboardGraficaGrupoRolParams extends APIClientParams {
|
|
1649
|
+
}
|
|
1650
|
+
declare class DashboardGraficaGrupoRolAPI extends APICRUDClientBase<DashboardGraficaGrupoRolDTO, DashboardGraficaGrupoRolCreateDTO, DashboardGraficaGrupoRolUpdateDTO, DashboardGraficaGrupoRolQuery, DashboardGraficaGrupoRolDTO> {
|
|
1651
|
+
constructor(params?: DashboardGraficaGrupoRolParams);
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
interface GetRequestParams {
|
|
1655
|
+
id?: string | number;
|
|
1656
|
+
params?: object;
|
|
1657
|
+
config?: AxiosRequestConfig;
|
|
1658
|
+
where?: object;
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
interface DashboardRutaDTO {
|
|
1662
|
+
/** @maxLength (4) @primaryKey */
|
|
1663
|
+
dashboard_ruta_id: number;
|
|
1664
|
+
/** @maxLength (510) */
|
|
1665
|
+
ruta: string;
|
|
1666
|
+
/** @maxLength (200) */
|
|
1667
|
+
nombre: string;
|
|
1668
|
+
/** @maxLength (200) @nullable */
|
|
1669
|
+
icono?: string;
|
|
1670
|
+
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) @nullable */
|
|
1671
|
+
dashboard_ruta_padre_id?: number;
|
|
1672
|
+
/** @maxLength (4) */
|
|
1673
|
+
nivel: number;
|
|
1674
|
+
/** @maxLength (1) */
|
|
1675
|
+
habilitado: boolean;
|
|
1676
|
+
/** @maxLength (4) @nullable */
|
|
1677
|
+
orden?: number;
|
|
1678
|
+
}
|
|
1679
|
+
interface DashboardRutaCreateDTO {
|
|
1680
|
+
/** @maxLength (4) @primaryKey */
|
|
1681
|
+
dashboard_ruta_id: number;
|
|
1682
|
+
/** @maxLength (510) */
|
|
1683
|
+
ruta: string;
|
|
1684
|
+
/** @maxLength (200) */
|
|
1685
|
+
nombre: string;
|
|
1686
|
+
/** @maxLength (200) @nullable */
|
|
1687
|
+
icono?: string;
|
|
1688
|
+
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) @nullable */
|
|
1689
|
+
dashboard_ruta_padre_id?: number;
|
|
1690
|
+
/** @maxLength (4) */
|
|
1691
|
+
nivel: number;
|
|
1692
|
+
/** @maxLength (1) */
|
|
1693
|
+
habilitado: boolean;
|
|
1694
|
+
/** @maxLength (4) @nullable */
|
|
1695
|
+
orden?: number;
|
|
1696
|
+
}
|
|
1697
|
+
interface DashboardRutaUpdateDTO {
|
|
1698
|
+
/** @maxLength (4) @primaryKey @optional */
|
|
1699
|
+
dashboard_ruta_id?: number;
|
|
1700
|
+
/** @maxLength (510) @optional */
|
|
1701
|
+
ruta?: string;
|
|
1702
|
+
/** @maxLength (200) @optional */
|
|
1703
|
+
nombre?: string;
|
|
1704
|
+
/** @maxLength (200) @nullable @optional */
|
|
1705
|
+
icono?: string;
|
|
1706
|
+
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) @nullable @optional */
|
|
1707
|
+
dashboard_ruta_padre_id?: number;
|
|
1708
|
+
/** @maxLength (4) @optional */
|
|
1709
|
+
nivel?: number;
|
|
1710
|
+
/** @maxLength (1) @optional */
|
|
1711
|
+
habilitado?: boolean;
|
|
1712
|
+
/** @maxLength (4) @nullable @optional */
|
|
1713
|
+
orden?: number;
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1716
|
+
/**
|
|
1717
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardRuta.
|
|
1718
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1719
|
+
*/
|
|
1720
|
+
interface DashboardRutaQuery extends BaseQuery {
|
|
1721
|
+
}
|
|
1722
|
+
/**
|
|
1723
|
+
* @description Parámetros explicitos para la configuración del cliente API de DashboardRuta.
|
|
1724
|
+
*/
|
|
1725
|
+
interface DashboardRutaParams extends APIClientParams {
|
|
1726
|
+
}
|
|
1727
|
+
declare class DashboardRutaAPI extends APICRUDClientBase<DashboardRutaDTO, DashboardRutaCreateDTO, DashboardRutaUpdateDTO, DashboardRutaQuery, DashboardRutaDTO> {
|
|
1728
|
+
constructor(params?: DashboardRutaParams);
|
|
1729
|
+
/**
|
|
1730
|
+
* @description Subpath para operaciones relacionadas con 'usuario'.
|
|
1731
|
+
* - Exclusivamente GET en esta implementación.
|
|
1732
|
+
*/
|
|
1733
|
+
get usuario(): {
|
|
1734
|
+
getById({ id, params }: GetByIdParams$1<DashboardRutaQuery>): Promise<DashboardRutaDTO | null>;
|
|
1735
|
+
getAll({ params }: QueryParams<DashboardRutaQuery>): Promise<PaginatedResponse<DashboardRutaDTO> | null>;
|
|
1736
|
+
get({ id, params, config, where }: GetRequestParams): Promise<axios.AxiosResponse<any, any, {}>>;
|
|
1737
|
+
query({ params }: QueryParams<DashboardRutaQuery>): Promise<PaginatedResponse<DashboardRutaDTO> | null>;
|
|
1738
|
+
endpoint: string;
|
|
1739
|
+
client: AxiosInstance;
|
|
1740
|
+
getAxiosConfig(params?: object): axios.AxiosRequestConfig;
|
|
1741
|
+
};
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1744
|
+
interface GraficaDTO {
|
|
1745
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1746
|
+
grafica_id: number;
|
|
1747
|
+
/** @maxLength (200) */
|
|
1748
|
+
nombre: string;
|
|
1749
|
+
/** @maxLength (510) @nullable */
|
|
1750
|
+
descripcion?: string;
|
|
1751
|
+
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) */
|
|
1752
|
+
tipo_grafica_id: number;
|
|
1753
|
+
/** @maxLength (1000) */
|
|
1754
|
+
endpoint_url: string;
|
|
1755
|
+
}
|
|
1756
|
+
interface GraficaCreateDTO {
|
|
1757
|
+
/** @maxLength (200) */
|
|
1758
|
+
nombre: string;
|
|
1759
|
+
/** @maxLength (510) @nullable */
|
|
1760
|
+
descripcion?: string;
|
|
1761
|
+
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) */
|
|
1762
|
+
tipo_grafica_id: number;
|
|
1763
|
+
/** @maxLength (1000) */
|
|
1764
|
+
endpoint_url: string;
|
|
1765
|
+
}
|
|
1766
|
+
interface GraficaUpdateDTO {
|
|
1767
|
+
/** @maxLength (200) @optional */
|
|
1768
|
+
nombre?: string;
|
|
1769
|
+
/** @maxLength (510) @nullable @optional */
|
|
1770
|
+
descripcion?: string;
|
|
1771
|
+
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) @optional */
|
|
1772
|
+
tipo_grafica_id?: number;
|
|
1773
|
+
/** @maxLength (1000) @optional */
|
|
1774
|
+
endpoint_url?: string;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
/**
|
|
1778
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Grafica.
|
|
1779
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1780
|
+
*/
|
|
1781
|
+
interface GraficaQuery extends BaseQuery {
|
|
1782
|
+
}
|
|
1783
|
+
/**
|
|
1784
|
+
* @description Parámetros explicitos para la configuración del cliente API de Grafica.
|
|
1785
|
+
*/
|
|
1786
|
+
interface GraficaParams extends APIClientParams {
|
|
1787
|
+
}
|
|
1788
|
+
declare class GraficaAPI extends APICRUDClientBase<GraficaDTO, GraficaCreateDTO, GraficaUpdateDTO, GraficaQuery, GraficaDTO> {
|
|
1789
|
+
constructor(params?: GraficaParams);
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
interface GraficaAgrupacionDTO {
|
|
1793
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1794
|
+
agrupacion_id: number;
|
|
1795
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
1796
|
+
grafica_id: number;
|
|
1797
|
+
/** @maxLength (200) */
|
|
1798
|
+
campo: string;
|
|
1799
|
+
/** @maxLength (200) @nullable */
|
|
1800
|
+
etiqueta?: string;
|
|
1801
|
+
/** @maxLength (4) @nullable */
|
|
1802
|
+
orden?: number;
|
|
1803
|
+
}
|
|
1804
|
+
interface GraficaAgrupacionCreateDTO {
|
|
1805
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
1806
|
+
grafica_id: number;
|
|
1807
|
+
/** @maxLength (200) */
|
|
1808
|
+
campo: string;
|
|
1809
|
+
/** @maxLength (200) @nullable */
|
|
1810
|
+
etiqueta?: string;
|
|
1811
|
+
/** @maxLength (4) @nullable */
|
|
1812
|
+
orden?: number;
|
|
1813
|
+
}
|
|
1814
|
+
interface GraficaAgrupacionUpdateDTO {
|
|
1815
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @optional */
|
|
1816
|
+
grafica_id?: number;
|
|
1817
|
+
/** @maxLength (200) @optional */
|
|
1818
|
+
campo?: string;
|
|
1819
|
+
/** @maxLength (200) @nullable @optional */
|
|
1820
|
+
etiqueta?: string;
|
|
1821
|
+
/** @maxLength (4) @nullable @optional */
|
|
1822
|
+
orden?: number;
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
/**
|
|
1826
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaAgrupacion.
|
|
1827
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1828
|
+
*/
|
|
1829
|
+
interface GraficaAgrupacionQuery extends BaseQuery {
|
|
1830
|
+
}
|
|
1831
|
+
/**
|
|
1832
|
+
* @description Parámetros explicitos para la configuración del cliente API de GraficaAgrupacion.
|
|
1833
|
+
*/
|
|
1834
|
+
interface GraficaAgrupacionParams extends APIClientParams {
|
|
1835
|
+
}
|
|
1836
|
+
declare class GraficaAgrupacionAPI extends APICRUDClientBase<GraficaAgrupacionDTO, GraficaAgrupacionCreateDTO, GraficaAgrupacionUpdateDTO, GraficaAgrupacionQuery, GraficaAgrupacionDTO> {
|
|
1837
|
+
constructor(params?: GraficaAgrupacionParams);
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
interface GraficaColorDTO {
|
|
1841
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1842
|
+
grafica_color_id: number;
|
|
1843
|
+
/** @maxLength (7) @nullable */
|
|
1844
|
+
color_titulo?: string;
|
|
1845
|
+
/** @maxLength (7) @nullable */
|
|
1846
|
+
color_texto_x?: string;
|
|
1847
|
+
/** @maxLength (7) @nullable */
|
|
1848
|
+
color_texto_y?: string;
|
|
1849
|
+
/** @maxLength (7) @nullable */
|
|
1850
|
+
color_texto_fecha?: string;
|
|
1851
|
+
/** @maxLength (7) @nullable */
|
|
1852
|
+
color_texto_general?: string;
|
|
1853
|
+
/** @maxLength (8) @nullable */
|
|
1854
|
+
fecha_creacion?: string;
|
|
1855
|
+
/** @maxLength (8) @nullable */
|
|
1856
|
+
fecha_actualizacion?: string;
|
|
1857
|
+
}
|
|
1858
|
+
interface GraficaColorCreateDTO {
|
|
1859
|
+
/** @maxLength (7) @nullable */
|
|
1860
|
+
color_titulo?: string;
|
|
1861
|
+
/** @maxLength (7) @nullable */
|
|
1862
|
+
color_texto_x?: string;
|
|
1863
|
+
/** @maxLength (7) @nullable */
|
|
1864
|
+
color_texto_y?: string;
|
|
1865
|
+
/** @maxLength (7) @nullable */
|
|
1866
|
+
color_texto_fecha?: string;
|
|
1867
|
+
/** @maxLength (7) @nullable */
|
|
1868
|
+
color_texto_general?: string;
|
|
1869
|
+
/** @maxLength (8) @nullable */
|
|
1870
|
+
fecha_creacion?: string;
|
|
1871
|
+
/** @maxLength (8) @nullable */
|
|
1872
|
+
fecha_actualizacion?: string;
|
|
1873
|
+
}
|
|
1874
|
+
interface GraficaColorUpdateDTO {
|
|
1875
|
+
/** @maxLength (7) @nullable @optional */
|
|
1876
|
+
color_titulo?: string;
|
|
1877
|
+
/** @maxLength (7) @nullable @optional */
|
|
1878
|
+
color_texto_x?: string;
|
|
1879
|
+
/** @maxLength (7) @nullable @optional */
|
|
1880
|
+
color_texto_y?: string;
|
|
1881
|
+
/** @maxLength (7) @nullable @optional */
|
|
1882
|
+
color_texto_fecha?: string;
|
|
1883
|
+
/** @maxLength (7) @nullable @optional */
|
|
1884
|
+
color_texto_general?: string;
|
|
1885
|
+
/** @maxLength (8) @nullable @optional */
|
|
1886
|
+
fecha_creacion?: string;
|
|
1887
|
+
/** @maxLength (8) @nullable @optional */
|
|
1888
|
+
fecha_actualizacion?: string;
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
/**
|
|
1892
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaColor.
|
|
1893
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1894
|
+
*/
|
|
1895
|
+
interface GraficaColorQuery extends BaseQuery {
|
|
1896
|
+
}
|
|
1897
|
+
/**
|
|
1898
|
+
* @description Parámetros explicitos para la configuración del cliente API de GraficaColor.
|
|
1899
|
+
*/
|
|
1900
|
+
interface GraficaColorParams extends APIClientParams {
|
|
1901
|
+
}
|
|
1902
|
+
declare class GraficaColorAPI extends APICRUDClientBase<GraficaColorDTO, GraficaColorCreateDTO, GraficaColorUpdateDTO, GraficaColorQuery, GraficaColorDTO> {
|
|
1903
|
+
constructor(params?: GraficaColorParams);
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
interface GraficaColorGrupoDTO {
|
|
1907
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1908
|
+
grafica_color_grupo_id: number;
|
|
1909
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
1910
|
+
grafica_id: number;
|
|
1911
|
+
/** @foreignKey (cat_tema.tema_id) @maxLength (4) */
|
|
1912
|
+
tema_id: number;
|
|
1913
|
+
/** @foreignKey (cat_color_grupo.color_grupo_id) @maxLength (4) */
|
|
1914
|
+
color_grupo_id: number;
|
|
1915
|
+
/** @maxLength (8) @nullable */
|
|
1916
|
+
fecha_creacion?: string;
|
|
1917
|
+
/** @maxLength (8) @nullable */
|
|
1918
|
+
fecha_actualizacion?: string;
|
|
1919
|
+
}
|
|
1920
|
+
interface GraficaColorGrupoCreateDTO {
|
|
1921
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
1922
|
+
grafica_id: number;
|
|
1923
|
+
/** @foreignKey (cat_tema.tema_id) @maxLength (4) */
|
|
1924
|
+
tema_id: number;
|
|
1925
|
+
/** @foreignKey (cat_color_grupo.color_grupo_id) @maxLength (4) */
|
|
1926
|
+
color_grupo_id: number;
|
|
1927
|
+
/** @maxLength (8) @nullable */
|
|
1928
|
+
fecha_creacion?: string;
|
|
1929
|
+
/** @maxLength (8) @nullable */
|
|
1930
|
+
fecha_actualizacion?: string;
|
|
1931
|
+
}
|
|
1932
|
+
interface GraficaColorGrupoUpdateDTO {
|
|
1933
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @optional */
|
|
1934
|
+
grafica_id?: number;
|
|
1935
|
+
/** @foreignKey (cat_tema.tema_id) @maxLength (4) @optional */
|
|
1936
|
+
tema_id?: number;
|
|
1937
|
+
/** @foreignKey (cat_color_grupo.color_grupo_id) @maxLength (4) @optional */
|
|
1938
|
+
color_grupo_id?: number;
|
|
1939
|
+
/** @maxLength (8) @nullable @optional */
|
|
1940
|
+
fecha_creacion?: string;
|
|
1941
|
+
/** @maxLength (8) @nullable @optional */
|
|
1942
|
+
fecha_actualizacion?: string;
|
|
1943
|
+
}
|
|
1944
|
+
|
|
1945
|
+
/**
|
|
1946
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaColorGrupo.
|
|
1947
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1948
|
+
*/
|
|
1949
|
+
interface GraficaColorGrupoQuery extends BaseQuery {
|
|
1950
|
+
}
|
|
1951
|
+
/**
|
|
1952
|
+
* @description Parámetros explicitos para la configuración del cliente API de GraficaColorGrupo.
|
|
1953
|
+
*/
|
|
1954
|
+
interface GraficaColorGrupoParams extends APIClientParams {
|
|
1955
|
+
}
|
|
1956
|
+
declare class GraficaColorGrupoAPI extends APICRUDClientBase<GraficaColorGrupoDTO, GraficaColorGrupoCreateDTO, GraficaColorGrupoUpdateDTO, GraficaColorGrupoQuery, GraficaColorGrupoDTO> {
|
|
1957
|
+
constructor(params?: GraficaColorGrupoParams);
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
interface GraficaColorGrupoAsignacionDTO {
|
|
1961
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1962
|
+
grafica_color_grupo_asignacion_id: number;
|
|
1963
|
+
/** @foreignKey (grafica_color_grupo.grafica_color_grupo_id) @maxLength (4) */
|
|
1964
|
+
grafica_color_grupo_id: number;
|
|
1965
|
+
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) */
|
|
1966
|
+
grafica_color_id: number;
|
|
1967
|
+
/** @maxLength (8) @nullable */
|
|
1968
|
+
fecha_creacion?: string;
|
|
1969
|
+
/** @maxLength (8) @nullable */
|
|
1970
|
+
fecha_actualizacion?: string;
|
|
1971
|
+
}
|
|
1972
|
+
interface GraficaColorGrupoAsignacionCreateDTO {
|
|
1973
|
+
/** @foreignKey (grafica_color_grupo.grafica_color_grupo_id) @maxLength (4) */
|
|
1974
|
+
grafica_color_grupo_id: number;
|
|
1975
|
+
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) */
|
|
1976
|
+
grafica_color_id: number;
|
|
1977
|
+
/** @maxLength (8) @nullable */
|
|
1978
|
+
fecha_creacion?: string;
|
|
1979
|
+
/** @maxLength (8) @nullable */
|
|
1980
|
+
fecha_actualizacion?: string;
|
|
1981
|
+
}
|
|
1982
|
+
interface GraficaColorGrupoAsignacionUpdateDTO {
|
|
1983
|
+
/** @foreignKey (grafica_color_grupo.grafica_color_grupo_id) @maxLength (4) @optional */
|
|
1984
|
+
grafica_color_grupo_id?: number;
|
|
1985
|
+
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) @optional */
|
|
1986
|
+
grafica_color_id?: number;
|
|
1987
|
+
/** @maxLength (8) @nullable @optional */
|
|
1988
|
+
fecha_creacion?: string;
|
|
1989
|
+
/** @maxLength (8) @nullable @optional */
|
|
1990
|
+
fecha_actualizacion?: string;
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
/**
|
|
1994
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaColorGrupoAsignacion.
|
|
1995
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1996
|
+
*/
|
|
1997
|
+
interface GraficaColorGrupoAsignacionQuery extends BaseQuery {
|
|
1998
|
+
}
|
|
1999
|
+
/**
|
|
2000
|
+
* @description Parámetros explicitos para la configuración del cliente API de GraficaColorGrupoAsignacion.
|
|
2001
|
+
*/
|
|
2002
|
+
interface GraficaColorGrupoAsignacionParams extends APIClientParams {
|
|
2003
|
+
}
|
|
2004
|
+
declare class GraficaColorGrupoAsignacionAPI extends APICRUDClientBase<GraficaColorGrupoAsignacionDTO, GraficaColorGrupoAsignacionCreateDTO, GraficaColorGrupoAsignacionUpdateDTO, GraficaColorGrupoAsignacionQuery, GraficaColorGrupoAsignacionDTO> {
|
|
2005
|
+
constructor(params?: GraficaColorGrupoAsignacionParams);
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
interface GraficaColorGrupoTipoGraficaDTO {
|
|
2009
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2010
|
+
grafica_color_grupo_tipo_grafica_id: number;
|
|
2011
|
+
/** @foreignKey (grafica_color_grupo.grafica_color_grupo_id) @maxLength (4) */
|
|
2012
|
+
grafica_color_grupo_id: number;
|
|
2013
|
+
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) */
|
|
2014
|
+
tipo_grafica_id: number;
|
|
2015
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) */
|
|
2016
|
+
usuario_modicador_id: number;
|
|
2017
|
+
/** @maxLength (8) @nullable */
|
|
2018
|
+
fecha_creacion?: string;
|
|
2019
|
+
/** @maxLength (8) @nullable */
|
|
2020
|
+
fecha_actualizacion?: string;
|
|
2021
|
+
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) @nullable */
|
|
2022
|
+
grafica_color_id?: number;
|
|
2023
|
+
}
|
|
2024
|
+
interface GraficaColorGrupoTipoGraficaCreateDTO {
|
|
2025
|
+
/** @foreignKey (grafica_color_grupo.grafica_color_grupo_id) @maxLength (4) */
|
|
2026
|
+
grafica_color_grupo_id: number;
|
|
2027
|
+
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) */
|
|
2028
|
+
tipo_grafica_id: number;
|
|
2029
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) */
|
|
2030
|
+
usuario_modicador_id: number;
|
|
2031
|
+
/** @maxLength (8) @nullable */
|
|
2032
|
+
fecha_creacion?: string;
|
|
2033
|
+
/** @maxLength (8) @nullable */
|
|
2034
|
+
fecha_actualizacion?: string;
|
|
2035
|
+
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) @nullable */
|
|
2036
|
+
grafica_color_id?: number;
|
|
2037
|
+
}
|
|
2038
|
+
interface GraficaColorGrupoTipoGraficaUpdateDTO {
|
|
2039
|
+
/** @foreignKey (grafica_color_grupo.grafica_color_grupo_id) @maxLength (4) @optional */
|
|
2040
|
+
grafica_color_grupo_id?: number;
|
|
2041
|
+
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) @optional */
|
|
2042
|
+
tipo_grafica_id?: number;
|
|
2043
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @optional */
|
|
2044
|
+
usuario_modicador_id?: number;
|
|
2045
|
+
/** @maxLength (8) @nullable @optional */
|
|
2046
|
+
fecha_creacion?: string;
|
|
2047
|
+
/** @maxLength (8) @nullable @optional */
|
|
2048
|
+
fecha_actualizacion?: string;
|
|
2049
|
+
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) @nullable @optional */
|
|
2050
|
+
grafica_color_id?: number;
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
/**
|
|
2054
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaColorGrupoTipoGrafica.
|
|
2055
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2056
|
+
*/
|
|
2057
|
+
interface GraficaColorGrupoTipoGraficaQuery extends BaseQuery {
|
|
2058
|
+
}
|
|
2059
|
+
/**
|
|
2060
|
+
* @description Parámetros explicitos para la configuración del cliente API de GraficaColorGrupoTipoGrafica.
|
|
2061
|
+
*/
|
|
2062
|
+
interface GraficaColorGrupoTipoGraficaParams extends APIClientParams {
|
|
2063
|
+
}
|
|
2064
|
+
declare class GraficaColorGrupoTipoGraficaAPI extends APICRUDClientBase<GraficaColorGrupoTipoGraficaDTO, GraficaColorGrupoTipoGraficaCreateDTO, GraficaColorGrupoTipoGraficaUpdateDTO, GraficaColorGrupoTipoGraficaQuery, GraficaColorGrupoTipoGraficaDTO> {
|
|
2065
|
+
constructor(params?: GraficaColorGrupoTipoGraficaParams);
|
|
2066
|
+
}
|
|
2067
|
+
|
|
2068
|
+
interface GraficaFiltroDTO {
|
|
2069
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2070
|
+
filtro_id: number;
|
|
2071
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
2072
|
+
grafica_id: number;
|
|
2073
|
+
/** @maxLength (200) */
|
|
2074
|
+
campo: string;
|
|
2075
|
+
/** @maxLength (20) */
|
|
2076
|
+
operador: string;
|
|
2077
|
+
/** @maxLength (510) */
|
|
2078
|
+
valor: string;
|
|
2079
|
+
}
|
|
2080
|
+
interface GraficaFiltroCreateDTO {
|
|
2081
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
2082
|
+
grafica_id: number;
|
|
2083
|
+
/** @maxLength (200) */
|
|
2084
|
+
campo: string;
|
|
2085
|
+
/** @maxLength (20) */
|
|
2086
|
+
operador: string;
|
|
2087
|
+
/** @maxLength (510) */
|
|
2088
|
+
valor: string;
|
|
2089
|
+
}
|
|
2090
|
+
interface GraficaFiltroUpdateDTO {
|
|
2091
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @optional */
|
|
2092
|
+
grafica_id?: number;
|
|
2093
|
+
/** @maxLength (200) @optional */
|
|
2094
|
+
campo?: string;
|
|
2095
|
+
/** @maxLength (20) @optional */
|
|
2096
|
+
operador?: string;
|
|
2097
|
+
/** @maxLength (510) @optional */
|
|
2098
|
+
valor?: string;
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2101
|
+
/**
|
|
2102
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaFiltro.
|
|
2103
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2104
|
+
*/
|
|
2105
|
+
interface GraficaFiltroQuery extends BaseQuery {
|
|
2106
|
+
}
|
|
2107
|
+
/**
|
|
2108
|
+
* @description Parámetros explicitos para la configuración del cliente API de GraficaFiltro.
|
|
2109
|
+
*/
|
|
2110
|
+
interface GraficaFiltroParams extends APIClientParams {
|
|
2111
|
+
}
|
|
2112
|
+
declare class GraficaFiltroAPI extends APICRUDClientBase<GraficaFiltroDTO, GraficaFiltroCreateDTO, GraficaFiltroUpdateDTO, GraficaFiltroQuery, GraficaFiltroDTO> {
|
|
2113
|
+
constructor(params?: GraficaFiltroParams);
|
|
2114
|
+
}
|
|
2115
|
+
|
|
2116
|
+
interface GraficaParametroDTO {
|
|
2117
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2118
|
+
grafica_parametro_id: number;
|
|
2119
|
+
/** @maxLength (100) */
|
|
2120
|
+
nombre: string;
|
|
2121
|
+
/** @maxLength (255) @nullable */
|
|
2122
|
+
descripcion?: string;
|
|
2123
|
+
/** @maxLength (1) @nullable */
|
|
2124
|
+
requerido?: boolean;
|
|
2125
|
+
/** @maxLength (255) @nullable */
|
|
2126
|
+
valor_defecto?: string;
|
|
2127
|
+
/** @maxLength (128) */
|
|
2128
|
+
etiqueta: string;
|
|
2129
|
+
}
|
|
2130
|
+
interface GraficaParametroCreateDTO {
|
|
2131
|
+
/** @maxLength (100) */
|
|
2132
|
+
nombre: string;
|
|
2133
|
+
/** @maxLength (255) @nullable */
|
|
2134
|
+
descripcion?: string;
|
|
2135
|
+
/** @maxLength (1) @nullable */
|
|
2136
|
+
requerido?: boolean;
|
|
2137
|
+
/** @maxLength (255) @nullable */
|
|
2138
|
+
valor_defecto?: string;
|
|
2139
|
+
/** @maxLength (128) */
|
|
2140
|
+
etiqueta: string;
|
|
2141
|
+
}
|
|
2142
|
+
interface GraficaParametroUpdateDTO {
|
|
2143
|
+
/** @maxLength (100) @optional */
|
|
2144
|
+
nombre?: string;
|
|
2145
|
+
/** @maxLength (255) @nullable @optional */
|
|
2146
|
+
descripcion?: string;
|
|
2147
|
+
/** @maxLength (1) @nullable @optional */
|
|
2148
|
+
requerido?: boolean;
|
|
2149
|
+
/** @maxLength (255) @nullable @optional */
|
|
2150
|
+
valor_defecto?: string;
|
|
2151
|
+
/** @maxLength (128) @optional */
|
|
2152
|
+
etiqueta?: string;
|
|
2153
|
+
}
|
|
2154
|
+
|
|
2155
|
+
/**
|
|
2156
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaParametro.
|
|
2157
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2158
|
+
*/
|
|
2159
|
+
interface GraficaParametroQuery extends BaseQuery {
|
|
2160
|
+
}
|
|
2161
|
+
/**
|
|
2162
|
+
* @description Parámetros explicitos para la configuración del cliente API de GraficaParametro.
|
|
2163
|
+
*/
|
|
2164
|
+
interface GraficaParametroParams extends APIClientParams {
|
|
2165
|
+
}
|
|
2166
|
+
declare class GraficaParametroAPI extends APICRUDClientBase<GraficaParametroDTO, GraficaParametroCreateDTO, GraficaParametroUpdateDTO, GraficaParametroQuery, GraficaParametroDTO> {
|
|
2167
|
+
constructor(params?: GraficaParametroParams);
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2170
|
+
interface GraficaParametroDefectoDTO {
|
|
2171
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2172
|
+
grafica_parametro_defecto_id: number;
|
|
2173
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
2174
|
+
grafica_id: number;
|
|
2175
|
+
/** @foreignKey (grafica_parametro.grafica_parametro_id) @maxLength (4) */
|
|
2176
|
+
grafica_parametro_id: number;
|
|
2177
|
+
}
|
|
2178
|
+
interface GraficaParametroDefectoCreateDTO {
|
|
2179
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
2180
|
+
grafica_id: number;
|
|
2181
|
+
/** @foreignKey (grafica_parametro.grafica_parametro_id) @maxLength (4) */
|
|
2182
|
+
grafica_parametro_id: number;
|
|
2183
|
+
}
|
|
2184
|
+
interface GraficaParametroDefectoUpdateDTO {
|
|
2185
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @optional */
|
|
2186
|
+
grafica_id?: number;
|
|
2187
|
+
/** @foreignKey (grafica_parametro.grafica_parametro_id) @maxLength (4) @optional */
|
|
2188
|
+
grafica_parametro_id?: number;
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
/**
|
|
2192
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaParametroDefecto.
|
|
2193
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2194
|
+
*/
|
|
2195
|
+
interface GraficaParametroDefectoQuery extends BaseQuery {
|
|
2196
|
+
}
|
|
2197
|
+
/**
|
|
2198
|
+
* @description Parámetros explicitos para la configuración del cliente API de GraficaParametroDefecto.
|
|
2199
|
+
*/
|
|
2200
|
+
interface GraficaParametroDefectoParams extends APIClientParams {
|
|
2201
|
+
}
|
|
2202
|
+
declare class GraficaParametroDefectoAPI extends APICRUDClientBase<GraficaParametroDefectoDTO, GraficaParametroDefectoCreateDTO, GraficaParametroDefectoUpdateDTO, GraficaParametroDefectoQuery, GraficaParametroDefectoDTO> {
|
|
2203
|
+
constructor(params?: GraficaParametroDefectoParams);
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2206
|
+
interface GraficaParametroTipoDTO {
|
|
2207
|
+
/** @foreignKey (grafica_parametro.grafica_parametro_id) @maxLength (4) @primaryKey */
|
|
2208
|
+
grafica_parametro_id: number;
|
|
2209
|
+
/** @foreignKey (cat_tipo_parametro.cat_tipo_parametro_id) @maxLength (4) @primaryKey */
|
|
2210
|
+
cat_tipo_parametro_id: number;
|
|
2211
|
+
}
|
|
2212
|
+
interface GraficaParametroTipoCreateDTO {
|
|
2213
|
+
/** @foreignKey (grafica_parametro.grafica_parametro_id) @maxLength (4) @primaryKey */
|
|
2214
|
+
grafica_parametro_id: number;
|
|
2215
|
+
/** @foreignKey (cat_tipo_parametro.cat_tipo_parametro_id) @maxLength (4) @primaryKey */
|
|
2216
|
+
cat_tipo_parametro_id: number;
|
|
2217
|
+
}
|
|
2218
|
+
interface GraficaParametroTipoUpdateDTO {
|
|
2219
|
+
/** @foreignKey (grafica_parametro.grafica_parametro_id) @maxLength (4) @primaryKey @optional */
|
|
2220
|
+
grafica_parametro_id?: number;
|
|
2221
|
+
/** @foreignKey (cat_tipo_parametro.cat_tipo_parametro_id) @maxLength (4) @primaryKey @optional */
|
|
2222
|
+
cat_tipo_parametro_id?: number;
|
|
2223
|
+
}
|
|
2224
|
+
|
|
2225
|
+
/**
|
|
2226
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaParametroTipo.
|
|
2227
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2228
|
+
*/
|
|
2229
|
+
interface GraficaParametroTipoQuery extends BaseQuery {
|
|
2230
|
+
}
|
|
2231
|
+
/**
|
|
2232
|
+
* @description Parámetros explicitos para la configuración del cliente API de GraficaParametroTipo.
|
|
2233
|
+
*/
|
|
2234
|
+
interface GraficaParametroTipoParams extends APIClientParams {
|
|
2235
|
+
}
|
|
2236
|
+
declare class GraficaParametroTipoAPI extends APICRUDClientBase<GraficaParametroTipoDTO, GraficaParametroTipoCreateDTO, GraficaParametroTipoUpdateDTO, GraficaParametroTipoQuery, GraficaParametroTipoDTO> {
|
|
2237
|
+
constructor(params?: GraficaParametroTipoParams);
|
|
2238
|
+
}
|
|
2239
|
+
|
|
2240
|
+
interface GraficaPorGrupoDTO {
|
|
2241
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
2242
|
+
grafica_id: number;
|
|
2243
|
+
/** @foreignKey (cat_grafica_grupo.cat_grafica_grupo_id) @maxLength (4) @primaryKey */
|
|
2244
|
+
cat_grafica_grupo_id: number;
|
|
2245
|
+
/** @maxLength (4) @nullable */
|
|
2246
|
+
orden?: number;
|
|
2247
|
+
}
|
|
2248
|
+
interface GraficaPorGrupoCreateDTO {
|
|
2249
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
2250
|
+
grafica_id: number;
|
|
2251
|
+
/** @foreignKey (cat_grafica_grupo.cat_grafica_grupo_id) @maxLength (4) @primaryKey */
|
|
2252
|
+
cat_grafica_grupo_id: number;
|
|
2253
|
+
/** @maxLength (4) @nullable */
|
|
2254
|
+
orden?: number;
|
|
2255
|
+
}
|
|
2256
|
+
interface GraficaPorGrupoUpdateDTO {
|
|
2257
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey @optional */
|
|
2258
|
+
grafica_id?: number;
|
|
2259
|
+
/** @foreignKey (cat_grafica_grupo.cat_grafica_grupo_id) @maxLength (4) @primaryKey @optional */
|
|
2260
|
+
cat_grafica_grupo_id?: number;
|
|
2261
|
+
/** @maxLength (4) @nullable @optional */
|
|
2262
|
+
orden?: number;
|
|
2263
|
+
}
|
|
2264
|
+
|
|
2265
|
+
/**
|
|
2266
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaPorGrupo.
|
|
2267
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2268
|
+
*/
|
|
2269
|
+
interface GraficaPorGrupoQuery extends BaseQuery {
|
|
2270
|
+
}
|
|
2271
|
+
/**
|
|
2272
|
+
* @description Parámetros explicitos para la configuración del cliente API de GraficaPorGrupo.
|
|
2273
|
+
*/
|
|
2274
|
+
interface GraficaPorGrupoParams extends APIClientParams {
|
|
2275
|
+
}
|
|
2276
|
+
declare class GraficaPorGrupoAPI extends APICRUDClientBase<GraficaPorGrupoDTO, GraficaPorGrupoCreateDTO, GraficaPorGrupoUpdateDTO, GraficaPorGrupoQuery, GraficaPorGrupoDTO> {
|
|
2277
|
+
constructor(params?: GraficaPorGrupoParams);
|
|
2278
|
+
}
|
|
2279
|
+
|
|
2280
|
+
interface GrupoUsuarioDTO {
|
|
2281
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2282
|
+
grupo_usuario_id: number;
|
|
2283
|
+
/** @maxLength (50) @nullable */
|
|
2284
|
+
grupo_usuario_nombre?: string;
|
|
2285
|
+
/** @maxLength (8) @nullable */
|
|
2286
|
+
grupo_usuario_fecha_creacion?: string;
|
|
2287
|
+
/** @maxLength (8) @nullable */
|
|
2288
|
+
grupo_usuario_fecha_modificacion?: string;
|
|
2289
|
+
/** @maxLength (-1) @nullable */
|
|
2290
|
+
grupo_usuario_status?: string;
|
|
2291
|
+
}
|
|
2292
|
+
interface GrupoUsuarioCreateDTO {
|
|
2293
|
+
/** @maxLength (50) @nullable */
|
|
2294
|
+
grupo_usuario_nombre?: string;
|
|
2295
|
+
/** @maxLength (8) @nullable */
|
|
2296
|
+
grupo_usuario_fecha_creacion?: string;
|
|
2297
|
+
/** @maxLength (8) @nullable */
|
|
2298
|
+
grupo_usuario_fecha_modificacion?: string;
|
|
2299
|
+
/** @maxLength (-1) @nullable */
|
|
2300
|
+
grupo_usuario_status?: string;
|
|
2301
|
+
}
|
|
2302
|
+
interface GrupoUsuarioUpdateDTO {
|
|
2303
|
+
/** @maxLength (50) @nullable @optional */
|
|
2304
|
+
grupo_usuario_nombre?: string;
|
|
2305
|
+
/** @maxLength (8) @nullable @optional */
|
|
2306
|
+
grupo_usuario_fecha_creacion?: string;
|
|
2307
|
+
/** @maxLength (8) @nullable @optional */
|
|
2308
|
+
grupo_usuario_fecha_modificacion?: string;
|
|
2309
|
+
/** @maxLength (-1) @nullable @optional */
|
|
2310
|
+
grupo_usuario_status?: string;
|
|
2311
|
+
}
|
|
2312
|
+
|
|
2313
|
+
/**
|
|
2314
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GrupoUsuario.
|
|
2315
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2316
|
+
*/
|
|
2317
|
+
interface GrupoUsuarioQuery extends BaseQuery {
|
|
2318
|
+
}
|
|
2319
|
+
/**
|
|
2320
|
+
* @description Parámetros explicitos para la configuración del cliente API de GrupoUsuario.
|
|
2321
|
+
*/
|
|
2322
|
+
interface GrupoUsuarioParams extends APIClientParams {
|
|
2323
|
+
}
|
|
2324
|
+
declare class GrupoUsuarioAPI extends APICRUDClientBase<GrupoUsuarioDTO, GrupoUsuarioCreateDTO, GrupoUsuarioUpdateDTO, GrupoUsuarioQuery, GrupoUsuarioDTO> {
|
|
2325
|
+
constructor(params?: GrupoUsuarioParams);
|
|
2326
|
+
}
|
|
2327
|
+
|
|
2328
|
+
interface JobAuditLogDTO {
|
|
2329
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2330
|
+
id: number;
|
|
2331
|
+
/** @maxLength (400) @nullable */
|
|
2332
|
+
job_name?: string;
|
|
2333
|
+
/** @maxLength (400) @nullable */
|
|
2334
|
+
step_name?: string;
|
|
2335
|
+
/** @maxLength (8) @nullable */
|
|
2336
|
+
fecha_ejecucion?: string;
|
|
2337
|
+
/** @maxLength (4) @nullable */
|
|
2338
|
+
registros_afectados?: number;
|
|
2339
|
+
/** @maxLength (100) @nullable */
|
|
2340
|
+
status?: string;
|
|
2341
|
+
/** @maxLength (-1) @nullable */
|
|
2342
|
+
mensaje?: string;
|
|
2343
|
+
}
|
|
2344
|
+
interface JobAuditLogCreateDTO {
|
|
2345
|
+
/** @maxLength (400) @nullable */
|
|
2346
|
+
job_name?: string;
|
|
2347
|
+
/** @maxLength (400) @nullable */
|
|
2348
|
+
step_name?: string;
|
|
2349
|
+
/** @maxLength (8) @nullable */
|
|
2350
|
+
fecha_ejecucion?: string;
|
|
2351
|
+
/** @maxLength (4) @nullable */
|
|
2352
|
+
registros_afectados?: number;
|
|
2353
|
+
/** @maxLength (100) @nullable */
|
|
2354
|
+
status?: string;
|
|
2355
|
+
/** @maxLength (-1) @nullable */
|
|
2356
|
+
mensaje?: string;
|
|
2357
|
+
}
|
|
2358
|
+
interface JobAuditLogUpdateDTO {
|
|
2359
|
+
/** @maxLength (400) @nullable @optional */
|
|
2360
|
+
job_name?: string;
|
|
2361
|
+
/** @maxLength (400) @nullable @optional */
|
|
2362
|
+
step_name?: string;
|
|
2363
|
+
/** @maxLength (8) @nullable @optional */
|
|
2364
|
+
fecha_ejecucion?: string;
|
|
2365
|
+
/** @maxLength (4) @nullable @optional */
|
|
2366
|
+
registros_afectados?: number;
|
|
2367
|
+
/** @maxLength (100) @nullable @optional */
|
|
2368
|
+
status?: string;
|
|
2369
|
+
/** @maxLength (-1) @nullable @optional */
|
|
2370
|
+
mensaje?: string;
|
|
2371
|
+
}
|
|
2372
|
+
|
|
2373
|
+
/**
|
|
2374
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de JobAuditLog.
|
|
2375
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2376
|
+
*/
|
|
2377
|
+
interface JobAuditLogQuery extends BaseQuery {
|
|
2378
|
+
}
|
|
2379
|
+
/**
|
|
2380
|
+
* @description Parámetros explicitos para la configuración del cliente API de JobAuditLog.
|
|
2381
|
+
*/
|
|
2382
|
+
interface JobAuditLogParams extends APIClientParams {
|
|
2383
|
+
}
|
|
2384
|
+
declare class JobAuditLogAPI extends APICRUDClientBase<JobAuditLogDTO, JobAuditLogCreateDTO, JobAuditLogUpdateDTO, JobAuditLogQuery, JobAuditLogDTO> {
|
|
2385
|
+
constructor(params?: JobAuditLogParams);
|
|
2386
|
+
}
|
|
2387
|
+
|
|
2388
|
+
interface ModuloDTO {
|
|
2389
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2390
|
+
modulo_id: number;
|
|
2391
|
+
/** @maxLength (100) @nullable */
|
|
2392
|
+
modulo_nombre?: string;
|
|
2393
|
+
/** @maxLength (100) @nullable */
|
|
2394
|
+
modulo_ruta_url?: string;
|
|
2395
|
+
/** @maxLength (80) @nullable */
|
|
2396
|
+
modulo_icon_url?: string;
|
|
2397
|
+
/** @maxLength (-1) @nullable */
|
|
2398
|
+
modulo_status?: string;
|
|
2399
|
+
/** @maxLength (-1) @nullable */
|
|
2400
|
+
ordinal_position?: string;
|
|
2401
|
+
}
|
|
2402
|
+
interface ModuloCreateDTO {
|
|
2403
|
+
/** @maxLength (100) @nullable */
|
|
2404
|
+
modulo_nombre?: string;
|
|
2405
|
+
/** @maxLength (100) @nullable */
|
|
2406
|
+
modulo_ruta_url?: string;
|
|
2407
|
+
/** @maxLength (80) @nullable */
|
|
2408
|
+
modulo_icon_url?: string;
|
|
2409
|
+
/** @maxLength (-1) @nullable */
|
|
2410
|
+
modulo_status?: string;
|
|
2411
|
+
/** @maxLength (-1) @nullable */
|
|
2412
|
+
ordinal_position?: string;
|
|
2413
|
+
}
|
|
2414
|
+
interface ModuloUpdateDTO {
|
|
2415
|
+
/** @maxLength (100) @nullable @optional */
|
|
2416
|
+
modulo_nombre?: string;
|
|
2417
|
+
/** @maxLength (100) @nullable @optional */
|
|
2418
|
+
modulo_ruta_url?: string;
|
|
2419
|
+
/** @maxLength (80) @nullable @optional */
|
|
2420
|
+
modulo_icon_url?: string;
|
|
2421
|
+
/** @maxLength (-1) @nullable @optional */
|
|
2422
|
+
modulo_status?: string;
|
|
2423
|
+
/** @maxLength (-1) @nullable @optional */
|
|
2424
|
+
ordinal_position?: string;
|
|
2425
|
+
}
|
|
2426
|
+
|
|
2427
|
+
/**
|
|
2428
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Modulo.
|
|
2429
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2430
|
+
*/
|
|
2431
|
+
interface ModuloQuery extends BaseQuery {
|
|
2432
|
+
}
|
|
2433
|
+
/**
|
|
2434
|
+
* @description Parámetros explicitos para la configuración del cliente API de Modulo.
|
|
2435
|
+
*/
|
|
2436
|
+
interface ModuloParams extends APIClientParams {
|
|
2437
|
+
}
|
|
2438
|
+
declare class ModuloAPI extends APICRUDClientBase<ModuloDTO, ModuloCreateDTO, ModuloUpdateDTO, ModuloQuery, ModuloDTO> {
|
|
2439
|
+
constructor(params?: ModuloParams);
|
|
2440
|
+
}
|
|
2441
|
+
|
|
2442
|
+
interface PagosDTO {
|
|
2443
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2444
|
+
id: number;
|
|
2445
|
+
/** @maxLength (4) */
|
|
2446
|
+
cuenta_id: number;
|
|
2447
|
+
/** @maxLength (9) */
|
|
2448
|
+
total: number;
|
|
2449
|
+
/** @maxLength (3) */
|
|
2450
|
+
fecha_de_pago: string;
|
|
2451
|
+
/** @maxLength (50) */
|
|
2452
|
+
periodo_de_pago: string;
|
|
2453
|
+
/** @foreignKey (cat_concepto_pago.id) @maxLength (4) */
|
|
2454
|
+
concepto_id: number;
|
|
2455
|
+
/** @maxLength (1) */
|
|
2456
|
+
convenio: boolean;
|
|
2457
|
+
/** @maxLength (4) @nullable */
|
|
2458
|
+
numero_convenio?: number;
|
|
2459
|
+
/** @maxLength (50) @nullable */
|
|
2460
|
+
recibo?: string;
|
|
2461
|
+
}
|
|
2462
|
+
interface PagosCreateDTO {
|
|
2463
|
+
/** @maxLength (4) */
|
|
2464
|
+
cuenta_id: number;
|
|
2465
|
+
/** @maxLength (9) */
|
|
2466
|
+
total: number;
|
|
2467
|
+
/** @maxLength (3) */
|
|
2468
|
+
fecha_de_pago: string;
|
|
2469
|
+
/** @maxLength (50) */
|
|
2470
|
+
periodo_de_pago: string;
|
|
2471
|
+
/** @foreignKey (cat_concepto_pago.id) @maxLength (4) */
|
|
2472
|
+
concepto_id: number;
|
|
2473
|
+
/** @maxLength (1) */
|
|
2474
|
+
convenio: boolean;
|
|
2475
|
+
/** @maxLength (4) @nullable */
|
|
2476
|
+
numero_convenio?: number;
|
|
2477
|
+
/** @maxLength (50) @nullable */
|
|
2478
|
+
recibo?: string;
|
|
2479
|
+
}
|
|
2480
|
+
interface PagosUpdateDTO {
|
|
2481
|
+
/** @maxLength (4) @optional */
|
|
2482
|
+
cuenta_id?: number;
|
|
2483
|
+
/** @maxLength (9) @optional */
|
|
2484
|
+
total?: number;
|
|
2485
|
+
/** @maxLength (3) @optional */
|
|
2486
|
+
fecha_de_pago?: string;
|
|
2487
|
+
/** @maxLength (50) @optional */
|
|
2488
|
+
periodo_de_pago?: string;
|
|
2489
|
+
/** @foreignKey (cat_concepto_pago.id) @maxLength (4) @optional */
|
|
2490
|
+
concepto_id?: number;
|
|
2491
|
+
/** @maxLength (1) @optional */
|
|
2492
|
+
convenio?: boolean;
|
|
2493
|
+
/** @maxLength (4) @nullable @optional */
|
|
2494
|
+
numero_convenio?: number;
|
|
2495
|
+
/** @maxLength (50) @nullable @optional */
|
|
2496
|
+
recibo?: string;
|
|
2497
|
+
}
|
|
2498
|
+
|
|
2499
|
+
/**
|
|
2500
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Pagos.
|
|
2501
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2502
|
+
*/
|
|
2503
|
+
interface PagosQuery extends BaseQuery {
|
|
2504
|
+
}
|
|
2505
|
+
/**
|
|
2506
|
+
* @description Parámetros explicitos para la configuración del cliente API de Pagos.
|
|
2507
|
+
*/
|
|
2508
|
+
interface PagosParams extends APIClientParams {
|
|
2509
|
+
}
|
|
2510
|
+
declare class PagosAPI extends APICRUDClientBase<PagosDTO, PagosCreateDTO, PagosUpdateDTO, PagosQuery, PagosDTO> {
|
|
2511
|
+
constructor(params?: PagosParams);
|
|
2512
|
+
}
|
|
2513
|
+
|
|
2514
|
+
interface PagosPorColoniasResumenDTO {
|
|
2515
|
+
/** @maxLength (200) @primaryKey */
|
|
2516
|
+
colonia: string;
|
|
2517
|
+
/** @maxLength (9) @nullable */
|
|
2518
|
+
total_pagado?: number;
|
|
2519
|
+
/** @maxLength (8) @nullable */
|
|
2520
|
+
fecha_actualizacion?: string;
|
|
2521
|
+
}
|
|
2522
|
+
interface PagosPorColoniasResumenCreateDTO {
|
|
2523
|
+
/** @maxLength (200) @primaryKey */
|
|
2524
|
+
colonia: string;
|
|
2525
|
+
/** @maxLength (9) @nullable */
|
|
2526
|
+
total_pagado?: number;
|
|
2527
|
+
/** @maxLength (8) @nullable */
|
|
2528
|
+
fecha_actualizacion?: string;
|
|
2529
|
+
}
|
|
2530
|
+
interface PagosPorColoniasResumenUpdateDTO {
|
|
2531
|
+
/** @maxLength (200) @primaryKey @optional */
|
|
2532
|
+
colonia?: string;
|
|
2533
|
+
/** @maxLength (9) @nullable @optional */
|
|
2534
|
+
total_pagado?: number;
|
|
2535
|
+
/** @maxLength (8) @nullable @optional */
|
|
2536
|
+
fecha_actualizacion?: string;
|
|
2537
|
+
}
|
|
2538
|
+
|
|
2539
|
+
/**
|
|
2540
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorColoniasResumen.
|
|
2541
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2542
|
+
*/
|
|
2543
|
+
interface PagosPorColoniasResumenQuery extends BaseQuery {
|
|
2544
|
+
}
|
|
2545
|
+
/**
|
|
2546
|
+
* @description Parámetros explicitos para la configuración del cliente API de PagosPorColoniasResumen.
|
|
2547
|
+
*/
|
|
2548
|
+
interface PagosPorColoniasResumenParams extends APIClientParams {
|
|
2549
|
+
}
|
|
2550
|
+
declare class PagosPorColoniasResumenAPI extends APICRUDClientBase<PagosPorColoniasResumenDTO, PagosPorColoniasResumenCreateDTO, PagosPorColoniasResumenUpdateDTO, PagosPorColoniasResumenQuery, PagosPorColoniasResumenDTO> {
|
|
2551
|
+
constructor(params?: PagosPorColoniasResumenParams);
|
|
2552
|
+
}
|
|
2553
|
+
|
|
2554
|
+
interface PagosPorColoniasResumenMensualDTO {
|
|
2555
|
+
/** @maxLength (7) @primaryKey */
|
|
2556
|
+
anio_mes: string;
|
|
2557
|
+
/** @maxLength (200) @primaryKey */
|
|
2558
|
+
colonia: string;
|
|
2559
|
+
/** @maxLength (9) @nullable */
|
|
2560
|
+
total_pagado?: number;
|
|
2561
|
+
/** @maxLength (8) @nullable */
|
|
2562
|
+
fecha_actualizacion?: string;
|
|
2563
|
+
}
|
|
2564
|
+
interface PagosPorColoniasResumenMensualCreateDTO {
|
|
2565
|
+
/** @maxLength (7) @primaryKey */
|
|
2566
|
+
anio_mes: string;
|
|
2567
|
+
/** @maxLength (200) @primaryKey */
|
|
2568
|
+
colonia: string;
|
|
2569
|
+
/** @maxLength (9) @nullable */
|
|
2570
|
+
total_pagado?: number;
|
|
2571
|
+
/** @maxLength (8) @nullable */
|
|
2572
|
+
fecha_actualizacion?: string;
|
|
2573
|
+
}
|
|
2574
|
+
interface PagosPorColoniasResumenMensualUpdateDTO {
|
|
2575
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
2576
|
+
anio_mes?: string;
|
|
2577
|
+
/** @maxLength (200) @primaryKey @optional */
|
|
2578
|
+
colonia?: string;
|
|
2579
|
+
/** @maxLength (9) @nullable @optional */
|
|
2580
|
+
total_pagado?: number;
|
|
2581
|
+
/** @maxLength (8) @nullable @optional */
|
|
2582
|
+
fecha_actualizacion?: string;
|
|
2583
|
+
}
|
|
2584
|
+
|
|
2585
|
+
/**
|
|
2586
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorColoniasResumenMensual.
|
|
2587
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2588
|
+
*/
|
|
2589
|
+
interface PagosPorColoniasResumenMensualQuery extends BaseQuery {
|
|
2590
|
+
}
|
|
2591
|
+
/**
|
|
2592
|
+
* @description Parámetros explicitos para la configuración del cliente API de PagosPorColoniasResumenMensual.
|
|
2593
|
+
*/
|
|
2594
|
+
interface PagosPorColoniasResumenMensualParams extends APIClientParams {
|
|
2595
|
+
}
|
|
2596
|
+
declare class PagosPorColoniasResumenMensualAPI extends APICRUDClientBase<PagosPorColoniasResumenMensualDTO, PagosPorColoniasResumenMensualCreateDTO, PagosPorColoniasResumenMensualUpdateDTO, PagosPorColoniasResumenMensualQuery, PagosPorColoniasResumenMensualDTO> {
|
|
2597
|
+
constructor(params?: PagosPorColoniasResumenMensualParams);
|
|
2598
|
+
}
|
|
2599
|
+
|
|
2600
|
+
interface PagosPorTipoServicioMensualDTO {
|
|
2601
|
+
/** @maxLength (7) @primaryKey */
|
|
2602
|
+
anio_mes: string;
|
|
2603
|
+
/** @maxLength (200) @primaryKey */
|
|
2604
|
+
tipo_servicio: string;
|
|
2605
|
+
/** @maxLength (9) @nullable */
|
|
2606
|
+
total_pagado?: number;
|
|
2607
|
+
/** @maxLength (8) @nullable */
|
|
2608
|
+
fecha_actualizacion?: string;
|
|
2609
|
+
}
|
|
2610
|
+
interface PagosPorTipoServicioMensualCreateDTO {
|
|
2611
|
+
/** @maxLength (7) @primaryKey */
|
|
2612
|
+
anio_mes: string;
|
|
2613
|
+
/** @maxLength (200) @primaryKey */
|
|
2614
|
+
tipo_servicio: string;
|
|
2615
|
+
/** @maxLength (9) @nullable */
|
|
2616
|
+
total_pagado?: number;
|
|
2617
|
+
/** @maxLength (8) @nullable */
|
|
2618
|
+
fecha_actualizacion?: string;
|
|
2619
|
+
}
|
|
2620
|
+
interface PagosPorTipoServicioMensualUpdateDTO {
|
|
2621
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
2622
|
+
anio_mes?: string;
|
|
2623
|
+
/** @maxLength (200) @primaryKey @optional */
|
|
2624
|
+
tipo_servicio?: string;
|
|
2625
|
+
/** @maxLength (9) @nullable @optional */
|
|
2626
|
+
total_pagado?: number;
|
|
2627
|
+
/** @maxLength (8) @nullable @optional */
|
|
2628
|
+
fecha_actualizacion?: string;
|
|
2629
|
+
}
|
|
2630
|
+
|
|
2631
|
+
/**
|
|
2632
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorTipoServicioMensual.
|
|
2633
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2634
|
+
*/
|
|
2635
|
+
interface PagosPorTipoServicioMensualQuery extends BaseQuery {
|
|
2636
|
+
}
|
|
2637
|
+
/**
|
|
2638
|
+
* @description Parámetros explicitos para la configuración del cliente API de PagosPorTipoServicioMensual.
|
|
2639
|
+
*/
|
|
2640
|
+
interface PagosPorTipoServicioMensualParams extends APIClientParams {
|
|
2641
|
+
}
|
|
2642
|
+
declare class PagosPorTipoServicioMensualAPI extends APICRUDClientBase<PagosPorTipoServicioMensualDTO, PagosPorTipoServicioMensualCreateDTO, PagosPorTipoServicioMensualUpdateDTO, PagosPorTipoServicioMensualQuery, PagosPorTipoServicioMensualDTO> {
|
|
2643
|
+
constructor(params?: PagosPorTipoServicioMensualParams);
|
|
2644
|
+
}
|
|
2645
|
+
|
|
2646
|
+
interface PagosPorTipoServicioResumenDTO {
|
|
2647
|
+
/** @maxLength (200) @primaryKey */
|
|
2648
|
+
tipo_servicio: string;
|
|
2649
|
+
/** @maxLength (9) @nullable */
|
|
2650
|
+
total_pagado?: number;
|
|
2651
|
+
/** @maxLength (8) @nullable */
|
|
2652
|
+
fecha_actualizacion?: string;
|
|
2653
|
+
}
|
|
2654
|
+
interface PagosPorTipoServicioResumenCreateDTO {
|
|
2655
|
+
/** @maxLength (200) @primaryKey */
|
|
2656
|
+
tipo_servicio: string;
|
|
2657
|
+
/** @maxLength (9) @nullable */
|
|
2658
|
+
total_pagado?: number;
|
|
2659
|
+
/** @maxLength (8) @nullable */
|
|
2660
|
+
fecha_actualizacion?: string;
|
|
2661
|
+
}
|
|
2662
|
+
interface PagosPorTipoServicioResumenUpdateDTO {
|
|
2663
|
+
/** @maxLength (200) @primaryKey @optional */
|
|
2664
|
+
tipo_servicio?: string;
|
|
2665
|
+
/** @maxLength (9) @nullable @optional */
|
|
2666
|
+
total_pagado?: number;
|
|
2667
|
+
/** @maxLength (8) @nullable @optional */
|
|
2668
|
+
fecha_actualizacion?: string;
|
|
2669
|
+
}
|
|
2670
|
+
|
|
2671
|
+
/**
|
|
2672
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorTipoServicioResumen.
|
|
2673
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2674
|
+
*/
|
|
2675
|
+
interface PagosPorTipoServicioResumenQuery extends BaseQuery {
|
|
2676
|
+
}
|
|
2677
|
+
/**
|
|
2678
|
+
* @description Parámetros explicitos para la configuración del cliente API de PagosPorTipoServicioResumen.
|
|
2679
|
+
*/
|
|
2680
|
+
interface PagosPorTipoServicioResumenParams extends APIClientParams {
|
|
2681
|
+
}
|
|
2682
|
+
declare class PagosPorTipoServicioResumenAPI extends APICRUDClientBase<PagosPorTipoServicioResumenDTO, PagosPorTipoServicioResumenCreateDTO, PagosPorTipoServicioResumenUpdateDTO, PagosPorTipoServicioResumenQuery, PagosPorTipoServicioResumenDTO> {
|
|
2683
|
+
constructor(params?: PagosPorTipoServicioResumenParams);
|
|
2684
|
+
}
|
|
2685
|
+
|
|
2686
|
+
interface PagosPorTipoTarifaResumenDTO {
|
|
2687
|
+
/** @maxLength (4) @primaryKey */
|
|
2688
|
+
tipo_tarifa_id: number;
|
|
2689
|
+
/** @maxLength (200) @nullable */
|
|
2690
|
+
tipo_tarifa?: string;
|
|
2691
|
+
/** @maxLength (4) @nullable */
|
|
2692
|
+
total_pagos?: number;
|
|
2693
|
+
/** @maxLength (9) @nullable */
|
|
2694
|
+
monto_total?: number;
|
|
2695
|
+
/** @maxLength (9) @nullable */
|
|
2696
|
+
pago_promedio?: number;
|
|
2697
|
+
/** @maxLength (9) @nullable */
|
|
2698
|
+
pago_minimo?: number;
|
|
2699
|
+
/** @maxLength (9) @nullable */
|
|
2700
|
+
pago_maximo?: number;
|
|
2701
|
+
/** @maxLength (8) @nullable */
|
|
2702
|
+
fecha_actualizacion?: string;
|
|
2703
|
+
}
|
|
2704
|
+
interface PagosPorTipoTarifaResumenCreateDTO {
|
|
2705
|
+
/** @maxLength (4) @primaryKey */
|
|
2706
|
+
tipo_tarifa_id: number;
|
|
2707
|
+
/** @maxLength (200) @nullable */
|
|
2708
|
+
tipo_tarifa?: string;
|
|
2709
|
+
/** @maxLength (4) @nullable */
|
|
2710
|
+
total_pagos?: number;
|
|
2711
|
+
/** @maxLength (9) @nullable */
|
|
2712
|
+
monto_total?: number;
|
|
2713
|
+
/** @maxLength (9) @nullable */
|
|
2714
|
+
pago_promedio?: number;
|
|
2715
|
+
/** @maxLength (9) @nullable */
|
|
2716
|
+
pago_minimo?: number;
|
|
2717
|
+
/** @maxLength (9) @nullable */
|
|
2718
|
+
pago_maximo?: number;
|
|
2719
|
+
/** @maxLength (8) @nullable */
|
|
2720
|
+
fecha_actualizacion?: string;
|
|
2721
|
+
}
|
|
2722
|
+
interface PagosPorTipoTarifaResumenUpdateDTO {
|
|
2723
|
+
/** @maxLength (4) @primaryKey @optional */
|
|
2724
|
+
tipo_tarifa_id?: number;
|
|
2725
|
+
/** @maxLength (200) @nullable @optional */
|
|
2726
|
+
tipo_tarifa?: string;
|
|
2727
|
+
/** @maxLength (4) @nullable @optional */
|
|
2728
|
+
total_pagos?: number;
|
|
2729
|
+
/** @maxLength (9) @nullable @optional */
|
|
2730
|
+
monto_total?: number;
|
|
2731
|
+
/** @maxLength (9) @nullable @optional */
|
|
2732
|
+
pago_promedio?: number;
|
|
2733
|
+
/** @maxLength (9) @nullable @optional */
|
|
2734
|
+
pago_minimo?: number;
|
|
2735
|
+
/** @maxLength (9) @nullable @optional */
|
|
2736
|
+
pago_maximo?: number;
|
|
2737
|
+
/** @maxLength (8) @nullable @optional */
|
|
2738
|
+
fecha_actualizacion?: string;
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2741
|
+
/**
|
|
2742
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorTipoTarifaResumen.
|
|
2743
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2744
|
+
*/
|
|
2745
|
+
interface PagosPorTipoTarifaResumenQuery extends BaseQuery {
|
|
2746
|
+
}
|
|
2747
|
+
/**
|
|
2748
|
+
* @description Parámetros explicitos para la configuración del cliente API de PagosPorTipoTarifaResumen.
|
|
2749
|
+
*/
|
|
2750
|
+
interface PagosPorTipoTarifaResumenParams extends APIClientParams {
|
|
2751
|
+
}
|
|
2752
|
+
declare class PagosPorTipoTarifaResumenAPI extends APICRUDClientBase<PagosPorTipoTarifaResumenDTO, PagosPorTipoTarifaResumenCreateDTO, PagosPorTipoTarifaResumenUpdateDTO, PagosPorTipoTarifaResumenQuery, PagosPorTipoTarifaResumenDTO> {
|
|
2753
|
+
constructor(params?: PagosPorTipoTarifaResumenParams);
|
|
2754
|
+
}
|
|
2755
|
+
|
|
2756
|
+
interface PagosPorTipoTarifaResumenMensualDTO {
|
|
2757
|
+
/** @maxLength (7) @primaryKey */
|
|
2758
|
+
anio_mes: string;
|
|
2759
|
+
/** @maxLength (4) @primaryKey */
|
|
2760
|
+
tipo_tarifa_id: number;
|
|
2761
|
+
/** @maxLength (200) @nullable */
|
|
2762
|
+
tipo_tarifa?: string;
|
|
2763
|
+
/** @maxLength (4) @nullable */
|
|
2764
|
+
total_pagos?: number;
|
|
2765
|
+
/** @maxLength (9) @nullable */
|
|
2766
|
+
monto_total?: number;
|
|
2767
|
+
/** @maxLength (9) @nullable */
|
|
2768
|
+
pago_promedio?: number;
|
|
2769
|
+
/** @maxLength (9) @nullable */
|
|
2770
|
+
pago_minimo?: number;
|
|
2771
|
+
/** @maxLength (9) @nullable */
|
|
2772
|
+
pago_maximo?: number;
|
|
2773
|
+
/** @maxLength (8) @nullable */
|
|
2774
|
+
fecha_actualizacion?: string;
|
|
2775
|
+
}
|
|
2776
|
+
interface PagosPorTipoTarifaResumenMensualCreateDTO {
|
|
2777
|
+
/** @maxLength (7) @primaryKey */
|
|
2778
|
+
anio_mes: string;
|
|
2779
|
+
/** @maxLength (4) @primaryKey */
|
|
2780
|
+
tipo_tarifa_id: number;
|
|
2781
|
+
/** @maxLength (200) @nullable */
|
|
2782
|
+
tipo_tarifa?: string;
|
|
2783
|
+
/** @maxLength (4) @nullable */
|
|
2784
|
+
total_pagos?: number;
|
|
2785
|
+
/** @maxLength (9) @nullable */
|
|
2786
|
+
monto_total?: number;
|
|
2787
|
+
/** @maxLength (9) @nullable */
|
|
2788
|
+
pago_promedio?: number;
|
|
2789
|
+
/** @maxLength (9) @nullable */
|
|
2790
|
+
pago_minimo?: number;
|
|
2791
|
+
/** @maxLength (9) @nullable */
|
|
2792
|
+
pago_maximo?: number;
|
|
2793
|
+
/** @maxLength (8) @nullable */
|
|
2794
|
+
fecha_actualizacion?: string;
|
|
2795
|
+
}
|
|
2796
|
+
interface PagosPorTipoTarifaResumenMensualUpdateDTO {
|
|
2797
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
2798
|
+
anio_mes?: string;
|
|
2799
|
+
/** @maxLength (4) @primaryKey @optional */
|
|
2800
|
+
tipo_tarifa_id?: number;
|
|
2801
|
+
/** @maxLength (200) @nullable @optional */
|
|
2802
|
+
tipo_tarifa?: string;
|
|
2803
|
+
/** @maxLength (4) @nullable @optional */
|
|
2804
|
+
total_pagos?: number;
|
|
2805
|
+
/** @maxLength (9) @nullable @optional */
|
|
2806
|
+
monto_total?: number;
|
|
2807
|
+
/** @maxLength (9) @nullable @optional */
|
|
2808
|
+
pago_promedio?: number;
|
|
2809
|
+
/** @maxLength (9) @nullable @optional */
|
|
2810
|
+
pago_minimo?: number;
|
|
2811
|
+
/** @maxLength (9) @nullable @optional */
|
|
2812
|
+
pago_maximo?: number;
|
|
2813
|
+
/** @maxLength (8) @nullable @optional */
|
|
2814
|
+
fecha_actualizacion?: string;
|
|
2815
|
+
}
|
|
2816
|
+
|
|
2817
|
+
/**
|
|
2818
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorTipoTarifaResumenMensual.
|
|
2819
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2820
|
+
*/
|
|
2821
|
+
interface PagosPorTipoTarifaResumenMensualQuery extends BaseQuery {
|
|
2822
|
+
}
|
|
2823
|
+
/**
|
|
2824
|
+
* @description Parámetros explicitos para la configuración del cliente API de PagosPorTipoTarifaResumenMensual.
|
|
2825
|
+
*/
|
|
2826
|
+
interface PagosPorTipoTarifaResumenMensualParams extends APIClientParams {
|
|
2827
|
+
}
|
|
2828
|
+
declare class PagosPorTipoTarifaResumenMensualAPI extends APICRUDClientBase<PagosPorTipoTarifaResumenMensualDTO, PagosPorTipoTarifaResumenMensualCreateDTO, PagosPorTipoTarifaResumenMensualUpdateDTO, PagosPorTipoTarifaResumenMensualQuery, PagosPorTipoTarifaResumenMensualDTO> {
|
|
2829
|
+
constructor(params?: PagosPorTipoTarifaResumenMensualParams);
|
|
2830
|
+
}
|
|
2831
|
+
|
|
2832
|
+
interface PagosResumenMensualDTO {
|
|
2833
|
+
/** @maxLength (7) @primaryKey */
|
|
2834
|
+
anio_mes: string;
|
|
2835
|
+
/** @maxLength (9) @nullable */
|
|
2836
|
+
total_pagos?: number;
|
|
2837
|
+
/** @maxLength (8) @nullable */
|
|
2838
|
+
fecha_actualizacion?: string;
|
|
2839
|
+
}
|
|
2840
|
+
interface PagosResumenMensualCreateDTO {
|
|
2841
|
+
/** @maxLength (7) @primaryKey */
|
|
2842
|
+
anio_mes: string;
|
|
2843
|
+
/** @maxLength (9) @nullable */
|
|
2844
|
+
total_pagos?: number;
|
|
2845
|
+
/** @maxLength (8) @nullable */
|
|
2846
|
+
fecha_actualizacion?: string;
|
|
2847
|
+
}
|
|
2848
|
+
interface PagosResumenMensualUpdateDTO {
|
|
2849
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
2850
|
+
anio_mes?: string;
|
|
2851
|
+
/** @maxLength (9) @nullable @optional */
|
|
2852
|
+
total_pagos?: number;
|
|
2853
|
+
/** @maxLength (8) @nullable @optional */
|
|
2854
|
+
fecha_actualizacion?: string;
|
|
2855
|
+
}
|
|
2856
|
+
|
|
2857
|
+
/**
|
|
2858
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosResumenMensual.
|
|
2859
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2860
|
+
*/
|
|
2861
|
+
interface PagosResumenMensualQuery extends BaseQuery {
|
|
2862
|
+
}
|
|
2863
|
+
/**
|
|
2864
|
+
* @description Parámetros explicitos para la configuración del cliente API de PagosResumenMensual.
|
|
2865
|
+
*/
|
|
2866
|
+
interface PagosResumenMensualParams extends APIClientParams {
|
|
2867
|
+
}
|
|
2868
|
+
declare class PagosResumenMensualAPI extends APICRUDClientBase<PagosResumenMensualDTO, PagosResumenMensualCreateDTO, PagosResumenMensualUpdateDTO, PagosResumenMensualQuery, PagosResumenMensualDTO> {
|
|
2869
|
+
constructor(params?: PagosResumenMensualParams);
|
|
2870
|
+
}
|
|
2871
|
+
|
|
2872
|
+
interface PermisoAccionEntidadDTO {
|
|
2873
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2874
|
+
permiso_accion_entidad_id: number;
|
|
2875
|
+
/** @foreignKey (permiso_accion_entidad.permiso_accion_entidad_id) @maxLength (4) @nullable */
|
|
2876
|
+
cat_accion_id?: number;
|
|
2877
|
+
/** @maxLength (4) @nullable */
|
|
2878
|
+
cat_entidad_id?: number;
|
|
2879
|
+
/** @maxLength (4) @nullable */
|
|
2880
|
+
grupo_usuario_id?: number;
|
|
2881
|
+
/** @maxLength (-1) @nullable */
|
|
2882
|
+
permiso_accion_entidad_status?: string;
|
|
2883
|
+
}
|
|
2884
|
+
interface PermisoAccionEntidadCreateDTO {
|
|
2885
|
+
/** @foreignKey (permiso_accion_entidad.permiso_accion_entidad_id) @maxLength (4) @nullable */
|
|
2886
|
+
cat_accion_id?: number;
|
|
2887
|
+
/** @maxLength (4) @nullable */
|
|
2888
|
+
cat_entidad_id?: number;
|
|
2889
|
+
/** @maxLength (4) @nullable */
|
|
2890
|
+
grupo_usuario_id?: number;
|
|
2891
|
+
/** @maxLength (-1) @nullable */
|
|
2892
|
+
permiso_accion_entidad_status?: string;
|
|
2893
|
+
}
|
|
2894
|
+
interface PermisoAccionEntidadUpdateDTO {
|
|
2895
|
+
/** @foreignKey (permiso_accion_entidad.permiso_accion_entidad_id) @maxLength (4) @nullable @optional */
|
|
2896
|
+
cat_accion_id?: number;
|
|
2897
|
+
/** @maxLength (4) @nullable @optional */
|
|
2898
|
+
cat_entidad_id?: number;
|
|
2899
|
+
/** @maxLength (4) @nullable @optional */
|
|
2900
|
+
grupo_usuario_id?: number;
|
|
2901
|
+
/** @maxLength (-1) @nullable @optional */
|
|
2902
|
+
permiso_accion_entidad_status?: string;
|
|
2903
|
+
}
|
|
2904
|
+
|
|
2905
|
+
/**
|
|
2906
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PermisoAccionEntidad.
|
|
2907
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2908
|
+
*/
|
|
2909
|
+
interface PermisoAccionEntidadQuery extends BaseQuery {
|
|
2910
|
+
}
|
|
2911
|
+
/**
|
|
2912
|
+
* @description Parámetros explicitos para la configuración del cliente API de PermisoAccionEntidad.
|
|
2913
|
+
*/
|
|
2914
|
+
interface PermisoAccionEntidadParams extends APIClientParams {
|
|
2915
|
+
}
|
|
2916
|
+
declare class PermisoAccionEntidadAPI extends APICRUDClientBase<PermisoAccionEntidadDTO, PermisoAccionEntidadCreateDTO, PermisoAccionEntidadUpdateDTO, PermisoAccionEntidadQuery, PermisoAccionEntidadDTO> {
|
|
2917
|
+
constructor(params?: PermisoAccionEntidadParams);
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
interface PermisoModuloDTO {
|
|
2921
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2922
|
+
permiso_modulo_id: number;
|
|
2923
|
+
/** @foreignKey (modulo.modulo_id) @maxLength (4) @nullable */
|
|
2924
|
+
modulo_id?: number;
|
|
2925
|
+
/** @maxLength (4) @nullable */
|
|
2926
|
+
grupo_usuario_id?: number;
|
|
2927
|
+
/** @maxLength (-1) @nullable */
|
|
2928
|
+
permiso_modulo_status?: string;
|
|
2929
|
+
}
|
|
2930
|
+
interface PermisoModuloCreateDTO {
|
|
2931
|
+
/** @foreignKey (modulo.modulo_id) @maxLength (4) @nullable */
|
|
2932
|
+
modulo_id?: number;
|
|
2933
|
+
/** @maxLength (4) @nullable */
|
|
2934
|
+
grupo_usuario_id?: number;
|
|
2935
|
+
/** @maxLength (-1) @nullable */
|
|
2936
|
+
permiso_modulo_status?: string;
|
|
2937
|
+
}
|
|
2938
|
+
interface PermisoModuloUpdateDTO {
|
|
2939
|
+
/** @foreignKey (modulo.modulo_id) @maxLength (4) @nullable @optional */
|
|
2940
|
+
modulo_id?: number;
|
|
2941
|
+
/** @maxLength (4) @nullable @optional */
|
|
2942
|
+
grupo_usuario_id?: number;
|
|
2943
|
+
/** @maxLength (-1) @nullable @optional */
|
|
2944
|
+
permiso_modulo_status?: string;
|
|
2945
|
+
}
|
|
2946
|
+
|
|
2947
|
+
/**
|
|
2948
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PermisoModulo.
|
|
2949
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2950
|
+
*/
|
|
2951
|
+
interface PermisoModuloQuery extends BaseQuery {
|
|
2952
|
+
}
|
|
2953
|
+
/**
|
|
2954
|
+
* @description Parámetros explicitos para la configuración del cliente API de PermisoModulo.
|
|
2955
|
+
*/
|
|
2956
|
+
interface PermisoModuloParams extends APIClientParams {
|
|
2957
|
+
}
|
|
2958
|
+
declare class PermisoModuloAPI extends APICRUDClientBase<PermisoModuloDTO, PermisoModuloCreateDTO, PermisoModuloUpdateDTO, PermisoModuloQuery, PermisoModuloDTO> {
|
|
2959
|
+
constructor(params?: PermisoModuloParams);
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2962
|
+
interface PermisoSubmoduloDTO {
|
|
2963
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2964
|
+
permiso_submodulo_id: number;
|
|
2965
|
+
/** @foreignKey (submodulo.submodulo_id) @maxLength (4) @nullable */
|
|
2966
|
+
submodulo_id?: number;
|
|
2967
|
+
/** @maxLength (4) @nullable */
|
|
2968
|
+
grupo_usuario_id?: number;
|
|
2969
|
+
/** @maxLength (-1) @nullable */
|
|
2970
|
+
permiso_submodulo_status?: string;
|
|
2971
|
+
}
|
|
2972
|
+
interface PermisoSubmoduloCreateDTO {
|
|
2973
|
+
/** @foreignKey (submodulo.submodulo_id) @maxLength (4) @nullable */
|
|
2974
|
+
submodulo_id?: number;
|
|
2975
|
+
/** @maxLength (4) @nullable */
|
|
2976
|
+
grupo_usuario_id?: number;
|
|
2977
|
+
/** @maxLength (-1) @nullable */
|
|
2978
|
+
permiso_submodulo_status?: string;
|
|
2979
|
+
}
|
|
2980
|
+
interface PermisoSubmoduloUpdateDTO {
|
|
2981
|
+
/** @foreignKey (submodulo.submodulo_id) @maxLength (4) @nullable @optional */
|
|
2982
|
+
submodulo_id?: number;
|
|
2983
|
+
/** @maxLength (4) @nullable @optional */
|
|
2984
|
+
grupo_usuario_id?: number;
|
|
2985
|
+
/** @maxLength (-1) @nullable @optional */
|
|
2986
|
+
permiso_submodulo_status?: string;
|
|
2987
|
+
}
|
|
2988
|
+
|
|
2989
|
+
/**
|
|
2990
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PermisoSubmodulo.
|
|
2991
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2992
|
+
*/
|
|
2993
|
+
interface PermisoSubmoduloQuery extends BaseQuery {
|
|
2994
|
+
}
|
|
2995
|
+
/**
|
|
2996
|
+
* @description Parámetros explicitos para la configuración del cliente API de PermisoSubmodulo.
|
|
2997
|
+
*/
|
|
2998
|
+
interface PermisoSubmoduloParams extends APIClientParams {
|
|
2999
|
+
}
|
|
3000
|
+
declare class PermisoSubmoduloAPI extends APICRUDClientBase<PermisoSubmoduloDTO, PermisoSubmoduloCreateDTO, PermisoSubmoduloUpdateDTO, PermisoSubmoduloQuery, PermisoSubmoduloDTO> {
|
|
3001
|
+
constructor(params?: PermisoSubmoduloParams);
|
|
3002
|
+
}
|
|
3003
|
+
|
|
3004
|
+
interface PlazasDTO {
|
|
3005
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
3006
|
+
plaza_id: number;
|
|
3007
|
+
/** @maxLength (510) @nullable */
|
|
3008
|
+
imagen?: string;
|
|
3009
|
+
/** @maxLength (510) */
|
|
3010
|
+
latitud: string;
|
|
3011
|
+
/** @maxLength (510) */
|
|
3012
|
+
longitud: string;
|
|
3013
|
+
}
|
|
3014
|
+
interface PlazasCreateDTO {
|
|
3015
|
+
/** @maxLength (510) @nullable */
|
|
3016
|
+
imagen?: string;
|
|
3017
|
+
/** @maxLength (510) */
|
|
3018
|
+
latitud: string;
|
|
3019
|
+
/** @maxLength (510) */
|
|
3020
|
+
longitud: string;
|
|
3021
|
+
}
|
|
3022
|
+
interface PlazasUpdateDTO {
|
|
3023
|
+
/** @maxLength (510) @nullable @optional */
|
|
3024
|
+
imagen?: string;
|
|
3025
|
+
/** @maxLength (510) @optional */
|
|
3026
|
+
latitud?: string;
|
|
3027
|
+
/** @maxLength (510) @optional */
|
|
3028
|
+
longitud?: string;
|
|
3029
|
+
}
|
|
3030
|
+
|
|
3031
|
+
/**
|
|
3032
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Plazas.
|
|
3033
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
3034
|
+
*/
|
|
3035
|
+
interface PlazasQuery extends BaseQuery {
|
|
3036
|
+
}
|
|
3037
|
+
/**
|
|
3038
|
+
* @description Parámetros explicitos para la configuración del cliente API de Plazas.
|
|
3039
|
+
*/
|
|
3040
|
+
interface PlazasParams extends APIClientParams {
|
|
3041
|
+
}
|
|
3042
|
+
declare class PlazasAPI extends APICRUDClientBase<PlazasDTO, PlazasCreateDTO, PlazasUpdateDTO, PlazasQuery, PlazasDTO> {
|
|
3043
|
+
constructor(params?: PlazasParams);
|
|
3044
|
+
}
|
|
3045
|
+
|
|
3046
|
+
interface RolDTO {
|
|
3047
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
3048
|
+
rol_id: number;
|
|
3049
|
+
/** @maxLength (200) */
|
|
3050
|
+
nombre: string;
|
|
3051
|
+
/** @maxLength (4) */
|
|
3052
|
+
tipo_rol_id: number;
|
|
3053
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @nullable */
|
|
3054
|
+
rol_padre_id?: number;
|
|
3055
|
+
/** @foreignKey (cat_rol_grupo.cat_rol_grupo_id) @maxLength (4) @nullable */
|
|
3056
|
+
rol_grupo_id?: number;
|
|
3057
|
+
}
|
|
3058
|
+
interface RolCreateDTO {
|
|
3059
|
+
/** @maxLength (200) */
|
|
3060
|
+
nombre: string;
|
|
3061
|
+
/** @maxLength (4) */
|
|
3062
|
+
tipo_rol_id: number;
|
|
3063
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @nullable */
|
|
3064
|
+
rol_padre_id?: number;
|
|
3065
|
+
/** @foreignKey (cat_rol_grupo.cat_rol_grupo_id) @maxLength (4) @nullable */
|
|
3066
|
+
rol_grupo_id?: number;
|
|
3067
|
+
}
|
|
3068
|
+
interface RolUpdateDTO {
|
|
3069
|
+
/** @maxLength (200) @optional */
|
|
3070
|
+
nombre?: string;
|
|
3071
|
+
/** @maxLength (4) @optional */
|
|
3072
|
+
tipo_rol_id?: number;
|
|
3073
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @nullable @optional */
|
|
3074
|
+
rol_padre_id?: number;
|
|
3075
|
+
/** @foreignKey (cat_rol_grupo.cat_rol_grupo_id) @maxLength (4) @nullable @optional */
|
|
3076
|
+
rol_grupo_id?: number;
|
|
3077
|
+
}
|
|
3078
|
+
|
|
3079
|
+
/**
|
|
3080
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Rol.
|
|
3081
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
3082
|
+
*/
|
|
3083
|
+
interface RolQuery extends BaseQuery {
|
|
3084
|
+
}
|
|
3085
|
+
/**
|
|
3086
|
+
* @description Parámetros explicitos para la configuración del cliente API de Rol.
|
|
3087
|
+
*/
|
|
3088
|
+
interface RolParams extends APIClientParams {
|
|
3089
|
+
}
|
|
3090
|
+
declare class RolAPI extends APICRUDClientBase<RolDTO, RolCreateDTO, RolUpdateDTO, RolQuery, RolDTO> {
|
|
3091
|
+
constructor(params?: RolParams);
|
|
3092
|
+
}
|
|
3093
|
+
|
|
3094
|
+
interface RolDashboardRutaDTO {
|
|
3095
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
3096
|
+
rol_dashboard_ruta_id: number;
|
|
3097
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) */
|
|
3098
|
+
rol_id: number;
|
|
3099
|
+
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) */
|
|
3100
|
+
dashboard_ruta_id: number;
|
|
3101
|
+
/** @maxLength (1) */
|
|
3102
|
+
es_predeterminado: boolean;
|
|
3103
|
+
}
|
|
3104
|
+
interface RolDashboardRutaCreateDTO {
|
|
3105
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) */
|
|
3106
|
+
rol_id: number;
|
|
3107
|
+
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) */
|
|
3108
|
+
dashboard_ruta_id: number;
|
|
3109
|
+
/** @maxLength (1) */
|
|
3110
|
+
es_predeterminado: boolean;
|
|
3111
|
+
}
|
|
3112
|
+
interface RolDashboardRutaUpdateDTO {
|
|
3113
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @optional */
|
|
3114
|
+
rol_id?: number;
|
|
3115
|
+
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) @optional */
|
|
3116
|
+
dashboard_ruta_id?: number;
|
|
3117
|
+
/** @maxLength (1) @optional */
|
|
3118
|
+
es_predeterminado?: boolean;
|
|
3119
|
+
}
|
|
3120
|
+
|
|
3121
|
+
/**
|
|
3122
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de RolDashboardRuta.
|
|
3123
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
3124
|
+
*/
|
|
3125
|
+
interface RolDashboardRutaQuery extends BaseQuery {
|
|
3126
|
+
}
|
|
3127
|
+
/**
|
|
3128
|
+
* @description Parámetros explicitos para la configuración del cliente API de RolDashboardRuta.
|
|
3129
|
+
*/
|
|
3130
|
+
interface RolDashboardRutaParams extends APIClientParams {
|
|
3131
|
+
}
|
|
3132
|
+
declare class RolDashboardRutaAPI extends APICRUDClientBase<RolDashboardRutaDTO, RolDashboardRutaCreateDTO, RolDashboardRutaUpdateDTO, RolDashboardRutaQuery, RolDashboardRutaDTO> {
|
|
3133
|
+
constructor(params?: RolDashboardRutaParams);
|
|
886
3134
|
}
|
|
887
3135
|
|
|
888
|
-
interface
|
|
889
|
-
/** @maxLength (4) @
|
|
3136
|
+
interface RolGraficaDTO {
|
|
3137
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey */
|
|
890
3138
|
rol_id: number;
|
|
891
|
-
/** @maxLength (
|
|
892
|
-
|
|
893
|
-
/** @maxLength (4) */
|
|
894
|
-
tipo_rol_id: number;
|
|
895
|
-
/** @foreignKey (rol.rol_id) @maxLength (4) @nullable */
|
|
896
|
-
rol_padre_id?: number;
|
|
897
|
-
/** @foreignKey (cat_rol_grupo.cat_rol_grupo_id) @maxLength (4) @nullable */
|
|
898
|
-
rol_grupo_id?: number;
|
|
3139
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
3140
|
+
grafica_id: number;
|
|
899
3141
|
}
|
|
900
|
-
interface
|
|
901
|
-
/** @maxLength (
|
|
902
|
-
|
|
903
|
-
/** @maxLength (4) */
|
|
904
|
-
|
|
905
|
-
/** @foreignKey (rol.rol_id) @maxLength (4) @nullable */
|
|
906
|
-
rol_padre_id?: number;
|
|
907
|
-
/** @foreignKey (cat_rol_grupo.cat_rol_grupo_id) @maxLength (4) @nullable */
|
|
908
|
-
rol_grupo_id?: number;
|
|
3142
|
+
interface RolGraficaCreateDTO {
|
|
3143
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey */
|
|
3144
|
+
rol_id: number;
|
|
3145
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
3146
|
+
grafica_id: number;
|
|
909
3147
|
}
|
|
910
|
-
interface
|
|
911
|
-
/** @maxLength (
|
|
912
|
-
|
|
913
|
-
/** @maxLength (4) @optional */
|
|
914
|
-
|
|
915
|
-
/** @foreignKey (rol.rol_id) @maxLength (4) @nullable @optional */
|
|
916
|
-
rol_padre_id?: number;
|
|
917
|
-
/** @foreignKey (cat_rol_grupo.cat_rol_grupo_id) @maxLength (4) @nullable @optional */
|
|
918
|
-
rol_grupo_id?: number;
|
|
3148
|
+
interface RolGraficaUpdateDTO {
|
|
3149
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey @optional */
|
|
3150
|
+
rol_id?: number;
|
|
3151
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey @optional */
|
|
3152
|
+
grafica_id?: number;
|
|
919
3153
|
}
|
|
920
3154
|
|
|
921
3155
|
/**
|
|
922
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
3156
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de RolGrafica.
|
|
923
3157
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
924
3158
|
*/
|
|
925
|
-
interface
|
|
3159
|
+
interface RolGraficaQuery extends BaseQuery {
|
|
926
3160
|
}
|
|
927
3161
|
/**
|
|
928
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
3162
|
+
* @description Parámetros explicitos para la configuración del cliente API de RolGrafica.
|
|
929
3163
|
*/
|
|
930
|
-
interface
|
|
3164
|
+
interface RolGraficaParams extends APIClientParams {
|
|
931
3165
|
}
|
|
932
|
-
declare class
|
|
933
|
-
constructor(params?:
|
|
3166
|
+
declare class RolGraficaAPI extends APICRUDClientBase<RolGraficaDTO, RolGraficaCreateDTO, RolGraficaUpdateDTO, RolGraficaQuery, RolGraficaDTO> {
|
|
3167
|
+
constructor(params?: RolGraficaParams);
|
|
934
3168
|
}
|
|
935
3169
|
|
|
936
|
-
interface
|
|
3170
|
+
interface SubmoduloDTO {
|
|
937
3171
|
/** @maxLength (4) @identity @primaryKey */
|
|
938
|
-
|
|
939
|
-
/** @maxLength (50) @nullable */
|
|
940
|
-
usuario_nombre_usuario?: string;
|
|
941
|
-
/** @maxLength (80) @nullable */
|
|
942
|
-
usuario_nombre?: string;
|
|
943
|
-
/** @maxLength (80) @nullable */
|
|
944
|
-
usuario_apellidos?: string;
|
|
945
|
-
/** @maxLength (100) @nullable */
|
|
946
|
-
usuario_cargo?: string;
|
|
947
|
-
/** @maxLength (500) @nullable */
|
|
948
|
-
usuario_direccion?: string;
|
|
3172
|
+
submodulo_id: number;
|
|
949
3173
|
/** @maxLength (100) @nullable */
|
|
950
|
-
|
|
951
|
-
/** @maxLength (2000) @nullable */
|
|
952
|
-
usuario_password?: string;
|
|
3174
|
+
submodulo_nombre?: string;
|
|
953
3175
|
/** @maxLength (100) @nullable */
|
|
954
|
-
|
|
955
|
-
/** @foreignKey (
|
|
956
|
-
|
|
957
|
-
/** @maxLength (8) @nullable */
|
|
958
|
-
usuario_fecha_creacion?: string;
|
|
959
|
-
/** @maxLength (8) @nullable */
|
|
960
|
-
usuario_fecha_modificacion?: string;
|
|
3176
|
+
submodulo_ruta_url?: string;
|
|
3177
|
+
/** @foreignKey (modulo.modulo_id) @maxLength (4) @nullable */
|
|
3178
|
+
modulo_id?: number;
|
|
961
3179
|
/** @maxLength (-1) @nullable */
|
|
962
|
-
|
|
3180
|
+
submodulo_status?: string;
|
|
963
3181
|
}
|
|
964
|
-
interface
|
|
965
|
-
/** @maxLength (50) @nullable */
|
|
966
|
-
usuario_nombre_usuario?: string;
|
|
967
|
-
/** @maxLength (80) @nullable */
|
|
968
|
-
usuario_nombre?: string;
|
|
969
|
-
/** @maxLength (80) @nullable */
|
|
970
|
-
usuario_apellidos?: string;
|
|
971
|
-
/** @maxLength (100) @nullable */
|
|
972
|
-
usuario_cargo?: string;
|
|
973
|
-
/** @maxLength (500) @nullable */
|
|
974
|
-
usuario_direccion?: string;
|
|
3182
|
+
interface SubmoduloCreateDTO {
|
|
975
3183
|
/** @maxLength (100) @nullable */
|
|
976
|
-
|
|
977
|
-
/** @maxLength (2000) @nullable */
|
|
978
|
-
usuario_password?: string;
|
|
3184
|
+
submodulo_nombre?: string;
|
|
979
3185
|
/** @maxLength (100) @nullable */
|
|
980
|
-
|
|
981
|
-
/** @foreignKey (
|
|
982
|
-
|
|
983
|
-
/** @maxLength (8) @nullable */
|
|
984
|
-
usuario_fecha_creacion?: string;
|
|
985
|
-
/** @maxLength (8) @nullable */
|
|
986
|
-
usuario_fecha_modificacion?: string;
|
|
3186
|
+
submodulo_ruta_url?: string;
|
|
3187
|
+
/** @foreignKey (modulo.modulo_id) @maxLength (4) @nullable */
|
|
3188
|
+
modulo_id?: number;
|
|
987
3189
|
/** @maxLength (-1) @nullable */
|
|
988
|
-
|
|
3190
|
+
submodulo_status?: string;
|
|
989
3191
|
}
|
|
990
|
-
interface
|
|
991
|
-
/** @maxLength (50) @nullable @optional */
|
|
992
|
-
usuario_nombre_usuario?: string;
|
|
993
|
-
/** @maxLength (80) @nullable @optional */
|
|
994
|
-
usuario_nombre?: string;
|
|
995
|
-
/** @maxLength (80) @nullable @optional */
|
|
996
|
-
usuario_apellidos?: string;
|
|
3192
|
+
interface SubmoduloUpdateDTO {
|
|
997
3193
|
/** @maxLength (100) @nullable @optional */
|
|
998
|
-
|
|
999
|
-
/** @maxLength (500) @nullable @optional */
|
|
1000
|
-
usuario_direccion?: string;
|
|
1001
|
-
/** @maxLength (100) @nullable @optional */
|
|
1002
|
-
usuario_email?: string;
|
|
1003
|
-
/** @maxLength (2000) @nullable @optional */
|
|
1004
|
-
usuario_password?: string;
|
|
3194
|
+
submodulo_nombre?: string;
|
|
1005
3195
|
/** @maxLength (100) @nullable @optional */
|
|
1006
|
-
|
|
1007
|
-
/** @foreignKey (
|
|
1008
|
-
|
|
1009
|
-
/** @maxLength (8) @nullable @optional */
|
|
1010
|
-
usuario_fecha_creacion?: string;
|
|
1011
|
-
/** @maxLength (8) @nullable @optional */
|
|
1012
|
-
usuario_fecha_modificacion?: string;
|
|
3196
|
+
submodulo_ruta_url?: string;
|
|
3197
|
+
/** @foreignKey (modulo.modulo_id) @maxLength (4) @nullable @optional */
|
|
3198
|
+
modulo_id?: number;
|
|
1013
3199
|
/** @maxLength (-1) @nullable @optional */
|
|
1014
|
-
|
|
3200
|
+
submodulo_status?: string;
|
|
1015
3201
|
}
|
|
1016
3202
|
|
|
1017
3203
|
/**
|
|
1018
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
3204
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Submodulo.
|
|
1019
3205
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1020
3206
|
*/
|
|
1021
|
-
interface
|
|
3207
|
+
interface SubmoduloQuery extends BaseQuery {
|
|
1022
3208
|
}
|
|
1023
3209
|
/**
|
|
1024
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
3210
|
+
* @description Parámetros explicitos para la configuración del cliente API de Submodulo.
|
|
1025
3211
|
*/
|
|
1026
|
-
interface
|
|
3212
|
+
interface SubmoduloParams extends APIClientParams {
|
|
1027
3213
|
}
|
|
1028
|
-
declare class
|
|
1029
|
-
constructor(params?:
|
|
3214
|
+
declare class SubmoduloAPI extends APICRUDClientBase<SubmoduloDTO, SubmoduloCreateDTO, SubmoduloUpdateDTO, SubmoduloQuery, SubmoduloDTO> {
|
|
3215
|
+
constructor(params?: SubmoduloParams);
|
|
1030
3216
|
}
|
|
1031
3217
|
|
|
1032
|
-
interface
|
|
3218
|
+
interface TipoGraficaDTO {
|
|
1033
3219
|
/** @maxLength (4) @identity @primaryKey */
|
|
1034
|
-
|
|
3220
|
+
tipo_grafica_id: number;
|
|
1035
3221
|
/** @maxLength (200) */
|
|
1036
3222
|
nombre: string;
|
|
1037
3223
|
/** @maxLength (510) @nullable */
|
|
1038
3224
|
descripcion?: string;
|
|
3225
|
+
/** @maxLength (200) */
|
|
3226
|
+
nombre_componente: string;
|
|
3227
|
+
/** @maxLength (510) */
|
|
3228
|
+
ruta_componente: string;
|
|
1039
3229
|
}
|
|
1040
|
-
interface
|
|
3230
|
+
interface TipoGraficaCreateDTO {
|
|
1041
3231
|
/** @maxLength (200) */
|
|
1042
3232
|
nombre: string;
|
|
1043
3233
|
/** @maxLength (510) @nullable */
|
|
1044
3234
|
descripcion?: string;
|
|
3235
|
+
/** @maxLength (200) */
|
|
3236
|
+
nombre_componente: string;
|
|
3237
|
+
/** @maxLength (510) */
|
|
3238
|
+
ruta_componente: string;
|
|
1045
3239
|
}
|
|
1046
|
-
interface
|
|
3240
|
+
interface TipoGraficaUpdateDTO {
|
|
1047
3241
|
/** @maxLength (200) @optional */
|
|
1048
3242
|
nombre?: string;
|
|
1049
3243
|
/** @maxLength (510) @nullable @optional */
|
|
1050
3244
|
descripcion?: string;
|
|
3245
|
+
/** @maxLength (200) @optional */
|
|
3246
|
+
nombre_componente?: string;
|
|
3247
|
+
/** @maxLength (510) @optional */
|
|
3248
|
+
ruta_componente?: string;
|
|
1051
3249
|
}
|
|
1052
3250
|
|
|
1053
3251
|
/**
|
|
1054
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
3252
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de TipoGrafica.
|
|
1055
3253
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1056
3254
|
*/
|
|
1057
|
-
interface
|
|
3255
|
+
interface TipoGraficaQuery extends BaseQuery {
|
|
1058
3256
|
}
|
|
1059
3257
|
/**
|
|
1060
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
3258
|
+
* @description Parámetros explicitos para la configuración del cliente API de TipoGrafica.
|
|
1061
3259
|
*/
|
|
1062
|
-
interface
|
|
3260
|
+
interface TipoGraficaParams extends APIClientParams {
|
|
1063
3261
|
}
|
|
1064
|
-
declare class
|
|
1065
|
-
constructor(params?:
|
|
3262
|
+
declare class TipoGraficaAPI extends APICRUDClientBase<TipoGraficaDTO, TipoGraficaCreateDTO, TipoGraficaUpdateDTO, TipoGraficaQuery, TipoGraficaDTO> {
|
|
3263
|
+
constructor(params?: TipoGraficaParams);
|
|
1066
3264
|
}
|
|
1067
3265
|
|
|
1068
|
-
interface
|
|
3266
|
+
interface TipoRolDTO {
|
|
1069
3267
|
/** @maxLength (4) @identity @primaryKey */
|
|
1070
|
-
|
|
3268
|
+
tipo_rol_id: number;
|
|
1071
3269
|
/** @maxLength (200) */
|
|
1072
3270
|
nombre: string;
|
|
1073
3271
|
}
|
|
1074
|
-
interface
|
|
3272
|
+
interface TipoRolCreateDTO {
|
|
1075
3273
|
/** @maxLength (200) */
|
|
1076
3274
|
nombre: string;
|
|
1077
3275
|
}
|
|
1078
|
-
interface
|
|
3276
|
+
interface TipoRolUpdateDTO {
|
|
1079
3277
|
/** @maxLength (200) @optional */
|
|
1080
3278
|
nombre?: string;
|
|
1081
3279
|
}
|
|
1082
3280
|
|
|
1083
3281
|
/**
|
|
1084
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
3282
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de TipoRol.
|
|
1085
3283
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1086
3284
|
*/
|
|
1087
|
-
interface
|
|
3285
|
+
interface TipoRolQuery extends BaseQuery {
|
|
1088
3286
|
}
|
|
1089
3287
|
/**
|
|
1090
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
3288
|
+
* @description Parámetros explicitos para la configuración del cliente API de TipoRol.
|
|
1091
3289
|
*/
|
|
1092
|
-
interface
|
|
1093
|
-
}
|
|
1094
|
-
declare class CatRolGrupoAPI extends APICRUDClientBase<CatRolGrupoDTO, CatRolGrupoCreateDTO, CatRolGrupoUpdateDTO, CatRolGrupoQuery, CatRolGrupoDTO> {
|
|
1095
|
-
constructor(params?: CatRolGrupoParams);
|
|
3290
|
+
interface TipoRolParams extends APIClientParams {
|
|
1096
3291
|
}
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
id?: string | number;
|
|
1100
|
-
params?: object;
|
|
1101
|
-
config?: AxiosRequestConfig;
|
|
1102
|
-
where?: object;
|
|
3292
|
+
declare class TipoRolAPI extends APICRUDClientBase<TipoRolDTO, TipoRolCreateDTO, TipoRolUpdateDTO, TipoRolQuery, TipoRolDTO> {
|
|
3293
|
+
constructor(params?: TipoRolParams);
|
|
1103
3294
|
}
|
|
1104
3295
|
|
|
1105
|
-
interface
|
|
1106
|
-
/** @maxLength (4) @primaryKey */
|
|
1107
|
-
|
|
1108
|
-
/** @maxLength (
|
|
1109
|
-
|
|
1110
|
-
/** @maxLength (
|
|
1111
|
-
|
|
1112
|
-
/** @maxLength (
|
|
1113
|
-
|
|
1114
|
-
/**
|
|
1115
|
-
|
|
1116
|
-
/** @maxLength (
|
|
1117
|
-
|
|
1118
|
-
/** @maxLength (
|
|
1119
|
-
|
|
1120
|
-
/** @maxLength (
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
/** @maxLength (4) @
|
|
1125
|
-
|
|
1126
|
-
/** @maxLength (
|
|
1127
|
-
|
|
1128
|
-
/** @maxLength (
|
|
1129
|
-
|
|
1130
|
-
/** @maxLength (
|
|
1131
|
-
|
|
1132
|
-
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) @nullable */
|
|
1133
|
-
dashboard_ruta_padre_id?: number;
|
|
1134
|
-
/** @maxLength (4) */
|
|
1135
|
-
nivel: number;
|
|
1136
|
-
/** @maxLength (1) */
|
|
1137
|
-
habilitado: boolean;
|
|
1138
|
-
/** @maxLength (4) @nullable */
|
|
1139
|
-
orden?: number;
|
|
3296
|
+
interface UsuarioDTO {
|
|
3297
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
3298
|
+
usuario_id: number;
|
|
3299
|
+
/** @maxLength (50) @nullable */
|
|
3300
|
+
usuario_nombre_usuario?: string;
|
|
3301
|
+
/** @maxLength (80) @nullable */
|
|
3302
|
+
usuario_nombre?: string;
|
|
3303
|
+
/** @maxLength (80) @nullable */
|
|
3304
|
+
usuario_apellidos?: string;
|
|
3305
|
+
/** @maxLength (100) @nullable */
|
|
3306
|
+
usuario_cargo?: string;
|
|
3307
|
+
/** @maxLength (500) @nullable */
|
|
3308
|
+
usuario_direccion?: string;
|
|
3309
|
+
/** @maxLength (100) @nullable */
|
|
3310
|
+
usuario_email?: string;
|
|
3311
|
+
/** @maxLength (2000) @nullable */
|
|
3312
|
+
usuario_password?: string;
|
|
3313
|
+
/** @maxLength (100) @nullable */
|
|
3314
|
+
usuario_url_img_perfil?: string;
|
|
3315
|
+
/** @foreignKey (grupo_usuario.grupo_usuario_id) @maxLength (4) @nullable */
|
|
3316
|
+
grupo_usuario_id?: number;
|
|
3317
|
+
/** @maxLength (8) @nullable */
|
|
3318
|
+
usuario_fecha_creacion?: string;
|
|
3319
|
+
/** @maxLength (8) @nullable */
|
|
3320
|
+
usuario_fecha_modificacion?: string;
|
|
3321
|
+
/** @maxLength (-1) @nullable */
|
|
3322
|
+
usuario_status?: string;
|
|
1140
3323
|
}
|
|
1141
|
-
interface
|
|
1142
|
-
/** @maxLength (
|
|
1143
|
-
|
|
1144
|
-
/** @maxLength (
|
|
1145
|
-
|
|
1146
|
-
/** @maxLength (
|
|
1147
|
-
|
|
1148
|
-
/** @maxLength (
|
|
1149
|
-
|
|
1150
|
-
/**
|
|
1151
|
-
|
|
1152
|
-
/** @maxLength (
|
|
1153
|
-
|
|
1154
|
-
/** @maxLength (
|
|
1155
|
-
|
|
1156
|
-
/** @maxLength (
|
|
1157
|
-
|
|
3324
|
+
interface UsuarioCreateDTO {
|
|
3325
|
+
/** @maxLength (50) @nullable */
|
|
3326
|
+
usuario_nombre_usuario?: string;
|
|
3327
|
+
/** @maxLength (80) @nullable */
|
|
3328
|
+
usuario_nombre?: string;
|
|
3329
|
+
/** @maxLength (80) @nullable */
|
|
3330
|
+
usuario_apellidos?: string;
|
|
3331
|
+
/** @maxLength (100) @nullable */
|
|
3332
|
+
usuario_cargo?: string;
|
|
3333
|
+
/** @maxLength (500) @nullable */
|
|
3334
|
+
usuario_direccion?: string;
|
|
3335
|
+
/** @maxLength (100) @nullable */
|
|
3336
|
+
usuario_email?: string;
|
|
3337
|
+
/** @maxLength (2000) @nullable */
|
|
3338
|
+
usuario_password?: string;
|
|
3339
|
+
/** @maxLength (100) @nullable */
|
|
3340
|
+
usuario_url_img_perfil?: string;
|
|
3341
|
+
/** @foreignKey (grupo_usuario.grupo_usuario_id) @maxLength (4) @nullable */
|
|
3342
|
+
grupo_usuario_id?: number;
|
|
3343
|
+
/** @maxLength (8) @nullable */
|
|
3344
|
+
usuario_fecha_creacion?: string;
|
|
3345
|
+
/** @maxLength (8) @nullable */
|
|
3346
|
+
usuario_fecha_modificacion?: string;
|
|
3347
|
+
/** @maxLength (-1) @nullable */
|
|
3348
|
+
usuario_status?: string;
|
|
3349
|
+
}
|
|
3350
|
+
interface UsuarioUpdateDTO {
|
|
3351
|
+
/** @maxLength (50) @nullable @optional */
|
|
3352
|
+
usuario_nombre_usuario?: string;
|
|
3353
|
+
/** @maxLength (80) @nullable @optional */
|
|
3354
|
+
usuario_nombre?: string;
|
|
3355
|
+
/** @maxLength (80) @nullable @optional */
|
|
3356
|
+
usuario_apellidos?: string;
|
|
3357
|
+
/** @maxLength (100) @nullable @optional */
|
|
3358
|
+
usuario_cargo?: string;
|
|
3359
|
+
/** @maxLength (500) @nullable @optional */
|
|
3360
|
+
usuario_direccion?: string;
|
|
3361
|
+
/** @maxLength (100) @nullable @optional */
|
|
3362
|
+
usuario_email?: string;
|
|
3363
|
+
/** @maxLength (2000) @nullable @optional */
|
|
3364
|
+
usuario_password?: string;
|
|
3365
|
+
/** @maxLength (100) @nullable @optional */
|
|
3366
|
+
usuario_url_img_perfil?: string;
|
|
3367
|
+
/** @foreignKey (grupo_usuario.grupo_usuario_id) @maxLength (4) @nullable @optional */
|
|
3368
|
+
grupo_usuario_id?: number;
|
|
3369
|
+
/** @maxLength (8) @nullable @optional */
|
|
3370
|
+
usuario_fecha_creacion?: string;
|
|
3371
|
+
/** @maxLength (8) @nullable @optional */
|
|
3372
|
+
usuario_fecha_modificacion?: string;
|
|
3373
|
+
/** @maxLength (-1) @nullable @optional */
|
|
3374
|
+
usuario_status?: string;
|
|
1158
3375
|
}
|
|
1159
3376
|
|
|
1160
3377
|
/**
|
|
1161
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
3378
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Usuario.
|
|
1162
3379
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1163
3380
|
*/
|
|
1164
|
-
interface
|
|
3381
|
+
interface UsuarioQuery extends BaseQuery {
|
|
1165
3382
|
}
|
|
1166
3383
|
/**
|
|
1167
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
3384
|
+
* @description Parámetros explicitos para la configuración del cliente API de Usuario.
|
|
1168
3385
|
*/
|
|
1169
|
-
interface
|
|
3386
|
+
interface UsuarioParams extends APIClientParams {
|
|
1170
3387
|
}
|
|
1171
|
-
declare class
|
|
1172
|
-
constructor(params?:
|
|
1173
|
-
/**
|
|
1174
|
-
* @description Subpath para operaciones relacionadas con 'usuario'.
|
|
1175
|
-
* - Exclusivamente GET en esta implementación.
|
|
1176
|
-
*/
|
|
1177
|
-
get usuario(): {
|
|
1178
|
-
getById({ id, params }: GetByIdParams$1<DashboardRutaQuery>): Promise<DashboardRutaDTO | null>;
|
|
1179
|
-
getAll({ params }: QueryParams<DashboardRutaQuery>): Promise<PaginatedResponse<DashboardRutaDTO> | null>;
|
|
1180
|
-
get({ id, params, config, where }: GetRequestParams): Promise<axios.AxiosResponse<any, any, {}>>;
|
|
1181
|
-
query({ params }: QueryParams<DashboardRutaQuery>): Promise<PaginatedResponse<DashboardRutaDTO> | null>;
|
|
1182
|
-
endpoint: string;
|
|
1183
|
-
client: AxiosInstance;
|
|
1184
|
-
getAxiosConfig(params?: object): axios.AxiosRequestConfig;
|
|
1185
|
-
};
|
|
3388
|
+
declare class UsuarioAPI extends APICRUDClientBase<UsuarioDTO, UsuarioCreateDTO, UsuarioUpdateDTO, UsuarioQuery, UsuarioDTO> {
|
|
3389
|
+
constructor(params?: UsuarioParams);
|
|
1186
3390
|
}
|
|
1187
3391
|
|
|
1188
3392
|
interface UsuarioDashboardAccesoDTO {
|
|
@@ -1227,323 +3431,247 @@ declare class UsuarioDashboardAccesoAPI extends APICRUDClientBase<UsuarioDashboa
|
|
|
1227
3431
|
constructor(params?: UsuarioDashboardAccesoParams);
|
|
1228
3432
|
}
|
|
1229
3433
|
|
|
1230
|
-
interface
|
|
1231
|
-
/** @maxLength (4) @identity @primaryKey */
|
|
1232
|
-
dashboard_grafica_elemento_parametro_id: number;
|
|
1233
|
-
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) */
|
|
1234
|
-
dashboard_grafica_elemento_id: number;
|
|
1235
|
-
/** @foreignKey (grafica_parametro_defecto.grafica_parametro_defecto_id) @maxLength (4) */
|
|
1236
|
-
grafica_parametro_defecto_id: number;
|
|
1237
|
-
/** @maxLength (255) @nullable */
|
|
1238
|
-
valor?: string;
|
|
1239
|
-
}
|
|
1240
|
-
interface DashboardGraficaElementoParametroCreateDTO {
|
|
1241
|
-
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) */
|
|
1242
|
-
dashboard_grafica_elemento_id: number;
|
|
1243
|
-
/** @foreignKey (grafica_parametro_defecto.grafica_parametro_defecto_id) @maxLength (4) */
|
|
1244
|
-
grafica_parametro_defecto_id: number;
|
|
1245
|
-
/** @maxLength (255) @nullable */
|
|
1246
|
-
valor?: string;
|
|
1247
|
-
}
|
|
1248
|
-
interface DashboardGraficaElementoParametroUpdateDTO {
|
|
1249
|
-
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) @optional */
|
|
1250
|
-
dashboard_grafica_elemento_id?: number;
|
|
1251
|
-
/** @foreignKey (grafica_parametro_defecto.grafica_parametro_defecto_id) @maxLength (4) @optional */
|
|
1252
|
-
grafica_parametro_defecto_id?: number;
|
|
1253
|
-
/** @maxLength (255) @nullable @optional */
|
|
1254
|
-
valor?: string;
|
|
1255
|
-
}
|
|
1256
|
-
|
|
1257
|
-
/**
|
|
1258
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGraficaElementoParametro.
|
|
1259
|
-
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1260
|
-
*/
|
|
1261
|
-
interface DashboardGraficaElementoParametroQuery extends BaseQuery {
|
|
1262
|
-
}
|
|
1263
|
-
/**
|
|
1264
|
-
* @description Parámetros explicitos para la configuración del cliente API de DashboardGraficaElementoParametro.
|
|
1265
|
-
*/
|
|
1266
|
-
interface DashboardGraficaElementoParametroParams extends APIClientParams {
|
|
1267
|
-
}
|
|
1268
|
-
declare class DashboardGraficaElementoParametroAPI extends APICRUDClientBase<DashboardGraficaElementoParametroDTO, DashboardGraficaElementoParametroCreateDTO, DashboardGraficaElementoParametroUpdateDTO, DashboardGraficaElementoParametroQuery, DashboardGraficaElementoParametroDTO> {
|
|
1269
|
-
constructor(params?: DashboardGraficaElementoParametroParams);
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
|
-
interface DashboardGraficaElementoDetalleDTO {
|
|
1273
|
-
/** @maxLength (4) @identity @primaryKey */
|
|
1274
|
-
dashboard_grafica_elemento_detalle_id: number;
|
|
1275
|
-
/** @maxLength (255) @nullable */
|
|
1276
|
-
titulo?: string;
|
|
1277
|
-
/** @maxLength (4) @nullable */
|
|
1278
|
-
orden?: number;
|
|
1279
|
-
}
|
|
1280
|
-
interface DashboardGraficaElementoDetalleCreateDTO {
|
|
1281
|
-
/** @maxLength (255) @nullable */
|
|
1282
|
-
titulo?: string;
|
|
1283
|
-
/** @maxLength (4) @nullable */
|
|
1284
|
-
orden?: number;
|
|
1285
|
-
}
|
|
1286
|
-
interface DashboardGraficaElementoDetalleUpdateDTO {
|
|
1287
|
-
/** @maxLength (255) @nullable @optional */
|
|
1288
|
-
titulo?: string;
|
|
1289
|
-
/** @maxLength (4) @nullable @optional */
|
|
1290
|
-
orden?: number;
|
|
1291
|
-
}
|
|
1292
|
-
|
|
1293
|
-
/**
|
|
1294
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGraficaElementoDetalle.
|
|
1295
|
-
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1296
|
-
*/
|
|
1297
|
-
interface DashboardGraficaElementoDetalleQuery extends BaseQuery {
|
|
1298
|
-
}
|
|
1299
|
-
/**
|
|
1300
|
-
* @description Parámetros explicitos para la configuración del cliente API de DashboardGraficaElementoDetalle.
|
|
1301
|
-
*/
|
|
1302
|
-
interface DashboardGraficaElementoDetalleParams extends APIClientParams {
|
|
1303
|
-
}
|
|
1304
|
-
declare class DashboardGraficaElementoDetalleAPI extends APICRUDClientBase<DashboardGraficaElementoDetalleDTO, DashboardGraficaElementoDetalleCreateDTO, DashboardGraficaElementoDetalleUpdateDTO, DashboardGraficaElementoDetalleQuery, DashboardGraficaElementoDetalleDTO> {
|
|
1305
|
-
constructor(params?: DashboardGraficaElementoDetalleParams);
|
|
1306
|
-
}
|
|
1307
|
-
|
|
1308
|
-
interface UsuarioRolDTO {
|
|
3434
|
+
interface UsuarioGraficaDTO {
|
|
1309
3435
|
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
1310
3436
|
usuario_id: number;
|
|
1311
|
-
/** @foreignKey (
|
|
1312
|
-
|
|
1313
|
-
/** @maxLength (8) @nullable */
|
|
1314
|
-
fecha_asignacion?: string;
|
|
1315
|
-
/** @foreignKey (usuario.usuario_id) @maxLength (4) */
|
|
1316
|
-
asignado_por_usuario_id: number;
|
|
3437
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
3438
|
+
grafica_id: number;
|
|
1317
3439
|
}
|
|
1318
|
-
interface
|
|
3440
|
+
interface UsuarioGraficaCreateDTO {
|
|
1319
3441
|
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
1320
3442
|
usuario_id: number;
|
|
1321
|
-
/** @foreignKey (
|
|
1322
|
-
|
|
1323
|
-
/** @maxLength (8) @nullable */
|
|
1324
|
-
fecha_asignacion?: string;
|
|
1325
|
-
/** @foreignKey (usuario.usuario_id) @maxLength (4) */
|
|
1326
|
-
asignado_por_usuario_id: number;
|
|
3443
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
3444
|
+
grafica_id: number;
|
|
1327
3445
|
}
|
|
1328
|
-
interface
|
|
3446
|
+
interface UsuarioGraficaUpdateDTO {
|
|
1329
3447
|
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey @optional */
|
|
1330
3448
|
usuario_id?: number;
|
|
1331
|
-
/** @foreignKey (
|
|
1332
|
-
|
|
1333
|
-
/** @maxLength (8) @nullable @optional */
|
|
1334
|
-
fecha_asignacion?: string;
|
|
1335
|
-
/** @foreignKey (usuario.usuario_id) @maxLength (4) @optional */
|
|
1336
|
-
asignado_por_usuario_id?: number;
|
|
1337
|
-
}
|
|
1338
|
-
|
|
1339
|
-
/**
|
|
1340
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de UsuarioRol.
|
|
1341
|
-
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1342
|
-
*/
|
|
1343
|
-
interface UsuarioRolQuery extends BaseQuery {
|
|
1344
|
-
}
|
|
1345
|
-
/**
|
|
1346
|
-
* @description Parámetros explicitos para la configuración del cliente API de UsuarioRol.
|
|
1347
|
-
*/
|
|
1348
|
-
interface UsuarioRolParams extends APIClientParams {
|
|
1349
|
-
}
|
|
1350
|
-
declare class UsuarioRolAPI extends APICRUDClientBase<UsuarioRolDTO, UsuarioRolCreateDTO, UsuarioRolUpdateDTO, UsuarioRolQuery, UsuarioRolDTO> {
|
|
1351
|
-
constructor(params?: UsuarioRolParams);
|
|
1352
|
-
}
|
|
1353
|
-
|
|
1354
|
-
interface RolDashboardRutaDTO {
|
|
1355
|
-
/** @maxLength (4) @identity @primaryKey */
|
|
1356
|
-
rol_dashboard_ruta_id: number;
|
|
1357
|
-
/** @foreignKey (rol.rol_id) @maxLength (4) */
|
|
1358
|
-
rol_id: number;
|
|
1359
|
-
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) */
|
|
1360
|
-
dashboard_ruta_id: number;
|
|
1361
|
-
/** @maxLength (1) */
|
|
1362
|
-
es_predeterminado: boolean;
|
|
1363
|
-
}
|
|
1364
|
-
interface RolDashboardRutaCreateDTO {
|
|
1365
|
-
/** @foreignKey (rol.rol_id) @maxLength (4) */
|
|
1366
|
-
rol_id: number;
|
|
1367
|
-
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) */
|
|
1368
|
-
dashboard_ruta_id: number;
|
|
1369
|
-
/** @maxLength (1) */
|
|
1370
|
-
es_predeterminado: boolean;
|
|
1371
|
-
}
|
|
1372
|
-
interface RolDashboardRutaUpdateDTO {
|
|
1373
|
-
/** @foreignKey (rol.rol_id) @maxLength (4) @optional */
|
|
1374
|
-
rol_id?: number;
|
|
1375
|
-
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) @optional */
|
|
1376
|
-
dashboard_ruta_id?: number;
|
|
1377
|
-
/** @maxLength (1) @optional */
|
|
1378
|
-
es_predeterminado?: boolean;
|
|
3449
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey @optional */
|
|
3450
|
+
grafica_id?: number;
|
|
1379
3451
|
}
|
|
1380
3452
|
|
|
1381
3453
|
/**
|
|
1382
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
3454
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de UsuarioGrafica.
|
|
1383
3455
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1384
3456
|
*/
|
|
1385
|
-
interface
|
|
3457
|
+
interface UsuarioGraficaQuery extends BaseQuery {
|
|
1386
3458
|
}
|
|
1387
3459
|
/**
|
|
1388
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
3460
|
+
* @description Parámetros explicitos para la configuración del cliente API de UsuarioGrafica.
|
|
1389
3461
|
*/
|
|
1390
|
-
interface
|
|
3462
|
+
interface UsuarioGraficaParams extends APIClientParams {
|
|
1391
3463
|
}
|
|
1392
|
-
declare class
|
|
1393
|
-
constructor(params?:
|
|
3464
|
+
declare class UsuarioGraficaAPI extends APICRUDClientBase<UsuarioGraficaDTO, UsuarioGraficaCreateDTO, UsuarioGraficaUpdateDTO, UsuarioGraficaQuery, UsuarioGraficaDTO> {
|
|
3465
|
+
constructor(params?: UsuarioGraficaParams);
|
|
1394
3466
|
}
|
|
1395
3467
|
|
|
1396
|
-
interface
|
|
1397
|
-
/** @maxLength (4) @
|
|
1398
|
-
|
|
1399
|
-
/** @maxLength (
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
/** @maxLength (
|
|
1404
|
-
|
|
1405
|
-
/** @maxLength (
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
/** @maxLength (
|
|
1412
|
-
|
|
1413
|
-
/** @maxLength (255) @nullable */
|
|
1414
|
-
descripcion?: string;
|
|
1415
|
-
/** @maxLength (1) @nullable */
|
|
1416
|
-
requerido?: boolean;
|
|
1417
|
-
/** @maxLength (255) @nullable */
|
|
1418
|
-
valor_defecto?: string;
|
|
1419
|
-
/** @maxLength (128) */
|
|
1420
|
-
etiqueta: string;
|
|
1421
|
-
}
|
|
1422
|
-
interface GraficaParametroUpdateDTO {
|
|
1423
|
-
/** @maxLength (100) @optional */
|
|
1424
|
-
nombre?: string;
|
|
1425
|
-
/** @maxLength (255) @nullable @optional */
|
|
1426
|
-
descripcion?: string;
|
|
1427
|
-
/** @maxLength (1) @nullable @optional */
|
|
1428
|
-
requerido?: boolean;
|
|
1429
|
-
/** @maxLength (255) @nullable @optional */
|
|
1430
|
-
valor_defecto?: string;
|
|
1431
|
-
/** @maxLength (128) @optional */
|
|
1432
|
-
etiqueta?: string;
|
|
3468
|
+
interface UsuarioGraficaExcluidaDTO {
|
|
3469
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
3470
|
+
usuario_id: number;
|
|
3471
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
3472
|
+
grafica_id: number;
|
|
3473
|
+
}
|
|
3474
|
+
interface UsuarioGraficaExcluidaCreateDTO {
|
|
3475
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
3476
|
+
usuario_id: number;
|
|
3477
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
3478
|
+
grafica_id: number;
|
|
3479
|
+
}
|
|
3480
|
+
interface UsuarioGraficaExcluidaUpdateDTO {
|
|
3481
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey @optional */
|
|
3482
|
+
usuario_id?: number;
|
|
3483
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey @optional */
|
|
3484
|
+
grafica_id?: number;
|
|
1433
3485
|
}
|
|
1434
3486
|
|
|
1435
3487
|
/**
|
|
1436
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
3488
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de UsuarioGraficaExcluida.
|
|
1437
3489
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1438
3490
|
*/
|
|
1439
|
-
interface
|
|
3491
|
+
interface UsuarioGraficaExcluidaQuery extends BaseQuery {
|
|
1440
3492
|
}
|
|
1441
3493
|
/**
|
|
1442
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
3494
|
+
* @description Parámetros explicitos para la configuración del cliente API de UsuarioGraficaExcluida.
|
|
1443
3495
|
*/
|
|
1444
|
-
interface
|
|
3496
|
+
interface UsuarioGraficaExcluidaParams extends APIClientParams {
|
|
1445
3497
|
}
|
|
1446
|
-
declare class
|
|
1447
|
-
constructor(params?:
|
|
3498
|
+
declare class UsuarioGraficaExcluidaAPI extends APICRUDClientBase<UsuarioGraficaExcluidaDTO, UsuarioGraficaExcluidaCreateDTO, UsuarioGraficaExcluidaUpdateDTO, UsuarioGraficaExcluidaQuery, UsuarioGraficaExcluidaDTO> {
|
|
3499
|
+
constructor(params?: UsuarioGraficaExcluidaParams);
|
|
1448
3500
|
}
|
|
1449
3501
|
|
|
1450
|
-
interface
|
|
1451
|
-
/** @foreignKey (
|
|
1452
|
-
|
|
1453
|
-
/** @foreignKey (
|
|
1454
|
-
|
|
3502
|
+
interface UsuarioRolDTO {
|
|
3503
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
3504
|
+
usuario_id: number;
|
|
3505
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey */
|
|
3506
|
+
rol_id: number;
|
|
3507
|
+
/** @maxLength (8) @nullable */
|
|
3508
|
+
fecha_asignacion?: string;
|
|
3509
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) */
|
|
3510
|
+
asignado_por_usuario_id: number;
|
|
1455
3511
|
}
|
|
1456
|
-
interface
|
|
1457
|
-
/** @foreignKey (
|
|
1458
|
-
|
|
1459
|
-
/** @foreignKey (
|
|
1460
|
-
|
|
3512
|
+
interface UsuarioRolCreateDTO {
|
|
3513
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
3514
|
+
usuario_id: number;
|
|
3515
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey */
|
|
3516
|
+
rol_id: number;
|
|
3517
|
+
/** @maxLength (8) @nullable */
|
|
3518
|
+
fecha_asignacion?: string;
|
|
3519
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) */
|
|
3520
|
+
asignado_por_usuario_id: number;
|
|
1461
3521
|
}
|
|
1462
|
-
interface
|
|
1463
|
-
/** @foreignKey (
|
|
1464
|
-
|
|
1465
|
-
/** @foreignKey (
|
|
1466
|
-
|
|
3522
|
+
interface UsuarioRolUpdateDTO {
|
|
3523
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey @optional */
|
|
3524
|
+
usuario_id?: number;
|
|
3525
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey @optional */
|
|
3526
|
+
rol_id?: number;
|
|
3527
|
+
/** @maxLength (8) @nullable @optional */
|
|
3528
|
+
fecha_asignacion?: string;
|
|
3529
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @optional */
|
|
3530
|
+
asignado_por_usuario_id?: number;
|
|
1467
3531
|
}
|
|
1468
3532
|
|
|
1469
3533
|
/**
|
|
1470
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
3534
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de UsuarioRol.
|
|
1471
3535
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1472
3536
|
*/
|
|
1473
|
-
interface
|
|
3537
|
+
interface UsuarioRolQuery extends BaseQuery {
|
|
1474
3538
|
}
|
|
1475
3539
|
/**
|
|
1476
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
3540
|
+
* @description Parámetros explicitos para la configuración del cliente API de UsuarioRol.
|
|
1477
3541
|
*/
|
|
1478
|
-
interface
|
|
3542
|
+
interface UsuarioRolParams extends APIClientParams {
|
|
1479
3543
|
}
|
|
1480
|
-
declare class
|
|
1481
|
-
constructor(params?:
|
|
3544
|
+
declare class UsuarioRolAPI extends APICRUDClientBase<UsuarioRolDTO, UsuarioRolCreateDTO, UsuarioRolUpdateDTO, UsuarioRolQuery, UsuarioRolDTO> {
|
|
3545
|
+
constructor(params?: UsuarioRolParams);
|
|
1482
3546
|
}
|
|
1483
3547
|
|
|
1484
|
-
interface
|
|
3548
|
+
interface UsuarioRolEliminacionLogDTO {
|
|
1485
3549
|
/** @maxLength (4) @identity @primaryKey */
|
|
1486
|
-
|
|
1487
|
-
/**
|
|
1488
|
-
|
|
1489
|
-
/**
|
|
1490
|
-
|
|
3550
|
+
log_id: number;
|
|
3551
|
+
/** @maxLength (4) */
|
|
3552
|
+
usuario_id: number;
|
|
3553
|
+
/** @maxLength (4) @nullable */
|
|
3554
|
+
asignado_por_usuario_id?: number;
|
|
3555
|
+
/** @maxLength (8) */
|
|
3556
|
+
fecha_eliminacion: string;
|
|
3557
|
+
/** @maxLength (200) @nullable */
|
|
3558
|
+
eliminado_por?: string;
|
|
3559
|
+
/** @maxLength (1000) @nullable */
|
|
3560
|
+
descripcion?: string;
|
|
1491
3561
|
}
|
|
1492
|
-
interface
|
|
1493
|
-
/**
|
|
1494
|
-
|
|
1495
|
-
/**
|
|
1496
|
-
|
|
3562
|
+
interface UsuarioRolEliminacionLogCreateDTO {
|
|
3563
|
+
/** @maxLength (4) */
|
|
3564
|
+
usuario_id: number;
|
|
3565
|
+
/** @maxLength (4) @nullable */
|
|
3566
|
+
asignado_por_usuario_id?: number;
|
|
3567
|
+
/** @maxLength (8) */
|
|
3568
|
+
fecha_eliminacion: string;
|
|
3569
|
+
/** @maxLength (200) @nullable */
|
|
3570
|
+
eliminado_por?: string;
|
|
3571
|
+
/** @maxLength (1000) @nullable */
|
|
3572
|
+
descripcion?: string;
|
|
1497
3573
|
}
|
|
1498
|
-
interface
|
|
1499
|
-
/**
|
|
1500
|
-
|
|
1501
|
-
/**
|
|
1502
|
-
|
|
3574
|
+
interface UsuarioRolEliminacionLogUpdateDTO {
|
|
3575
|
+
/** @maxLength (4) @optional */
|
|
3576
|
+
usuario_id?: number;
|
|
3577
|
+
/** @maxLength (4) @nullable @optional */
|
|
3578
|
+
asignado_por_usuario_id?: number;
|
|
3579
|
+
/** @maxLength (8) @optional */
|
|
3580
|
+
fecha_eliminacion?: string;
|
|
3581
|
+
/** @maxLength (200) @nullable @optional */
|
|
3582
|
+
eliminado_por?: string;
|
|
3583
|
+
/** @maxLength (1000) @nullable @optional */
|
|
3584
|
+
descripcion?: string;
|
|
1503
3585
|
}
|
|
1504
3586
|
|
|
1505
3587
|
/**
|
|
1506
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
3588
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de UsuarioRolEliminacionLog.
|
|
1507
3589
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1508
3590
|
*/
|
|
1509
|
-
interface
|
|
3591
|
+
interface UsuarioRolEliminacionLogQuery extends BaseQuery {
|
|
1510
3592
|
}
|
|
1511
3593
|
/**
|
|
1512
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
3594
|
+
* @description Parámetros explicitos para la configuración del cliente API de UsuarioRolEliminacionLog.
|
|
1513
3595
|
*/
|
|
1514
|
-
interface
|
|
3596
|
+
interface UsuarioRolEliminacionLogParams extends APIClientParams {
|
|
1515
3597
|
}
|
|
1516
|
-
declare class
|
|
1517
|
-
constructor(params?:
|
|
3598
|
+
declare class UsuarioRolEliminacionLogAPI extends APICRUDClientBase<UsuarioRolEliminacionLogDTO, UsuarioRolEliminacionLogCreateDTO, UsuarioRolEliminacionLogUpdateDTO, UsuarioRolEliminacionLogQuery, UsuarioRolEliminacionLogDTO> {
|
|
3599
|
+
constructor(params?: UsuarioRolEliminacionLogParams);
|
|
1518
3600
|
}
|
|
1519
3601
|
|
|
1520
3602
|
declare class APIFactory {
|
|
1521
3603
|
adeudo: AdeudoAPI;
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
3604
|
+
AdeudoPagoResumenMensual: AdeudoPagoResumenMensualAPI;
|
|
3605
|
+
AdeudoResumenMensual: AdeudoResumenMensualAPI;
|
|
3606
|
+
AdeudoResumenTipoSuelo: AdeudoResumenTipoSueloAPI;
|
|
3607
|
+
AdeudoResumenTipoSueloResumen: AdeudoResumenTipoSueloResumenAPI;
|
|
3608
|
+
AdeudosPorPlazaResumen: AdeudosPorPlazaResumenAPI;
|
|
3609
|
+
AdeudoTipoSueloResumenMensual: AdeudoTipoSueloResumenMensualAPI;
|
|
3610
|
+
cat_accion: CatAccionAPI;
|
|
1526
3611
|
cat_color: CatColorAPI;
|
|
1527
3612
|
cat_color_grupo: CatColorGrupoAPI;
|
|
3613
|
+
cat_concepto_pago: CatConceptoPagoAPI;
|
|
3614
|
+
cat_entidad: CatEntidadAPI;
|
|
3615
|
+
cat_fecha_agrupacion: CatFechaAgrupacionAPI;
|
|
3616
|
+
cat_grafica_grupo: CatGraficaGrupoAPI;
|
|
3617
|
+
cat_plaza: CatPlazaAPI;
|
|
3618
|
+
cat_rol_grupo: CatRolGrupoAPI;
|
|
1528
3619
|
cat_tema: CatTemaAPI;
|
|
3620
|
+
cat_tipo_parametro: CatTipoParametroAPI;
|
|
3621
|
+
cat_tipo_servicio: CatTipoServicioAPI;
|
|
3622
|
+
cat_tipo_suelo: CatTipoSueloAPI;
|
|
3623
|
+
cat_tipo_tarifa: CatTipoTarifaAPI;
|
|
3624
|
+
contribuyente: ContribuyenteAPI;
|
|
3625
|
+
contribuyente_domicilio: ContribuyenteDomicilioAPI;
|
|
3626
|
+
CuentasConAltosMontosResumen: CuentasConAltosMontosResumenAPI;
|
|
3627
|
+
dashboard_estilo: DashboardEstiloAPI;
|
|
3628
|
+
dashboard_grafica: DashboardGraficaAPI;
|
|
3629
|
+
dashboard_grafica_elemento: DashboardGraficaElementoAPI;
|
|
3630
|
+
dashboard_grafica_elemento_detalle: DashboardGraficaElementoDetalleAPI;
|
|
3631
|
+
dashboard_grafica_elemento_estilo: DashboardGraficaElementoEstiloAPI;
|
|
3632
|
+
dashboard_grafica_elemento_parametro: DashboardGraficaElementoParametroAPI;
|
|
3633
|
+
dashboard_grafica_grupo: DashboardGraficaGrupoAPI;
|
|
3634
|
+
dashboard_grafica_grupo_estilo: DashboardGraficaGrupoEstiloAPI;
|
|
3635
|
+
dashboard_grafica_grupo_rol: DashboardGraficaGrupoRolAPI;
|
|
3636
|
+
dashboard_ruta: DashboardRutaAPI;
|
|
1529
3637
|
grafica: GraficaAPI;
|
|
3638
|
+
grafica_agrupacion: GraficaAgrupacionAPI;
|
|
1530
3639
|
grafica_color: GraficaColorAPI;
|
|
1531
3640
|
grafica_color_grupo: GraficaColorGrupoAPI;
|
|
1532
3641
|
grafica_color_grupo_asignacion: GraficaColorGrupoAsignacionAPI;
|
|
1533
3642
|
grafica_color_grupo_tipo_grafica: GraficaColorGrupoTipoGraficaAPI;
|
|
3643
|
+
grafica_filtro: GraficaFiltroAPI;
|
|
3644
|
+
grafica_parametro: GraficaParametroAPI;
|
|
3645
|
+
grafica_parametro_defecto: GraficaParametroDefectoAPI;
|
|
3646
|
+
grafica_parametro_tipo: GraficaParametroTipoAPI;
|
|
3647
|
+
grafica_por_grupo: GraficaPorGrupoAPI;
|
|
3648
|
+
grupo_usuario: GrupoUsuarioAPI;
|
|
3649
|
+
JobAuditLog: JobAuditLogAPI;
|
|
3650
|
+
modulo: ModuloAPI;
|
|
3651
|
+
pagos: PagosAPI;
|
|
3652
|
+
PagosPorColoniasResumen: PagosPorColoniasResumenAPI;
|
|
3653
|
+
PagosPorColoniasResumenMensual: PagosPorColoniasResumenMensualAPI;
|
|
3654
|
+
PagosPorTipoServicioMensual: PagosPorTipoServicioMensualAPI;
|
|
3655
|
+
PagosPorTipoServicioResumen: PagosPorTipoServicioResumenAPI;
|
|
3656
|
+
PagosPorTipoTarifaResumen: PagosPorTipoTarifaResumenAPI;
|
|
3657
|
+
PagosPorTipoTarifaResumenMensual: PagosPorTipoTarifaResumenMensualAPI;
|
|
3658
|
+
PagosResumenMensual: PagosResumenMensualAPI;
|
|
3659
|
+
permiso_accion_entidad: PermisoAccionEntidadAPI;
|
|
3660
|
+
permiso_modulo: PermisoModuloAPI;
|
|
3661
|
+
permiso_submodulo: PermisoSubmoduloAPI;
|
|
3662
|
+
plazas: PlazasAPI;
|
|
1534
3663
|
rol: RolAPI;
|
|
3664
|
+
rol_dashboard_ruta: RolDashboardRutaAPI;
|
|
3665
|
+
rol_grafica: RolGraficaAPI;
|
|
3666
|
+
submodulo: SubmoduloAPI;
|
|
3667
|
+
tipo_grafica: TipoGraficaAPI;
|
|
3668
|
+
tipo_rol: TipoRolAPI;
|
|
1535
3669
|
usuario: UsuarioAPI;
|
|
1536
|
-
cat_grafica_grupo: CatGraficaGrupoAPI;
|
|
1537
|
-
cat_rol_grupo: CatRolGrupoAPI;
|
|
1538
|
-
dashboard_ruta: DashboardRutaAPI;
|
|
1539
3670
|
usuario_dashboard_acceso: UsuarioDashboardAccesoAPI;
|
|
1540
|
-
|
|
1541
|
-
|
|
3671
|
+
usuario_grafica: UsuarioGraficaAPI;
|
|
3672
|
+
usuario_grafica_excluida: UsuarioGraficaExcluidaAPI;
|
|
1542
3673
|
usuario_rol: UsuarioRolAPI;
|
|
1543
|
-
|
|
1544
|
-
grafica_parametro: GraficaParametroAPI;
|
|
1545
|
-
grafica_parametro_tipo: GraficaParametroTipoAPI;
|
|
1546
|
-
grafica_parametro_defecto: GraficaParametroDefectoAPI;
|
|
3674
|
+
usuario_rol_eliminacion_log: UsuarioRolEliminacionLogAPI;
|
|
1547
3675
|
urlBase: string;
|
|
1548
3676
|
getTokenCallback?: () => string;
|
|
1549
3677
|
axiosInstance: AxiosInstance;
|
|
@@ -1554,82 +3682,6 @@ declare class APIFactory {
|
|
|
1554
3682
|
getAvailableAPIs(): string[];
|
|
1555
3683
|
}
|
|
1556
3684
|
|
|
1557
|
-
interface DashboardGraficaGrupoEstiloDTO {
|
|
1558
|
-
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey */
|
|
1559
|
-
dashboard_grafica_grupo_id: number;
|
|
1560
|
-
/** @foreignKey (dashboard_estilo.dashboard_estilo_id) @maxLength (4) @primaryKey */
|
|
1561
|
-
dashboard_estilo_id: number;
|
|
1562
|
-
}
|
|
1563
|
-
interface DashboardGraficaGrupoEstiloCreateDTO {
|
|
1564
|
-
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey */
|
|
1565
|
-
dashboard_grafica_grupo_id: number;
|
|
1566
|
-
/** @foreignKey (dashboard_estilo.dashboard_estilo_id) @maxLength (4) @primaryKey */
|
|
1567
|
-
dashboard_estilo_id: number;
|
|
1568
|
-
}
|
|
1569
|
-
interface DashboardGraficaGrupoEstiloUpdateDTO {
|
|
1570
|
-
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey @optional */
|
|
1571
|
-
dashboard_grafica_grupo_id?: number;
|
|
1572
|
-
/** @foreignKey (dashboard_estilo.dashboard_estilo_id) @maxLength (4) @primaryKey @optional */
|
|
1573
|
-
dashboard_estilo_id?: number;
|
|
1574
|
-
}
|
|
1575
|
-
|
|
1576
|
-
/**
|
|
1577
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGraficaGrupoEstilo.
|
|
1578
|
-
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1579
|
-
*/
|
|
1580
|
-
interface DashboardGraficaGrupoEstiloQuery extends BaseQuery {
|
|
1581
|
-
}
|
|
1582
|
-
/**
|
|
1583
|
-
* @description Parámetros explicitos para la configuración del cliente API de DashboardGraficaGrupoEstilo.
|
|
1584
|
-
*/
|
|
1585
|
-
interface DashboardGraficaGrupoEstiloParams extends APIClientParams {
|
|
1586
|
-
}
|
|
1587
|
-
declare class DashboardGraficaGrupoEstiloAPI extends APICRUDClientBase<DashboardGraficaGrupoEstiloDTO, DashboardGraficaGrupoEstiloCreateDTO, DashboardGraficaGrupoEstiloUpdateDTO, DashboardGraficaGrupoEstiloQuery, DashboardGraficaGrupoEstiloDTO> {
|
|
1588
|
-
constructor(params?: DashboardGraficaGrupoEstiloParams);
|
|
1589
|
-
}
|
|
1590
|
-
|
|
1591
|
-
interface DashboardEstiloDTO {
|
|
1592
|
-
/** @maxLength (4) @identity @primaryKey */
|
|
1593
|
-
dashboard_estilo_id: number;
|
|
1594
|
-
/** @maxLength (64) */
|
|
1595
|
-
height: string;
|
|
1596
|
-
/** @maxLength (64) */
|
|
1597
|
-
width: string;
|
|
1598
|
-
/** @maxLength (4) @nullable */
|
|
1599
|
-
flexGrow?: number;
|
|
1600
|
-
}
|
|
1601
|
-
interface DashboardEstiloCreateDTO {
|
|
1602
|
-
/** @maxLength (64) */
|
|
1603
|
-
height: string;
|
|
1604
|
-
/** @maxLength (64) */
|
|
1605
|
-
width: string;
|
|
1606
|
-
/** @maxLength (4) @nullable */
|
|
1607
|
-
flexGrow?: number;
|
|
1608
|
-
}
|
|
1609
|
-
interface DashboardEstiloUpdateDTO {
|
|
1610
|
-
/** @maxLength (64) @optional */
|
|
1611
|
-
height?: string;
|
|
1612
|
-
/** @maxLength (64) @optional */
|
|
1613
|
-
width?: string;
|
|
1614
|
-
/** @maxLength (4) @nullable @optional */
|
|
1615
|
-
flexGrow?: number;
|
|
1616
|
-
}
|
|
1617
|
-
|
|
1618
|
-
/**
|
|
1619
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardEstilo.
|
|
1620
|
-
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1621
|
-
*/
|
|
1622
|
-
interface DashboardEstiloQuery extends BaseQuery {
|
|
1623
|
-
}
|
|
1624
|
-
/**
|
|
1625
|
-
* @description Parámetros explicitos para la configuración del cliente API de DashboardEstilo.
|
|
1626
|
-
*/
|
|
1627
|
-
interface DashboardEstiloParams extends APIClientParams {
|
|
1628
|
-
}
|
|
1629
|
-
declare class DashboardEstiloAPI extends APICRUDClientBase<DashboardEstiloDTO, DashboardEstiloCreateDTO, DashboardEstiloUpdateDTO, DashboardEstiloQuery, DashboardEstiloDTO> {
|
|
1630
|
-
constructor(params?: DashboardEstiloParams);
|
|
1631
|
-
}
|
|
1632
|
-
|
|
1633
3685
|
interface GetByIdParams<TQuery extends BaseQuery> {
|
|
1634
3686
|
id: string | number;
|
|
1635
3687
|
params?: TQuery;
|
|
@@ -1848,6 +3900,18 @@ interface APIDashboardGraficaElementoDetalleReturns extends ApiHooksBaseReturns<
|
|
|
1848
3900
|
}
|
|
1849
3901
|
declare const createAPIDashboardGraficaElementoDetalle: () => APIDashboardGraficaElementoDetalleReturns;
|
|
1850
3902
|
|
|
3903
|
+
/**
|
|
3904
|
+
* @description Hooks personalizados para el modelo DashboardGraficaElementoEstilo.
|
|
3905
|
+
* @param dashboardGraficaElementoEstiloClient - Cliente para realizar operaciones con el modelo DashboardGraficaElementoEstilo.
|
|
3906
|
+
*/
|
|
3907
|
+
declare const dashboardGraficaElementoEstiloHooksCustom: (dashboardGraficaElementoEstiloClient: DashboardGraficaElementoEstiloAPI) => {};
|
|
3908
|
+
interface DashboardGraficaElementoEstiloHooksReturns extends ReturnType<typeof dashboardGraficaElementoEstiloHooksCustom> {
|
|
3909
|
+
}
|
|
3910
|
+
|
|
3911
|
+
interface APIDashboardGraficaElementoEstiloReturns extends ApiHooksBaseReturns<DashboardGraficaElementoEstiloDTO, DashboardGraficaElementoEstiloCreateDTO, DashboardGraficaElementoEstiloUpdateDTO, DashboardGraficaElementoEstiloQuery, DashboardGraficaElementoEstiloDTO>, DashboardGraficaElementoEstiloHooksReturns {
|
|
3912
|
+
}
|
|
3913
|
+
declare const createAPIDashboardGraficaElementoEstilo: () => APIDashboardGraficaElementoEstiloReturns;
|
|
3914
|
+
|
|
1851
3915
|
/**
|
|
1852
3916
|
* @description Hooks personalizados para el modelo DashboardGraficaElementoParametro.
|
|
1853
3917
|
* @param dashboardGraficaElementoParametroClient - Cliente para realizar operaciones con el modelo DashboardGraficaElementoParametro.
|
|
@@ -2671,6 +4735,66 @@ declare const useFilterMatchDashboardGraficaElementoDetalle: (params: FilterMatc
|
|
|
2671
4735
|
refetch: () => Promise<void>;
|
|
2672
4736
|
};
|
|
2673
4737
|
|
|
4738
|
+
/** @description Hook para useFetchById de la entidad dashboard_grafica_elemento_estilo */
|
|
4739
|
+
declare const useFetchByIdDashboardGraficaElementoEstilo: (params: GetByIdParams<DashboardGraficaElementoEstiloQuery>) => {
|
|
4740
|
+
data: DashboardGraficaElementoEstiloDTO | null;
|
|
4741
|
+
error: Error | null;
|
|
4742
|
+
isFetching: boolean;
|
|
4743
|
+
isLoading: boolean;
|
|
4744
|
+
refetch: () => Promise<void>;
|
|
4745
|
+
};
|
|
4746
|
+
/** @description Hook para useFetchList de la entidad dashboard_grafica_elemento_estilo */
|
|
4747
|
+
declare const useFetchListDashboardGraficaElementoEstilo: (params: QueryParams<DashboardGraficaElementoEstiloQuery>, config?: useFetchListConfig) => {
|
|
4748
|
+
data: PaginatedResponse<DashboardGraficaElementoEstiloDTO> | null;
|
|
4749
|
+
error: Error | null;
|
|
4750
|
+
isFetching: boolean;
|
|
4751
|
+
isLoading: boolean;
|
|
4752
|
+
pagination: {
|
|
4753
|
+
page?: number;
|
|
4754
|
+
limit?: number;
|
|
4755
|
+
orderBy?: string;
|
|
4756
|
+
};
|
|
4757
|
+
refetch: () => Promise<void>;
|
|
4758
|
+
fetchPage: (page: number) => Promise<void>;
|
|
4759
|
+
fetchNextPage: () => void;
|
|
4760
|
+
fetchPreviousPage: () => void;
|
|
4761
|
+
fetchLimit: (limit: number) => Promise<void>;
|
|
4762
|
+
fetchPagination: ({ page, limit, orderBy }: {
|
|
4763
|
+
page?: number;
|
|
4764
|
+
limit?: number;
|
|
4765
|
+
orderBy?: string;
|
|
4766
|
+
}) => Promise<void>;
|
|
4767
|
+
};
|
|
4768
|
+
/** @description Hook para useCreate de la entidad dashboard_grafica_elemento_estilo */
|
|
4769
|
+
declare const useCreateDashboardGraficaElementoEstilo: () => {
|
|
4770
|
+
mutate: (params: CreateParams<DashboardGraficaElementoEstiloCreateDTO, DashboardGraficaElementoEstiloQuery>) => Promise<DashboardGraficaElementoEstiloDTO | null>;
|
|
4771
|
+
isLoading: boolean;
|
|
4772
|
+
error: Error | null;
|
|
4773
|
+
data: DashboardGraficaElementoEstiloDTO | null;
|
|
4774
|
+
};
|
|
4775
|
+
/** @description Hook para useUpdate de la entidad dashboard_grafica_elemento_estilo */
|
|
4776
|
+
declare const useUpdateDashboardGraficaElementoEstilo: () => {
|
|
4777
|
+
mutate: (params: UpdateParams<DashboardGraficaElementoEstiloUpdateDTO, DashboardGraficaElementoEstiloQuery>) => Promise<DashboardGraficaElementoEstiloDTO | null>;
|
|
4778
|
+
isLoading: boolean;
|
|
4779
|
+
error: Error | null;
|
|
4780
|
+
data: DashboardGraficaElementoEstiloDTO | null;
|
|
4781
|
+
};
|
|
4782
|
+
/** @description Hook para useDelete de la entidad dashboard_grafica_elemento_estilo */
|
|
4783
|
+
declare const useDeleteDashboardGraficaElementoEstilo: () => {
|
|
4784
|
+
mutate: (params: DeleteParams<DashboardGraficaElementoEstiloQuery>) => Promise<boolean>;
|
|
4785
|
+
isLoading: boolean;
|
|
4786
|
+
error: Error | null;
|
|
4787
|
+
success: boolean;
|
|
4788
|
+
};
|
|
4789
|
+
/** @description Hook para useFilterMatch de la entidad dashboard_grafica_elemento_estilo */
|
|
4790
|
+
declare const useFilterMatchDashboardGraficaElementoEstilo: (params: FilterMatchParams<DashboardGraficaElementoEstiloQuery>) => {
|
|
4791
|
+
data: DashboardGraficaElementoEstiloDTO[] | null;
|
|
4792
|
+
error: Error | null;
|
|
4793
|
+
isFetching: boolean;
|
|
4794
|
+
isLoading: boolean;
|
|
4795
|
+
refetch: () => Promise<void>;
|
|
4796
|
+
};
|
|
4797
|
+
|
|
2674
4798
|
/** @description Hook para useFetchById de la entidad dashboard_grafica_elemento_parametro */
|
|
2675
4799
|
declare const useFetchByIdDashboardGraficaElementoParametro: (params: GetByIdParams<DashboardGraficaElementoParametroQuery>) => {
|
|
2676
4800
|
data: DashboardGraficaElementoParametroDTO | null;
|
|
@@ -3751,4 +5875,4 @@ declare const useFilterMatchUsuarioRol: (params: FilterMatchParams<UsuarioRolQue
|
|
|
3751
5875
|
refetch: () => Promise<void>;
|
|
3752
5876
|
};
|
|
3753
5877
|
|
|
3754
|
-
export { APIFactory, ApiClientContext, createAPIAdeudo, createAPICatColor, createAPICatColorGrupo, createAPICatGraficaGrupo, createAPICatRolGrupo, createAPICatTema, createAPIDashboardEstilo, createAPIDashboardGrafica, createAPIDashboardGraficaElemento, createAPIDashboardGraficaElementoDetalle, createAPIDashboardGraficaElementoParametro, createAPIDashboardGraficaGrupo, createAPIDashboardGraficaGrupoEstilo, createAPIDashboardRuta, createAPIGrafica, createAPIGraficaColor, createAPIGraficaColorGrupo, createAPIGraficaColorGrupoAsignacion, createAPIGraficaColorGrupoTipoGrafica, createAPIGraficaParametro, createAPIGraficaParametroDefecto, createAPIGraficaParametroTipo, createAPIRol, createAPIRolDashboardRuta, createAPITipoGrafica, createAPIUsuario, createAPIUsuarioDashboardAcceso, createAPIUsuarioRol, useCreateAdeudo, useCreateCatColor, useCreateCatColorGrupo, useCreateCatGraficaGrupo, useCreateCatRolGrupo, useCreateCatTema, useCreateDashboardEstilo, useCreateDashboardGrafica, useCreateDashboardGraficaElemento, useCreateDashboardGraficaElementoDetalle, useCreateDashboardGraficaElementoParametro, useCreateDashboardGraficaGrupo, useCreateDashboardGraficaGrupoEstilo, useCreateDashboardRuta, useCreateGrafica, useCreateGraficaColor, useCreateGraficaColorGrupo, useCreateGraficaColorGrupoAsignacion, useCreateGraficaColorGrupoTipoGrafica, useCreateGraficaParametro, useCreateGraficaParametroDefecto, useCreateGraficaParametroTipo, useCreateRol, useCreateRolDashboardRuta, useCreateTipoGrafica, useCreateUsuario, useCreateUsuarioDashboardAcceso, useCreateUsuarioRol, useDeleteAdeudo, useDeleteCatColor, useDeleteCatColorGrupo, useDeleteCatGraficaGrupo, useDeleteCatRolGrupo, useDeleteCatTema, useDeleteDashboardEstilo, useDeleteDashboardGrafica, useDeleteDashboardGraficaElemento, useDeleteDashboardGraficaElementoDetalle, useDeleteDashboardGraficaElementoParametro, useDeleteDashboardGraficaGrupo, useDeleteDashboardGraficaGrupoEstilo, useDeleteDashboardRuta, useDeleteGrafica, useDeleteGraficaColor, useDeleteGraficaColorGrupo, useDeleteGraficaColorGrupoAsignacion, useDeleteGraficaColorGrupoTipoGrafica, useDeleteGraficaParametro, useDeleteGraficaParametroDefecto, useDeleteGraficaParametroTipo, useDeleteRol, useDeleteRolDashboardRuta, useDeleteTipoGrafica, useDeleteUsuario, useDeleteUsuarioDashboardAcceso, useDeleteUsuarioRol, useFetchByIdAdeudo, useFetchByIdCatColor, useFetchByIdCatColorGrupo, useFetchByIdCatGraficaGrupo, useFetchByIdCatRolGrupo, useFetchByIdCatTema, useFetchByIdDashboardEstilo, useFetchByIdDashboardGrafica, useFetchByIdDashboardGraficaElemento, useFetchByIdDashboardGraficaElementoDetalle, useFetchByIdDashboardGraficaElementoParametro, useFetchByIdDashboardGraficaGrupo, useFetchByIdDashboardGraficaGrupoEstilo, useFetchByIdDashboardRuta, useFetchByIdGrafica, useFetchByIdGraficaColor, useFetchByIdGraficaColorGrupo, useFetchByIdGraficaColorGrupoAsignacion, useFetchByIdGraficaColorGrupoTipoGrafica, useFetchByIdGraficaParametro, useFetchByIdGraficaParametroDefecto, useFetchByIdGraficaParametroTipo, useFetchByIdRol, useFetchByIdRolDashboardRuta, useFetchByIdTipoGrafica, useFetchByIdUsuario, useFetchByIdUsuarioDashboardAcceso, useFetchByIdUsuarioRol, useFetchListAdeudo, useFetchListCatColor, useFetchListCatColorGrupo, useFetchListCatGraficaGrupo, useFetchListCatRolGrupo, useFetchListCatTema, useFetchListDashboardEstilo, useFetchListDashboardGrafica, useFetchListDashboardGraficaElemento, useFetchListDashboardGraficaElementoDetalle, useFetchListDashboardGraficaElementoParametro, useFetchListDashboardGraficaGrupo, useFetchListDashboardGraficaGrupoEstilo, useFetchListDashboardRuta, useFetchListGrafica, useFetchListGraficaColor, useFetchListGraficaColorGrupo, useFetchListGraficaColorGrupoAsignacion, useFetchListGraficaColorGrupoTipoGrafica, useFetchListGraficaParametro, useFetchListGraficaParametroDefecto, useFetchListGraficaParametroTipo, useFetchListRol, useFetchListRolDashboardRuta, useFetchListTipoGrafica, useFetchListUsuario, useFetchListUsuarioDashboardAcceso, useFetchListUsuarioRol, useFilterMatchAdeudo, useFilterMatchCatColor, useFilterMatchCatColorGrupo, useFilterMatchCatGraficaGrupo, useFilterMatchCatRolGrupo, useFilterMatchCatTema, useFilterMatchDashboardEstilo, useFilterMatchDashboardGrafica, useFilterMatchDashboardGraficaElemento, useFilterMatchDashboardGraficaElementoDetalle, useFilterMatchDashboardGraficaElementoParametro, useFilterMatchDashboardGraficaGrupo, useFilterMatchDashboardGraficaGrupoEstilo, useFilterMatchDashboardRuta, useFilterMatchGrafica, useFilterMatchGraficaColor, useFilterMatchGraficaColorGrupo, useFilterMatchGraficaColorGrupoAsignacion, useFilterMatchGraficaColorGrupoTipoGrafica, useFilterMatchGraficaParametro, useFilterMatchGraficaParametroDefecto, useFilterMatchGraficaParametroTipo, useFilterMatchRol, useFilterMatchRolDashboardRuta, useFilterMatchTipoGrafica, useFilterMatchUsuario, useFilterMatchUsuarioDashboardAcceso, useFilterMatchUsuarioRol, useGetTreeDashboardGraficaElemento, useUpdateAdeudo, useUpdateCatColor, useUpdateCatColorGrupo, useUpdateCatGraficaGrupo, useUpdateCatRolGrupo, useUpdateCatTema, useUpdateDashboardEstilo, useUpdateDashboardGrafica, useUpdateDashboardGraficaElemento, useUpdateDashboardGraficaElementoDetalle, useUpdateDashboardGraficaElementoParametro, useUpdateDashboardGraficaGrupo, useUpdateDashboardGraficaGrupoEstilo, useUpdateDashboardRuta, useUpdateGrafica, useUpdateGraficaColor, useUpdateGraficaColorGrupo, useUpdateGraficaColorGrupoAsignacion, useUpdateGraficaColorGrupoTipoGrafica, useUpdateGraficaParametro, useUpdateGraficaParametroDefecto, useUpdateGraficaParametroTipo, useUpdateRol, useUpdateRolDashboardRuta, useUpdateTipoGrafica, useUpdateUsuario, useUpdateUsuarioDashboardAcceso, useUpdateUsuarioRol };
|
|
5878
|
+
export { APIFactory, ApiClientContext, createAPIAdeudo, createAPICatColor, createAPICatColorGrupo, createAPICatGraficaGrupo, createAPICatRolGrupo, createAPICatTema, createAPIDashboardEstilo, createAPIDashboardGrafica, createAPIDashboardGraficaElemento, createAPIDashboardGraficaElementoDetalle, createAPIDashboardGraficaElementoEstilo, createAPIDashboardGraficaElementoParametro, createAPIDashboardGraficaGrupo, createAPIDashboardGraficaGrupoEstilo, createAPIDashboardRuta, createAPIGrafica, createAPIGraficaColor, createAPIGraficaColorGrupo, createAPIGraficaColorGrupoAsignacion, createAPIGraficaColorGrupoTipoGrafica, createAPIGraficaParametro, createAPIGraficaParametroDefecto, createAPIGraficaParametroTipo, createAPIRol, createAPIRolDashboardRuta, createAPITipoGrafica, createAPIUsuario, createAPIUsuarioDashboardAcceso, createAPIUsuarioRol, useCreateAdeudo, useCreateCatColor, useCreateCatColorGrupo, useCreateCatGraficaGrupo, useCreateCatRolGrupo, useCreateCatTema, useCreateDashboardEstilo, useCreateDashboardGrafica, useCreateDashboardGraficaElemento, useCreateDashboardGraficaElementoDetalle, useCreateDashboardGraficaElementoEstilo, useCreateDashboardGraficaElementoParametro, useCreateDashboardGraficaGrupo, useCreateDashboardGraficaGrupoEstilo, useCreateDashboardRuta, useCreateGrafica, useCreateGraficaColor, useCreateGraficaColorGrupo, useCreateGraficaColorGrupoAsignacion, useCreateGraficaColorGrupoTipoGrafica, useCreateGraficaParametro, useCreateGraficaParametroDefecto, useCreateGraficaParametroTipo, useCreateRol, useCreateRolDashboardRuta, useCreateTipoGrafica, useCreateUsuario, useCreateUsuarioDashboardAcceso, useCreateUsuarioRol, useDeleteAdeudo, useDeleteCatColor, useDeleteCatColorGrupo, useDeleteCatGraficaGrupo, useDeleteCatRolGrupo, useDeleteCatTema, useDeleteDashboardEstilo, useDeleteDashboardGrafica, useDeleteDashboardGraficaElemento, useDeleteDashboardGraficaElementoDetalle, useDeleteDashboardGraficaElementoEstilo, useDeleteDashboardGraficaElementoParametro, useDeleteDashboardGraficaGrupo, useDeleteDashboardGraficaGrupoEstilo, useDeleteDashboardRuta, useDeleteGrafica, useDeleteGraficaColor, useDeleteGraficaColorGrupo, useDeleteGraficaColorGrupoAsignacion, useDeleteGraficaColorGrupoTipoGrafica, useDeleteGraficaParametro, useDeleteGraficaParametroDefecto, useDeleteGraficaParametroTipo, useDeleteRol, useDeleteRolDashboardRuta, useDeleteTipoGrafica, useDeleteUsuario, useDeleteUsuarioDashboardAcceso, useDeleteUsuarioRol, useFetchByIdAdeudo, useFetchByIdCatColor, useFetchByIdCatColorGrupo, useFetchByIdCatGraficaGrupo, useFetchByIdCatRolGrupo, useFetchByIdCatTema, useFetchByIdDashboardEstilo, useFetchByIdDashboardGrafica, useFetchByIdDashboardGraficaElemento, useFetchByIdDashboardGraficaElementoDetalle, useFetchByIdDashboardGraficaElementoEstilo, useFetchByIdDashboardGraficaElementoParametro, useFetchByIdDashboardGraficaGrupo, useFetchByIdDashboardGraficaGrupoEstilo, useFetchByIdDashboardRuta, useFetchByIdGrafica, useFetchByIdGraficaColor, useFetchByIdGraficaColorGrupo, useFetchByIdGraficaColorGrupoAsignacion, useFetchByIdGraficaColorGrupoTipoGrafica, useFetchByIdGraficaParametro, useFetchByIdGraficaParametroDefecto, useFetchByIdGraficaParametroTipo, useFetchByIdRol, useFetchByIdRolDashboardRuta, useFetchByIdTipoGrafica, useFetchByIdUsuario, useFetchByIdUsuarioDashboardAcceso, useFetchByIdUsuarioRol, useFetchListAdeudo, useFetchListCatColor, useFetchListCatColorGrupo, useFetchListCatGraficaGrupo, useFetchListCatRolGrupo, useFetchListCatTema, useFetchListDashboardEstilo, useFetchListDashboardGrafica, useFetchListDashboardGraficaElemento, useFetchListDashboardGraficaElementoDetalle, useFetchListDashboardGraficaElementoEstilo, useFetchListDashboardGraficaElementoParametro, useFetchListDashboardGraficaGrupo, useFetchListDashboardGraficaGrupoEstilo, useFetchListDashboardRuta, useFetchListGrafica, useFetchListGraficaColor, useFetchListGraficaColorGrupo, useFetchListGraficaColorGrupoAsignacion, useFetchListGraficaColorGrupoTipoGrafica, useFetchListGraficaParametro, useFetchListGraficaParametroDefecto, useFetchListGraficaParametroTipo, useFetchListRol, useFetchListRolDashboardRuta, useFetchListTipoGrafica, useFetchListUsuario, useFetchListUsuarioDashboardAcceso, useFetchListUsuarioRol, useFilterMatchAdeudo, useFilterMatchCatColor, useFilterMatchCatColorGrupo, useFilterMatchCatGraficaGrupo, useFilterMatchCatRolGrupo, useFilterMatchCatTema, useFilterMatchDashboardEstilo, useFilterMatchDashboardGrafica, useFilterMatchDashboardGraficaElemento, useFilterMatchDashboardGraficaElementoDetalle, useFilterMatchDashboardGraficaElementoEstilo, useFilterMatchDashboardGraficaElementoParametro, useFilterMatchDashboardGraficaGrupo, useFilterMatchDashboardGraficaGrupoEstilo, useFilterMatchDashboardRuta, useFilterMatchGrafica, useFilterMatchGraficaColor, useFilterMatchGraficaColorGrupo, useFilterMatchGraficaColorGrupoAsignacion, useFilterMatchGraficaColorGrupoTipoGrafica, useFilterMatchGraficaParametro, useFilterMatchGraficaParametroDefecto, useFilterMatchGraficaParametroTipo, useFilterMatchRol, useFilterMatchRolDashboardRuta, useFilterMatchTipoGrafica, useFilterMatchUsuario, useFilterMatchUsuarioDashboardAcceso, useFilterMatchUsuarioRol, useGetTreeDashboardGraficaElemento, useUpdateAdeudo, useUpdateCatColor, useUpdateCatColorGrupo, useUpdateCatGraficaGrupo, useUpdateCatRolGrupo, useUpdateCatTema, useUpdateDashboardEstilo, useUpdateDashboardGrafica, useUpdateDashboardGraficaElemento, useUpdateDashboardGraficaElementoDetalle, useUpdateDashboardGraficaElementoEstilo, useUpdateDashboardGraficaElementoParametro, useUpdateDashboardGraficaGrupo, useUpdateDashboardGraficaGrupoEstilo, useUpdateDashboardRuta, useUpdateGrafica, useUpdateGraficaColor, useUpdateGraficaColorGrupo, useUpdateGraficaColorGrupoAsignacion, useUpdateGraficaColorGrupoTipoGrafica, useUpdateGraficaParametro, useUpdateGraficaParametroDefecto, useUpdateGraficaParametroTipo, useUpdateRol, useUpdateRolDashboardRuta, useUpdateTipoGrafica, useUpdateUsuario, useUpdateUsuarioDashboardAcceso, useUpdateUsuarioRol };
|