@erpp/react-api-cronos-frontend 1.0.26 → 1.0.28
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 +3191 -995
- package/dist/index.d.ts +3191 -995
- 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,731 +206,3091 @@ declare class AdeudoAPI extends APICRUDClientBase<AdeudoDTO, AdeudoCreateDTO, Ad
|
|
|
206
206
|
constructor(params?: AdeudoParams);
|
|
207
207
|
}
|
|
208
208
|
|
|
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;
|
|
222
|
+
}
|
|
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;
|
|
236
|
+
}
|
|
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;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de AdeudoPagoResumenMensual.
|
|
254
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
255
|
+
*/
|
|
256
|
+
interface AdeudoPagoResumenMensualQuery extends BaseQuery {
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* @description Parámetros explicitos para la configuración del cliente API de AdeudoPagoResumenMensual.
|
|
260
|
+
*/
|
|
261
|
+
interface AdeudoPagoResumenMensualParams extends APIClientParams {
|
|
262
|
+
}
|
|
263
|
+
declare class AdeudoPagoResumenMensualAPI extends APICRUDClientBase<AdeudoPagoResumenMensualDTO, AdeudoPagoResumenMensualCreateDTO, AdeudoPagoResumenMensualUpdateDTO, AdeudoPagoResumenMensualQuery, AdeudoPagoResumenMensualDTO> {
|
|
264
|
+
constructor(params?: AdeudoPagoResumenMensualParams);
|
|
265
|
+
}
|
|
266
|
+
|
|
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;
|
|
274
|
+
}
|
|
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;
|
|
282
|
+
}
|
|
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;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
/**
|
|
293
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de AdeudoResumenMensual.
|
|
294
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
295
|
+
*/
|
|
296
|
+
interface AdeudoResumenMensualQuery extends BaseQuery {
|
|
297
|
+
}
|
|
298
|
+
/**
|
|
299
|
+
* @description Parámetros explicitos para la configuración del cliente API de AdeudoResumenMensual.
|
|
300
|
+
*/
|
|
301
|
+
interface AdeudoResumenMensualParams extends APIClientParams {
|
|
302
|
+
}
|
|
303
|
+
declare class AdeudoResumenMensualAPI extends APICRUDClientBase<AdeudoResumenMensualDTO, AdeudoResumenMensualCreateDTO, AdeudoResumenMensualUpdateDTO, AdeudoResumenMensualQuery, AdeudoResumenMensualDTO> {
|
|
304
|
+
constructor(params?: AdeudoResumenMensualParams);
|
|
305
|
+
}
|
|
306
|
+
|
|
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;
|
|
314
|
+
}
|
|
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;
|
|
322
|
+
}
|
|
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;
|
|
330
|
+
}
|
|
331
|
+
|
|
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 {
|
|
337
|
+
}
|
|
338
|
+
/**
|
|
339
|
+
* @description Parámetros explicitos para la configuración del cliente API de AdeudoResumenTipoSuelo.
|
|
340
|
+
*/
|
|
341
|
+
interface AdeudoResumenTipoSueloParams extends APIClientParams {
|
|
342
|
+
}
|
|
343
|
+
declare class AdeudoResumenTipoSueloAPI extends APICRUDClientBase<AdeudoResumenTipoSueloDTO, AdeudoResumenTipoSueloCreateDTO, AdeudoResumenTipoSueloUpdateDTO, AdeudoResumenTipoSueloQuery, AdeudoResumenTipoSueloDTO> {
|
|
344
|
+
constructor(params?: AdeudoResumenTipoSueloParams);
|
|
345
|
+
}
|
|
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;
|
|
356
|
+
}
|
|
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;
|
|
366
|
+
}
|
|
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;
|
|
376
|
+
}
|
|
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 {
|
|
383
|
+
}
|
|
384
|
+
/**
|
|
385
|
+
* @description Parámetros explicitos para la configuración del cliente API de AdeudoResumenTipoSueloResumen.
|
|
386
|
+
*/
|
|
387
|
+
interface AdeudoResumenTipoSueloResumenParams extends APIClientParams {
|
|
388
|
+
}
|
|
389
|
+
declare class AdeudoResumenTipoSueloResumenAPI extends APICRUDClientBase<AdeudoResumenTipoSueloResumenDTO, AdeudoResumenTipoSueloResumenCreateDTO, AdeudoResumenTipoSueloResumenUpdateDTO, AdeudoResumenTipoSueloResumenQuery, AdeudoResumenTipoSueloResumenDTO> {
|
|
390
|
+
constructor(params?: AdeudoResumenTipoSueloResumenParams);
|
|
391
|
+
}
|
|
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;
|
|
410
|
+
}
|
|
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;
|
|
428
|
+
}
|
|
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;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
/**
|
|
449
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de AdeudosPorPlazaResumen.
|
|
450
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
451
|
+
*/
|
|
452
|
+
interface AdeudosPorPlazaResumenQuery extends BaseQuery {
|
|
453
|
+
}
|
|
454
|
+
/**
|
|
455
|
+
* @description Parámetros explicitos para la configuración del cliente API de AdeudosPorPlazaResumen.
|
|
456
|
+
*/
|
|
457
|
+
interface AdeudosPorPlazaResumenParams extends APIClientParams {
|
|
458
|
+
}
|
|
459
|
+
declare class AdeudosPorPlazaResumenAPI extends APICRUDClientBase<AdeudosPorPlazaResumenDTO, AdeudosPorPlazaResumenCreateDTO, AdeudosPorPlazaResumenUpdateDTO, AdeudosPorPlazaResumenQuery, AdeudosPorPlazaResumenDTO> {
|
|
460
|
+
constructor(params?: AdeudosPorPlazaResumenParams);
|
|
461
|
+
}
|
|
462
|
+
|
|
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;
|
|
472
|
+
}
|
|
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;
|
|
482
|
+
}
|
|
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;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
/**
|
|
495
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de AdeudoTipoSueloResumenMensual.
|
|
496
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
497
|
+
*/
|
|
498
|
+
interface AdeudoTipoSueloResumenMensualQuery extends BaseQuery {
|
|
499
|
+
}
|
|
500
|
+
/**
|
|
501
|
+
* @description Parámetros explicitos para la configuración del cliente API de AdeudoTipoSueloResumenMensual.
|
|
502
|
+
*/
|
|
503
|
+
interface AdeudoTipoSueloResumenMensualParams extends APIClientParams {
|
|
504
|
+
}
|
|
505
|
+
declare class AdeudoTipoSueloResumenMensualAPI extends APICRUDClientBase<AdeudoTipoSueloResumenMensualDTO, AdeudoTipoSueloResumenMensualCreateDTO, AdeudoTipoSueloResumenMensualUpdateDTO, AdeudoTipoSueloResumenMensualQuery, AdeudoTipoSueloResumenMensualDTO> {
|
|
506
|
+
constructor(params?: AdeudoTipoSueloResumenMensualParams);
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
interface CatAccionDTO {
|
|
510
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
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
|
+
}
|
|
559
|
+
interface CatColorCreateDTO {
|
|
560
|
+
/** @maxLength (100) */
|
|
561
|
+
nombre_color: string;
|
|
562
|
+
/** @maxLength (32) */
|
|
563
|
+
valor_hex: string;
|
|
564
|
+
/** @maxLength (255) @nullable */
|
|
565
|
+
descripcion?: string;
|
|
566
|
+
/** @maxLength (8) @nullable */
|
|
567
|
+
fecha_creacion?: string;
|
|
568
|
+
/** @maxLength (8) @nullable */
|
|
569
|
+
fecha_actualizacion?: string;
|
|
570
|
+
}
|
|
571
|
+
interface CatColorUpdateDTO {
|
|
572
|
+
/** @maxLength (100) @optional */
|
|
573
|
+
nombre_color?: string;
|
|
574
|
+
/** @maxLength (32) @optional */
|
|
575
|
+
valor_hex?: string;
|
|
576
|
+
/** @maxLength (255) @nullable @optional */
|
|
577
|
+
descripcion?: string;
|
|
578
|
+
/** @maxLength (8) @nullable @optional */
|
|
579
|
+
fecha_creacion?: string;
|
|
580
|
+
/** @maxLength (8) @nullable @optional */
|
|
581
|
+
fecha_actualizacion?: string;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatColor.
|
|
586
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
587
|
+
*/
|
|
588
|
+
interface CatColorQuery extends BaseQuery {
|
|
589
|
+
}
|
|
590
|
+
/**
|
|
591
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatColor.
|
|
592
|
+
*/
|
|
593
|
+
interface CatColorParams extends APIClientParams {
|
|
594
|
+
}
|
|
595
|
+
declare class CatColorAPI extends APICRUDClientBase<CatColorDTO, CatColorCreateDTO, CatColorUpdateDTO, CatColorQuery, CatColorDTO> {
|
|
596
|
+
constructor(params?: CatColorParams);
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
interface CatColorGrupoDTO {
|
|
600
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
601
|
+
color_grupo_id: number;
|
|
602
|
+
/** @maxLength (100) */
|
|
603
|
+
nombre_grupo: string;
|
|
604
|
+
/** @maxLength (255) @nullable */
|
|
605
|
+
descripcion?: string;
|
|
606
|
+
/** @maxLength (8) @nullable */
|
|
607
|
+
fecha_creacion?: string;
|
|
608
|
+
/** @maxLength (8) @nullable */
|
|
609
|
+
fecha_actualizacion?: string;
|
|
610
|
+
}
|
|
611
|
+
interface CatColorGrupoCreateDTO {
|
|
612
|
+
/** @maxLength (100) */
|
|
613
|
+
nombre_grupo: string;
|
|
614
|
+
/** @maxLength (255) @nullable */
|
|
615
|
+
descripcion?: string;
|
|
616
|
+
/** @maxLength (8) @nullable */
|
|
617
|
+
fecha_creacion?: string;
|
|
618
|
+
/** @maxLength (8) @nullable */
|
|
619
|
+
fecha_actualizacion?: string;
|
|
620
|
+
}
|
|
621
|
+
interface CatColorGrupoUpdateDTO {
|
|
622
|
+
/** @maxLength (100) @optional */
|
|
623
|
+
nombre_grupo?: string;
|
|
624
|
+
/** @maxLength (255) @nullable @optional */
|
|
625
|
+
descripcion?: string;
|
|
626
|
+
/** @maxLength (8) @nullable @optional */
|
|
627
|
+
fecha_creacion?: string;
|
|
628
|
+
/** @maxLength (8) @nullable @optional */
|
|
629
|
+
fecha_actualizacion?: string;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
/**
|
|
633
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatColorGrupo.
|
|
634
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
635
|
+
*/
|
|
636
|
+
interface CatColorGrupoQuery extends BaseQuery {
|
|
637
|
+
}
|
|
638
|
+
/**
|
|
639
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatColorGrupo.
|
|
640
|
+
*/
|
|
641
|
+
interface CatColorGrupoParams extends APIClientParams {
|
|
642
|
+
}
|
|
643
|
+
declare class CatColorGrupoAPI extends APICRUDClientBase<CatColorGrupoDTO, CatColorGrupoCreateDTO, CatColorGrupoUpdateDTO, CatColorGrupoQuery, CatColorGrupoDTO> {
|
|
644
|
+
constructor(params?: CatColorGrupoParams);
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
interface CatConceptoPagoDTO {
|
|
648
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
649
|
+
id: number;
|
|
650
|
+
/** @maxLength (100) */
|
|
651
|
+
nombre: string;
|
|
652
|
+
/** @maxLength (255) @nullable */
|
|
653
|
+
descripcion?: string;
|
|
654
|
+
}
|
|
655
|
+
interface CatConceptoPagoCreateDTO {
|
|
656
|
+
/** @maxLength (100) */
|
|
657
|
+
nombre: string;
|
|
658
|
+
/** @maxLength (255) @nullable */
|
|
659
|
+
descripcion?: string;
|
|
660
|
+
}
|
|
661
|
+
interface CatConceptoPagoUpdateDTO {
|
|
662
|
+
/** @maxLength (100) @optional */
|
|
663
|
+
nombre?: string;
|
|
664
|
+
/** @maxLength (255) @nullable @optional */
|
|
665
|
+
descripcion?: string;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
/**
|
|
669
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatConceptoPago.
|
|
670
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
671
|
+
*/
|
|
672
|
+
interface CatConceptoPagoQuery extends BaseQuery {
|
|
673
|
+
}
|
|
674
|
+
/**
|
|
675
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatConceptoPago.
|
|
676
|
+
*/
|
|
677
|
+
interface CatConceptoPagoParams extends APIClientParams {
|
|
678
|
+
}
|
|
679
|
+
declare class CatConceptoPagoAPI extends APICRUDClientBase<CatConceptoPagoDTO, CatConceptoPagoCreateDTO, CatConceptoPagoUpdateDTO, CatConceptoPagoQuery, CatConceptoPagoDTO> {
|
|
680
|
+
constructor(params?: CatConceptoPagoParams);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
interface CatEntidadDTO {
|
|
684
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
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;
|
|
758
|
+
/** @maxLength (200) */
|
|
759
|
+
nombre: string;
|
|
760
|
+
/** @maxLength (510) @nullable */
|
|
761
|
+
descripcion?: string;
|
|
762
|
+
}
|
|
763
|
+
interface CatGraficaGrupoCreateDTO {
|
|
764
|
+
/** @maxLength (200) */
|
|
765
|
+
nombre: string;
|
|
766
|
+
/** @maxLength (510) @nullable */
|
|
767
|
+
descripcion?: string;
|
|
768
|
+
}
|
|
769
|
+
interface CatGraficaGrupoUpdateDTO {
|
|
770
|
+
/** @maxLength (200) @optional */
|
|
771
|
+
nombre?: string;
|
|
772
|
+
/** @maxLength (510) @nullable @optional */
|
|
773
|
+
descripcion?: string;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
/**
|
|
777
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatGraficaGrupo.
|
|
778
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
779
|
+
*/
|
|
780
|
+
interface CatGraficaGrupoQuery extends BaseQuery {
|
|
781
|
+
}
|
|
782
|
+
/**
|
|
783
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatGraficaGrupo.
|
|
784
|
+
*/
|
|
785
|
+
interface CatGraficaGrupoParams extends APIClientParams {
|
|
786
|
+
}
|
|
787
|
+
declare class CatGraficaGrupoAPI extends APICRUDClientBase<CatGraficaGrupoDTO, CatGraficaGrupoCreateDTO, CatGraficaGrupoUpdateDTO, CatGraficaGrupoQuery, CatGraficaGrupoDTO> {
|
|
788
|
+
constructor(params?: CatGraficaGrupoParams);
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
interface CatPlazaDTO {
|
|
792
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
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;
|
|
882
|
+
/** @maxLength (8) @nullable */
|
|
883
|
+
fecha_creacion?: string;
|
|
884
|
+
/** @maxLength (8) @nullable */
|
|
885
|
+
fecha_actualizacion?: string;
|
|
886
|
+
}
|
|
887
|
+
interface CatTemaCreateDTO {
|
|
888
|
+
/** @maxLength (100) */
|
|
889
|
+
nombre_tema: string;
|
|
890
|
+
/** @maxLength (255) @nullable */
|
|
891
|
+
descripcion?: string;
|
|
892
|
+
/** @maxLength (8) @nullable */
|
|
893
|
+
fecha_creacion?: string;
|
|
894
|
+
/** @maxLength (8) @nullable */
|
|
895
|
+
fecha_actualizacion?: string;
|
|
896
|
+
}
|
|
897
|
+
interface CatTemaUpdateDTO {
|
|
898
|
+
/** @maxLength (100) @optional */
|
|
899
|
+
nombre_tema?: string;
|
|
900
|
+
/** @maxLength (255) @nullable @optional */
|
|
901
|
+
descripcion?: string;
|
|
902
|
+
/** @maxLength (8) @nullable @optional */
|
|
903
|
+
fecha_creacion?: string;
|
|
904
|
+
/** @maxLength (8) @nullable @optional */
|
|
905
|
+
fecha_actualizacion?: string;
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
/**
|
|
909
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatTema.
|
|
910
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
911
|
+
*/
|
|
912
|
+
interface CatTemaQuery extends BaseQuery {
|
|
913
|
+
}
|
|
914
|
+
/**
|
|
915
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatTema.
|
|
916
|
+
*/
|
|
917
|
+
interface CatTemaParams extends APIClientParams {
|
|
918
|
+
}
|
|
919
|
+
declare class CatTemaAPI extends APICRUDClientBase<CatTemaDTO, CatTemaCreateDTO, CatTemaUpdateDTO, CatTemaQuery, CatTemaDTO> {
|
|
920
|
+
constructor(params?: CatTemaParams);
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
interface CatTipoParametroDTO {
|
|
924
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
925
|
+
cat_tipo_parametro_id: number;
|
|
926
|
+
/** @maxLength (100) */
|
|
927
|
+
nombre: string;
|
|
928
|
+
/** @maxLength (255) @nullable */
|
|
929
|
+
descripcion?: string;
|
|
930
|
+
}
|
|
931
|
+
interface CatTipoParametroCreateDTO {
|
|
932
|
+
/** @maxLength (100) */
|
|
933
|
+
nombre: string;
|
|
934
|
+
/** @maxLength (255) @nullable */
|
|
935
|
+
descripcion?: string;
|
|
936
|
+
}
|
|
937
|
+
interface CatTipoParametroUpdateDTO {
|
|
938
|
+
/** @maxLength (100) @optional */
|
|
939
|
+
nombre?: string;
|
|
940
|
+
/** @maxLength (255) @nullable @optional */
|
|
941
|
+
descripcion?: string;
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
/**
|
|
945
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatTipoParametro.
|
|
946
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
947
|
+
*/
|
|
948
|
+
interface CatTipoParametroQuery extends BaseQuery {
|
|
949
|
+
}
|
|
950
|
+
/**
|
|
951
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatTipoParametro.
|
|
952
|
+
*/
|
|
953
|
+
interface CatTipoParametroParams extends APIClientParams {
|
|
954
|
+
}
|
|
955
|
+
declare class CatTipoParametroAPI extends APICRUDClientBase<CatTipoParametroDTO, CatTipoParametroCreateDTO, CatTipoParametroUpdateDTO, CatTipoParametroQuery, CatTipoParametroDTO> {
|
|
956
|
+
constructor(params?: CatTipoParametroParams);
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
interface CatTipoServicioDTO {
|
|
960
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
961
|
+
tipo_servicio_id: number;
|
|
962
|
+
/** @maxLength (100) */
|
|
963
|
+
tipo_servicio: string;
|
|
964
|
+
}
|
|
965
|
+
interface CatTipoServicioCreateDTO {
|
|
966
|
+
/** @maxLength (100) */
|
|
967
|
+
tipo_servicio: string;
|
|
968
|
+
}
|
|
969
|
+
interface CatTipoServicioUpdateDTO {
|
|
970
|
+
/** @maxLength (100) @optional */
|
|
971
|
+
tipo_servicio?: string;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
/**
|
|
975
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatTipoServicio.
|
|
976
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
977
|
+
*/
|
|
978
|
+
interface CatTipoServicioQuery extends BaseQuery {
|
|
979
|
+
}
|
|
980
|
+
/**
|
|
981
|
+
* @description Parámetros explicitos para la configuración del cliente API de CatTipoServicio.
|
|
982
|
+
*/
|
|
983
|
+
interface CatTipoServicioParams extends APIClientParams {
|
|
984
|
+
}
|
|
985
|
+
declare class CatTipoServicioAPI extends APICRUDClientBase<CatTipoServicioDTO, CatTipoServicioCreateDTO, CatTipoServicioUpdateDTO, CatTipoServicioQuery, CatTipoServicioDTO> {
|
|
986
|
+
constructor(params?: CatTipoServicioParams);
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
interface CatTipoSueloDTO {
|
|
990
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
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;
|
|
1184
|
+
/** @maxLength (8) @nullable */
|
|
1185
|
+
fecha_actualizacion?: string;
|
|
1186
|
+
}
|
|
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;
|
|
1196
|
+
/** @maxLength (8) @nullable */
|
|
1197
|
+
fecha_actualizacion?: string;
|
|
1198
|
+
}
|
|
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;
|
|
1208
|
+
/** @maxLength (8) @nullable @optional */
|
|
1209
|
+
fecha_actualizacion?: string;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
/**
|
|
1213
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CuentasConAltosMontosResumen.
|
|
1214
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1215
|
+
*/
|
|
1216
|
+
interface CuentasConAltosMontosResumenQuery extends BaseQuery {
|
|
1217
|
+
}
|
|
1218
|
+
/**
|
|
1219
|
+
* @description Parámetros explicitos para la configuración del cliente API de CuentasConAltosMontosResumen.
|
|
1220
|
+
*/
|
|
1221
|
+
interface CuentasConAltosMontosResumenParams extends APIClientParams {
|
|
1222
|
+
}
|
|
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
|
+
|
|
209
1556
|
interface DashboardGraficaGrupoDTO {
|
|
210
1557
|
/** @maxLength (4) @identity @primaryKey */
|
|
211
|
-
dashboard_grafica_grupo_id: number;
|
|
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;
|
|
212
2339
|
/** @maxLength (100) @nullable */
|
|
213
|
-
|
|
2340
|
+
status?: string;
|
|
2341
|
+
/** @maxLength (-1) @nullable */
|
|
2342
|
+
mensaje?: string;
|
|
214
2343
|
}
|
|
215
|
-
interface
|
|
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;
|
|
216
2353
|
/** @maxLength (100) @nullable */
|
|
217
|
-
|
|
2354
|
+
status?: string;
|
|
2355
|
+
/** @maxLength (-1) @nullable */
|
|
2356
|
+
mensaje?: string;
|
|
218
2357
|
}
|
|
219
|
-
interface
|
|
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;
|
|
220
2367
|
/** @maxLength (100) @nullable @optional */
|
|
221
|
-
|
|
2368
|
+
status?: string;
|
|
2369
|
+
/** @maxLength (-1) @nullable @optional */
|
|
2370
|
+
mensaje?: string;
|
|
222
2371
|
}
|
|
223
2372
|
|
|
224
2373
|
/**
|
|
225
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
2374
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de JobAuditLog.
|
|
226
2375
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
227
2376
|
*/
|
|
228
|
-
interface
|
|
2377
|
+
interface JobAuditLogQuery extends BaseQuery {
|
|
229
2378
|
}
|
|
230
2379
|
/**
|
|
231
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
2380
|
+
* @description Parámetros explicitos para la configuración del cliente API de JobAuditLog.
|
|
232
2381
|
*/
|
|
233
|
-
interface
|
|
2382
|
+
interface JobAuditLogParams extends APIClientParams {
|
|
234
2383
|
}
|
|
235
|
-
declare class
|
|
236
|
-
constructor(params?:
|
|
2384
|
+
declare class JobAuditLogAPI extends APICRUDClientBase<JobAuditLogDTO, JobAuditLogCreateDTO, JobAuditLogUpdateDTO, JobAuditLogQuery, JobAuditLogDTO> {
|
|
2385
|
+
constructor(params?: JobAuditLogParams);
|
|
237
2386
|
}
|
|
238
2387
|
|
|
239
|
-
interface
|
|
240
|
-
/**
|
|
241
|
-
|
|
242
|
-
/**
|
|
243
|
-
|
|
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;
|
|
244
2401
|
}
|
|
245
|
-
interface
|
|
246
|
-
/**
|
|
247
|
-
|
|
248
|
-
/**
|
|
249
|
-
|
|
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;
|
|
250
2413
|
}
|
|
251
|
-
interface
|
|
252
|
-
/**
|
|
253
|
-
|
|
254
|
-
/**
|
|
255
|
-
|
|
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;
|
|
256
2425
|
}
|
|
257
2426
|
|
|
258
2427
|
/**
|
|
259
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
2428
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Modulo.
|
|
260
2429
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
261
2430
|
*/
|
|
262
|
-
interface
|
|
2431
|
+
interface ModuloQuery extends BaseQuery {
|
|
263
2432
|
}
|
|
264
2433
|
/**
|
|
265
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
2434
|
+
* @description Parámetros explicitos para la configuración del cliente API de Modulo.
|
|
266
2435
|
*/
|
|
267
|
-
interface
|
|
2436
|
+
interface ModuloParams extends APIClientParams {
|
|
268
2437
|
}
|
|
269
|
-
declare class
|
|
270
|
-
constructor(params?:
|
|
2438
|
+
declare class ModuloAPI extends APICRUDClientBase<ModuloDTO, ModuloCreateDTO, ModuloUpdateDTO, ModuloQuery, ModuloDTO> {
|
|
2439
|
+
constructor(params?: ModuloParams);
|
|
271
2440
|
}
|
|
272
2441
|
|
|
273
|
-
interface
|
|
2442
|
+
interface PagosDTO {
|
|
274
2443
|
/** @maxLength (4) @identity @primaryKey */
|
|
275
|
-
|
|
276
|
-
/**
|
|
277
|
-
|
|
278
|
-
/**
|
|
279
|
-
|
|
280
|
-
/**
|
|
281
|
-
|
|
282
|
-
/**
|
|
283
|
-
|
|
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;
|
|
284
2461
|
}
|
|
285
|
-
interface
|
|
286
|
-
/**
|
|
287
|
-
|
|
288
|
-
/**
|
|
289
|
-
|
|
290
|
-
/**
|
|
291
|
-
|
|
292
|
-
/**
|
|
293
|
-
|
|
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;
|
|
294
2479
|
}
|
|
295
|
-
interface
|
|
296
|
-
/**
|
|
297
|
-
|
|
298
|
-
/**
|
|
299
|
-
|
|
300
|
-
/**
|
|
301
|
-
|
|
302
|
-
/**
|
|
303
|
-
|
|
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;
|
|
304
2497
|
}
|
|
305
2498
|
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
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 {
|
|
310
2504
|
}
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
origin: string;
|
|
316
|
-
data: Data;
|
|
2505
|
+
/**
|
|
2506
|
+
* @description Parámetros explicitos para la configuración del cliente API de Pagos.
|
|
2507
|
+
*/
|
|
2508
|
+
interface PagosParams extends APIClientParams {
|
|
317
2509
|
}
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
height: string;
|
|
321
|
-
display: string;
|
|
322
|
-
flexGrow: string;
|
|
323
|
-
flexDirection: any;
|
|
324
|
-
flexWrap: string;
|
|
2510
|
+
declare class PagosAPI extends APICRUDClientBase<PagosDTO, PagosCreateDTO, PagosUpdateDTO, PagosQuery, PagosDTO> {
|
|
2511
|
+
constructor(params?: PagosParams);
|
|
325
2512
|
}
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
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;
|
|
329
2521
|
}
|
|
330
|
-
interface
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
flexDirection: any;
|
|
338
|
-
orden: number;
|
|
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;
|
|
339
2529
|
}
|
|
340
|
-
interface
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
grafica: Grafica;
|
|
348
|
-
dashboard_estilo: DashboardEstilo;
|
|
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;
|
|
349
2537
|
}
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
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 {
|
|
354
2544
|
}
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
tipo_grafica_id: number;
|
|
360
|
-
endpoint_url: string;
|
|
361
|
-
grafica_parametro_defectos: GraficaParametroDefecto[];
|
|
2545
|
+
/**
|
|
2546
|
+
* @description Parámetros explicitos para la configuración del cliente API de PagosPorColoniasResumen.
|
|
2547
|
+
*/
|
|
2548
|
+
interface PagosPorColoniasResumenParams extends APIClientParams {
|
|
362
2549
|
}
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
grafica_parametro_id: number;
|
|
366
|
-
dashboard_grafica_elemento_parametro?: DashboardGraficaElementoParametro;
|
|
2550
|
+
declare class PagosPorColoniasResumenAPI extends APICRUDClientBase<PagosPorColoniasResumenDTO, PagosPorColoniasResumenCreateDTO, PagosPorColoniasResumenUpdateDTO, PagosPorColoniasResumenQuery, PagosPorColoniasResumenDTO> {
|
|
2551
|
+
constructor(params?: PagosPorColoniasResumenParams);
|
|
367
2552
|
}
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
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;
|
|
371
2563
|
}
|
|
372
|
-
interface
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
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;
|
|
380
2573
|
}
|
|
381
|
-
interface
|
|
382
|
-
|
|
383
|
-
|
|
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;
|
|
384
2619
|
}
|
|
385
|
-
interface
|
|
386
|
-
|
|
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;
|
|
387
2629
|
}
|
|
388
2630
|
|
|
389
2631
|
/**
|
|
390
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
2632
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorTipoServicioMensual.
|
|
391
2633
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
392
2634
|
*/
|
|
393
|
-
interface
|
|
2635
|
+
interface PagosPorTipoServicioMensualQuery extends BaseQuery {
|
|
394
2636
|
}
|
|
395
2637
|
/**
|
|
396
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
2638
|
+
* @description Parámetros explicitos para la configuración del cliente API de PagosPorTipoServicioMensual.
|
|
397
2639
|
*/
|
|
398
|
-
interface
|
|
399
|
-
}
|
|
400
|
-
interface DashboardGraficaElementoTreeParams {
|
|
401
|
-
rol_id?: number;
|
|
402
|
-
orderBy?: string;
|
|
403
|
-
page: number;
|
|
404
|
-
limit: number;
|
|
2640
|
+
interface PagosPorTipoServicioMensualParams extends APIClientParams {
|
|
405
2641
|
}
|
|
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>;
|
|
2642
|
+
declare class PagosPorTipoServicioMensualAPI extends APICRUDClientBase<PagosPorTipoServicioMensualDTO, PagosPorTipoServicioMensualCreateDTO, PagosPorTipoServicioMensualUpdateDTO, PagosPorTipoServicioMensualQuery, PagosPorTipoServicioMensualDTO> {
|
|
2643
|
+
constructor(params?: PagosPorTipoServicioMensualParams);
|
|
412
2644
|
}
|
|
413
2645
|
|
|
414
|
-
interface
|
|
415
|
-
/** @maxLength (
|
|
416
|
-
|
|
417
|
-
/** @maxLength (
|
|
418
|
-
|
|
419
|
-
/** @maxLength (
|
|
420
|
-
|
|
421
|
-
/** @maxLength (200) */
|
|
422
|
-
nombre_componente: string;
|
|
423
|
-
/** @maxLength (510) */
|
|
424
|
-
ruta_componente: string;
|
|
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;
|
|
425
2653
|
}
|
|
426
|
-
interface
|
|
427
|
-
/** @maxLength (200) */
|
|
428
|
-
|
|
429
|
-
/** @maxLength (
|
|
430
|
-
|
|
431
|
-
/** @maxLength (
|
|
432
|
-
|
|
433
|
-
/** @maxLength (510) */
|
|
434
|
-
ruta_componente: string;
|
|
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;
|
|
435
2661
|
}
|
|
436
|
-
interface
|
|
437
|
-
/** @maxLength (200) @optional */
|
|
438
|
-
|
|
439
|
-
/** @maxLength (
|
|
440
|
-
|
|
441
|
-
/** @maxLength (
|
|
442
|
-
|
|
443
|
-
/** @maxLength (510) @optional */
|
|
444
|
-
ruta_componente?: string;
|
|
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;
|
|
445
2669
|
}
|
|
446
2670
|
|
|
447
2671
|
/**
|
|
448
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
2672
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorTipoServicioResumen.
|
|
449
2673
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
450
2674
|
*/
|
|
451
|
-
interface
|
|
2675
|
+
interface PagosPorTipoServicioResumenQuery extends BaseQuery {
|
|
452
2676
|
}
|
|
453
2677
|
/**
|
|
454
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
2678
|
+
* @description Parámetros explicitos para la configuración del cliente API de PagosPorTipoServicioResumen.
|
|
455
2679
|
*/
|
|
456
|
-
interface
|
|
2680
|
+
interface PagosPorTipoServicioResumenParams extends APIClientParams {
|
|
457
2681
|
}
|
|
458
|
-
declare class
|
|
459
|
-
constructor(params?:
|
|
2682
|
+
declare class PagosPorTipoServicioResumenAPI extends APICRUDClientBase<PagosPorTipoServicioResumenDTO, PagosPorTipoServicioResumenCreateDTO, PagosPorTipoServicioResumenUpdateDTO, PagosPorTipoServicioResumenQuery, PagosPorTipoServicioResumenDTO> {
|
|
2683
|
+
constructor(params?: PagosPorTipoServicioResumenParams);
|
|
460
2684
|
}
|
|
461
2685
|
|
|
462
|
-
interface
|
|
463
|
-
/** @maxLength (4) @
|
|
464
|
-
|
|
465
|
-
/** @maxLength (
|
|
466
|
-
|
|
467
|
-
/** @maxLength (
|
|
468
|
-
|
|
469
|
-
/** @maxLength (
|
|
470
|
-
|
|
471
|
-
/** @maxLength (
|
|
472
|
-
|
|
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;
|
|
473
2701
|
/** @maxLength (8) @nullable */
|
|
474
2702
|
fecha_actualizacion?: string;
|
|
475
2703
|
}
|
|
476
|
-
interface
|
|
477
|
-
/** @maxLength (
|
|
478
|
-
|
|
479
|
-
/** @maxLength (
|
|
480
|
-
|
|
481
|
-
/** @maxLength (
|
|
482
|
-
|
|
483
|
-
/** @maxLength (
|
|
484
|
-
|
|
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;
|
|
485
2719
|
/** @maxLength (8) @nullable */
|
|
486
2720
|
fecha_actualizacion?: string;
|
|
487
2721
|
}
|
|
488
|
-
interface
|
|
489
|
-
/** @maxLength (
|
|
490
|
-
|
|
491
|
-
/** @maxLength (
|
|
492
|
-
|
|
493
|
-
/** @maxLength (
|
|
494
|
-
|
|
495
|
-
/** @maxLength (
|
|
496
|
-
|
|
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;
|
|
497
2737
|
/** @maxLength (8) @nullable @optional */
|
|
498
2738
|
fecha_actualizacion?: string;
|
|
499
2739
|
}
|
|
500
2740
|
|
|
501
2741
|
/**
|
|
502
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
2742
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorTipoTarifaResumen.
|
|
503
2743
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
504
2744
|
*/
|
|
505
|
-
interface
|
|
2745
|
+
interface PagosPorTipoTarifaResumenQuery extends BaseQuery {
|
|
506
2746
|
}
|
|
507
2747
|
/**
|
|
508
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
2748
|
+
* @description Parámetros explicitos para la configuración del cliente API de PagosPorTipoTarifaResumen.
|
|
509
2749
|
*/
|
|
510
|
-
interface
|
|
2750
|
+
interface PagosPorTipoTarifaResumenParams extends APIClientParams {
|
|
511
2751
|
}
|
|
512
|
-
declare class
|
|
513
|
-
constructor(params?:
|
|
2752
|
+
declare class PagosPorTipoTarifaResumenAPI extends APICRUDClientBase<PagosPorTipoTarifaResumenDTO, PagosPorTipoTarifaResumenCreateDTO, PagosPorTipoTarifaResumenUpdateDTO, PagosPorTipoTarifaResumenQuery, PagosPorTipoTarifaResumenDTO> {
|
|
2753
|
+
constructor(params?: PagosPorTipoTarifaResumenParams);
|
|
514
2754
|
}
|
|
515
2755
|
|
|
516
|
-
interface
|
|
517
|
-
/** @maxLength (
|
|
518
|
-
|
|
519
|
-
/** @maxLength (
|
|
520
|
-
|
|
521
|
-
/** @maxLength (
|
|
522
|
-
|
|
523
|
-
/** @maxLength (
|
|
524
|
-
|
|
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;
|
|
525
2773
|
/** @maxLength (8) @nullable */
|
|
526
2774
|
fecha_actualizacion?: string;
|
|
527
2775
|
}
|
|
528
|
-
interface
|
|
529
|
-
/** @maxLength (
|
|
530
|
-
|
|
531
|
-
/** @maxLength (
|
|
532
|
-
|
|
533
|
-
/** @maxLength (
|
|
534
|
-
|
|
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;
|
|
535
2793
|
/** @maxLength (8) @nullable */
|
|
536
2794
|
fecha_actualizacion?: string;
|
|
537
2795
|
}
|
|
538
|
-
interface
|
|
539
|
-
/** @maxLength (
|
|
540
|
-
|
|
541
|
-
/** @maxLength (
|
|
542
|
-
|
|
543
|
-
/** @maxLength (
|
|
544
|
-
|
|
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;
|
|
545
2813
|
/** @maxLength (8) @nullable @optional */
|
|
546
2814
|
fecha_actualizacion?: string;
|
|
547
2815
|
}
|
|
548
2816
|
|
|
549
2817
|
/**
|
|
550
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
2818
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorTipoTarifaResumenMensual.
|
|
551
2819
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
552
2820
|
*/
|
|
553
|
-
interface
|
|
2821
|
+
interface PagosPorTipoTarifaResumenMensualQuery extends BaseQuery {
|
|
554
2822
|
}
|
|
555
2823
|
/**
|
|
556
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
2824
|
+
* @description Parámetros explicitos para la configuración del cliente API de PagosPorTipoTarifaResumenMensual.
|
|
557
2825
|
*/
|
|
558
|
-
interface
|
|
2826
|
+
interface PagosPorTipoTarifaResumenMensualParams extends APIClientParams {
|
|
559
2827
|
}
|
|
560
|
-
declare class
|
|
561
|
-
constructor(params?:
|
|
2828
|
+
declare class PagosPorTipoTarifaResumenMensualAPI extends APICRUDClientBase<PagosPorTipoTarifaResumenMensualDTO, PagosPorTipoTarifaResumenMensualCreateDTO, PagosPorTipoTarifaResumenMensualUpdateDTO, PagosPorTipoTarifaResumenMensualQuery, PagosPorTipoTarifaResumenMensualDTO> {
|
|
2829
|
+
constructor(params?: PagosPorTipoTarifaResumenMensualParams);
|
|
562
2830
|
}
|
|
563
2831
|
|
|
564
|
-
interface
|
|
565
|
-
/** @maxLength (
|
|
566
|
-
|
|
567
|
-
/** @maxLength (
|
|
568
|
-
|
|
569
|
-
/** @maxLength (255) @nullable */
|
|
570
|
-
descripcion?: string;
|
|
571
|
-
/** @maxLength (8) @nullable */
|
|
572
|
-
fecha_creacion?: string;
|
|
2832
|
+
interface PagosResumenMensualDTO {
|
|
2833
|
+
/** @maxLength (7) @primaryKey */
|
|
2834
|
+
anio_mes: string;
|
|
2835
|
+
/** @maxLength (9) @nullable */
|
|
2836
|
+
total_pagos?: number;
|
|
573
2837
|
/** @maxLength (8) @nullable */
|
|
574
2838
|
fecha_actualizacion?: string;
|
|
575
2839
|
}
|
|
576
|
-
interface
|
|
577
|
-
/** @maxLength (
|
|
578
|
-
|
|
579
|
-
/** @maxLength (
|
|
580
|
-
|
|
581
|
-
/** @maxLength (8) @nullable */
|
|
582
|
-
fecha_creacion?: string;
|
|
2840
|
+
interface PagosResumenMensualCreateDTO {
|
|
2841
|
+
/** @maxLength (7) @primaryKey */
|
|
2842
|
+
anio_mes: string;
|
|
2843
|
+
/** @maxLength (9) @nullable */
|
|
2844
|
+
total_pagos?: number;
|
|
583
2845
|
/** @maxLength (8) @nullable */
|
|
584
2846
|
fecha_actualizacion?: string;
|
|
585
2847
|
}
|
|
586
|
-
interface
|
|
587
|
-
/** @maxLength (
|
|
588
|
-
|
|
589
|
-
/** @maxLength (
|
|
590
|
-
|
|
591
|
-
/** @maxLength (8) @nullable @optional */
|
|
592
|
-
fecha_creacion?: string;
|
|
2848
|
+
interface PagosResumenMensualUpdateDTO {
|
|
2849
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
2850
|
+
anio_mes?: string;
|
|
2851
|
+
/** @maxLength (9) @nullable @optional */
|
|
2852
|
+
total_pagos?: number;
|
|
593
2853
|
/** @maxLength (8) @nullable @optional */
|
|
594
2854
|
fecha_actualizacion?: string;
|
|
595
2855
|
}
|
|
596
2856
|
|
|
597
2857
|
/**
|
|
598
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
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.
|
|
599
3033
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
600
3034
|
*/
|
|
601
|
-
interface
|
|
3035
|
+
interface PlazasQuery extends BaseQuery {
|
|
602
3036
|
}
|
|
603
3037
|
/**
|
|
604
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
3038
|
+
* @description Parámetros explicitos para la configuración del cliente API de Plazas.
|
|
605
3039
|
*/
|
|
606
|
-
interface
|
|
3040
|
+
interface PlazasParams extends APIClientParams {
|
|
607
3041
|
}
|
|
608
|
-
declare class
|
|
609
|
-
constructor(params?:
|
|
3042
|
+
declare class PlazasAPI extends APICRUDClientBase<PlazasDTO, PlazasCreateDTO, PlazasUpdateDTO, PlazasQuery, PlazasDTO> {
|
|
3043
|
+
constructor(params?: PlazasParams);
|
|
610
3044
|
}
|
|
611
3045
|
|
|
612
|
-
interface
|
|
3046
|
+
interface RolDTO {
|
|
613
3047
|
/** @maxLength (4) @identity @primaryKey */
|
|
614
|
-
|
|
3048
|
+
rol_id: number;
|
|
615
3049
|
/** @maxLength (200) */
|
|
616
3050
|
nombre: string;
|
|
617
|
-
/** @maxLength (
|
|
618
|
-
|
|
619
|
-
/** @foreignKey (
|
|
620
|
-
|
|
621
|
-
/** @maxLength (
|
|
622
|
-
|
|
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;
|
|
623
3057
|
}
|
|
624
|
-
interface
|
|
3058
|
+
interface RolCreateDTO {
|
|
625
3059
|
/** @maxLength (200) */
|
|
626
3060
|
nombre: string;
|
|
627
|
-
/** @maxLength (
|
|
628
|
-
|
|
629
|
-
/** @foreignKey (
|
|
630
|
-
|
|
631
|
-
/** @maxLength (
|
|
632
|
-
|
|
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;
|
|
633
3067
|
}
|
|
634
|
-
interface
|
|
3068
|
+
interface RolUpdateDTO {
|
|
635
3069
|
/** @maxLength (200) @optional */
|
|
636
3070
|
nombre?: string;
|
|
637
|
-
/** @maxLength (
|
|
638
|
-
|
|
639
|
-
/** @foreignKey (
|
|
640
|
-
|
|
641
|
-
/** @maxLength (
|
|
642
|
-
|
|
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;
|
|
643
3077
|
}
|
|
644
3078
|
|
|
645
3079
|
/**
|
|
646
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
3080
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Rol.
|
|
647
3081
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
648
3082
|
*/
|
|
649
|
-
interface
|
|
3083
|
+
interface RolQuery extends BaseQuery {
|
|
650
3084
|
}
|
|
651
3085
|
/**
|
|
652
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
3086
|
+
* @description Parámetros explicitos para la configuración del cliente API de Rol.
|
|
653
3087
|
*/
|
|
654
|
-
interface
|
|
3088
|
+
interface RolParams extends APIClientParams {
|
|
655
3089
|
}
|
|
656
|
-
declare class
|
|
657
|
-
constructor(params?:
|
|
3090
|
+
declare class RolAPI extends APICRUDClientBase<RolDTO, RolCreateDTO, RolUpdateDTO, RolQuery, RolDTO> {
|
|
3091
|
+
constructor(params?: RolParams);
|
|
658
3092
|
}
|
|
659
3093
|
|
|
660
|
-
interface
|
|
3094
|
+
interface RolDashboardRutaDTO {
|
|
661
3095
|
/** @maxLength (4) @identity @primaryKey */
|
|
662
|
-
|
|
663
|
-
/** @maxLength (
|
|
664
|
-
|
|
665
|
-
/** @maxLength (
|
|
666
|
-
|
|
667
|
-
/** @maxLength (
|
|
668
|
-
|
|
669
|
-
/** @maxLength (7) @nullable */
|
|
670
|
-
color_texto_fecha?: string;
|
|
671
|
-
/** @maxLength (7) @nullable */
|
|
672
|
-
color_texto_general?: string;
|
|
673
|
-
/** @maxLength (8) @nullable */
|
|
674
|
-
fecha_creacion?: string;
|
|
675
|
-
/** @maxLength (8) @nullable */
|
|
676
|
-
fecha_actualizacion?: string;
|
|
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;
|
|
677
3103
|
}
|
|
678
|
-
interface
|
|
679
|
-
/** @maxLength (
|
|
680
|
-
|
|
681
|
-
/** @maxLength (
|
|
682
|
-
|
|
683
|
-
/** @maxLength (
|
|
684
|
-
|
|
685
|
-
/** @maxLength (7) @nullable */
|
|
686
|
-
color_texto_fecha?: string;
|
|
687
|
-
/** @maxLength (7) @nullable */
|
|
688
|
-
color_texto_general?: string;
|
|
689
|
-
/** @maxLength (8) @nullable */
|
|
690
|
-
fecha_creacion?: string;
|
|
691
|
-
/** @maxLength (8) @nullable */
|
|
692
|
-
fecha_actualizacion?: string;
|
|
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;
|
|
693
3111
|
}
|
|
694
|
-
interface
|
|
695
|
-
/** @maxLength (
|
|
696
|
-
|
|
697
|
-
/** @maxLength (
|
|
698
|
-
|
|
699
|
-
/** @maxLength (
|
|
700
|
-
|
|
701
|
-
/** @maxLength (7) @nullable @optional */
|
|
702
|
-
color_texto_fecha?: string;
|
|
703
|
-
/** @maxLength (7) @nullable @optional */
|
|
704
|
-
color_texto_general?: string;
|
|
705
|
-
/** @maxLength (8) @nullable @optional */
|
|
706
|
-
fecha_creacion?: string;
|
|
707
|
-
/** @maxLength (8) @nullable @optional */
|
|
708
|
-
fecha_actualizacion?: string;
|
|
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;
|
|
709
3119
|
}
|
|
710
3120
|
|
|
711
3121
|
/**
|
|
712
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de
|
|
3122
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de RolDashboardRuta.
|
|
713
3123
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
714
3124
|
*/
|
|
715
|
-
interface
|
|
3125
|
+
interface RolDashboardRutaQuery extends BaseQuery {
|
|
716
3126
|
}
|
|
717
3127
|
/**
|
|
718
|
-
* @description Parámetros explicitos para la configuración del cliente API de
|
|
3128
|
+
* @description Parámetros explicitos para la configuración del cliente API de RolDashboardRuta.
|
|
719
3129
|
*/
|
|
720
|
-
interface
|
|
3130
|
+
interface RolDashboardRutaParams extends APIClientParams {
|
|
721
3131
|
}
|
|
722
|
-
declare class
|
|
723
|
-
constructor(params?:
|
|
3132
|
+
declare class RolDashboardRutaAPI extends APICRUDClientBase<RolDashboardRutaDTO, RolDashboardRutaCreateDTO, RolDashboardRutaUpdateDTO, RolDashboardRutaQuery, RolDashboardRutaDTO> {
|
|
3133
|
+
constructor(params?: RolDashboardRutaParams);
|
|
724
3134
|
}
|
|
725
3135
|
|
|
726
|
-
interface
|
|
727
|
-
/** @maxLength (4) @
|
|
728
|
-
|
|
729
|
-
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
3136
|
+
interface RolGraficaDTO {
|
|
3137
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey */
|
|
3138
|
+
rol_id: number;
|
|
3139
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
730
3140
|
grafica_id: number;
|
|
731
|
-
/** @foreignKey (cat_tema.tema_id) @maxLength (4) */
|
|
732
|
-
tema_id: number;
|
|
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;
|
|
739
3141
|
}
|
|
740
|
-
interface
|
|
741
|
-
/** @foreignKey (
|
|
3142
|
+
interface RolGraficaCreateDTO {
|
|
3143
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey */
|
|
3144
|
+
rol_id: number;
|
|
3145
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
742
3146
|
grafica_id: number;
|
|
743
|
-
/** @foreignKey (cat_tema.tema_id) @maxLength (4) */
|
|
744
|
-
tema_id: number;
|
|
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;
|
|
751
3147
|
}
|
|
752
|
-
interface
|
|
753
|
-
/** @foreignKey (
|
|
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 */
|
|
754
3152
|
grafica_id?: number;
|
|
755
|
-
/** @foreignKey (cat_tema.tema_id) @maxLength (4) @optional */
|
|
756
|
-
tema_id?: number;
|
|
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;
|
|
763
3153
|
}
|
|
764
3154
|
|
|
765
3155
|
/**
|
|
766
|
-
* @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.
|
|
767
3157
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
768
3158
|
*/
|
|
769
|
-
interface
|
|
3159
|
+
interface RolGraficaQuery extends BaseQuery {
|
|
770
3160
|
}
|
|
771
3161
|
/**
|
|
772
|
-
* @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.
|
|
773
3163
|
*/
|
|
774
|
-
interface
|
|
3164
|
+
interface RolGraficaParams extends APIClientParams {
|
|
775
3165
|
}
|
|
776
|
-
declare class
|
|
777
|
-
constructor(params?:
|
|
3166
|
+
declare class RolGraficaAPI extends APICRUDClientBase<RolGraficaDTO, RolGraficaCreateDTO, RolGraficaUpdateDTO, RolGraficaQuery, RolGraficaDTO> {
|
|
3167
|
+
constructor(params?: RolGraficaParams);
|
|
778
3168
|
}
|
|
779
3169
|
|
|
780
|
-
interface
|
|
3170
|
+
interface SubmoduloDTO {
|
|
781
3171
|
/** @maxLength (4) @identity @primaryKey */
|
|
782
|
-
|
|
783
|
-
/**
|
|
784
|
-
|
|
785
|
-
/**
|
|
786
|
-
|
|
787
|
-
/** @maxLength (
|
|
788
|
-
|
|
789
|
-
/** @maxLength (
|
|
790
|
-
|
|
3172
|
+
submodulo_id: number;
|
|
3173
|
+
/** @maxLength (100) @nullable */
|
|
3174
|
+
submodulo_nombre?: string;
|
|
3175
|
+
/** @maxLength (100) @nullable */
|
|
3176
|
+
submodulo_ruta_url?: string;
|
|
3177
|
+
/** @foreignKey (modulo.modulo_id) @maxLength (4) @nullable */
|
|
3178
|
+
modulo_id?: number;
|
|
3179
|
+
/** @maxLength (-1) @nullable */
|
|
3180
|
+
submodulo_status?: string;
|
|
791
3181
|
}
|
|
792
|
-
interface
|
|
793
|
-
/**
|
|
794
|
-
|
|
795
|
-
/**
|
|
796
|
-
|
|
797
|
-
/** @maxLength (
|
|
798
|
-
|
|
799
|
-
/** @maxLength (
|
|
800
|
-
|
|
3182
|
+
interface SubmoduloCreateDTO {
|
|
3183
|
+
/** @maxLength (100) @nullable */
|
|
3184
|
+
submodulo_nombre?: string;
|
|
3185
|
+
/** @maxLength (100) @nullable */
|
|
3186
|
+
submodulo_ruta_url?: string;
|
|
3187
|
+
/** @foreignKey (modulo.modulo_id) @maxLength (4) @nullable */
|
|
3188
|
+
modulo_id?: number;
|
|
3189
|
+
/** @maxLength (-1) @nullable */
|
|
3190
|
+
submodulo_status?: string;
|
|
801
3191
|
}
|
|
802
|
-
interface
|
|
803
|
-
/**
|
|
804
|
-
|
|
805
|
-
/**
|
|
806
|
-
|
|
807
|
-
/** @maxLength (
|
|
808
|
-
|
|
809
|
-
/** @maxLength (
|
|
810
|
-
|
|
3192
|
+
interface SubmoduloUpdateDTO {
|
|
3193
|
+
/** @maxLength (100) @nullable @optional */
|
|
3194
|
+
submodulo_nombre?: string;
|
|
3195
|
+
/** @maxLength (100) @nullable @optional */
|
|
3196
|
+
submodulo_ruta_url?: string;
|
|
3197
|
+
/** @foreignKey (modulo.modulo_id) @maxLength (4) @nullable @optional */
|
|
3198
|
+
modulo_id?: number;
|
|
3199
|
+
/** @maxLength (-1) @nullable @optional */
|
|
3200
|
+
submodulo_status?: string;
|
|
811
3201
|
}
|
|
812
3202
|
|
|
813
3203
|
/**
|
|
814
|
-
* @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.
|
|
815
3205
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
816
3206
|
*/
|
|
817
|
-
interface
|
|
3207
|
+
interface SubmoduloQuery extends BaseQuery {
|
|
818
3208
|
}
|
|
819
3209
|
/**
|
|
820
|
-
* @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.
|
|
821
3211
|
*/
|
|
822
|
-
interface
|
|
823
|
-
}
|
|
824
|
-
declare class GraficaColorGrupoAsignacionAPI extends APICRUDClientBase<GraficaColorGrupoAsignacionDTO, GraficaColorGrupoAsignacionCreateDTO, GraficaColorGrupoAsignacionUpdateDTO, GraficaColorGrupoAsignacionQuery, GraficaColorGrupoAsignacionDTO> {
|
|
825
|
-
constructor(params?: GraficaColorGrupoAsignacionParams);
|
|
3212
|
+
interface SubmoduloParams extends APIClientParams {
|
|
826
3213
|
}
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
/** @maxLength (4) @identity @primaryKey */
|
|
830
|
-
grafica_color_grupo_tipo_grafica_id: number;
|
|
831
|
-
/** @foreignKey (grafica_color_grupo.grafica_color_grupo_id) @maxLength (4) */
|
|
832
|
-
grafica_color_grupo_id: number;
|
|
833
|
-
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) */
|
|
834
|
-
tipo_grafica_id: number;
|
|
835
|
-
/** @foreignKey (usuario.usuario_id) @maxLength (4) */
|
|
836
|
-
usuario_modicador_id: number;
|
|
837
|
-
/** @maxLength (8) @nullable */
|
|
838
|
-
fecha_creacion?: string;
|
|
839
|
-
/** @maxLength (8) @nullable */
|
|
840
|
-
fecha_actualizacion?: string;
|
|
841
|
-
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) @nullable */
|
|
842
|
-
grafica_color_id?: number;
|
|
3214
|
+
declare class SubmoduloAPI extends APICRUDClientBase<SubmoduloDTO, SubmoduloCreateDTO, SubmoduloUpdateDTO, SubmoduloQuery, SubmoduloDTO> {
|
|
3215
|
+
constructor(params?: SubmoduloParams);
|
|
843
3216
|
}
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) */
|
|
3217
|
+
|
|
3218
|
+
interface TipoGraficaDTO {
|
|
3219
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
848
3220
|
tipo_grafica_id: number;
|
|
849
|
-
/**
|
|
850
|
-
|
|
851
|
-
/** @maxLength (
|
|
852
|
-
|
|
853
|
-
/** @maxLength (
|
|
854
|
-
|
|
855
|
-
/**
|
|
856
|
-
|
|
3221
|
+
/** @maxLength (200) */
|
|
3222
|
+
nombre: string;
|
|
3223
|
+
/** @maxLength (510) @nullable */
|
|
3224
|
+
descripcion?: string;
|
|
3225
|
+
/** @maxLength (200) */
|
|
3226
|
+
nombre_componente: string;
|
|
3227
|
+
/** @maxLength (510) */
|
|
3228
|
+
ruta_componente: string;
|
|
857
3229
|
}
|
|
858
|
-
interface
|
|
859
|
-
/**
|
|
860
|
-
|
|
861
|
-
/**
|
|
862
|
-
|
|
863
|
-
/**
|
|
864
|
-
|
|
865
|
-
/** @maxLength (
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
/**
|
|
870
|
-
|
|
3230
|
+
interface TipoGraficaCreateDTO {
|
|
3231
|
+
/** @maxLength (200) */
|
|
3232
|
+
nombre: string;
|
|
3233
|
+
/** @maxLength (510) @nullable */
|
|
3234
|
+
descripcion?: string;
|
|
3235
|
+
/** @maxLength (200) */
|
|
3236
|
+
nombre_componente: string;
|
|
3237
|
+
/** @maxLength (510) */
|
|
3238
|
+
ruta_componente: string;
|
|
3239
|
+
}
|
|
3240
|
+
interface TipoGraficaUpdateDTO {
|
|
3241
|
+
/** @maxLength (200) @optional */
|
|
3242
|
+
nombre?: string;
|
|
3243
|
+
/** @maxLength (510) @nullable @optional */
|
|
3244
|
+
descripcion?: string;
|
|
3245
|
+
/** @maxLength (200) @optional */
|
|
3246
|
+
nombre_componente?: string;
|
|
3247
|
+
/** @maxLength (510) @optional */
|
|
3248
|
+
ruta_componente?: string;
|
|
871
3249
|
}
|
|
872
3250
|
|
|
873
3251
|
/**
|
|
874
|
-
* @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.
|
|
875
3253
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
876
3254
|
*/
|
|
877
|
-
interface
|
|
3255
|
+
interface TipoGraficaQuery extends BaseQuery {
|
|
878
3256
|
}
|
|
879
3257
|
/**
|
|
880
|
-
* @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.
|
|
881
3259
|
*/
|
|
882
|
-
interface
|
|
3260
|
+
interface TipoGraficaParams extends APIClientParams {
|
|
883
3261
|
}
|
|
884
|
-
declare class
|
|
885
|
-
constructor(params?:
|
|
3262
|
+
declare class TipoGraficaAPI extends APICRUDClientBase<TipoGraficaDTO, TipoGraficaCreateDTO, TipoGraficaUpdateDTO, TipoGraficaQuery, TipoGraficaDTO> {
|
|
3263
|
+
constructor(params?: TipoGraficaParams);
|
|
886
3264
|
}
|
|
887
3265
|
|
|
888
|
-
interface
|
|
3266
|
+
interface TipoRolDTO {
|
|
889
3267
|
/** @maxLength (4) @identity @primaryKey */
|
|
890
|
-
|
|
3268
|
+
tipo_rol_id: number;
|
|
891
3269
|
/** @maxLength (200) */
|
|
892
3270
|
nombre: string;
|
|
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;
|
|
899
3271
|
}
|
|
900
|
-
interface
|
|
3272
|
+
interface TipoRolCreateDTO {
|
|
901
3273
|
/** @maxLength (200) */
|
|
902
3274
|
nombre: string;
|
|
903
|
-
/** @maxLength (4) */
|
|
904
|
-
tipo_rol_id: number;
|
|
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;
|
|
909
3275
|
}
|
|
910
|
-
interface
|
|
3276
|
+
interface TipoRolUpdateDTO {
|
|
911
3277
|
/** @maxLength (200) @optional */
|
|
912
3278
|
nombre?: string;
|
|
913
|
-
/** @maxLength (4) @optional */
|
|
914
|
-
tipo_rol_id?: number;
|
|
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;
|
|
919
3279
|
}
|
|
920
3280
|
|
|
921
3281
|
/**
|
|
922
|
-
* @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.
|
|
923
3283
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
924
3284
|
*/
|
|
925
|
-
interface
|
|
3285
|
+
interface TipoRolQuery extends BaseQuery {
|
|
926
3286
|
}
|
|
927
3287
|
/**
|
|
928
|
-
* @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.
|
|
929
3289
|
*/
|
|
930
|
-
interface
|
|
3290
|
+
interface TipoRolParams extends APIClientParams {
|
|
931
3291
|
}
|
|
932
|
-
declare class
|
|
933
|
-
constructor(params?:
|
|
3292
|
+
declare class TipoRolAPI extends APICRUDClientBase<TipoRolDTO, TipoRolCreateDTO, TipoRolUpdateDTO, TipoRolQuery, TipoRolDTO> {
|
|
3293
|
+
constructor(params?: TipoRolParams);
|
|
934
3294
|
}
|
|
935
3295
|
|
|
936
3296
|
interface UsuarioDTO {
|
|
@@ -991,198 +3351,42 @@ interface UsuarioUpdateDTO {
|
|
|
991
3351
|
/** @maxLength (50) @nullable @optional */
|
|
992
3352
|
usuario_nombre_usuario?: string;
|
|
993
3353
|
/** @maxLength (80) @nullable @optional */
|
|
994
|
-
usuario_nombre?: string;
|
|
995
|
-
/** @maxLength (80) @nullable @optional */
|
|
996
|
-
usuario_apellidos?: string;
|
|
997
|
-
/** @maxLength (100) @nullable @optional */
|
|
998
|
-
usuario_cargo?: string;
|
|
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;
|
|
1005
|
-
/** @maxLength (100) @nullable @optional */
|
|
1006
|
-
usuario_url_img_perfil?: string;
|
|
1007
|
-
/** @foreignKey (grupo_usuario.grupo_usuario_id) @maxLength (4) @nullable @optional */
|
|
1008
|
-
grupo_usuario_id?: number;
|
|
1009
|
-
/** @maxLength (8) @nullable @optional */
|
|
1010
|
-
usuario_fecha_creacion?: string;
|
|
1011
|
-
/** @maxLength (8) @nullable @optional */
|
|
1012
|
-
usuario_fecha_modificacion?: string;
|
|
1013
|
-
/** @maxLength (-1) @nullable @optional */
|
|
1014
|
-
usuario_status?: string;
|
|
1015
|
-
}
|
|
1016
|
-
|
|
1017
|
-
/**
|
|
1018
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de Usuario.
|
|
1019
|
-
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1020
|
-
*/
|
|
1021
|
-
interface UsuarioQuery extends BaseQuery {
|
|
1022
|
-
}
|
|
1023
|
-
/**
|
|
1024
|
-
* @description Parámetros explicitos para la configuración del cliente API de Usuario.
|
|
1025
|
-
*/
|
|
1026
|
-
interface UsuarioParams extends APIClientParams {
|
|
1027
|
-
}
|
|
1028
|
-
declare class UsuarioAPI extends APICRUDClientBase<UsuarioDTO, UsuarioCreateDTO, UsuarioUpdateDTO, UsuarioQuery, UsuarioDTO> {
|
|
1029
|
-
constructor(params?: UsuarioParams);
|
|
1030
|
-
}
|
|
1031
|
-
|
|
1032
|
-
interface CatGraficaGrupoDTO {
|
|
1033
|
-
/** @maxLength (4) @identity @primaryKey */
|
|
1034
|
-
cat_grafica_grupo_id: number;
|
|
1035
|
-
/** @maxLength (200) */
|
|
1036
|
-
nombre: string;
|
|
1037
|
-
/** @maxLength (510) @nullable */
|
|
1038
|
-
descripcion?: string;
|
|
1039
|
-
}
|
|
1040
|
-
interface CatGraficaGrupoCreateDTO {
|
|
1041
|
-
/** @maxLength (200) */
|
|
1042
|
-
nombre: string;
|
|
1043
|
-
/** @maxLength (510) @nullable */
|
|
1044
|
-
descripcion?: string;
|
|
1045
|
-
}
|
|
1046
|
-
interface CatGraficaGrupoUpdateDTO {
|
|
1047
|
-
/** @maxLength (200) @optional */
|
|
1048
|
-
nombre?: string;
|
|
1049
|
-
/** @maxLength (510) @nullable @optional */
|
|
1050
|
-
descripcion?: string;
|
|
1051
|
-
}
|
|
1052
|
-
|
|
1053
|
-
/**
|
|
1054
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatGraficaGrupo.
|
|
1055
|
-
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1056
|
-
*/
|
|
1057
|
-
interface CatGraficaGrupoQuery extends BaseQuery {
|
|
1058
|
-
}
|
|
1059
|
-
/**
|
|
1060
|
-
* @description Parámetros explicitos para la configuración del cliente API de CatGraficaGrupo.
|
|
1061
|
-
*/
|
|
1062
|
-
interface CatGraficaGrupoParams extends APIClientParams {
|
|
1063
|
-
}
|
|
1064
|
-
declare class CatGraficaGrupoAPI extends APICRUDClientBase<CatGraficaGrupoDTO, CatGraficaGrupoCreateDTO, CatGraficaGrupoUpdateDTO, CatGraficaGrupoQuery, CatGraficaGrupoDTO> {
|
|
1065
|
-
constructor(params?: CatGraficaGrupoParams);
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
|
-
interface CatRolGrupoDTO {
|
|
1069
|
-
/** @maxLength (4) @identity @primaryKey */
|
|
1070
|
-
cat_rol_grupo_id: number;
|
|
1071
|
-
/** @maxLength (200) */
|
|
1072
|
-
nombre: string;
|
|
1073
|
-
}
|
|
1074
|
-
interface CatRolGrupoCreateDTO {
|
|
1075
|
-
/** @maxLength (200) */
|
|
1076
|
-
nombre: string;
|
|
1077
|
-
}
|
|
1078
|
-
interface CatRolGrupoUpdateDTO {
|
|
1079
|
-
/** @maxLength (200) @optional */
|
|
1080
|
-
nombre?: string;
|
|
1081
|
-
}
|
|
1082
|
-
|
|
1083
|
-
/**
|
|
1084
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatRolGrupo.
|
|
1085
|
-
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1086
|
-
*/
|
|
1087
|
-
interface CatRolGrupoQuery extends BaseQuery {
|
|
1088
|
-
}
|
|
1089
|
-
/**
|
|
1090
|
-
* @description Parámetros explicitos para la configuración del cliente API de CatRolGrupo.
|
|
1091
|
-
*/
|
|
1092
|
-
interface CatRolGrupoParams extends APIClientParams {
|
|
1093
|
-
}
|
|
1094
|
-
declare class CatRolGrupoAPI extends APICRUDClientBase<CatRolGrupoDTO, CatRolGrupoCreateDTO, CatRolGrupoUpdateDTO, CatRolGrupoQuery, CatRolGrupoDTO> {
|
|
1095
|
-
constructor(params?: CatRolGrupoParams);
|
|
1096
|
-
}
|
|
1097
|
-
|
|
1098
|
-
interface GetRequestParams {
|
|
1099
|
-
id?: string | number;
|
|
1100
|
-
params?: object;
|
|
1101
|
-
config?: AxiosRequestConfig;
|
|
1102
|
-
where?: object;
|
|
1103
|
-
}
|
|
1104
|
-
|
|
1105
|
-
interface DashboardRutaDTO {
|
|
1106
|
-
/** @maxLength (4) @primaryKey */
|
|
1107
|
-
dashboard_ruta_id: number;
|
|
1108
|
-
/** @maxLength (510) */
|
|
1109
|
-
ruta: string;
|
|
1110
|
-
/** @maxLength (200) */
|
|
1111
|
-
nombre: string;
|
|
1112
|
-
/** @maxLength (200) @nullable */
|
|
1113
|
-
icono?: string;
|
|
1114
|
-
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) @nullable */
|
|
1115
|
-
dashboard_ruta_padre_id?: number;
|
|
1116
|
-
/** @maxLength (4) */
|
|
1117
|
-
nivel: number;
|
|
1118
|
-
/** @maxLength (1) */
|
|
1119
|
-
habilitado: boolean;
|
|
1120
|
-
/** @maxLength (4) @nullable */
|
|
1121
|
-
orden?: number;
|
|
1122
|
-
}
|
|
1123
|
-
interface DashboardRutaCreateDTO {
|
|
1124
|
-
/** @maxLength (4) @primaryKey */
|
|
1125
|
-
dashboard_ruta_id: number;
|
|
1126
|
-
/** @maxLength (510) */
|
|
1127
|
-
ruta: string;
|
|
1128
|
-
/** @maxLength (200) */
|
|
1129
|
-
nombre: string;
|
|
1130
|
-
/** @maxLength (200) @nullable */
|
|
1131
|
-
icono?: string;
|
|
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;
|
|
1140
|
-
}
|
|
1141
|
-
interface DashboardRutaUpdateDTO {
|
|
1142
|
-
/** @maxLength (4) @primaryKey @optional */
|
|
1143
|
-
dashboard_ruta_id?: number;
|
|
1144
|
-
/** @maxLength (510) @optional */
|
|
1145
|
-
ruta?: string;
|
|
1146
|
-
/** @maxLength (200) @optional */
|
|
1147
|
-
nombre?: string;
|
|
1148
|
-
/** @maxLength (200) @nullable @optional */
|
|
1149
|
-
icono?: string;
|
|
1150
|
-
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) @nullable @optional */
|
|
1151
|
-
dashboard_ruta_padre_id?: number;
|
|
1152
|
-
/** @maxLength (4) @optional */
|
|
1153
|
-
nivel?: number;
|
|
1154
|
-
/** @maxLength (1) @optional */
|
|
1155
|
-
habilitado?: boolean;
|
|
1156
|
-
/** @maxLength (4) @nullable @optional */
|
|
1157
|
-
orden?: number;
|
|
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,82 +3431,72 @@ declare class UsuarioDashboardAccesoAPI extends APICRUDClientBase<UsuarioDashboa
|
|
|
1227
3431
|
constructor(params?: UsuarioDashboardAccesoParams);
|
|
1228
3432
|
}
|
|
1229
3433
|
|
|
1230
|
-
interface
|
|
1231
|
-
/** @maxLength (4) @
|
|
1232
|
-
|
|
1233
|
-
/** @foreignKey (
|
|
1234
|
-
|
|
1235
|
-
/** @foreignKey (grafica_parametro_defecto.grafica_parametro_defecto_id) @maxLength (4) */
|
|
1236
|
-
grafica_parametro_defecto_id: number;
|
|
1237
|
-
/** @maxLength (255) @nullable */
|
|
1238
|
-
valor?: string;
|
|
3434
|
+
interface UsuarioGraficaDTO {
|
|
3435
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
3436
|
+
usuario_id: number;
|
|
3437
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
3438
|
+
grafica_id: number;
|
|
1239
3439
|
}
|
|
1240
|
-
interface
|
|
1241
|
-
/** @foreignKey (
|
|
1242
|
-
|
|
1243
|
-
/** @foreignKey (
|
|
1244
|
-
|
|
1245
|
-
/** @maxLength (255) @nullable */
|
|
1246
|
-
valor?: string;
|
|
3440
|
+
interface UsuarioGraficaCreateDTO {
|
|
3441
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
3442
|
+
usuario_id: number;
|
|
3443
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
3444
|
+
grafica_id: number;
|
|
1247
3445
|
}
|
|
1248
|
-
interface
|
|
1249
|
-
/** @foreignKey (
|
|
1250
|
-
|
|
1251
|
-
/** @foreignKey (
|
|
1252
|
-
|
|
1253
|
-
/** @maxLength (255) @nullable @optional */
|
|
1254
|
-
valor?: string;
|
|
3446
|
+
interface UsuarioGraficaUpdateDTO {
|
|
3447
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey @optional */
|
|
3448
|
+
usuario_id?: number;
|
|
3449
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey @optional */
|
|
3450
|
+
grafica_id?: number;
|
|
1255
3451
|
}
|
|
1256
3452
|
|
|
1257
3453
|
/**
|
|
1258
|
-
* @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.
|
|
1259
3455
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1260
3456
|
*/
|
|
1261
|
-
interface
|
|
3457
|
+
interface UsuarioGraficaQuery extends BaseQuery {
|
|
1262
3458
|
}
|
|
1263
3459
|
/**
|
|
1264
|
-
* @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.
|
|
1265
3461
|
*/
|
|
1266
|
-
interface
|
|
3462
|
+
interface UsuarioGraficaParams extends APIClientParams {
|
|
1267
3463
|
}
|
|
1268
|
-
declare class
|
|
1269
|
-
constructor(params?:
|
|
3464
|
+
declare class UsuarioGraficaAPI extends APICRUDClientBase<UsuarioGraficaDTO, UsuarioGraficaCreateDTO, UsuarioGraficaUpdateDTO, UsuarioGraficaQuery, UsuarioGraficaDTO> {
|
|
3465
|
+
constructor(params?: UsuarioGraficaParams);
|
|
1270
3466
|
}
|
|
1271
3467
|
|
|
1272
|
-
interface
|
|
1273
|
-
/** @maxLength (4) @
|
|
1274
|
-
|
|
1275
|
-
/** @maxLength (
|
|
1276
|
-
|
|
1277
|
-
/** @maxLength (4) @nullable */
|
|
1278
|
-
orden?: number;
|
|
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;
|
|
1279
3473
|
}
|
|
1280
|
-
interface
|
|
1281
|
-
/** @maxLength (
|
|
1282
|
-
|
|
1283
|
-
/** @maxLength (4) @
|
|
1284
|
-
|
|
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;
|
|
1285
3479
|
}
|
|
1286
|
-
interface
|
|
1287
|
-
/** @maxLength (
|
|
1288
|
-
|
|
1289
|
-
/** @maxLength (4) @
|
|
1290
|
-
|
|
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;
|
|
1291
3485
|
}
|
|
1292
3486
|
|
|
1293
3487
|
/**
|
|
1294
|
-
* @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.
|
|
1295
3489
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1296
3490
|
*/
|
|
1297
|
-
interface
|
|
3491
|
+
interface UsuarioGraficaExcluidaQuery extends BaseQuery {
|
|
1298
3492
|
}
|
|
1299
3493
|
/**
|
|
1300
|
-
* @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.
|
|
1301
3495
|
*/
|
|
1302
|
-
interface
|
|
3496
|
+
interface UsuarioGraficaExcluidaParams extends APIClientParams {
|
|
1303
3497
|
}
|
|
1304
|
-
declare class
|
|
1305
|
-
constructor(params?:
|
|
3498
|
+
declare class UsuarioGraficaExcluidaAPI extends APICRUDClientBase<UsuarioGraficaExcluidaDTO, UsuarioGraficaExcluidaCreateDTO, UsuarioGraficaExcluidaUpdateDTO, UsuarioGraficaExcluidaQuery, UsuarioGraficaExcluidaDTO> {
|
|
3499
|
+
constructor(params?: UsuarioGraficaExcluidaParams);
|
|
1306
3500
|
}
|
|
1307
3501
|
|
|
1308
3502
|
interface UsuarioRolDTO {
|
|
@@ -1325,225 +3519,159 @@ interface UsuarioRolCreateDTO {
|
|
|
1325
3519
|
/** @foreignKey (usuario.usuario_id) @maxLength (4) */
|
|
1326
3520
|
asignado_por_usuario_id: number;
|
|
1327
3521
|
}
|
|
1328
|
-
interface UsuarioRolUpdateDTO {
|
|
1329
|
-
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey @optional */
|
|
1330
|
-
usuario_id?: number;
|
|
1331
|
-
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey @optional */
|
|
1332
|
-
rol_id?: number;
|
|
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;
|
|
1379
|
-
}
|
|
1380
|
-
|
|
1381
|
-
/**
|
|
1382
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de RolDashboardRuta.
|
|
1383
|
-
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1384
|
-
*/
|
|
1385
|
-
interface RolDashboardRutaQuery extends BaseQuery {
|
|
1386
|
-
}
|
|
1387
|
-
/**
|
|
1388
|
-
* @description Parámetros explicitos para la configuración del cliente API de RolDashboardRuta.
|
|
1389
|
-
*/
|
|
1390
|
-
interface RolDashboardRutaParams extends APIClientParams {
|
|
1391
|
-
}
|
|
1392
|
-
declare class RolDashboardRutaAPI extends APICRUDClientBase<RolDashboardRutaDTO, RolDashboardRutaCreateDTO, RolDashboardRutaUpdateDTO, RolDashboardRutaQuery, RolDashboardRutaDTO> {
|
|
1393
|
-
constructor(params?: RolDashboardRutaParams);
|
|
1394
|
-
}
|
|
1395
|
-
|
|
1396
|
-
interface GraficaParametroDTO {
|
|
1397
|
-
/** @maxLength (4) @identity @primaryKey */
|
|
1398
|
-
grafica_parametro_id: number;
|
|
1399
|
-
/** @maxLength (100) */
|
|
1400
|
-
nombre: string;
|
|
1401
|
-
/** @maxLength (255) @nullable */
|
|
1402
|
-
descripcion?: string;
|
|
1403
|
-
/** @maxLength (1) @nullable */
|
|
1404
|
-
requerido?: boolean;
|
|
1405
|
-
/** @maxLength (255) @nullable */
|
|
1406
|
-
valor_defecto?: string;
|
|
1407
|
-
/** @maxLength (128) */
|
|
1408
|
-
etiqueta: string;
|
|
1409
|
-
}
|
|
1410
|
-
interface GraficaParametroCreateDTO {
|
|
1411
|
-
/** @maxLength (100) */
|
|
1412
|
-
nombre: string;
|
|
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;
|
|
1433
|
-
}
|
|
1434
|
-
|
|
1435
|
-
/**
|
|
1436
|
-
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaParametro.
|
|
1437
|
-
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1438
|
-
*/
|
|
1439
|
-
interface GraficaParametroQuery extends BaseQuery {
|
|
1440
|
-
}
|
|
1441
|
-
/**
|
|
1442
|
-
* @description Parámetros explicitos para la configuración del cliente API de GraficaParametro.
|
|
1443
|
-
*/
|
|
1444
|
-
interface GraficaParametroParams extends APIClientParams {
|
|
1445
|
-
}
|
|
1446
|
-
declare class GraficaParametroAPI extends APICRUDClientBase<GraficaParametroDTO, GraficaParametroCreateDTO, GraficaParametroUpdateDTO, GraficaParametroQuery, GraficaParametroDTO> {
|
|
1447
|
-
constructor(params?: GraficaParametroParams);
|
|
1448
|
-
}
|
|
1449
|
-
|
|
1450
|
-
interface GraficaParametroTipoDTO {
|
|
1451
|
-
/** @foreignKey (grafica_parametro.grafica_parametro_id) @maxLength (4) @primaryKey */
|
|
1452
|
-
grafica_parametro_id: number;
|
|
1453
|
-
/** @foreignKey (cat_tipo_parametro.cat_tipo_parametro_id) @maxLength (4) @primaryKey */
|
|
1454
|
-
cat_tipo_parametro_id: number;
|
|
1455
|
-
}
|
|
1456
|
-
interface GraficaParametroTipoCreateDTO {
|
|
1457
|
-
/** @foreignKey (grafica_parametro.grafica_parametro_id) @maxLength (4) @primaryKey */
|
|
1458
|
-
grafica_parametro_id: number;
|
|
1459
|
-
/** @foreignKey (cat_tipo_parametro.cat_tipo_parametro_id) @maxLength (4) @primaryKey */
|
|
1460
|
-
cat_tipo_parametro_id: number;
|
|
1461
|
-
}
|
|
1462
|
-
interface GraficaParametroTipoUpdateDTO {
|
|
1463
|
-
/** @foreignKey (grafica_parametro.grafica_parametro_id) @maxLength (4) @primaryKey @optional */
|
|
1464
|
-
grafica_parametro_id?: number;
|
|
1465
|
-
/** @foreignKey (cat_tipo_parametro.cat_tipo_parametro_id) @maxLength (4) @primaryKey @optional */
|
|
1466
|
-
cat_tipo_parametro_id?: number;
|
|
1467
|
-
}
|
|
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;
|
|
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.
|
|
@@ -1884,6 +3948,18 @@ interface APIDashboardGraficaGrupoEstiloReturns extends ApiHooksBaseReturns<Dash
|
|
|
1884
3948
|
}
|
|
1885
3949
|
declare const createAPIDashboardGraficaGrupoEstilo: () => APIDashboardGraficaGrupoEstiloReturns;
|
|
1886
3950
|
|
|
3951
|
+
/**
|
|
3952
|
+
* @description Hooks personalizados para el modelo DashboardGraficaGrupoRol.
|
|
3953
|
+
* @param dashboardGraficaGrupoRolClient - Cliente para realizar operaciones con el modelo DashboardGraficaGrupoRol.
|
|
3954
|
+
*/
|
|
3955
|
+
declare const dashboardGraficaGrupoRolHooksCustom: (dashboardGraficaGrupoRolClient: DashboardGraficaGrupoRolAPI) => {};
|
|
3956
|
+
interface DashboardGraficaGrupoRolHooksReturns extends ReturnType<typeof dashboardGraficaGrupoRolHooksCustom> {
|
|
3957
|
+
}
|
|
3958
|
+
|
|
3959
|
+
interface APIDashboardGraficaGrupoRolReturns extends ApiHooksBaseReturns<DashboardGraficaGrupoRolDTO, DashboardGraficaGrupoRolCreateDTO, DashboardGraficaGrupoRolUpdateDTO, DashboardGraficaGrupoRolQuery, DashboardGraficaGrupoRolDTO>, DashboardGraficaGrupoRolHooksReturns {
|
|
3960
|
+
}
|
|
3961
|
+
declare const createAPIDashboardGraficaGrupoRol: () => APIDashboardGraficaGrupoRolReturns;
|
|
3962
|
+
|
|
1887
3963
|
/**
|
|
1888
3964
|
* @description Hooks personalizados para el modelo DashboardRuta.
|
|
1889
3965
|
* @param dashboardRutaClient - Cliente para realizar operaciones con el modelo DashboardRuta.
|
|
@@ -2671,6 +4747,66 @@ declare const useFilterMatchDashboardGraficaElementoDetalle: (params: FilterMatc
|
|
|
2671
4747
|
refetch: () => Promise<void>;
|
|
2672
4748
|
};
|
|
2673
4749
|
|
|
4750
|
+
/** @description Hook para useFetchById de la entidad dashboard_grafica_elemento_estilo */
|
|
4751
|
+
declare const useFetchByIdDashboardGraficaElementoEstilo: (params: GetByIdParams<DashboardGraficaElementoEstiloQuery>) => {
|
|
4752
|
+
data: DashboardGraficaElementoEstiloDTO | null;
|
|
4753
|
+
error: Error | null;
|
|
4754
|
+
isFetching: boolean;
|
|
4755
|
+
isLoading: boolean;
|
|
4756
|
+
refetch: () => Promise<void>;
|
|
4757
|
+
};
|
|
4758
|
+
/** @description Hook para useFetchList de la entidad dashboard_grafica_elemento_estilo */
|
|
4759
|
+
declare const useFetchListDashboardGraficaElementoEstilo: (params: QueryParams<DashboardGraficaElementoEstiloQuery>, config?: useFetchListConfig) => {
|
|
4760
|
+
data: PaginatedResponse<DashboardGraficaElementoEstiloDTO> | null;
|
|
4761
|
+
error: Error | null;
|
|
4762
|
+
isFetching: boolean;
|
|
4763
|
+
isLoading: boolean;
|
|
4764
|
+
pagination: {
|
|
4765
|
+
page?: number;
|
|
4766
|
+
limit?: number;
|
|
4767
|
+
orderBy?: string;
|
|
4768
|
+
};
|
|
4769
|
+
refetch: () => Promise<void>;
|
|
4770
|
+
fetchPage: (page: number) => Promise<void>;
|
|
4771
|
+
fetchNextPage: () => void;
|
|
4772
|
+
fetchPreviousPage: () => void;
|
|
4773
|
+
fetchLimit: (limit: number) => Promise<void>;
|
|
4774
|
+
fetchPagination: ({ page, limit, orderBy }: {
|
|
4775
|
+
page?: number;
|
|
4776
|
+
limit?: number;
|
|
4777
|
+
orderBy?: string;
|
|
4778
|
+
}) => Promise<void>;
|
|
4779
|
+
};
|
|
4780
|
+
/** @description Hook para useCreate de la entidad dashboard_grafica_elemento_estilo */
|
|
4781
|
+
declare const useCreateDashboardGraficaElementoEstilo: () => {
|
|
4782
|
+
mutate: (params: CreateParams<DashboardGraficaElementoEstiloCreateDTO, DashboardGraficaElementoEstiloQuery>) => Promise<DashboardGraficaElementoEstiloDTO | null>;
|
|
4783
|
+
isLoading: boolean;
|
|
4784
|
+
error: Error | null;
|
|
4785
|
+
data: DashboardGraficaElementoEstiloDTO | null;
|
|
4786
|
+
};
|
|
4787
|
+
/** @description Hook para useUpdate de la entidad dashboard_grafica_elemento_estilo */
|
|
4788
|
+
declare const useUpdateDashboardGraficaElementoEstilo: () => {
|
|
4789
|
+
mutate: (params: UpdateParams<DashboardGraficaElementoEstiloUpdateDTO, DashboardGraficaElementoEstiloQuery>) => Promise<DashboardGraficaElementoEstiloDTO | null>;
|
|
4790
|
+
isLoading: boolean;
|
|
4791
|
+
error: Error | null;
|
|
4792
|
+
data: DashboardGraficaElementoEstiloDTO | null;
|
|
4793
|
+
};
|
|
4794
|
+
/** @description Hook para useDelete de la entidad dashboard_grafica_elemento_estilo */
|
|
4795
|
+
declare const useDeleteDashboardGraficaElementoEstilo: () => {
|
|
4796
|
+
mutate: (params: DeleteParams<DashboardGraficaElementoEstiloQuery>) => Promise<boolean>;
|
|
4797
|
+
isLoading: boolean;
|
|
4798
|
+
error: Error | null;
|
|
4799
|
+
success: boolean;
|
|
4800
|
+
};
|
|
4801
|
+
/** @description Hook para useFilterMatch de la entidad dashboard_grafica_elemento_estilo */
|
|
4802
|
+
declare const useFilterMatchDashboardGraficaElementoEstilo: (params: FilterMatchParams<DashboardGraficaElementoEstiloQuery>) => {
|
|
4803
|
+
data: DashboardGraficaElementoEstiloDTO[] | null;
|
|
4804
|
+
error: Error | null;
|
|
4805
|
+
isFetching: boolean;
|
|
4806
|
+
isLoading: boolean;
|
|
4807
|
+
refetch: () => Promise<void>;
|
|
4808
|
+
};
|
|
4809
|
+
|
|
2674
4810
|
/** @description Hook para useFetchById de la entidad dashboard_grafica_elemento_parametro */
|
|
2675
4811
|
declare const useFetchByIdDashboardGraficaElementoParametro: (params: GetByIdParams<DashboardGraficaElementoParametroQuery>) => {
|
|
2676
4812
|
data: DashboardGraficaElementoParametroDTO | null;
|
|
@@ -2851,6 +4987,66 @@ declare const useFilterMatchDashboardGraficaGrupoEstilo: (params: FilterMatchPar
|
|
|
2851
4987
|
refetch: () => Promise<void>;
|
|
2852
4988
|
};
|
|
2853
4989
|
|
|
4990
|
+
/** @description Hook para useFetchById de la entidad dashboard_grafica_grupo_rol */
|
|
4991
|
+
declare const useFetchByIdDashboardGraficaGrupoRol: (params: GetByIdParams<DashboardGraficaGrupoRolQuery>) => {
|
|
4992
|
+
data: DashboardGraficaGrupoRolDTO | null;
|
|
4993
|
+
error: Error | null;
|
|
4994
|
+
isFetching: boolean;
|
|
4995
|
+
isLoading: boolean;
|
|
4996
|
+
refetch: () => Promise<void>;
|
|
4997
|
+
};
|
|
4998
|
+
/** @description Hook para useFetchList de la entidad dashboard_grafica_grupo_rol */
|
|
4999
|
+
declare const useFetchListDashboardGraficaGrupoRol: (params: QueryParams<DashboardGraficaGrupoRolQuery>, config?: useFetchListConfig) => {
|
|
5000
|
+
data: PaginatedResponse<DashboardGraficaGrupoRolDTO> | null;
|
|
5001
|
+
error: Error | null;
|
|
5002
|
+
isFetching: boolean;
|
|
5003
|
+
isLoading: boolean;
|
|
5004
|
+
pagination: {
|
|
5005
|
+
page?: number;
|
|
5006
|
+
limit?: number;
|
|
5007
|
+
orderBy?: string;
|
|
5008
|
+
};
|
|
5009
|
+
refetch: () => Promise<void>;
|
|
5010
|
+
fetchPage: (page: number) => Promise<void>;
|
|
5011
|
+
fetchNextPage: () => void;
|
|
5012
|
+
fetchPreviousPage: () => void;
|
|
5013
|
+
fetchLimit: (limit: number) => Promise<void>;
|
|
5014
|
+
fetchPagination: ({ page, limit, orderBy }: {
|
|
5015
|
+
page?: number;
|
|
5016
|
+
limit?: number;
|
|
5017
|
+
orderBy?: string;
|
|
5018
|
+
}) => Promise<void>;
|
|
5019
|
+
};
|
|
5020
|
+
/** @description Hook para useCreate de la entidad dashboard_grafica_grupo_rol */
|
|
5021
|
+
declare const useCreateDashboardGraficaGrupoRol: () => {
|
|
5022
|
+
mutate: (params: CreateParams<DashboardGraficaGrupoRolCreateDTO, DashboardGraficaGrupoRolQuery>) => Promise<DashboardGraficaGrupoRolDTO | null>;
|
|
5023
|
+
isLoading: boolean;
|
|
5024
|
+
error: Error | null;
|
|
5025
|
+
data: DashboardGraficaGrupoRolDTO | null;
|
|
5026
|
+
};
|
|
5027
|
+
/** @description Hook para useUpdate de la entidad dashboard_grafica_grupo_rol */
|
|
5028
|
+
declare const useUpdateDashboardGraficaGrupoRol: () => {
|
|
5029
|
+
mutate: (params: UpdateParams<DashboardGraficaGrupoRolUpdateDTO, DashboardGraficaGrupoRolQuery>) => Promise<DashboardGraficaGrupoRolDTO | null>;
|
|
5030
|
+
isLoading: boolean;
|
|
5031
|
+
error: Error | null;
|
|
5032
|
+
data: DashboardGraficaGrupoRolDTO | null;
|
|
5033
|
+
};
|
|
5034
|
+
/** @description Hook para useDelete de la entidad dashboard_grafica_grupo_rol */
|
|
5035
|
+
declare const useDeleteDashboardGraficaGrupoRol: () => {
|
|
5036
|
+
mutate: (params: DeleteParams<DashboardGraficaGrupoRolQuery>) => Promise<boolean>;
|
|
5037
|
+
isLoading: boolean;
|
|
5038
|
+
error: Error | null;
|
|
5039
|
+
success: boolean;
|
|
5040
|
+
};
|
|
5041
|
+
/** @description Hook para useFilterMatch de la entidad dashboard_grafica_grupo_rol */
|
|
5042
|
+
declare const useFilterMatchDashboardGraficaGrupoRol: (params: FilterMatchParams<DashboardGraficaGrupoRolQuery>) => {
|
|
5043
|
+
data: DashboardGraficaGrupoRolDTO[] | null;
|
|
5044
|
+
error: Error | null;
|
|
5045
|
+
isFetching: boolean;
|
|
5046
|
+
isLoading: boolean;
|
|
5047
|
+
refetch: () => Promise<void>;
|
|
5048
|
+
};
|
|
5049
|
+
|
|
2854
5050
|
/** @description Hook para useFetchById de la entidad dashboard_ruta */
|
|
2855
5051
|
declare const useFetchByIdDashboardRuta: (params: GetByIdParams<DashboardRutaQuery>) => {
|
|
2856
5052
|
data: DashboardRutaDTO | null;
|
|
@@ -3751,4 +5947,4 @@ declare const useFilterMatchUsuarioRol: (params: FilterMatchParams<UsuarioRolQue
|
|
|
3751
5947
|
refetch: () => Promise<void>;
|
|
3752
5948
|
};
|
|
3753
5949
|
|
|
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 };
|
|
5950
|
+
export { APIFactory, ApiClientContext, createAPIAdeudo, createAPICatColor, createAPICatColorGrupo, createAPICatGraficaGrupo, createAPICatRolGrupo, createAPICatTema, createAPIDashboardEstilo, createAPIDashboardGrafica, createAPIDashboardGraficaElemento, createAPIDashboardGraficaElementoDetalle, createAPIDashboardGraficaElementoEstilo, createAPIDashboardGraficaElementoParametro, createAPIDashboardGraficaGrupo, createAPIDashboardGraficaGrupoEstilo, createAPIDashboardGraficaGrupoRol, 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, useCreateDashboardGraficaGrupoRol, 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, useDeleteDashboardGraficaGrupoRol, 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, useFetchByIdDashboardGraficaGrupoRol, 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, useFetchListDashboardGraficaGrupoRol, 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, useFilterMatchDashboardGraficaGrupoRol, 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, useUpdateDashboardGraficaGrupoRol, useUpdateDashboardRuta, useUpdateGrafica, useUpdateGraficaColor, useUpdateGraficaColorGrupo, useUpdateGraficaColorGrupoAsignacion, useUpdateGraficaColorGrupoTipoGrafica, useUpdateGraficaParametro, useUpdateGraficaParametroDefecto, useUpdateGraficaParametroTipo, useUpdateRol, useUpdateRolDashboardRuta, useUpdateTipoGrafica, useUpdateUsuario, useUpdateUsuarioDashboardAcceso, useUpdateUsuarioRol };
|