@erpp/react-api-cronos-frontend 1.0.1 → 1.0.3
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 +2125 -77
- package/dist/index.d.ts +2125 -77
- package/dist/index.js +2597 -726
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2475 -725
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -51,6 +51,66 @@ declare const setupAdeudoApi: ({ client }: BuildAPIParams) => {
|
|
|
51
51
|
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
52
52
|
};
|
|
53
53
|
|
|
54
|
+
declare const setupAdeudoResumenMensualApi: ({ client }: BuildAPIParams) => {
|
|
55
|
+
findByFilterMatch: (data?: {
|
|
56
|
+
filter: string;
|
|
57
|
+
pagination: {};
|
|
58
|
+
orderBy: string;
|
|
59
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
60
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
61
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
62
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
63
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
declare const setupAdeudoResumenTipoSueloApi: ({ client }: BuildAPIParams) => {
|
|
67
|
+
findByFilterMatch: (data?: {
|
|
68
|
+
filter: string;
|
|
69
|
+
pagination: {};
|
|
70
|
+
orderBy: string;
|
|
71
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
72
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
73
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
74
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
75
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
declare const setupAdeudoResumenTipoSueloResumenApi: ({ client }: BuildAPIParams) => {
|
|
79
|
+
findByFilterMatch: (data?: {
|
|
80
|
+
filter: string;
|
|
81
|
+
pagination: {};
|
|
82
|
+
orderBy: string;
|
|
83
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
84
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
85
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
86
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
87
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
declare const setupAdeudosPorPlazaResumenApi: ({ client }: BuildAPIParams) => {
|
|
91
|
+
findByFilterMatch: (data?: {
|
|
92
|
+
filter: string;
|
|
93
|
+
pagination: {};
|
|
94
|
+
orderBy: string;
|
|
95
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
96
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
97
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
98
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
99
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
declare const setupAdeudoTipoSueloResumenMensualApi: ({ client }: BuildAPIParams) => {
|
|
103
|
+
findByFilterMatch: (data?: {
|
|
104
|
+
filter: string;
|
|
105
|
+
pagination: {};
|
|
106
|
+
orderBy: string;
|
|
107
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
108
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
109
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
110
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
111
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
112
|
+
};
|
|
113
|
+
|
|
54
114
|
declare const setupCatAccionApi: ({ client }: BuildAPIParams) => {
|
|
55
115
|
findByFilterMatch: (data?: {
|
|
56
116
|
filter: string;
|
|
@@ -63,6 +123,18 @@ declare const setupCatAccionApi: ({ client }: BuildAPIParams) => {
|
|
|
63
123
|
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
64
124
|
};
|
|
65
125
|
|
|
126
|
+
declare const setupCatColorGrupoApi: ({ client }: BuildAPIParams) => {
|
|
127
|
+
findByFilterMatch: (data?: {
|
|
128
|
+
filter: string;
|
|
129
|
+
pagination: {};
|
|
130
|
+
orderBy: string;
|
|
131
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
132
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
133
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
134
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
135
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
136
|
+
};
|
|
137
|
+
|
|
66
138
|
declare const setupCatConceptoPagoApi: ({ client }: BuildAPIParams) => {
|
|
67
139
|
findByFilterMatch: (data?: {
|
|
68
140
|
filter: string;
|
|
@@ -135,6 +207,18 @@ declare const setupCatRolGrupoApi: ({ client }: BuildAPIParams) => {
|
|
|
135
207
|
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
136
208
|
};
|
|
137
209
|
|
|
210
|
+
declare const setupCatTemaApi: ({ client }: BuildAPIParams) => {
|
|
211
|
+
findByFilterMatch: (data?: {
|
|
212
|
+
filter: string;
|
|
213
|
+
pagination: {};
|
|
214
|
+
orderBy: string;
|
|
215
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
216
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
217
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
218
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
219
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
220
|
+
};
|
|
221
|
+
|
|
138
222
|
declare const setupCatTipoParametroApi: ({ client }: BuildAPIParams) => {
|
|
139
223
|
findByFilterMatch: (data?: {
|
|
140
224
|
filter: string;
|
|
@@ -207,6 +291,18 @@ declare const setupContribuyenteDomicilioApi: ({ client }: BuildAPIParams) => {
|
|
|
207
291
|
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
208
292
|
};
|
|
209
293
|
|
|
294
|
+
declare const setupCuentasConAltosMontosResumenApi: ({ client }: BuildAPIParams) => {
|
|
295
|
+
findByFilterMatch: (data?: {
|
|
296
|
+
filter: string;
|
|
297
|
+
pagination: {};
|
|
298
|
+
orderBy: string;
|
|
299
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
300
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
301
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
302
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
303
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
304
|
+
};
|
|
305
|
+
|
|
210
306
|
declare const setupDashboardEstiloApi: ({ client }: BuildAPIParams) => {
|
|
211
307
|
findByFilterMatch: (data?: {
|
|
212
308
|
filter: string;
|
|
@@ -339,6 +435,42 @@ declare const setupGraficaAgrupacionApi: ({ client }: BuildAPIParams) => {
|
|
|
339
435
|
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
340
436
|
};
|
|
341
437
|
|
|
438
|
+
declare const setupGraficaColorApi: ({ client }: BuildAPIParams) => {
|
|
439
|
+
findByFilterMatch: (data?: {
|
|
440
|
+
filter: string;
|
|
441
|
+
pagination: {};
|
|
442
|
+
orderBy: string;
|
|
443
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
444
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
445
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
446
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
447
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
448
|
+
};
|
|
449
|
+
|
|
450
|
+
declare const setupGraficaColorGrupoApi: ({ client }: BuildAPIParams) => {
|
|
451
|
+
findByFilterMatch: (data?: {
|
|
452
|
+
filter: string;
|
|
453
|
+
pagination: {};
|
|
454
|
+
orderBy: string;
|
|
455
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
456
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
457
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
458
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
459
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
460
|
+
};
|
|
461
|
+
|
|
462
|
+
declare const setupGraficaColorGrupoAsignacionApi: ({ client }: BuildAPIParams) => {
|
|
463
|
+
findByFilterMatch: (data?: {
|
|
464
|
+
filter: string;
|
|
465
|
+
pagination: {};
|
|
466
|
+
orderBy: string;
|
|
467
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
468
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
469
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
470
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
471
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
472
|
+
};
|
|
473
|
+
|
|
342
474
|
declare const setupGraficaFiltroApi: ({ client }: BuildAPIParams) => {
|
|
343
475
|
findByFilterMatch: (data?: {
|
|
344
476
|
filter: string;
|
|
@@ -411,6 +543,18 @@ declare const setupGrupoUsuarioApi: ({ client }: BuildAPIParams) => {
|
|
|
411
543
|
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
412
544
|
};
|
|
413
545
|
|
|
546
|
+
declare const setupJobAuditLogApi: ({ client }: BuildAPIParams) => {
|
|
547
|
+
findByFilterMatch: (data?: {
|
|
548
|
+
filter: string;
|
|
549
|
+
pagination: {};
|
|
550
|
+
orderBy: string;
|
|
551
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
552
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
553
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
554
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
555
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
556
|
+
};
|
|
557
|
+
|
|
414
558
|
declare const setupModuloApi: ({ client }: BuildAPIParams) => {
|
|
415
559
|
findByFilterMatch: (data?: {
|
|
416
560
|
filter: string;
|
|
@@ -435,6 +579,90 @@ declare const setupPagosApi: ({ client }: BuildAPIParams) => {
|
|
|
435
579
|
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
436
580
|
};
|
|
437
581
|
|
|
582
|
+
declare const setupPagosPorColoniasResumenApi: ({ client }: BuildAPIParams) => {
|
|
583
|
+
findByFilterMatch: (data?: {
|
|
584
|
+
filter: string;
|
|
585
|
+
pagination: {};
|
|
586
|
+
orderBy: string;
|
|
587
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
588
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
589
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
590
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
591
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
592
|
+
};
|
|
593
|
+
|
|
594
|
+
declare const setupPagosPorColoniasResumenMensualApi: ({ client }: BuildAPIParams) => {
|
|
595
|
+
findByFilterMatch: (data?: {
|
|
596
|
+
filter: string;
|
|
597
|
+
pagination: {};
|
|
598
|
+
orderBy: string;
|
|
599
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
600
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
601
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
602
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
603
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
604
|
+
};
|
|
605
|
+
|
|
606
|
+
declare const setupPagosPorTipoServicioMensualApi: ({ client }: BuildAPIParams) => {
|
|
607
|
+
findByFilterMatch: (data?: {
|
|
608
|
+
filter: string;
|
|
609
|
+
pagination: {};
|
|
610
|
+
orderBy: string;
|
|
611
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
612
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
613
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
614
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
615
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
616
|
+
};
|
|
617
|
+
|
|
618
|
+
declare const setupPagosPorTipoServicioResumenApi: ({ client }: BuildAPIParams) => {
|
|
619
|
+
findByFilterMatch: (data?: {
|
|
620
|
+
filter: string;
|
|
621
|
+
pagination: {};
|
|
622
|
+
orderBy: string;
|
|
623
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
624
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
625
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
626
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
627
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
628
|
+
};
|
|
629
|
+
|
|
630
|
+
declare const setupPagosPorTipoTarifaResumenApi: ({ client }: BuildAPIParams) => {
|
|
631
|
+
findByFilterMatch: (data?: {
|
|
632
|
+
filter: string;
|
|
633
|
+
pagination: {};
|
|
634
|
+
orderBy: string;
|
|
635
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
636
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
637
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
638
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
639
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
640
|
+
};
|
|
641
|
+
|
|
642
|
+
declare const setupPagosPorTipoTarifaResumenMensualApi: ({ client }: BuildAPIParams) => {
|
|
643
|
+
findByFilterMatch: (data?: {
|
|
644
|
+
filter: string;
|
|
645
|
+
pagination: {};
|
|
646
|
+
orderBy: string;
|
|
647
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
648
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
649
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
650
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
651
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
652
|
+
};
|
|
653
|
+
|
|
654
|
+
declare const setupPagosResumenMensualApi: ({ client }: BuildAPIParams) => {
|
|
655
|
+
findByFilterMatch: (data?: {
|
|
656
|
+
filter: string;
|
|
657
|
+
pagination: {};
|
|
658
|
+
orderBy: string;
|
|
659
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
660
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
661
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
662
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
663
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
664
|
+
};
|
|
665
|
+
|
|
438
666
|
declare const setupPermisoAccionEntidadApi: ({ client }: BuildAPIParams) => {
|
|
439
667
|
findByFilterMatch: (data?: {
|
|
440
668
|
filter: string;
|
|
@@ -615,21 +843,41 @@ declare const setupUsuarioRolApi: ({ client }: BuildAPIParams) => {
|
|
|
615
843
|
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
616
844
|
};
|
|
617
845
|
|
|
846
|
+
declare const setupUsuarioRolEliminacionLogApi: ({ client }: BuildAPIParams) => {
|
|
847
|
+
findByFilterMatch: (data?: {
|
|
848
|
+
filter: string;
|
|
849
|
+
pagination: {};
|
|
850
|
+
orderBy: string;
|
|
851
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
852
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
853
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
854
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
855
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
856
|
+
};
|
|
857
|
+
|
|
618
858
|
declare class APIFactory {
|
|
619
859
|
adeudo: ReturnType<typeof setupAdeudoApi>;
|
|
860
|
+
AdeudoResumenMensual: ReturnType<typeof setupAdeudoResumenMensualApi>;
|
|
861
|
+
AdeudoResumenTipoSuelo: ReturnType<typeof setupAdeudoResumenTipoSueloApi>;
|
|
862
|
+
AdeudoResumenTipoSueloResumen: ReturnType<typeof setupAdeudoResumenTipoSueloResumenApi>;
|
|
863
|
+
AdeudosPorPlazaResumen: ReturnType<typeof setupAdeudosPorPlazaResumenApi>;
|
|
864
|
+
AdeudoTipoSueloResumenMensual: ReturnType<typeof setupAdeudoTipoSueloResumenMensualApi>;
|
|
620
865
|
cat_accion: ReturnType<typeof setupCatAccionApi>;
|
|
866
|
+
cat_color_grupo: ReturnType<typeof setupCatColorGrupoApi>;
|
|
621
867
|
cat_concepto_pago: ReturnType<typeof setupCatConceptoPagoApi>;
|
|
622
868
|
cat_entidad: ReturnType<typeof setupCatEntidadApi>;
|
|
623
869
|
cat_fecha_agrupacion: ReturnType<typeof setupCatFechaAgrupacionApi>;
|
|
624
870
|
cat_grafica_grupo: ReturnType<typeof setupCatGraficaGrupoApi>;
|
|
625
871
|
cat_plaza: ReturnType<typeof setupCatPlazaApi>;
|
|
626
872
|
cat_rol_grupo: ReturnType<typeof setupCatRolGrupoApi>;
|
|
873
|
+
cat_tema: ReturnType<typeof setupCatTemaApi>;
|
|
627
874
|
cat_tipo_parametro: ReturnType<typeof setupCatTipoParametroApi>;
|
|
628
875
|
cat_tipo_servicio: ReturnType<typeof setupCatTipoServicioApi>;
|
|
629
876
|
cat_tipo_suelo: ReturnType<typeof setupCatTipoSueloApi>;
|
|
630
877
|
cat_tipo_tarifa: ReturnType<typeof setupCatTipoTarifaApi>;
|
|
631
878
|
contribuyente: ReturnType<typeof setupContribuyenteApi>;
|
|
632
879
|
contribuyente_domicilio: ReturnType<typeof setupContribuyenteDomicilioApi>;
|
|
880
|
+
CuentasConAltosMontosResumen: ReturnType<typeof setupCuentasConAltosMontosResumenApi>;
|
|
633
881
|
dashboard_estilo: ReturnType<typeof setupDashboardEstiloApi>;
|
|
634
882
|
dashboard_grafica: ReturnType<typeof setupDashboardGraficaApi>;
|
|
635
883
|
dashboard_grafica_elemento: ReturnType<typeof setupDashboardGraficaElementoApi>;
|
|
@@ -640,14 +888,25 @@ declare class APIFactory {
|
|
|
640
888
|
dashboard_ruta: ReturnType<typeof setupDashboardRutaApi>;
|
|
641
889
|
grafica: ReturnType<typeof setupGraficaApi>;
|
|
642
890
|
grafica_agrupacion: ReturnType<typeof setupGraficaAgrupacionApi>;
|
|
891
|
+
grafica_color: ReturnType<typeof setupGraficaColorApi>;
|
|
892
|
+
grafica_color_grupo: ReturnType<typeof setupGraficaColorGrupoApi>;
|
|
893
|
+
grafica_color_grupo_asignacion: ReturnType<typeof setupGraficaColorGrupoAsignacionApi>;
|
|
643
894
|
grafica_filtro: ReturnType<typeof setupGraficaFiltroApi>;
|
|
644
895
|
grafica_parametro: ReturnType<typeof setupGraficaParametroApi>;
|
|
645
896
|
grafica_parametro_defecto: ReturnType<typeof setupGraficaParametroDefectoApi>;
|
|
646
897
|
grafica_parametro_tipo: ReturnType<typeof setupGraficaParametroTipoApi>;
|
|
647
898
|
grafica_por_grupo: ReturnType<typeof setupGraficaPorGrupoApi>;
|
|
648
899
|
grupo_usuario: ReturnType<typeof setupGrupoUsuarioApi>;
|
|
900
|
+
JobAuditLog: ReturnType<typeof setupJobAuditLogApi>;
|
|
649
901
|
modulo: ReturnType<typeof setupModuloApi>;
|
|
650
902
|
pagos: ReturnType<typeof setupPagosApi>;
|
|
903
|
+
PagosPorColoniasResumen: ReturnType<typeof setupPagosPorColoniasResumenApi>;
|
|
904
|
+
PagosPorColoniasResumenMensual: ReturnType<typeof setupPagosPorColoniasResumenMensualApi>;
|
|
905
|
+
PagosPorTipoServicioMensual: ReturnType<typeof setupPagosPorTipoServicioMensualApi>;
|
|
906
|
+
PagosPorTipoServicioResumen: ReturnType<typeof setupPagosPorTipoServicioResumenApi>;
|
|
907
|
+
PagosPorTipoTarifaResumen: ReturnType<typeof setupPagosPorTipoTarifaResumenApi>;
|
|
908
|
+
PagosPorTipoTarifaResumenMensual: ReturnType<typeof setupPagosPorTipoTarifaResumenMensualApi>;
|
|
909
|
+
PagosResumenMensual: ReturnType<typeof setupPagosResumenMensualApi>;
|
|
651
910
|
permiso_accion_entidad: ReturnType<typeof setupPermisoAccionEntidadApi>;
|
|
652
911
|
permiso_modulo: ReturnType<typeof setupPermisoModuloApi>;
|
|
653
912
|
permiso_submodulo: ReturnType<typeof setupPermisoSubmoduloApi>;
|
|
@@ -663,6 +922,7 @@ declare class APIFactory {
|
|
|
663
922
|
usuario_grafica: ReturnType<typeof setupUsuarioGraficaApi>;
|
|
664
923
|
usuario_grafica_excluida: ReturnType<typeof setupUsuarioGraficaExcluidaApi>;
|
|
665
924
|
usuario_rol: ReturnType<typeof setupUsuarioRolApi>;
|
|
925
|
+
usuario_rol_eliminacion_log: ReturnType<typeof setupUsuarioRolEliminacionLogApi>;
|
|
666
926
|
urlBase: string;
|
|
667
927
|
getTokenCallback?: () => string;
|
|
668
928
|
axiosInstance: AxiosInstance;
|
|
@@ -673,35 +933,43 @@ declare class APIFactory {
|
|
|
673
933
|
getAvailableAPIs(): string[];
|
|
674
934
|
}
|
|
675
935
|
|
|
676
|
-
interface
|
|
677
|
-
/**
|
|
936
|
+
interface UsuarioRolEliminacionLogDTO {
|
|
937
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
938
|
+
log_id: number;
|
|
939
|
+
/** @maxLength (4) */
|
|
678
940
|
usuario_id: number;
|
|
679
|
-
/**
|
|
680
|
-
|
|
681
|
-
/** @maxLength (8)
|
|
682
|
-
|
|
683
|
-
/**
|
|
684
|
-
|
|
941
|
+
/** @maxLength (4) @nullable */
|
|
942
|
+
asignado_por_usuario_id?: number;
|
|
943
|
+
/** @maxLength (8) */
|
|
944
|
+
fecha_eliminacion: string;
|
|
945
|
+
/** @maxLength (200) @nullable */
|
|
946
|
+
eliminado_por?: string;
|
|
947
|
+
/** @maxLength (1000) @nullable */
|
|
948
|
+
descripcion?: string;
|
|
685
949
|
}
|
|
686
|
-
interface
|
|
687
|
-
/**
|
|
950
|
+
interface UsuarioRolEliminacionLogCreateDTO {
|
|
951
|
+
/** @maxLength (4) */
|
|
688
952
|
usuario_id: number;
|
|
689
|
-
/**
|
|
690
|
-
|
|
691
|
-
/** @maxLength (8)
|
|
692
|
-
|
|
693
|
-
/**
|
|
694
|
-
|
|
953
|
+
/** @maxLength (4) @nullable */
|
|
954
|
+
asignado_por_usuario_id?: number;
|
|
955
|
+
/** @maxLength (8) */
|
|
956
|
+
fecha_eliminacion: string;
|
|
957
|
+
/** @maxLength (200) @nullable */
|
|
958
|
+
eliminado_por?: string;
|
|
959
|
+
/** @maxLength (1000) @nullable */
|
|
960
|
+
descripcion?: string;
|
|
695
961
|
}
|
|
696
|
-
interface
|
|
697
|
-
/**
|
|
962
|
+
interface UsuarioRolEliminacionLogUpdateDTO {
|
|
963
|
+
/** @maxLength (4) @optional */
|
|
698
964
|
usuario_id?: number;
|
|
699
|
-
/**
|
|
700
|
-
rol_id?: number;
|
|
701
|
-
/** @maxLength (8) @nullable @optional */
|
|
702
|
-
fecha_asignacion?: string;
|
|
703
|
-
/** @foreignKey (usuario.usuario_id) @maxLength (4) @optional */
|
|
965
|
+
/** @maxLength (4) @nullable @optional */
|
|
704
966
|
asignado_por_usuario_id?: number;
|
|
967
|
+
/** @maxLength (8) @optional */
|
|
968
|
+
fecha_eliminacion?: string;
|
|
969
|
+
/** @maxLength (200) @nullable @optional */
|
|
970
|
+
eliminado_por?: string;
|
|
971
|
+
/** @maxLength (1000) @nullable @optional */
|
|
972
|
+
descripcion?: string;
|
|
705
973
|
}
|
|
706
974
|
|
|
707
975
|
interface BaseQuery {
|
|
@@ -711,6 +979,62 @@ interface BaseQuery {
|
|
|
711
979
|
where?: Record<string, any>;
|
|
712
980
|
}
|
|
713
981
|
|
|
982
|
+
/**
|
|
983
|
+
* @description Contexto para la configuración global del cliente API.
|
|
984
|
+
* Contiene la URL base y el token de autorización.
|
|
985
|
+
*/
|
|
986
|
+
declare class ApiClientContext {
|
|
987
|
+
/**
|
|
988
|
+
* @description URL base de la API.
|
|
989
|
+
* Se puede cambiar según el entorno (desarrollo, producción, etc.).
|
|
990
|
+
*/
|
|
991
|
+
static baseUrl: string;
|
|
992
|
+
/**
|
|
993
|
+
* @description Token de autorización global.
|
|
994
|
+
* Este token se utiliza para autenticar todas las solicitudes a la API.
|
|
995
|
+
* Debe ser configurado antes de realizar cualquier solicitud.
|
|
996
|
+
*/
|
|
997
|
+
static token: string;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
/**
|
|
1001
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de UsuarioRolEliminacionLog.
|
|
1002
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1003
|
+
*/
|
|
1004
|
+
interface UsuarioRolEliminacionLogQuery extends BaseQuery {
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
interface UsuarioRolDTO {
|
|
1008
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
1009
|
+
usuario_id: number;
|
|
1010
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey */
|
|
1011
|
+
rol_id: number;
|
|
1012
|
+
/** @maxLength (8) @nullable */
|
|
1013
|
+
fecha_asignacion?: string;
|
|
1014
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) */
|
|
1015
|
+
asignado_por_usuario_id: number;
|
|
1016
|
+
}
|
|
1017
|
+
interface UsuarioRolCreateDTO {
|
|
1018
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
1019
|
+
usuario_id: number;
|
|
1020
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey */
|
|
1021
|
+
rol_id: number;
|
|
1022
|
+
/** @maxLength (8) @nullable */
|
|
1023
|
+
fecha_asignacion?: string;
|
|
1024
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) */
|
|
1025
|
+
asignado_por_usuario_id: number;
|
|
1026
|
+
}
|
|
1027
|
+
interface UsuarioRolUpdateDTO {
|
|
1028
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey @optional */
|
|
1029
|
+
usuario_id?: number;
|
|
1030
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey @optional */
|
|
1031
|
+
rol_id?: number;
|
|
1032
|
+
/** @maxLength (8) @nullable @optional */
|
|
1033
|
+
fecha_asignacion?: string;
|
|
1034
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @optional */
|
|
1035
|
+
asignado_por_usuario_id?: number;
|
|
1036
|
+
}
|
|
1037
|
+
|
|
714
1038
|
/**
|
|
715
1039
|
* @description aqui se define la interfaz de la query que se usará para las peticiones de UsuarioRol.
|
|
716
1040
|
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
@@ -1236,6 +1560,308 @@ interface PermisoAccionEntidadUpdateDTO {
|
|
|
1236
1560
|
interface PermisoAccionEntidadQuery extends BaseQuery {
|
|
1237
1561
|
}
|
|
1238
1562
|
|
|
1563
|
+
interface PagosResumenMensualDTO {
|
|
1564
|
+
/** @maxLength (7) @primaryKey */
|
|
1565
|
+
anio_mes: string;
|
|
1566
|
+
/** @maxLength (9) @nullable */
|
|
1567
|
+
total_pagos?: number;
|
|
1568
|
+
/** @maxLength (8) @nullable */
|
|
1569
|
+
fecha_actualizacion?: string;
|
|
1570
|
+
}
|
|
1571
|
+
interface PagosResumenMensualCreateDTO {
|
|
1572
|
+
/** @maxLength (7) @primaryKey */
|
|
1573
|
+
anio_mes: string;
|
|
1574
|
+
/** @maxLength (9) @nullable */
|
|
1575
|
+
total_pagos?: number;
|
|
1576
|
+
/** @maxLength (8) @nullable */
|
|
1577
|
+
fecha_actualizacion?: string;
|
|
1578
|
+
}
|
|
1579
|
+
interface PagosResumenMensualUpdateDTO {
|
|
1580
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
1581
|
+
anio_mes?: string;
|
|
1582
|
+
/** @maxLength (9) @nullable @optional */
|
|
1583
|
+
total_pagos?: number;
|
|
1584
|
+
/** @maxLength (8) @nullable @optional */
|
|
1585
|
+
fecha_actualizacion?: string;
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
/**
|
|
1589
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosResumenMensual.
|
|
1590
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1591
|
+
*/
|
|
1592
|
+
interface PagosResumenMensualQuery extends BaseQuery {
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
interface PagosPorTipoTarifaResumenMensualDTO {
|
|
1596
|
+
/** @maxLength (7) @primaryKey */
|
|
1597
|
+
anio_mes: string;
|
|
1598
|
+
/** @maxLength (4) @primaryKey */
|
|
1599
|
+
tipo_tarifa_id: number;
|
|
1600
|
+
/** @maxLength (200) @nullable */
|
|
1601
|
+
tipo_tarifa?: string;
|
|
1602
|
+
/** @maxLength (4) @nullable */
|
|
1603
|
+
total_pagos?: number;
|
|
1604
|
+
/** @maxLength (9) @nullable */
|
|
1605
|
+
monto_total?: number;
|
|
1606
|
+
/** @maxLength (9) @nullable */
|
|
1607
|
+
pago_promedio?: number;
|
|
1608
|
+
/** @maxLength (9) @nullable */
|
|
1609
|
+
pago_minimo?: number;
|
|
1610
|
+
/** @maxLength (9) @nullable */
|
|
1611
|
+
pago_maximo?: number;
|
|
1612
|
+
/** @maxLength (8) @nullable */
|
|
1613
|
+
fecha_actualizacion?: string;
|
|
1614
|
+
}
|
|
1615
|
+
interface PagosPorTipoTarifaResumenMensualCreateDTO {
|
|
1616
|
+
/** @maxLength (7) @primaryKey */
|
|
1617
|
+
anio_mes: string;
|
|
1618
|
+
/** @maxLength (4) @primaryKey */
|
|
1619
|
+
tipo_tarifa_id: number;
|
|
1620
|
+
/** @maxLength (200) @nullable */
|
|
1621
|
+
tipo_tarifa?: string;
|
|
1622
|
+
/** @maxLength (4) @nullable */
|
|
1623
|
+
total_pagos?: number;
|
|
1624
|
+
/** @maxLength (9) @nullable */
|
|
1625
|
+
monto_total?: number;
|
|
1626
|
+
/** @maxLength (9) @nullable */
|
|
1627
|
+
pago_promedio?: number;
|
|
1628
|
+
/** @maxLength (9) @nullable */
|
|
1629
|
+
pago_minimo?: number;
|
|
1630
|
+
/** @maxLength (9) @nullable */
|
|
1631
|
+
pago_maximo?: number;
|
|
1632
|
+
/** @maxLength (8) @nullable */
|
|
1633
|
+
fecha_actualizacion?: string;
|
|
1634
|
+
}
|
|
1635
|
+
interface PagosPorTipoTarifaResumenMensualUpdateDTO {
|
|
1636
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
1637
|
+
anio_mes?: string;
|
|
1638
|
+
/** @maxLength (4) @primaryKey @optional */
|
|
1639
|
+
tipo_tarifa_id?: number;
|
|
1640
|
+
/** @maxLength (200) @nullable @optional */
|
|
1641
|
+
tipo_tarifa?: string;
|
|
1642
|
+
/** @maxLength (4) @nullable @optional */
|
|
1643
|
+
total_pagos?: number;
|
|
1644
|
+
/** @maxLength (9) @nullable @optional */
|
|
1645
|
+
monto_total?: number;
|
|
1646
|
+
/** @maxLength (9) @nullable @optional */
|
|
1647
|
+
pago_promedio?: number;
|
|
1648
|
+
/** @maxLength (9) @nullable @optional */
|
|
1649
|
+
pago_minimo?: number;
|
|
1650
|
+
/** @maxLength (9) @nullable @optional */
|
|
1651
|
+
pago_maximo?: number;
|
|
1652
|
+
/** @maxLength (8) @nullable @optional */
|
|
1653
|
+
fecha_actualizacion?: string;
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
/**
|
|
1657
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorTipoTarifaResumenMensual.
|
|
1658
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1659
|
+
*/
|
|
1660
|
+
interface PagosPorTipoTarifaResumenMensualQuery extends BaseQuery {
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
interface PagosPorTipoTarifaResumenDTO {
|
|
1664
|
+
/** @maxLength (4) @primaryKey */
|
|
1665
|
+
tipo_tarifa_id: number;
|
|
1666
|
+
/** @maxLength (200) @nullable */
|
|
1667
|
+
tipo_tarifa?: string;
|
|
1668
|
+
/** @maxLength (4) @nullable */
|
|
1669
|
+
total_pagos?: number;
|
|
1670
|
+
/** @maxLength (9) @nullable */
|
|
1671
|
+
monto_total?: number;
|
|
1672
|
+
/** @maxLength (9) @nullable */
|
|
1673
|
+
pago_promedio?: number;
|
|
1674
|
+
/** @maxLength (9) @nullable */
|
|
1675
|
+
pago_minimo?: number;
|
|
1676
|
+
/** @maxLength (9) @nullable */
|
|
1677
|
+
pago_maximo?: number;
|
|
1678
|
+
/** @maxLength (8) @nullable */
|
|
1679
|
+
fecha_actualizacion?: string;
|
|
1680
|
+
}
|
|
1681
|
+
interface PagosPorTipoTarifaResumenCreateDTO {
|
|
1682
|
+
/** @maxLength (4) @primaryKey */
|
|
1683
|
+
tipo_tarifa_id: number;
|
|
1684
|
+
/** @maxLength (200) @nullable */
|
|
1685
|
+
tipo_tarifa?: string;
|
|
1686
|
+
/** @maxLength (4) @nullable */
|
|
1687
|
+
total_pagos?: number;
|
|
1688
|
+
/** @maxLength (9) @nullable */
|
|
1689
|
+
monto_total?: number;
|
|
1690
|
+
/** @maxLength (9) @nullable */
|
|
1691
|
+
pago_promedio?: number;
|
|
1692
|
+
/** @maxLength (9) @nullable */
|
|
1693
|
+
pago_minimo?: number;
|
|
1694
|
+
/** @maxLength (9) @nullable */
|
|
1695
|
+
pago_maximo?: number;
|
|
1696
|
+
/** @maxLength (8) @nullable */
|
|
1697
|
+
fecha_actualizacion?: string;
|
|
1698
|
+
}
|
|
1699
|
+
interface PagosPorTipoTarifaResumenUpdateDTO {
|
|
1700
|
+
/** @maxLength (4) @primaryKey @optional */
|
|
1701
|
+
tipo_tarifa_id?: number;
|
|
1702
|
+
/** @maxLength (200) @nullable @optional */
|
|
1703
|
+
tipo_tarifa?: string;
|
|
1704
|
+
/** @maxLength (4) @nullable @optional */
|
|
1705
|
+
total_pagos?: number;
|
|
1706
|
+
/** @maxLength (9) @nullable @optional */
|
|
1707
|
+
monto_total?: number;
|
|
1708
|
+
/** @maxLength (9) @nullable @optional */
|
|
1709
|
+
pago_promedio?: number;
|
|
1710
|
+
/** @maxLength (9) @nullable @optional */
|
|
1711
|
+
pago_minimo?: number;
|
|
1712
|
+
/** @maxLength (9) @nullable @optional */
|
|
1713
|
+
pago_maximo?: number;
|
|
1714
|
+
/** @maxLength (8) @nullable @optional */
|
|
1715
|
+
fecha_actualizacion?: string;
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
/**
|
|
1719
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorTipoTarifaResumen.
|
|
1720
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1721
|
+
*/
|
|
1722
|
+
interface PagosPorTipoTarifaResumenQuery extends BaseQuery {
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
interface PagosPorTipoServicioResumenDTO {
|
|
1726
|
+
/** @maxLength (200) @primaryKey */
|
|
1727
|
+
tipo_servicio: string;
|
|
1728
|
+
/** @maxLength (9) @nullable */
|
|
1729
|
+
total_pagado?: number;
|
|
1730
|
+
/** @maxLength (8) @nullable */
|
|
1731
|
+
fecha_actualizacion?: string;
|
|
1732
|
+
}
|
|
1733
|
+
interface PagosPorTipoServicioResumenCreateDTO {
|
|
1734
|
+
/** @maxLength (200) @primaryKey */
|
|
1735
|
+
tipo_servicio: string;
|
|
1736
|
+
/** @maxLength (9) @nullable */
|
|
1737
|
+
total_pagado?: number;
|
|
1738
|
+
/** @maxLength (8) @nullable */
|
|
1739
|
+
fecha_actualizacion?: string;
|
|
1740
|
+
}
|
|
1741
|
+
interface PagosPorTipoServicioResumenUpdateDTO {
|
|
1742
|
+
/** @maxLength (200) @primaryKey @optional */
|
|
1743
|
+
tipo_servicio?: string;
|
|
1744
|
+
/** @maxLength (9) @nullable @optional */
|
|
1745
|
+
total_pagado?: number;
|
|
1746
|
+
/** @maxLength (8) @nullable @optional */
|
|
1747
|
+
fecha_actualizacion?: string;
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
/**
|
|
1751
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorTipoServicioResumen.
|
|
1752
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1753
|
+
*/
|
|
1754
|
+
interface PagosPorTipoServicioResumenQuery extends BaseQuery {
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1757
|
+
interface PagosPorTipoServicioMensualDTO {
|
|
1758
|
+
/** @maxLength (7) @primaryKey */
|
|
1759
|
+
anio_mes: string;
|
|
1760
|
+
/** @maxLength (200) @primaryKey */
|
|
1761
|
+
tipo_servicio: string;
|
|
1762
|
+
/** @maxLength (9) @nullable */
|
|
1763
|
+
total_pagado?: number;
|
|
1764
|
+
/** @maxLength (8) @nullable */
|
|
1765
|
+
fecha_actualizacion?: string;
|
|
1766
|
+
}
|
|
1767
|
+
interface PagosPorTipoServicioMensualCreateDTO {
|
|
1768
|
+
/** @maxLength (7) @primaryKey */
|
|
1769
|
+
anio_mes: string;
|
|
1770
|
+
/** @maxLength (200) @primaryKey */
|
|
1771
|
+
tipo_servicio: string;
|
|
1772
|
+
/** @maxLength (9) @nullable */
|
|
1773
|
+
total_pagado?: number;
|
|
1774
|
+
/** @maxLength (8) @nullable */
|
|
1775
|
+
fecha_actualizacion?: string;
|
|
1776
|
+
}
|
|
1777
|
+
interface PagosPorTipoServicioMensualUpdateDTO {
|
|
1778
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
1779
|
+
anio_mes?: string;
|
|
1780
|
+
/** @maxLength (200) @primaryKey @optional */
|
|
1781
|
+
tipo_servicio?: string;
|
|
1782
|
+
/** @maxLength (9) @nullable @optional */
|
|
1783
|
+
total_pagado?: number;
|
|
1784
|
+
/** @maxLength (8) @nullable @optional */
|
|
1785
|
+
fecha_actualizacion?: string;
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
/**
|
|
1789
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorTipoServicioMensual.
|
|
1790
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1791
|
+
*/
|
|
1792
|
+
interface PagosPorTipoServicioMensualQuery extends BaseQuery {
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
interface PagosPorColoniasResumenMensualDTO {
|
|
1796
|
+
/** @maxLength (7) @primaryKey */
|
|
1797
|
+
anio_mes: string;
|
|
1798
|
+
/** @maxLength (200) @primaryKey */
|
|
1799
|
+
colonia: string;
|
|
1800
|
+
/** @maxLength (9) @nullable */
|
|
1801
|
+
total_pagado?: number;
|
|
1802
|
+
/** @maxLength (8) @nullable */
|
|
1803
|
+
fecha_actualizacion?: string;
|
|
1804
|
+
}
|
|
1805
|
+
interface PagosPorColoniasResumenMensualCreateDTO {
|
|
1806
|
+
/** @maxLength (7) @primaryKey */
|
|
1807
|
+
anio_mes: string;
|
|
1808
|
+
/** @maxLength (200) @primaryKey */
|
|
1809
|
+
colonia: string;
|
|
1810
|
+
/** @maxLength (9) @nullable */
|
|
1811
|
+
total_pagado?: number;
|
|
1812
|
+
/** @maxLength (8) @nullable */
|
|
1813
|
+
fecha_actualizacion?: string;
|
|
1814
|
+
}
|
|
1815
|
+
interface PagosPorColoniasResumenMensualUpdateDTO {
|
|
1816
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
1817
|
+
anio_mes?: string;
|
|
1818
|
+
/** @maxLength (200) @primaryKey @optional */
|
|
1819
|
+
colonia?: string;
|
|
1820
|
+
/** @maxLength (9) @nullable @optional */
|
|
1821
|
+
total_pagado?: number;
|
|
1822
|
+
/** @maxLength (8) @nullable @optional */
|
|
1823
|
+
fecha_actualizacion?: string;
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
/**
|
|
1827
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorColoniasResumenMensual.
|
|
1828
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1829
|
+
*/
|
|
1830
|
+
interface PagosPorColoniasResumenMensualQuery extends BaseQuery {
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
interface PagosPorColoniasResumenDTO {
|
|
1834
|
+
/** @maxLength (200) @primaryKey */
|
|
1835
|
+
colonia: string;
|
|
1836
|
+
/** @maxLength (9) @nullable */
|
|
1837
|
+
total_pagado?: number;
|
|
1838
|
+
/** @maxLength (8) @nullable */
|
|
1839
|
+
fecha_actualizacion?: string;
|
|
1840
|
+
}
|
|
1841
|
+
interface PagosPorColoniasResumenCreateDTO {
|
|
1842
|
+
/** @maxLength (200) @primaryKey */
|
|
1843
|
+
colonia: string;
|
|
1844
|
+
/** @maxLength (9) @nullable */
|
|
1845
|
+
total_pagado?: number;
|
|
1846
|
+
/** @maxLength (8) @nullable */
|
|
1847
|
+
fecha_actualizacion?: string;
|
|
1848
|
+
}
|
|
1849
|
+
interface PagosPorColoniasResumenUpdateDTO {
|
|
1850
|
+
/** @maxLength (200) @primaryKey @optional */
|
|
1851
|
+
colonia?: string;
|
|
1852
|
+
/** @maxLength (9) @nullable @optional */
|
|
1853
|
+
total_pagado?: number;
|
|
1854
|
+
/** @maxLength (8) @nullable @optional */
|
|
1855
|
+
fecha_actualizacion?: string;
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
/**
|
|
1859
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PagosPorColoniasResumen.
|
|
1860
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1861
|
+
*/
|
|
1862
|
+
interface PagosPorColoniasResumenQuery extends BaseQuery {
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1239
1865
|
interface PagosDTO {
|
|
1240
1866
|
/** @maxLength (4) @identity @primaryKey */
|
|
1241
1867
|
id: number;
|
|
@@ -1346,6 +1972,58 @@ interface ModuloUpdateDTO {
|
|
|
1346
1972
|
interface ModuloQuery extends BaseQuery {
|
|
1347
1973
|
}
|
|
1348
1974
|
|
|
1975
|
+
interface JobAuditLogDTO {
|
|
1976
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1977
|
+
id: number;
|
|
1978
|
+
/** @maxLength (400) @nullable */
|
|
1979
|
+
job_name?: string;
|
|
1980
|
+
/** @maxLength (400) @nullable */
|
|
1981
|
+
step_name?: string;
|
|
1982
|
+
/** @maxLength (8) @nullable */
|
|
1983
|
+
fecha_ejecucion?: string;
|
|
1984
|
+
/** @maxLength (4) @nullable */
|
|
1985
|
+
registros_afectados?: number;
|
|
1986
|
+
/** @maxLength (100) @nullable */
|
|
1987
|
+
status?: string;
|
|
1988
|
+
/** @maxLength (-1) @nullable */
|
|
1989
|
+
mensaje?: string;
|
|
1990
|
+
}
|
|
1991
|
+
interface JobAuditLogCreateDTO {
|
|
1992
|
+
/** @maxLength (400) @nullable */
|
|
1993
|
+
job_name?: string;
|
|
1994
|
+
/** @maxLength (400) @nullable */
|
|
1995
|
+
step_name?: string;
|
|
1996
|
+
/** @maxLength (8) @nullable */
|
|
1997
|
+
fecha_ejecucion?: string;
|
|
1998
|
+
/** @maxLength (4) @nullable */
|
|
1999
|
+
registros_afectados?: number;
|
|
2000
|
+
/** @maxLength (100) @nullable */
|
|
2001
|
+
status?: string;
|
|
2002
|
+
/** @maxLength (-1) @nullable */
|
|
2003
|
+
mensaje?: string;
|
|
2004
|
+
}
|
|
2005
|
+
interface JobAuditLogUpdateDTO {
|
|
2006
|
+
/** @maxLength (400) @nullable @optional */
|
|
2007
|
+
job_name?: string;
|
|
2008
|
+
/** @maxLength (400) @nullable @optional */
|
|
2009
|
+
step_name?: string;
|
|
2010
|
+
/** @maxLength (8) @nullable @optional */
|
|
2011
|
+
fecha_ejecucion?: string;
|
|
2012
|
+
/** @maxLength (4) @nullable @optional */
|
|
2013
|
+
registros_afectados?: number;
|
|
2014
|
+
/** @maxLength (100) @nullable @optional */
|
|
2015
|
+
status?: string;
|
|
2016
|
+
/** @maxLength (-1) @nullable @optional */
|
|
2017
|
+
mensaje?: string;
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
/**
|
|
2021
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de JobAuditLog.
|
|
2022
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2023
|
+
*/
|
|
2024
|
+
interface JobAuditLogQuery extends BaseQuery {
|
|
2025
|
+
}
|
|
2026
|
+
|
|
1349
2027
|
interface GrupoUsuarioDTO {
|
|
1350
2028
|
/** @maxLength (4) @identity @primaryKey */
|
|
1351
2029
|
grupo_usuario_id: number;
|
|
@@ -1558,12 +2236,156 @@ interface GraficaFiltroUpdateDTO {
|
|
|
1558
2236
|
interface GraficaFiltroQuery extends BaseQuery {
|
|
1559
2237
|
}
|
|
1560
2238
|
|
|
1561
|
-
interface
|
|
2239
|
+
interface GraficaColorGrupoAsignacionDTO {
|
|
1562
2240
|
/** @maxLength (4) @identity @primaryKey */
|
|
1563
|
-
|
|
1564
|
-
/** @maxLength (
|
|
1565
|
-
|
|
1566
|
-
/** @maxLength (
|
|
2241
|
+
grafica_color_grupo_asignacion_id: number;
|
|
2242
|
+
/** @foreignKey (grafica_color_grupo.grafica_color_grupo_id) @maxLength (4) */
|
|
2243
|
+
grafica_color_grupo_id: number;
|
|
2244
|
+
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) */
|
|
2245
|
+
grafica_color_id: number;
|
|
2246
|
+
/** @maxLength (8) @nullable */
|
|
2247
|
+
fecha_creacion?: string;
|
|
2248
|
+
/** @maxLength (8) @nullable */
|
|
2249
|
+
fecha_actualizacion?: string;
|
|
2250
|
+
}
|
|
2251
|
+
interface GraficaColorGrupoAsignacionCreateDTO {
|
|
2252
|
+
/** @foreignKey (grafica_color_grupo.grafica_color_grupo_id) @maxLength (4) */
|
|
2253
|
+
grafica_color_grupo_id: number;
|
|
2254
|
+
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) */
|
|
2255
|
+
grafica_color_id: number;
|
|
2256
|
+
/** @maxLength (8) @nullable */
|
|
2257
|
+
fecha_creacion?: string;
|
|
2258
|
+
/** @maxLength (8) @nullable */
|
|
2259
|
+
fecha_actualizacion?: string;
|
|
2260
|
+
}
|
|
2261
|
+
interface GraficaColorGrupoAsignacionUpdateDTO {
|
|
2262
|
+
/** @foreignKey (grafica_color_grupo.grafica_color_grupo_id) @maxLength (4) @optional */
|
|
2263
|
+
grafica_color_grupo_id?: number;
|
|
2264
|
+
/** @foreignKey (grafica_color.grafica_color_id) @maxLength (4) @optional */
|
|
2265
|
+
grafica_color_id?: number;
|
|
2266
|
+
/** @maxLength (8) @nullable @optional */
|
|
2267
|
+
fecha_creacion?: string;
|
|
2268
|
+
/** @maxLength (8) @nullable @optional */
|
|
2269
|
+
fecha_actualizacion?: string;
|
|
2270
|
+
}
|
|
2271
|
+
|
|
2272
|
+
/**
|
|
2273
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaColorGrupoAsignacion.
|
|
2274
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2275
|
+
*/
|
|
2276
|
+
interface GraficaColorGrupoAsignacionQuery extends BaseQuery {
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
interface GraficaColorGrupoDTO {
|
|
2280
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2281
|
+
grafica_color_grupo_id: number;
|
|
2282
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
2283
|
+
grafica_id: number;
|
|
2284
|
+
/** @foreignKey (cat_tema.tema_id) @maxLength (4) */
|
|
2285
|
+
tema_id: number;
|
|
2286
|
+
/** @foreignKey (cat_color_grupo.color_grupo_id) @maxLength (4) */
|
|
2287
|
+
color_grupo_id: number;
|
|
2288
|
+
/** @maxLength (8) @nullable */
|
|
2289
|
+
fecha_creacion?: string;
|
|
2290
|
+
/** @maxLength (8) @nullable */
|
|
2291
|
+
fecha_actualizacion?: string;
|
|
2292
|
+
}
|
|
2293
|
+
interface GraficaColorGrupoCreateDTO {
|
|
2294
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
2295
|
+
grafica_id: number;
|
|
2296
|
+
/** @foreignKey (cat_tema.tema_id) @maxLength (4) */
|
|
2297
|
+
tema_id: number;
|
|
2298
|
+
/** @foreignKey (cat_color_grupo.color_grupo_id) @maxLength (4) */
|
|
2299
|
+
color_grupo_id: number;
|
|
2300
|
+
/** @maxLength (8) @nullable */
|
|
2301
|
+
fecha_creacion?: string;
|
|
2302
|
+
/** @maxLength (8) @nullable */
|
|
2303
|
+
fecha_actualizacion?: string;
|
|
2304
|
+
}
|
|
2305
|
+
interface GraficaColorGrupoUpdateDTO {
|
|
2306
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @optional */
|
|
2307
|
+
grafica_id?: number;
|
|
2308
|
+
/** @foreignKey (cat_tema.tema_id) @maxLength (4) @optional */
|
|
2309
|
+
tema_id?: number;
|
|
2310
|
+
/** @foreignKey (cat_color_grupo.color_grupo_id) @maxLength (4) @optional */
|
|
2311
|
+
color_grupo_id?: number;
|
|
2312
|
+
/** @maxLength (8) @nullable @optional */
|
|
2313
|
+
fecha_creacion?: string;
|
|
2314
|
+
/** @maxLength (8) @nullable @optional */
|
|
2315
|
+
fecha_actualizacion?: string;
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2318
|
+
/**
|
|
2319
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaColorGrupo.
|
|
2320
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2321
|
+
*/
|
|
2322
|
+
interface GraficaColorGrupoQuery extends BaseQuery {
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
interface GraficaColorDTO {
|
|
2326
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2327
|
+
grafica_color_id: number;
|
|
2328
|
+
/** @maxLength (7) @nullable */
|
|
2329
|
+
color_titulo?: string;
|
|
2330
|
+
/** @maxLength (7) @nullable */
|
|
2331
|
+
color_texto_x?: string;
|
|
2332
|
+
/** @maxLength (7) @nullable */
|
|
2333
|
+
color_texto_y?: string;
|
|
2334
|
+
/** @maxLength (7) @nullable */
|
|
2335
|
+
color_texto_fecha?: string;
|
|
2336
|
+
/** @maxLength (7) @nullable */
|
|
2337
|
+
color_texto_general?: string;
|
|
2338
|
+
/** @maxLength (8) @nullable */
|
|
2339
|
+
fecha_creacion?: string;
|
|
2340
|
+
/** @maxLength (8) @nullable */
|
|
2341
|
+
fecha_actualizacion?: string;
|
|
2342
|
+
}
|
|
2343
|
+
interface GraficaColorCreateDTO {
|
|
2344
|
+
/** @maxLength (7) @nullable */
|
|
2345
|
+
color_titulo?: string;
|
|
2346
|
+
/** @maxLength (7) @nullable */
|
|
2347
|
+
color_texto_x?: string;
|
|
2348
|
+
/** @maxLength (7) @nullable */
|
|
2349
|
+
color_texto_y?: string;
|
|
2350
|
+
/** @maxLength (7) @nullable */
|
|
2351
|
+
color_texto_fecha?: string;
|
|
2352
|
+
/** @maxLength (7) @nullable */
|
|
2353
|
+
color_texto_general?: string;
|
|
2354
|
+
/** @maxLength (8) @nullable */
|
|
2355
|
+
fecha_creacion?: string;
|
|
2356
|
+
/** @maxLength (8) @nullable */
|
|
2357
|
+
fecha_actualizacion?: string;
|
|
2358
|
+
}
|
|
2359
|
+
interface GraficaColorUpdateDTO {
|
|
2360
|
+
/** @maxLength (7) @nullable @optional */
|
|
2361
|
+
color_titulo?: string;
|
|
2362
|
+
/** @maxLength (7) @nullable @optional */
|
|
2363
|
+
color_texto_x?: string;
|
|
2364
|
+
/** @maxLength (7) @nullable @optional */
|
|
2365
|
+
color_texto_y?: string;
|
|
2366
|
+
/** @maxLength (7) @nullable @optional */
|
|
2367
|
+
color_texto_fecha?: string;
|
|
2368
|
+
/** @maxLength (7) @nullable @optional */
|
|
2369
|
+
color_texto_general?: string;
|
|
2370
|
+
/** @maxLength (8) @nullable @optional */
|
|
2371
|
+
fecha_creacion?: string;
|
|
2372
|
+
/** @maxLength (8) @nullable @optional */
|
|
2373
|
+
fecha_actualizacion?: string;
|
|
2374
|
+
}
|
|
2375
|
+
|
|
2376
|
+
/**
|
|
2377
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaColor.
|
|
2378
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2379
|
+
*/
|
|
2380
|
+
interface GraficaColorQuery extends BaseQuery {
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2383
|
+
interface GraficaDTO {
|
|
2384
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2385
|
+
grafica_id: number;
|
|
2386
|
+
/** @maxLength (200) */
|
|
2387
|
+
nombre: string;
|
|
2388
|
+
/** @maxLength (510) @nullable */
|
|
1567
2389
|
descripcion?: string;
|
|
1568
2390
|
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) */
|
|
1569
2391
|
tipo_grafica_id: number;
|
|
@@ -1910,6 +2732,50 @@ interface DashboardEstiloUpdateDTO {
|
|
|
1910
2732
|
interface DashboardEstiloQuery extends BaseQuery {
|
|
1911
2733
|
}
|
|
1912
2734
|
|
|
2735
|
+
interface CuentasConAltosMontosResumenDTO {
|
|
2736
|
+
/** @maxLength (100) @primaryKey */
|
|
2737
|
+
rango: string;
|
|
2738
|
+
/** @maxLength (4) @nullable */
|
|
2739
|
+
cantidad_cuentas?: number;
|
|
2740
|
+
/** @maxLength (9) @nullable */
|
|
2741
|
+
total_adeudo?: number;
|
|
2742
|
+
/** @maxLength (-1) @nullable */
|
|
2743
|
+
cuentas_listado?: string;
|
|
2744
|
+
/** @maxLength (8) @nullable */
|
|
2745
|
+
fecha_actualizacion?: string;
|
|
2746
|
+
}
|
|
2747
|
+
interface CuentasConAltosMontosResumenCreateDTO {
|
|
2748
|
+
/** @maxLength (100) @primaryKey */
|
|
2749
|
+
rango: string;
|
|
2750
|
+
/** @maxLength (4) @nullable */
|
|
2751
|
+
cantidad_cuentas?: number;
|
|
2752
|
+
/** @maxLength (9) @nullable */
|
|
2753
|
+
total_adeudo?: number;
|
|
2754
|
+
/** @maxLength (-1) @nullable */
|
|
2755
|
+
cuentas_listado?: string;
|
|
2756
|
+
/** @maxLength (8) @nullable */
|
|
2757
|
+
fecha_actualizacion?: string;
|
|
2758
|
+
}
|
|
2759
|
+
interface CuentasConAltosMontosResumenUpdateDTO {
|
|
2760
|
+
/** @maxLength (100) @primaryKey @optional */
|
|
2761
|
+
rango?: string;
|
|
2762
|
+
/** @maxLength (4) @nullable @optional */
|
|
2763
|
+
cantidad_cuentas?: number;
|
|
2764
|
+
/** @maxLength (9) @nullable @optional */
|
|
2765
|
+
total_adeudo?: number;
|
|
2766
|
+
/** @maxLength (-1) @nullable @optional */
|
|
2767
|
+
cuentas_listado?: string;
|
|
2768
|
+
/** @maxLength (8) @nullable @optional */
|
|
2769
|
+
fecha_actualizacion?: string;
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2772
|
+
/**
|
|
2773
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CuentasConAltosMontosResumen.
|
|
2774
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2775
|
+
*/
|
|
2776
|
+
interface CuentasConAltosMontosResumenQuery extends BaseQuery {
|
|
2777
|
+
}
|
|
2778
|
+
|
|
1913
2779
|
interface ContribuyenteDomicilioDTO {
|
|
1914
2780
|
/** @maxLength (4) @identity @primaryKey */
|
|
1915
2781
|
contribuyente_domicilio_id: number;
|
|
@@ -2114,6 +2980,46 @@ interface CatTipoParametroUpdateDTO {
|
|
|
2114
2980
|
interface CatTipoParametroQuery extends BaseQuery {
|
|
2115
2981
|
}
|
|
2116
2982
|
|
|
2983
|
+
interface CatTemaDTO {
|
|
2984
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2985
|
+
tema_id: number;
|
|
2986
|
+
/** @maxLength (100) */
|
|
2987
|
+
nombre_tema: string;
|
|
2988
|
+
/** @maxLength (255) @nullable */
|
|
2989
|
+
descripcion?: string;
|
|
2990
|
+
/** @maxLength (8) @nullable */
|
|
2991
|
+
fecha_creacion?: string;
|
|
2992
|
+
/** @maxLength (8) @nullable */
|
|
2993
|
+
fecha_actualizacion?: string;
|
|
2994
|
+
}
|
|
2995
|
+
interface CatTemaCreateDTO {
|
|
2996
|
+
/** @maxLength (100) */
|
|
2997
|
+
nombre_tema: string;
|
|
2998
|
+
/** @maxLength (255) @nullable */
|
|
2999
|
+
descripcion?: string;
|
|
3000
|
+
/** @maxLength (8) @nullable */
|
|
3001
|
+
fecha_creacion?: string;
|
|
3002
|
+
/** @maxLength (8) @nullable */
|
|
3003
|
+
fecha_actualizacion?: string;
|
|
3004
|
+
}
|
|
3005
|
+
interface CatTemaUpdateDTO {
|
|
3006
|
+
/** @maxLength (100) @optional */
|
|
3007
|
+
nombre_tema?: string;
|
|
3008
|
+
/** @maxLength (255) @nullable @optional */
|
|
3009
|
+
descripcion?: string;
|
|
3010
|
+
/** @maxLength (8) @nullable @optional */
|
|
3011
|
+
fecha_creacion?: string;
|
|
3012
|
+
/** @maxLength (8) @nullable @optional */
|
|
3013
|
+
fecha_actualizacion?: string;
|
|
3014
|
+
}
|
|
3015
|
+
|
|
3016
|
+
/**
|
|
3017
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatTema.
|
|
3018
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
3019
|
+
*/
|
|
3020
|
+
interface CatTemaQuery extends BaseQuery {
|
|
3021
|
+
}
|
|
3022
|
+
|
|
2117
3023
|
interface CatRolGrupoDTO {
|
|
2118
3024
|
/** @maxLength (4) @identity @primaryKey */
|
|
2119
3025
|
cat_rol_grupo_id: number;
|
|
@@ -2294,6 +3200,46 @@ interface CatConceptoPagoUpdateDTO {
|
|
|
2294
3200
|
interface CatConceptoPagoQuery extends BaseQuery {
|
|
2295
3201
|
}
|
|
2296
3202
|
|
|
3203
|
+
interface CatColorGrupoDTO {
|
|
3204
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
3205
|
+
color_grupo_id: number;
|
|
3206
|
+
/** @maxLength (100) */
|
|
3207
|
+
nombre_grupo: string;
|
|
3208
|
+
/** @maxLength (255) @nullable */
|
|
3209
|
+
descripcion?: string;
|
|
3210
|
+
/** @maxLength (8) @nullable */
|
|
3211
|
+
fecha_creacion?: string;
|
|
3212
|
+
/** @maxLength (8) @nullable */
|
|
3213
|
+
fecha_actualizacion?: string;
|
|
3214
|
+
}
|
|
3215
|
+
interface CatColorGrupoCreateDTO {
|
|
3216
|
+
/** @maxLength (100) */
|
|
3217
|
+
nombre_grupo: string;
|
|
3218
|
+
/** @maxLength (255) @nullable */
|
|
3219
|
+
descripcion?: string;
|
|
3220
|
+
/** @maxLength (8) @nullable */
|
|
3221
|
+
fecha_creacion?: string;
|
|
3222
|
+
/** @maxLength (8) @nullable */
|
|
3223
|
+
fecha_actualizacion?: string;
|
|
3224
|
+
}
|
|
3225
|
+
interface CatColorGrupoUpdateDTO {
|
|
3226
|
+
/** @maxLength (100) @optional */
|
|
3227
|
+
nombre_grupo?: string;
|
|
3228
|
+
/** @maxLength (255) @nullable @optional */
|
|
3229
|
+
descripcion?: string;
|
|
3230
|
+
/** @maxLength (8) @nullable @optional */
|
|
3231
|
+
fecha_creacion?: string;
|
|
3232
|
+
/** @maxLength (8) @nullable @optional */
|
|
3233
|
+
fecha_actualizacion?: string;
|
|
3234
|
+
}
|
|
3235
|
+
|
|
3236
|
+
/**
|
|
3237
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatColorGrupo.
|
|
3238
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
3239
|
+
*/
|
|
3240
|
+
interface CatColorGrupoQuery extends BaseQuery {
|
|
3241
|
+
}
|
|
3242
|
+
|
|
2297
3243
|
interface CatAccionDTO {
|
|
2298
3244
|
/** @maxLength (4) @identity @primaryKey */
|
|
2299
3245
|
cat_accion_id: number;
|
|
@@ -2322,6 +3268,208 @@ interface CatAccionUpdateDTO {
|
|
|
2322
3268
|
interface CatAccionQuery extends BaseQuery {
|
|
2323
3269
|
}
|
|
2324
3270
|
|
|
3271
|
+
interface AdeudoTipoSueloResumenMensualDTO {
|
|
3272
|
+
/** @maxLength (7) @primaryKey */
|
|
3273
|
+
anio_mes: string;
|
|
3274
|
+
/** @maxLength (200) @primaryKey */
|
|
3275
|
+
tipo_suelo: string;
|
|
3276
|
+
/** @maxLength (9) @nullable */
|
|
3277
|
+
total_adeudo?: number;
|
|
3278
|
+
/** @maxLength (8) @nullable */
|
|
3279
|
+
fecha_actualizacion?: string;
|
|
3280
|
+
}
|
|
3281
|
+
interface AdeudoTipoSueloResumenMensualCreateDTO {
|
|
3282
|
+
/** @maxLength (7) @primaryKey */
|
|
3283
|
+
anio_mes: string;
|
|
3284
|
+
/** @maxLength (200) @primaryKey */
|
|
3285
|
+
tipo_suelo: string;
|
|
3286
|
+
/** @maxLength (9) @nullable */
|
|
3287
|
+
total_adeudo?: number;
|
|
3288
|
+
/** @maxLength (8) @nullable */
|
|
3289
|
+
fecha_actualizacion?: string;
|
|
3290
|
+
}
|
|
3291
|
+
interface AdeudoTipoSueloResumenMensualUpdateDTO {
|
|
3292
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
3293
|
+
anio_mes?: string;
|
|
3294
|
+
/** @maxLength (200) @primaryKey @optional */
|
|
3295
|
+
tipo_suelo?: string;
|
|
3296
|
+
/** @maxLength (9) @nullable @optional */
|
|
3297
|
+
total_adeudo?: number;
|
|
3298
|
+
/** @maxLength (8) @nullable @optional */
|
|
3299
|
+
fecha_actualizacion?: string;
|
|
3300
|
+
}
|
|
3301
|
+
|
|
3302
|
+
/**
|
|
3303
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de AdeudoTipoSueloResumenMensual.
|
|
3304
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
3305
|
+
*/
|
|
3306
|
+
interface AdeudoTipoSueloResumenMensualQuery extends BaseQuery {
|
|
3307
|
+
}
|
|
3308
|
+
|
|
3309
|
+
interface AdeudosPorPlazaResumenDTO {
|
|
3310
|
+
/** @maxLength (4) @primaryKey */
|
|
3311
|
+
plaza_id: number;
|
|
3312
|
+
/** @maxLength (300) @nullable */
|
|
3313
|
+
plaza?: string;
|
|
3314
|
+
/** @maxLength (4) @nullable */
|
|
3315
|
+
total_adeudos?: number;
|
|
3316
|
+
/** @maxLength (9) @nullable */
|
|
3317
|
+
monto_total_adeudos?: number;
|
|
3318
|
+
/** @maxLength (9) @nullable */
|
|
3319
|
+
adeudo_promedio?: number;
|
|
3320
|
+
/** @maxLength (9) @nullable */
|
|
3321
|
+
adeudo_minimo?: number;
|
|
3322
|
+
/** @maxLength (9) @nullable */
|
|
3323
|
+
adeudo_maximo?: number;
|
|
3324
|
+
/** @maxLength (8) @nullable */
|
|
3325
|
+
fecha_actualizacion?: string;
|
|
3326
|
+
}
|
|
3327
|
+
interface AdeudosPorPlazaResumenCreateDTO {
|
|
3328
|
+
/** @maxLength (4) @primaryKey */
|
|
3329
|
+
plaza_id: number;
|
|
3330
|
+
/** @maxLength (300) @nullable */
|
|
3331
|
+
plaza?: string;
|
|
3332
|
+
/** @maxLength (4) @nullable */
|
|
3333
|
+
total_adeudos?: number;
|
|
3334
|
+
/** @maxLength (9) @nullable */
|
|
3335
|
+
monto_total_adeudos?: number;
|
|
3336
|
+
/** @maxLength (9) @nullable */
|
|
3337
|
+
adeudo_promedio?: number;
|
|
3338
|
+
/** @maxLength (9) @nullable */
|
|
3339
|
+
adeudo_minimo?: number;
|
|
3340
|
+
/** @maxLength (9) @nullable */
|
|
3341
|
+
adeudo_maximo?: number;
|
|
3342
|
+
/** @maxLength (8) @nullable */
|
|
3343
|
+
fecha_actualizacion?: string;
|
|
3344
|
+
}
|
|
3345
|
+
interface AdeudosPorPlazaResumenUpdateDTO {
|
|
3346
|
+
/** @maxLength (4) @primaryKey @optional */
|
|
3347
|
+
plaza_id?: number;
|
|
3348
|
+
/** @maxLength (300) @nullable @optional */
|
|
3349
|
+
plaza?: string;
|
|
3350
|
+
/** @maxLength (4) @nullable @optional */
|
|
3351
|
+
total_adeudos?: number;
|
|
3352
|
+
/** @maxLength (9) @nullable @optional */
|
|
3353
|
+
monto_total_adeudos?: number;
|
|
3354
|
+
/** @maxLength (9) @nullable @optional */
|
|
3355
|
+
adeudo_promedio?: number;
|
|
3356
|
+
/** @maxLength (9) @nullable @optional */
|
|
3357
|
+
adeudo_minimo?: number;
|
|
3358
|
+
/** @maxLength (9) @nullable @optional */
|
|
3359
|
+
adeudo_maximo?: number;
|
|
3360
|
+
/** @maxLength (8) @nullable @optional */
|
|
3361
|
+
fecha_actualizacion?: string;
|
|
3362
|
+
}
|
|
3363
|
+
|
|
3364
|
+
/**
|
|
3365
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de AdeudosPorPlazaResumen.
|
|
3366
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
3367
|
+
*/
|
|
3368
|
+
interface AdeudosPorPlazaResumenQuery extends BaseQuery {
|
|
3369
|
+
}
|
|
3370
|
+
|
|
3371
|
+
interface AdeudoResumenTipoSueloResumenDTO {
|
|
3372
|
+
/** @maxLength (7) @primaryKey */
|
|
3373
|
+
anio_mes: string;
|
|
3374
|
+
/** @maxLength (200) @primaryKey */
|
|
3375
|
+
tipo_suelo: string;
|
|
3376
|
+
/** @maxLength (9) @nullable */
|
|
3377
|
+
total_adeudo?: number;
|
|
3378
|
+
/** @maxLength (8) @nullable */
|
|
3379
|
+
fecha_actualizacion?: string;
|
|
3380
|
+
}
|
|
3381
|
+
interface AdeudoResumenTipoSueloResumenCreateDTO {
|
|
3382
|
+
/** @maxLength (7) @primaryKey */
|
|
3383
|
+
anio_mes: string;
|
|
3384
|
+
/** @maxLength (200) @primaryKey */
|
|
3385
|
+
tipo_suelo: string;
|
|
3386
|
+
/** @maxLength (9) @nullable */
|
|
3387
|
+
total_adeudo?: number;
|
|
3388
|
+
/** @maxLength (8) @nullable */
|
|
3389
|
+
fecha_actualizacion?: string;
|
|
3390
|
+
}
|
|
3391
|
+
interface AdeudoResumenTipoSueloResumenUpdateDTO {
|
|
3392
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
3393
|
+
anio_mes?: string;
|
|
3394
|
+
/** @maxLength (200) @primaryKey @optional */
|
|
3395
|
+
tipo_suelo?: string;
|
|
3396
|
+
/** @maxLength (9) @nullable @optional */
|
|
3397
|
+
total_adeudo?: number;
|
|
3398
|
+
/** @maxLength (8) @nullable @optional */
|
|
3399
|
+
fecha_actualizacion?: string;
|
|
3400
|
+
}
|
|
3401
|
+
|
|
3402
|
+
/**
|
|
3403
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de AdeudoResumenTipoSueloResumen.
|
|
3404
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
3405
|
+
*/
|
|
3406
|
+
interface AdeudoResumenTipoSueloResumenQuery extends BaseQuery {
|
|
3407
|
+
}
|
|
3408
|
+
|
|
3409
|
+
interface AdeudoResumenTipoSueloDTO {
|
|
3410
|
+
/** @maxLength (200) @primaryKey */
|
|
3411
|
+
tipo_suelo: string;
|
|
3412
|
+
/** @maxLength (9) @nullable */
|
|
3413
|
+
total_adeudo?: number;
|
|
3414
|
+
/** @maxLength (8) @nullable */
|
|
3415
|
+
fecha_actualizacion?: string;
|
|
3416
|
+
}
|
|
3417
|
+
interface AdeudoResumenTipoSueloCreateDTO {
|
|
3418
|
+
/** @maxLength (200) @primaryKey */
|
|
3419
|
+
tipo_suelo: string;
|
|
3420
|
+
/** @maxLength (9) @nullable */
|
|
3421
|
+
total_adeudo?: number;
|
|
3422
|
+
/** @maxLength (8) @nullable */
|
|
3423
|
+
fecha_actualizacion?: string;
|
|
3424
|
+
}
|
|
3425
|
+
interface AdeudoResumenTipoSueloUpdateDTO {
|
|
3426
|
+
/** @maxLength (200) @primaryKey @optional */
|
|
3427
|
+
tipo_suelo?: string;
|
|
3428
|
+
/** @maxLength (9) @nullable @optional */
|
|
3429
|
+
total_adeudo?: number;
|
|
3430
|
+
/** @maxLength (8) @nullable @optional */
|
|
3431
|
+
fecha_actualizacion?: string;
|
|
3432
|
+
}
|
|
3433
|
+
|
|
3434
|
+
/**
|
|
3435
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de AdeudoResumenTipoSuelo.
|
|
3436
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
3437
|
+
*/
|
|
3438
|
+
interface AdeudoResumenTipoSueloQuery extends BaseQuery {
|
|
3439
|
+
}
|
|
3440
|
+
|
|
3441
|
+
interface AdeudoResumenMensualDTO {
|
|
3442
|
+
/** @maxLength (7) @primaryKey */
|
|
3443
|
+
anio_mes: string;
|
|
3444
|
+
/** @maxLength (9) @nullable */
|
|
3445
|
+
total_adeudo?: number;
|
|
3446
|
+
/** @maxLength (8) @nullable */
|
|
3447
|
+
fecha_actualizacion?: string;
|
|
3448
|
+
}
|
|
3449
|
+
interface AdeudoResumenMensualCreateDTO {
|
|
3450
|
+
/** @maxLength (7) @primaryKey */
|
|
3451
|
+
anio_mes: string;
|
|
3452
|
+
/** @maxLength (9) @nullable */
|
|
3453
|
+
total_adeudo?: number;
|
|
3454
|
+
/** @maxLength (8) @nullable */
|
|
3455
|
+
fecha_actualizacion?: string;
|
|
3456
|
+
}
|
|
3457
|
+
interface AdeudoResumenMensualUpdateDTO {
|
|
3458
|
+
/** @maxLength (7) @primaryKey @optional */
|
|
3459
|
+
anio_mes?: string;
|
|
3460
|
+
/** @maxLength (9) @nullable @optional */
|
|
3461
|
+
total_adeudo?: number;
|
|
3462
|
+
/** @maxLength (8) @nullable @optional */
|
|
3463
|
+
fecha_actualizacion?: string;
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3466
|
+
/**
|
|
3467
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de AdeudoResumenMensual.
|
|
3468
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
3469
|
+
*/
|
|
3470
|
+
interface AdeudoResumenMensualQuery extends BaseQuery {
|
|
3471
|
+
}
|
|
3472
|
+
|
|
2325
3473
|
interface AdeudoDTO {
|
|
2326
3474
|
/** @maxLength (4) @identity @primaryKey */
|
|
2327
3475
|
id: number;
|
|
@@ -2421,38 +3569,263 @@ declare const useFetchByIdAdeudo: (params: GetByIdParams<AdeudoQuery>) => {
|
|
|
2421
3569
|
isLoading: boolean;
|
|
2422
3570
|
refetch: () => Promise<void>;
|
|
2423
3571
|
};
|
|
2424
|
-
/** @description Hook para useFetchList de la entidad adeudo */
|
|
2425
|
-
declare const useFetchListAdeudo: (params: QueryParams<AdeudoQuery>) => {
|
|
2426
|
-
data: AdeudoDTO[] | null;
|
|
3572
|
+
/** @description Hook para useFetchList de la entidad adeudo */
|
|
3573
|
+
declare const useFetchListAdeudo: (params: QueryParams<AdeudoQuery>) => {
|
|
3574
|
+
data: AdeudoDTO[] | null;
|
|
3575
|
+
error: Error | null;
|
|
3576
|
+
isFetching: boolean;
|
|
3577
|
+
isLoading: boolean;
|
|
3578
|
+
refetch: () => Promise<void>;
|
|
3579
|
+
};
|
|
3580
|
+
/** @description Hook para useCreate de la entidad adeudo */
|
|
3581
|
+
declare const useCreateAdeudo: () => {
|
|
3582
|
+
mutate: (params: CreateParams<AdeudoCreateDTO, AdeudoQuery>) => Promise<AdeudoDTO | null>;
|
|
3583
|
+
isLoading: boolean;
|
|
3584
|
+
error: Error | null;
|
|
3585
|
+
data: AdeudoDTO | null;
|
|
3586
|
+
};
|
|
3587
|
+
/** @description Hook para useUpdate de la entidad adeudo */
|
|
3588
|
+
declare const useUpdateAdeudo: () => {
|
|
3589
|
+
mutate: (params: UpdateParams<AdeudoUpdateDTO, AdeudoQuery>) => Promise<AdeudoDTO | null>;
|
|
3590
|
+
isLoading: boolean;
|
|
3591
|
+
error: Error | null;
|
|
3592
|
+
data: AdeudoDTO | null;
|
|
3593
|
+
};
|
|
3594
|
+
/** @description Hook para useDelete de la entidad adeudo */
|
|
3595
|
+
declare const useDeleteAdeudo: () => {
|
|
3596
|
+
mutate: (params: DeleteParams<AdeudoQuery>) => Promise<boolean>;
|
|
3597
|
+
isLoading: boolean;
|
|
3598
|
+
error: Error | null;
|
|
3599
|
+
success: boolean;
|
|
3600
|
+
};
|
|
3601
|
+
/** @description Hook para useFilterMatch de la entidad adeudo */
|
|
3602
|
+
declare const useFilterMatchAdeudo: (params: FilterMatchParams<AdeudoQuery>) => {
|
|
3603
|
+
data: AdeudoDTO[] | null;
|
|
3604
|
+
error: Error | null;
|
|
3605
|
+
isFetching: boolean;
|
|
3606
|
+
isLoading: boolean;
|
|
3607
|
+
refetch: () => Promise<void>;
|
|
3608
|
+
};
|
|
3609
|
+
/** @description Hook para useFetchById de la entidad AdeudoResumenMensual */
|
|
3610
|
+
declare const useFetchByIdAdeudoResumenMensual: (params: GetByIdParams<AdeudoResumenMensualQuery>) => {
|
|
3611
|
+
data: AdeudoResumenMensualDTO | null;
|
|
3612
|
+
error: Error | null;
|
|
3613
|
+
isFetching: boolean;
|
|
3614
|
+
isLoading: boolean;
|
|
3615
|
+
refetch: () => Promise<void>;
|
|
3616
|
+
};
|
|
3617
|
+
/** @description Hook para useFetchList de la entidad AdeudoResumenMensual */
|
|
3618
|
+
declare const useFetchListAdeudoResumenMensual: (params: QueryParams<AdeudoResumenMensualQuery>) => {
|
|
3619
|
+
data: AdeudoResumenMensualDTO[] | null;
|
|
3620
|
+
error: Error | null;
|
|
3621
|
+
isFetching: boolean;
|
|
3622
|
+
isLoading: boolean;
|
|
3623
|
+
refetch: () => Promise<void>;
|
|
3624
|
+
};
|
|
3625
|
+
/** @description Hook para useCreate de la entidad AdeudoResumenMensual */
|
|
3626
|
+
declare const useCreateAdeudoResumenMensual: () => {
|
|
3627
|
+
mutate: (params: CreateParams<AdeudoResumenMensualCreateDTO, AdeudoResumenMensualQuery>) => Promise<AdeudoResumenMensualDTO | null>;
|
|
3628
|
+
isLoading: boolean;
|
|
3629
|
+
error: Error | null;
|
|
3630
|
+
data: AdeudoResumenMensualDTO | null;
|
|
3631
|
+
};
|
|
3632
|
+
/** @description Hook para useUpdate de la entidad AdeudoResumenMensual */
|
|
3633
|
+
declare const useUpdateAdeudoResumenMensual: () => {
|
|
3634
|
+
mutate: (params: UpdateParams<AdeudoResumenMensualUpdateDTO, AdeudoResumenMensualQuery>) => Promise<AdeudoResumenMensualDTO | null>;
|
|
3635
|
+
isLoading: boolean;
|
|
3636
|
+
error: Error | null;
|
|
3637
|
+
data: AdeudoResumenMensualDTO | null;
|
|
3638
|
+
};
|
|
3639
|
+
/** @description Hook para useDelete de la entidad AdeudoResumenMensual */
|
|
3640
|
+
declare const useDeleteAdeudoResumenMensual: () => {
|
|
3641
|
+
mutate: (params: DeleteParams<AdeudoResumenMensualQuery>) => Promise<boolean>;
|
|
3642
|
+
isLoading: boolean;
|
|
3643
|
+
error: Error | null;
|
|
3644
|
+
success: boolean;
|
|
3645
|
+
};
|
|
3646
|
+
/** @description Hook para useFilterMatch de la entidad AdeudoResumenMensual */
|
|
3647
|
+
declare const useFilterMatchAdeudoResumenMensual: (params: FilterMatchParams<AdeudoResumenMensualQuery>) => {
|
|
3648
|
+
data: AdeudoResumenMensualDTO[] | null;
|
|
3649
|
+
error: Error | null;
|
|
3650
|
+
isFetching: boolean;
|
|
3651
|
+
isLoading: boolean;
|
|
3652
|
+
refetch: () => Promise<void>;
|
|
3653
|
+
};
|
|
3654
|
+
/** @description Hook para useFetchById de la entidad AdeudoResumenTipoSuelo */
|
|
3655
|
+
declare const useFetchByIdAdeudoResumenTipoSuelo: (params: GetByIdParams<AdeudoResumenTipoSueloQuery>) => {
|
|
3656
|
+
data: AdeudoResumenTipoSueloDTO | null;
|
|
3657
|
+
error: Error | null;
|
|
3658
|
+
isFetching: boolean;
|
|
3659
|
+
isLoading: boolean;
|
|
3660
|
+
refetch: () => Promise<void>;
|
|
3661
|
+
};
|
|
3662
|
+
/** @description Hook para useFetchList de la entidad AdeudoResumenTipoSuelo */
|
|
3663
|
+
declare const useFetchListAdeudoResumenTipoSuelo: (params: QueryParams<AdeudoResumenTipoSueloQuery>) => {
|
|
3664
|
+
data: AdeudoResumenTipoSueloDTO[] | null;
|
|
3665
|
+
error: Error | null;
|
|
3666
|
+
isFetching: boolean;
|
|
3667
|
+
isLoading: boolean;
|
|
3668
|
+
refetch: () => Promise<void>;
|
|
3669
|
+
};
|
|
3670
|
+
/** @description Hook para useCreate de la entidad AdeudoResumenTipoSuelo */
|
|
3671
|
+
declare const useCreateAdeudoResumenTipoSuelo: () => {
|
|
3672
|
+
mutate: (params: CreateParams<AdeudoResumenTipoSueloCreateDTO, AdeudoResumenTipoSueloQuery>) => Promise<AdeudoResumenTipoSueloDTO | null>;
|
|
3673
|
+
isLoading: boolean;
|
|
3674
|
+
error: Error | null;
|
|
3675
|
+
data: AdeudoResumenTipoSueloDTO | null;
|
|
3676
|
+
};
|
|
3677
|
+
/** @description Hook para useUpdate de la entidad AdeudoResumenTipoSuelo */
|
|
3678
|
+
declare const useUpdateAdeudoResumenTipoSuelo: () => {
|
|
3679
|
+
mutate: (params: UpdateParams<AdeudoResumenTipoSueloUpdateDTO, AdeudoResumenTipoSueloQuery>) => Promise<AdeudoResumenTipoSueloDTO | null>;
|
|
3680
|
+
isLoading: boolean;
|
|
3681
|
+
error: Error | null;
|
|
3682
|
+
data: AdeudoResumenTipoSueloDTO | null;
|
|
3683
|
+
};
|
|
3684
|
+
/** @description Hook para useDelete de la entidad AdeudoResumenTipoSuelo */
|
|
3685
|
+
declare const useDeleteAdeudoResumenTipoSuelo: () => {
|
|
3686
|
+
mutate: (params: DeleteParams<AdeudoResumenTipoSueloQuery>) => Promise<boolean>;
|
|
3687
|
+
isLoading: boolean;
|
|
3688
|
+
error: Error | null;
|
|
3689
|
+
success: boolean;
|
|
3690
|
+
};
|
|
3691
|
+
/** @description Hook para useFilterMatch de la entidad AdeudoResumenTipoSuelo */
|
|
3692
|
+
declare const useFilterMatchAdeudoResumenTipoSuelo: (params: FilterMatchParams<AdeudoResumenTipoSueloQuery>) => {
|
|
3693
|
+
data: AdeudoResumenTipoSueloDTO[] | null;
|
|
3694
|
+
error: Error | null;
|
|
3695
|
+
isFetching: boolean;
|
|
3696
|
+
isLoading: boolean;
|
|
3697
|
+
refetch: () => Promise<void>;
|
|
3698
|
+
};
|
|
3699
|
+
/** @description Hook para useFetchById de la entidad AdeudoResumenTipoSueloResumen */
|
|
3700
|
+
declare const useFetchByIdAdeudoResumenTipoSueloResumen: (params: GetByIdParams<AdeudoResumenTipoSueloResumenQuery>) => {
|
|
3701
|
+
data: AdeudoResumenTipoSueloResumenDTO | null;
|
|
2427
3702
|
error: Error | null;
|
|
2428
3703
|
isFetching: boolean;
|
|
2429
3704
|
isLoading: boolean;
|
|
2430
3705
|
refetch: () => Promise<void>;
|
|
2431
3706
|
};
|
|
2432
|
-
/** @description Hook para
|
|
2433
|
-
declare const
|
|
2434
|
-
|
|
3707
|
+
/** @description Hook para useFetchList de la entidad AdeudoResumenTipoSueloResumen */
|
|
3708
|
+
declare const useFetchListAdeudoResumenTipoSueloResumen: (params: QueryParams<AdeudoResumenTipoSueloResumenQuery>) => {
|
|
3709
|
+
data: AdeudoResumenTipoSueloResumenDTO[] | null;
|
|
3710
|
+
error: Error | null;
|
|
3711
|
+
isFetching: boolean;
|
|
3712
|
+
isLoading: boolean;
|
|
3713
|
+
refetch: () => Promise<void>;
|
|
3714
|
+
};
|
|
3715
|
+
/** @description Hook para useCreate de la entidad AdeudoResumenTipoSueloResumen */
|
|
3716
|
+
declare const useCreateAdeudoResumenTipoSueloResumen: () => {
|
|
3717
|
+
mutate: (params: CreateParams<AdeudoResumenTipoSueloResumenCreateDTO, AdeudoResumenTipoSueloResumenQuery>) => Promise<AdeudoResumenTipoSueloResumenDTO | null>;
|
|
2435
3718
|
isLoading: boolean;
|
|
2436
3719
|
error: Error | null;
|
|
2437
|
-
data:
|
|
3720
|
+
data: AdeudoResumenTipoSueloResumenDTO | null;
|
|
2438
3721
|
};
|
|
2439
|
-
/** @description Hook para useUpdate de la entidad
|
|
2440
|
-
declare const
|
|
2441
|
-
mutate: (params: UpdateParams<
|
|
3722
|
+
/** @description Hook para useUpdate de la entidad AdeudoResumenTipoSueloResumen */
|
|
3723
|
+
declare const useUpdateAdeudoResumenTipoSueloResumen: () => {
|
|
3724
|
+
mutate: (params: UpdateParams<AdeudoResumenTipoSueloResumenUpdateDTO, AdeudoResumenTipoSueloResumenQuery>) => Promise<AdeudoResumenTipoSueloResumenDTO | null>;
|
|
2442
3725
|
isLoading: boolean;
|
|
2443
3726
|
error: Error | null;
|
|
2444
|
-
data:
|
|
3727
|
+
data: AdeudoResumenTipoSueloResumenDTO | null;
|
|
2445
3728
|
};
|
|
2446
|
-
/** @description Hook para useDelete de la entidad
|
|
2447
|
-
declare const
|
|
2448
|
-
mutate: (params: DeleteParams<
|
|
3729
|
+
/** @description Hook para useDelete de la entidad AdeudoResumenTipoSueloResumen */
|
|
3730
|
+
declare const useDeleteAdeudoResumenTipoSueloResumen: () => {
|
|
3731
|
+
mutate: (params: DeleteParams<AdeudoResumenTipoSueloResumenQuery>) => Promise<boolean>;
|
|
2449
3732
|
isLoading: boolean;
|
|
2450
3733
|
error: Error | null;
|
|
2451
3734
|
success: boolean;
|
|
2452
3735
|
};
|
|
2453
|
-
/** @description Hook para useFilterMatch de la entidad
|
|
2454
|
-
declare const
|
|
2455
|
-
data:
|
|
3736
|
+
/** @description Hook para useFilterMatch de la entidad AdeudoResumenTipoSueloResumen */
|
|
3737
|
+
declare const useFilterMatchAdeudoResumenTipoSueloResumen: (params: FilterMatchParams<AdeudoResumenTipoSueloResumenQuery>) => {
|
|
3738
|
+
data: AdeudoResumenTipoSueloResumenDTO[] | null;
|
|
3739
|
+
error: Error | null;
|
|
3740
|
+
isFetching: boolean;
|
|
3741
|
+
isLoading: boolean;
|
|
3742
|
+
refetch: () => Promise<void>;
|
|
3743
|
+
};
|
|
3744
|
+
/** @description Hook para useFetchById de la entidad AdeudosPorPlazaResumen */
|
|
3745
|
+
declare const useFetchByIdAdeudosPorPlazaResumen: (params: GetByIdParams<AdeudosPorPlazaResumenQuery>) => {
|
|
3746
|
+
data: AdeudosPorPlazaResumenDTO | null;
|
|
3747
|
+
error: Error | null;
|
|
3748
|
+
isFetching: boolean;
|
|
3749
|
+
isLoading: boolean;
|
|
3750
|
+
refetch: () => Promise<void>;
|
|
3751
|
+
};
|
|
3752
|
+
/** @description Hook para useFetchList de la entidad AdeudosPorPlazaResumen */
|
|
3753
|
+
declare const useFetchListAdeudosPorPlazaResumen: (params: QueryParams<AdeudosPorPlazaResumenQuery>) => {
|
|
3754
|
+
data: AdeudosPorPlazaResumenDTO[] | null;
|
|
3755
|
+
error: Error | null;
|
|
3756
|
+
isFetching: boolean;
|
|
3757
|
+
isLoading: boolean;
|
|
3758
|
+
refetch: () => Promise<void>;
|
|
3759
|
+
};
|
|
3760
|
+
/** @description Hook para useCreate de la entidad AdeudosPorPlazaResumen */
|
|
3761
|
+
declare const useCreateAdeudosPorPlazaResumen: () => {
|
|
3762
|
+
mutate: (params: CreateParams<AdeudosPorPlazaResumenCreateDTO, AdeudosPorPlazaResumenQuery>) => Promise<AdeudosPorPlazaResumenDTO | null>;
|
|
3763
|
+
isLoading: boolean;
|
|
3764
|
+
error: Error | null;
|
|
3765
|
+
data: AdeudosPorPlazaResumenDTO | null;
|
|
3766
|
+
};
|
|
3767
|
+
/** @description Hook para useUpdate de la entidad AdeudosPorPlazaResumen */
|
|
3768
|
+
declare const useUpdateAdeudosPorPlazaResumen: () => {
|
|
3769
|
+
mutate: (params: UpdateParams<AdeudosPorPlazaResumenUpdateDTO, AdeudosPorPlazaResumenQuery>) => Promise<AdeudosPorPlazaResumenDTO | null>;
|
|
3770
|
+
isLoading: boolean;
|
|
3771
|
+
error: Error | null;
|
|
3772
|
+
data: AdeudosPorPlazaResumenDTO | null;
|
|
3773
|
+
};
|
|
3774
|
+
/** @description Hook para useDelete de la entidad AdeudosPorPlazaResumen */
|
|
3775
|
+
declare const useDeleteAdeudosPorPlazaResumen: () => {
|
|
3776
|
+
mutate: (params: DeleteParams<AdeudosPorPlazaResumenQuery>) => Promise<boolean>;
|
|
3777
|
+
isLoading: boolean;
|
|
3778
|
+
error: Error | null;
|
|
3779
|
+
success: boolean;
|
|
3780
|
+
};
|
|
3781
|
+
/** @description Hook para useFilterMatch de la entidad AdeudosPorPlazaResumen */
|
|
3782
|
+
declare const useFilterMatchAdeudosPorPlazaResumen: (params: FilterMatchParams<AdeudosPorPlazaResumenQuery>) => {
|
|
3783
|
+
data: AdeudosPorPlazaResumenDTO[] | null;
|
|
3784
|
+
error: Error | null;
|
|
3785
|
+
isFetching: boolean;
|
|
3786
|
+
isLoading: boolean;
|
|
3787
|
+
refetch: () => Promise<void>;
|
|
3788
|
+
};
|
|
3789
|
+
/** @description Hook para useFetchById de la entidad AdeudoTipoSueloResumenMensual */
|
|
3790
|
+
declare const useFetchByIdAdeudoTipoSueloResumenMensual: (params: GetByIdParams<AdeudoTipoSueloResumenMensualQuery>) => {
|
|
3791
|
+
data: AdeudoTipoSueloResumenMensualDTO | null;
|
|
3792
|
+
error: Error | null;
|
|
3793
|
+
isFetching: boolean;
|
|
3794
|
+
isLoading: boolean;
|
|
3795
|
+
refetch: () => Promise<void>;
|
|
3796
|
+
};
|
|
3797
|
+
/** @description Hook para useFetchList de la entidad AdeudoTipoSueloResumenMensual */
|
|
3798
|
+
declare const useFetchListAdeudoTipoSueloResumenMensual: (params: QueryParams<AdeudoTipoSueloResumenMensualQuery>) => {
|
|
3799
|
+
data: AdeudoTipoSueloResumenMensualDTO[] | null;
|
|
3800
|
+
error: Error | null;
|
|
3801
|
+
isFetching: boolean;
|
|
3802
|
+
isLoading: boolean;
|
|
3803
|
+
refetch: () => Promise<void>;
|
|
3804
|
+
};
|
|
3805
|
+
/** @description Hook para useCreate de la entidad AdeudoTipoSueloResumenMensual */
|
|
3806
|
+
declare const useCreateAdeudoTipoSueloResumenMensual: () => {
|
|
3807
|
+
mutate: (params: CreateParams<AdeudoTipoSueloResumenMensualCreateDTO, AdeudoTipoSueloResumenMensualQuery>) => Promise<AdeudoTipoSueloResumenMensualDTO | null>;
|
|
3808
|
+
isLoading: boolean;
|
|
3809
|
+
error: Error | null;
|
|
3810
|
+
data: AdeudoTipoSueloResumenMensualDTO | null;
|
|
3811
|
+
};
|
|
3812
|
+
/** @description Hook para useUpdate de la entidad AdeudoTipoSueloResumenMensual */
|
|
3813
|
+
declare const useUpdateAdeudoTipoSueloResumenMensual: () => {
|
|
3814
|
+
mutate: (params: UpdateParams<AdeudoTipoSueloResumenMensualUpdateDTO, AdeudoTipoSueloResumenMensualQuery>) => Promise<AdeudoTipoSueloResumenMensualDTO | null>;
|
|
3815
|
+
isLoading: boolean;
|
|
3816
|
+
error: Error | null;
|
|
3817
|
+
data: AdeudoTipoSueloResumenMensualDTO | null;
|
|
3818
|
+
};
|
|
3819
|
+
/** @description Hook para useDelete de la entidad AdeudoTipoSueloResumenMensual */
|
|
3820
|
+
declare const useDeleteAdeudoTipoSueloResumenMensual: () => {
|
|
3821
|
+
mutate: (params: DeleteParams<AdeudoTipoSueloResumenMensualQuery>) => Promise<boolean>;
|
|
3822
|
+
isLoading: boolean;
|
|
3823
|
+
error: Error | null;
|
|
3824
|
+
success: boolean;
|
|
3825
|
+
};
|
|
3826
|
+
/** @description Hook para useFilterMatch de la entidad AdeudoTipoSueloResumenMensual */
|
|
3827
|
+
declare const useFilterMatchAdeudoTipoSueloResumenMensual: (params: FilterMatchParams<AdeudoTipoSueloResumenMensualQuery>) => {
|
|
3828
|
+
data: AdeudoTipoSueloResumenMensualDTO[] | null;
|
|
2456
3829
|
error: Error | null;
|
|
2457
3830
|
isFetching: boolean;
|
|
2458
3831
|
isLoading: boolean;
|
|
@@ -2503,6 +3876,51 @@ declare const useFilterMatchCatAccion: (params: FilterMatchParams<CatAccionQuery
|
|
|
2503
3876
|
isLoading: boolean;
|
|
2504
3877
|
refetch: () => Promise<void>;
|
|
2505
3878
|
};
|
|
3879
|
+
/** @description Hook para useFetchById de la entidad cat_color_grupo */
|
|
3880
|
+
declare const useFetchByIdCatColorGrupo: (params: GetByIdParams<CatColorGrupoQuery>) => {
|
|
3881
|
+
data: CatColorGrupoDTO | null;
|
|
3882
|
+
error: Error | null;
|
|
3883
|
+
isFetching: boolean;
|
|
3884
|
+
isLoading: boolean;
|
|
3885
|
+
refetch: () => Promise<void>;
|
|
3886
|
+
};
|
|
3887
|
+
/** @description Hook para useFetchList de la entidad cat_color_grupo */
|
|
3888
|
+
declare const useFetchListCatColorGrupo: (params: QueryParams<CatColorGrupoQuery>) => {
|
|
3889
|
+
data: CatColorGrupoDTO[] | null;
|
|
3890
|
+
error: Error | null;
|
|
3891
|
+
isFetching: boolean;
|
|
3892
|
+
isLoading: boolean;
|
|
3893
|
+
refetch: () => Promise<void>;
|
|
3894
|
+
};
|
|
3895
|
+
/** @description Hook para useCreate de la entidad cat_color_grupo */
|
|
3896
|
+
declare const useCreateCatColorGrupo: () => {
|
|
3897
|
+
mutate: (params: CreateParams<CatColorGrupoCreateDTO, CatColorGrupoQuery>) => Promise<CatColorGrupoDTO | null>;
|
|
3898
|
+
isLoading: boolean;
|
|
3899
|
+
error: Error | null;
|
|
3900
|
+
data: CatColorGrupoDTO | null;
|
|
3901
|
+
};
|
|
3902
|
+
/** @description Hook para useUpdate de la entidad cat_color_grupo */
|
|
3903
|
+
declare const useUpdateCatColorGrupo: () => {
|
|
3904
|
+
mutate: (params: UpdateParams<CatColorGrupoUpdateDTO, CatColorGrupoQuery>) => Promise<CatColorGrupoDTO | null>;
|
|
3905
|
+
isLoading: boolean;
|
|
3906
|
+
error: Error | null;
|
|
3907
|
+
data: CatColorGrupoDTO | null;
|
|
3908
|
+
};
|
|
3909
|
+
/** @description Hook para useDelete de la entidad cat_color_grupo */
|
|
3910
|
+
declare const useDeleteCatColorGrupo: () => {
|
|
3911
|
+
mutate: (params: DeleteParams<CatColorGrupoQuery>) => Promise<boolean>;
|
|
3912
|
+
isLoading: boolean;
|
|
3913
|
+
error: Error | null;
|
|
3914
|
+
success: boolean;
|
|
3915
|
+
};
|
|
3916
|
+
/** @description Hook para useFilterMatch de la entidad cat_color_grupo */
|
|
3917
|
+
declare const useFilterMatchCatColorGrupo: (params: FilterMatchParams<CatColorGrupoQuery>) => {
|
|
3918
|
+
data: CatColorGrupoDTO[] | null;
|
|
3919
|
+
error: Error | null;
|
|
3920
|
+
isFetching: boolean;
|
|
3921
|
+
isLoading: boolean;
|
|
3922
|
+
refetch: () => Promise<void>;
|
|
3923
|
+
};
|
|
2506
3924
|
/** @description Hook para useFetchById de la entidad cat_concepto_pago */
|
|
2507
3925
|
declare const useFetchByIdCatConceptoPago: (params: GetByIdParams<CatConceptoPagoQuery>) => {
|
|
2508
3926
|
data: CatConceptoPagoDTO | null;
|
|
@@ -2773,6 +4191,51 @@ declare const useFilterMatchCatRolGrupo: (params: FilterMatchParams<CatRolGrupoQ
|
|
|
2773
4191
|
isLoading: boolean;
|
|
2774
4192
|
refetch: () => Promise<void>;
|
|
2775
4193
|
};
|
|
4194
|
+
/** @description Hook para useFetchById de la entidad cat_tema */
|
|
4195
|
+
declare const useFetchByIdCatTema: (params: GetByIdParams<CatTemaQuery>) => {
|
|
4196
|
+
data: CatTemaDTO | null;
|
|
4197
|
+
error: Error | null;
|
|
4198
|
+
isFetching: boolean;
|
|
4199
|
+
isLoading: boolean;
|
|
4200
|
+
refetch: () => Promise<void>;
|
|
4201
|
+
};
|
|
4202
|
+
/** @description Hook para useFetchList de la entidad cat_tema */
|
|
4203
|
+
declare const useFetchListCatTema: (params: QueryParams<CatTemaQuery>) => {
|
|
4204
|
+
data: CatTemaDTO[] | null;
|
|
4205
|
+
error: Error | null;
|
|
4206
|
+
isFetching: boolean;
|
|
4207
|
+
isLoading: boolean;
|
|
4208
|
+
refetch: () => Promise<void>;
|
|
4209
|
+
};
|
|
4210
|
+
/** @description Hook para useCreate de la entidad cat_tema */
|
|
4211
|
+
declare const useCreateCatTema: () => {
|
|
4212
|
+
mutate: (params: CreateParams<CatTemaCreateDTO, CatTemaQuery>) => Promise<CatTemaDTO | null>;
|
|
4213
|
+
isLoading: boolean;
|
|
4214
|
+
error: Error | null;
|
|
4215
|
+
data: CatTemaDTO | null;
|
|
4216
|
+
};
|
|
4217
|
+
/** @description Hook para useUpdate de la entidad cat_tema */
|
|
4218
|
+
declare const useUpdateCatTema: () => {
|
|
4219
|
+
mutate: (params: UpdateParams<CatTemaUpdateDTO, CatTemaQuery>) => Promise<CatTemaDTO | null>;
|
|
4220
|
+
isLoading: boolean;
|
|
4221
|
+
error: Error | null;
|
|
4222
|
+
data: CatTemaDTO | null;
|
|
4223
|
+
};
|
|
4224
|
+
/** @description Hook para useDelete de la entidad cat_tema */
|
|
4225
|
+
declare const useDeleteCatTema: () => {
|
|
4226
|
+
mutate: (params: DeleteParams<CatTemaQuery>) => Promise<boolean>;
|
|
4227
|
+
isLoading: boolean;
|
|
4228
|
+
error: Error | null;
|
|
4229
|
+
success: boolean;
|
|
4230
|
+
};
|
|
4231
|
+
/** @description Hook para useFilterMatch de la entidad cat_tema */
|
|
4232
|
+
declare const useFilterMatchCatTema: (params: FilterMatchParams<CatTemaQuery>) => {
|
|
4233
|
+
data: CatTemaDTO[] | null;
|
|
4234
|
+
error: Error | null;
|
|
4235
|
+
isFetching: boolean;
|
|
4236
|
+
isLoading: boolean;
|
|
4237
|
+
refetch: () => Promise<void>;
|
|
4238
|
+
};
|
|
2776
4239
|
/** @description Hook para useFetchById de la entidad cat_tipo_parametro */
|
|
2777
4240
|
declare const useFetchByIdCatTipoParametro: (params: GetByIdParams<CatTipoParametroQuery>) => {
|
|
2778
4241
|
data: CatTipoParametroDTO | null;
|
|
@@ -3043,6 +4506,51 @@ declare const useFilterMatchContribuyenteDomicilio: (params: FilterMatchParams<C
|
|
|
3043
4506
|
isLoading: boolean;
|
|
3044
4507
|
refetch: () => Promise<void>;
|
|
3045
4508
|
};
|
|
4509
|
+
/** @description Hook para useFetchById de la entidad CuentasConAltosMontosResumen */
|
|
4510
|
+
declare const useFetchByIdCuentasConAltosMontosResumen: (params: GetByIdParams<CuentasConAltosMontosResumenQuery>) => {
|
|
4511
|
+
data: CuentasConAltosMontosResumenDTO | null;
|
|
4512
|
+
error: Error | null;
|
|
4513
|
+
isFetching: boolean;
|
|
4514
|
+
isLoading: boolean;
|
|
4515
|
+
refetch: () => Promise<void>;
|
|
4516
|
+
};
|
|
4517
|
+
/** @description Hook para useFetchList de la entidad CuentasConAltosMontosResumen */
|
|
4518
|
+
declare const useFetchListCuentasConAltosMontosResumen: (params: QueryParams<CuentasConAltosMontosResumenQuery>) => {
|
|
4519
|
+
data: CuentasConAltosMontosResumenDTO[] | null;
|
|
4520
|
+
error: Error | null;
|
|
4521
|
+
isFetching: boolean;
|
|
4522
|
+
isLoading: boolean;
|
|
4523
|
+
refetch: () => Promise<void>;
|
|
4524
|
+
};
|
|
4525
|
+
/** @description Hook para useCreate de la entidad CuentasConAltosMontosResumen */
|
|
4526
|
+
declare const useCreateCuentasConAltosMontosResumen: () => {
|
|
4527
|
+
mutate: (params: CreateParams<CuentasConAltosMontosResumenCreateDTO, CuentasConAltosMontosResumenQuery>) => Promise<CuentasConAltosMontosResumenDTO | null>;
|
|
4528
|
+
isLoading: boolean;
|
|
4529
|
+
error: Error | null;
|
|
4530
|
+
data: CuentasConAltosMontosResumenDTO | null;
|
|
4531
|
+
};
|
|
4532
|
+
/** @description Hook para useUpdate de la entidad CuentasConAltosMontosResumen */
|
|
4533
|
+
declare const useUpdateCuentasConAltosMontosResumen: () => {
|
|
4534
|
+
mutate: (params: UpdateParams<CuentasConAltosMontosResumenUpdateDTO, CuentasConAltosMontosResumenQuery>) => Promise<CuentasConAltosMontosResumenDTO | null>;
|
|
4535
|
+
isLoading: boolean;
|
|
4536
|
+
error: Error | null;
|
|
4537
|
+
data: CuentasConAltosMontosResumenDTO | null;
|
|
4538
|
+
};
|
|
4539
|
+
/** @description Hook para useDelete de la entidad CuentasConAltosMontosResumen */
|
|
4540
|
+
declare const useDeleteCuentasConAltosMontosResumen: () => {
|
|
4541
|
+
mutate: (params: DeleteParams<CuentasConAltosMontosResumenQuery>) => Promise<boolean>;
|
|
4542
|
+
isLoading: boolean;
|
|
4543
|
+
error: Error | null;
|
|
4544
|
+
success: boolean;
|
|
4545
|
+
};
|
|
4546
|
+
/** @description Hook para useFilterMatch de la entidad CuentasConAltosMontosResumen */
|
|
4547
|
+
declare const useFilterMatchCuentasConAltosMontosResumen: (params: FilterMatchParams<CuentasConAltosMontosResumenQuery>) => {
|
|
4548
|
+
data: CuentasConAltosMontosResumenDTO[] | null;
|
|
4549
|
+
error: Error | null;
|
|
4550
|
+
isFetching: boolean;
|
|
4551
|
+
isLoading: boolean;
|
|
4552
|
+
refetch: () => Promise<void>;
|
|
4553
|
+
};
|
|
3046
4554
|
/** @description Hook para useFetchById de la entidad dashboard_estilo */
|
|
3047
4555
|
declare const useFetchByIdDashboardEstilo: (params: GetByIdParams<DashboardEstiloQuery>) => {
|
|
3048
4556
|
data: DashboardEstiloDTO | null;
|
|
@@ -3424,70 +4932,205 @@ declare const useCreateGraficaAgrupacion: () => {
|
|
|
3424
4932
|
mutate: (params: CreateParams<GraficaAgrupacionCreateDTO, GraficaAgrupacionQuery>) => Promise<GraficaAgrupacionDTO | null>;
|
|
3425
4933
|
isLoading: boolean;
|
|
3426
4934
|
error: Error | null;
|
|
3427
|
-
data: GraficaAgrupacionDTO | null;
|
|
4935
|
+
data: GraficaAgrupacionDTO | null;
|
|
4936
|
+
};
|
|
4937
|
+
/** @description Hook para useUpdate de la entidad grafica_agrupacion */
|
|
4938
|
+
declare const useUpdateGraficaAgrupacion: () => {
|
|
4939
|
+
mutate: (params: UpdateParams<GraficaAgrupacionUpdateDTO, GraficaAgrupacionQuery>) => Promise<GraficaAgrupacionDTO | null>;
|
|
4940
|
+
isLoading: boolean;
|
|
4941
|
+
error: Error | null;
|
|
4942
|
+
data: GraficaAgrupacionDTO | null;
|
|
4943
|
+
};
|
|
4944
|
+
/** @description Hook para useDelete de la entidad grafica_agrupacion */
|
|
4945
|
+
declare const useDeleteGraficaAgrupacion: () => {
|
|
4946
|
+
mutate: (params: DeleteParams<GraficaAgrupacionQuery>) => Promise<boolean>;
|
|
4947
|
+
isLoading: boolean;
|
|
4948
|
+
error: Error | null;
|
|
4949
|
+
success: boolean;
|
|
4950
|
+
};
|
|
4951
|
+
/** @description Hook para useFilterMatch de la entidad grafica_agrupacion */
|
|
4952
|
+
declare const useFilterMatchGraficaAgrupacion: (params: FilterMatchParams<GraficaAgrupacionQuery>) => {
|
|
4953
|
+
data: GraficaAgrupacionDTO[] | null;
|
|
4954
|
+
error: Error | null;
|
|
4955
|
+
isFetching: boolean;
|
|
4956
|
+
isLoading: boolean;
|
|
4957
|
+
refetch: () => Promise<void>;
|
|
4958
|
+
};
|
|
4959
|
+
/** @description Hook para useFetchById de la entidad grafica */
|
|
4960
|
+
declare const useFetchByIdGrafica: (params: GetByIdParams<GraficaQuery>) => {
|
|
4961
|
+
data: GraficaDTO | null;
|
|
4962
|
+
error: Error | null;
|
|
4963
|
+
isFetching: boolean;
|
|
4964
|
+
isLoading: boolean;
|
|
4965
|
+
refetch: () => Promise<void>;
|
|
4966
|
+
};
|
|
4967
|
+
/** @description Hook para useFetchList de la entidad grafica */
|
|
4968
|
+
declare const useFetchListGrafica: (params: QueryParams<GraficaQuery>) => {
|
|
4969
|
+
data: GraficaDTO[] | null;
|
|
4970
|
+
error: Error | null;
|
|
4971
|
+
isFetching: boolean;
|
|
4972
|
+
isLoading: boolean;
|
|
4973
|
+
refetch: () => Promise<void>;
|
|
4974
|
+
};
|
|
4975
|
+
/** @description Hook para useCreate de la entidad grafica */
|
|
4976
|
+
declare const useCreateGrafica: () => {
|
|
4977
|
+
mutate: (params: CreateParams<GraficaCreateDTO, GraficaQuery>) => Promise<GraficaDTO | null>;
|
|
4978
|
+
isLoading: boolean;
|
|
4979
|
+
error: Error | null;
|
|
4980
|
+
data: GraficaDTO | null;
|
|
4981
|
+
};
|
|
4982
|
+
/** @description Hook para useUpdate de la entidad grafica */
|
|
4983
|
+
declare const useUpdateGrafica: () => {
|
|
4984
|
+
mutate: (params: UpdateParams<GraficaUpdateDTO, GraficaQuery>) => Promise<GraficaDTO | null>;
|
|
4985
|
+
isLoading: boolean;
|
|
4986
|
+
error: Error | null;
|
|
4987
|
+
data: GraficaDTO | null;
|
|
4988
|
+
};
|
|
4989
|
+
/** @description Hook para useDelete de la entidad grafica */
|
|
4990
|
+
declare const useDeleteGrafica: () => {
|
|
4991
|
+
mutate: (params: DeleteParams<GraficaQuery>) => Promise<boolean>;
|
|
4992
|
+
isLoading: boolean;
|
|
4993
|
+
error: Error | null;
|
|
4994
|
+
success: boolean;
|
|
4995
|
+
};
|
|
4996
|
+
/** @description Hook para useFilterMatch de la entidad grafica */
|
|
4997
|
+
declare const useFilterMatchGrafica: (params: FilterMatchParams<GraficaQuery>) => {
|
|
4998
|
+
data: GraficaDTO[] | null;
|
|
4999
|
+
error: Error | null;
|
|
5000
|
+
isFetching: boolean;
|
|
5001
|
+
isLoading: boolean;
|
|
5002
|
+
refetch: () => Promise<void>;
|
|
5003
|
+
};
|
|
5004
|
+
/** @description Hook para useFetchById de la entidad grafica_color */
|
|
5005
|
+
declare const useFetchByIdGraficaColor: (params: GetByIdParams<GraficaColorQuery>) => {
|
|
5006
|
+
data: GraficaColorDTO | null;
|
|
5007
|
+
error: Error | null;
|
|
5008
|
+
isFetching: boolean;
|
|
5009
|
+
isLoading: boolean;
|
|
5010
|
+
refetch: () => Promise<void>;
|
|
5011
|
+
};
|
|
5012
|
+
/** @description Hook para useFetchList de la entidad grafica_color */
|
|
5013
|
+
declare const useFetchListGraficaColor: (params: QueryParams<GraficaColorQuery>) => {
|
|
5014
|
+
data: GraficaColorDTO[] | null;
|
|
5015
|
+
error: Error | null;
|
|
5016
|
+
isFetching: boolean;
|
|
5017
|
+
isLoading: boolean;
|
|
5018
|
+
refetch: () => Promise<void>;
|
|
5019
|
+
};
|
|
5020
|
+
/** @description Hook para useCreate de la entidad grafica_color */
|
|
5021
|
+
declare const useCreateGraficaColor: () => {
|
|
5022
|
+
mutate: (params: CreateParams<GraficaColorCreateDTO, GraficaColorQuery>) => Promise<GraficaColorDTO | null>;
|
|
5023
|
+
isLoading: boolean;
|
|
5024
|
+
error: Error | null;
|
|
5025
|
+
data: GraficaColorDTO | null;
|
|
5026
|
+
};
|
|
5027
|
+
/** @description Hook para useUpdate de la entidad grafica_color */
|
|
5028
|
+
declare const useUpdateGraficaColor: () => {
|
|
5029
|
+
mutate: (params: UpdateParams<GraficaColorUpdateDTO, GraficaColorQuery>) => Promise<GraficaColorDTO | null>;
|
|
5030
|
+
isLoading: boolean;
|
|
5031
|
+
error: Error | null;
|
|
5032
|
+
data: GraficaColorDTO | null;
|
|
5033
|
+
};
|
|
5034
|
+
/** @description Hook para useDelete de la entidad grafica_color */
|
|
5035
|
+
declare const useDeleteGraficaColor: () => {
|
|
5036
|
+
mutate: (params: DeleteParams<GraficaColorQuery>) => Promise<boolean>;
|
|
5037
|
+
isLoading: boolean;
|
|
5038
|
+
error: Error | null;
|
|
5039
|
+
success: boolean;
|
|
5040
|
+
};
|
|
5041
|
+
/** @description Hook para useFilterMatch de la entidad grafica_color */
|
|
5042
|
+
declare const useFilterMatchGraficaColor: (params: FilterMatchParams<GraficaColorQuery>) => {
|
|
5043
|
+
data: GraficaColorDTO[] | null;
|
|
5044
|
+
error: Error | null;
|
|
5045
|
+
isFetching: boolean;
|
|
5046
|
+
isLoading: boolean;
|
|
5047
|
+
refetch: () => Promise<void>;
|
|
5048
|
+
};
|
|
5049
|
+
/** @description Hook para useFetchById de la entidad grafica_color_grupo */
|
|
5050
|
+
declare const useFetchByIdGraficaColorGrupo: (params: GetByIdParams<GraficaColorGrupoQuery>) => {
|
|
5051
|
+
data: GraficaColorGrupoDTO | null;
|
|
5052
|
+
error: Error | null;
|
|
5053
|
+
isFetching: boolean;
|
|
5054
|
+
isLoading: boolean;
|
|
5055
|
+
refetch: () => Promise<void>;
|
|
5056
|
+
};
|
|
5057
|
+
/** @description Hook para useFetchList de la entidad grafica_color_grupo */
|
|
5058
|
+
declare const useFetchListGraficaColorGrupo: (params: QueryParams<GraficaColorGrupoQuery>) => {
|
|
5059
|
+
data: GraficaColorGrupoDTO[] | null;
|
|
5060
|
+
error: Error | null;
|
|
5061
|
+
isFetching: boolean;
|
|
5062
|
+
isLoading: boolean;
|
|
5063
|
+
refetch: () => Promise<void>;
|
|
5064
|
+
};
|
|
5065
|
+
/** @description Hook para useCreate de la entidad grafica_color_grupo */
|
|
5066
|
+
declare const useCreateGraficaColorGrupo: () => {
|
|
5067
|
+
mutate: (params: CreateParams<GraficaColorGrupoCreateDTO, GraficaColorGrupoQuery>) => Promise<GraficaColorGrupoDTO | null>;
|
|
5068
|
+
isLoading: boolean;
|
|
5069
|
+
error: Error | null;
|
|
5070
|
+
data: GraficaColorGrupoDTO | null;
|
|
3428
5071
|
};
|
|
3429
|
-
/** @description Hook para useUpdate de la entidad
|
|
3430
|
-
declare const
|
|
3431
|
-
mutate: (params: UpdateParams<
|
|
5072
|
+
/** @description Hook para useUpdate de la entidad grafica_color_grupo */
|
|
5073
|
+
declare const useUpdateGraficaColorGrupo: () => {
|
|
5074
|
+
mutate: (params: UpdateParams<GraficaColorGrupoUpdateDTO, GraficaColorGrupoQuery>) => Promise<GraficaColorGrupoDTO | null>;
|
|
3432
5075
|
isLoading: boolean;
|
|
3433
5076
|
error: Error | null;
|
|
3434
|
-
data:
|
|
5077
|
+
data: GraficaColorGrupoDTO | null;
|
|
3435
5078
|
};
|
|
3436
|
-
/** @description Hook para useDelete de la entidad
|
|
3437
|
-
declare const
|
|
3438
|
-
mutate: (params: DeleteParams<
|
|
5079
|
+
/** @description Hook para useDelete de la entidad grafica_color_grupo */
|
|
5080
|
+
declare const useDeleteGraficaColorGrupo: () => {
|
|
5081
|
+
mutate: (params: DeleteParams<GraficaColorGrupoQuery>) => Promise<boolean>;
|
|
3439
5082
|
isLoading: boolean;
|
|
3440
5083
|
error: Error | null;
|
|
3441
5084
|
success: boolean;
|
|
3442
5085
|
};
|
|
3443
|
-
/** @description Hook para useFilterMatch de la entidad
|
|
3444
|
-
declare const
|
|
3445
|
-
data:
|
|
5086
|
+
/** @description Hook para useFilterMatch de la entidad grafica_color_grupo */
|
|
5087
|
+
declare const useFilterMatchGraficaColorGrupo: (params: FilterMatchParams<GraficaColorGrupoQuery>) => {
|
|
5088
|
+
data: GraficaColorGrupoDTO[] | null;
|
|
3446
5089
|
error: Error | null;
|
|
3447
5090
|
isFetching: boolean;
|
|
3448
5091
|
isLoading: boolean;
|
|
3449
5092
|
refetch: () => Promise<void>;
|
|
3450
5093
|
};
|
|
3451
|
-
/** @description Hook para useFetchById de la entidad
|
|
3452
|
-
declare const
|
|
3453
|
-
data:
|
|
5094
|
+
/** @description Hook para useFetchById de la entidad grafica_color_grupo_asignacion */
|
|
5095
|
+
declare const useFetchByIdGraficaColorGrupoAsignacion: (params: GetByIdParams<GraficaColorGrupoAsignacionQuery>) => {
|
|
5096
|
+
data: GraficaColorGrupoAsignacionDTO | null;
|
|
3454
5097
|
error: Error | null;
|
|
3455
5098
|
isFetching: boolean;
|
|
3456
5099
|
isLoading: boolean;
|
|
3457
5100
|
refetch: () => Promise<void>;
|
|
3458
5101
|
};
|
|
3459
|
-
/** @description Hook para useFetchList de la entidad
|
|
3460
|
-
declare const
|
|
3461
|
-
data:
|
|
5102
|
+
/** @description Hook para useFetchList de la entidad grafica_color_grupo_asignacion */
|
|
5103
|
+
declare const useFetchListGraficaColorGrupoAsignacion: (params: QueryParams<GraficaColorGrupoAsignacionQuery>) => {
|
|
5104
|
+
data: GraficaColorGrupoAsignacionDTO[] | null;
|
|
3462
5105
|
error: Error | null;
|
|
3463
5106
|
isFetching: boolean;
|
|
3464
5107
|
isLoading: boolean;
|
|
3465
5108
|
refetch: () => Promise<void>;
|
|
3466
5109
|
};
|
|
3467
|
-
/** @description Hook para useCreate de la entidad
|
|
3468
|
-
declare const
|
|
3469
|
-
mutate: (params: CreateParams<
|
|
5110
|
+
/** @description Hook para useCreate de la entidad grafica_color_grupo_asignacion */
|
|
5111
|
+
declare const useCreateGraficaColorGrupoAsignacion: () => {
|
|
5112
|
+
mutate: (params: CreateParams<GraficaColorGrupoAsignacionCreateDTO, GraficaColorGrupoAsignacionQuery>) => Promise<GraficaColorGrupoAsignacionDTO | null>;
|
|
3470
5113
|
isLoading: boolean;
|
|
3471
5114
|
error: Error | null;
|
|
3472
|
-
data:
|
|
5115
|
+
data: GraficaColorGrupoAsignacionDTO | null;
|
|
3473
5116
|
};
|
|
3474
|
-
/** @description Hook para useUpdate de la entidad
|
|
3475
|
-
declare const
|
|
3476
|
-
mutate: (params: UpdateParams<
|
|
5117
|
+
/** @description Hook para useUpdate de la entidad grafica_color_grupo_asignacion */
|
|
5118
|
+
declare const useUpdateGraficaColorGrupoAsignacion: () => {
|
|
5119
|
+
mutate: (params: UpdateParams<GraficaColorGrupoAsignacionUpdateDTO, GraficaColorGrupoAsignacionQuery>) => Promise<GraficaColorGrupoAsignacionDTO | null>;
|
|
3477
5120
|
isLoading: boolean;
|
|
3478
5121
|
error: Error | null;
|
|
3479
|
-
data:
|
|
5122
|
+
data: GraficaColorGrupoAsignacionDTO | null;
|
|
3480
5123
|
};
|
|
3481
|
-
/** @description Hook para useDelete de la entidad
|
|
3482
|
-
declare const
|
|
3483
|
-
mutate: (params: DeleteParams<
|
|
5124
|
+
/** @description Hook para useDelete de la entidad grafica_color_grupo_asignacion */
|
|
5125
|
+
declare const useDeleteGraficaColorGrupoAsignacion: () => {
|
|
5126
|
+
mutate: (params: DeleteParams<GraficaColorGrupoAsignacionQuery>) => Promise<boolean>;
|
|
3484
5127
|
isLoading: boolean;
|
|
3485
5128
|
error: Error | null;
|
|
3486
5129
|
success: boolean;
|
|
3487
5130
|
};
|
|
3488
|
-
/** @description Hook para useFilterMatch de la entidad
|
|
3489
|
-
declare const
|
|
3490
|
-
data:
|
|
5131
|
+
/** @description Hook para useFilterMatch de la entidad grafica_color_grupo_asignacion */
|
|
5132
|
+
declare const useFilterMatchGraficaColorGrupoAsignacion: (params: FilterMatchParams<GraficaColorGrupoAsignacionQuery>) => {
|
|
5133
|
+
data: GraficaColorGrupoAsignacionDTO[] | null;
|
|
3491
5134
|
error: Error | null;
|
|
3492
5135
|
isFetching: boolean;
|
|
3493
5136
|
isLoading: boolean;
|
|
@@ -3763,6 +5406,51 @@ declare const useFilterMatchGrupoUsuario: (params: FilterMatchParams<GrupoUsuari
|
|
|
3763
5406
|
isLoading: boolean;
|
|
3764
5407
|
refetch: () => Promise<void>;
|
|
3765
5408
|
};
|
|
5409
|
+
/** @description Hook para useFetchById de la entidad JobAuditLog */
|
|
5410
|
+
declare const useFetchByIdJobAuditLog: (params: GetByIdParams<JobAuditLogQuery>) => {
|
|
5411
|
+
data: JobAuditLogDTO | null;
|
|
5412
|
+
error: Error | null;
|
|
5413
|
+
isFetching: boolean;
|
|
5414
|
+
isLoading: boolean;
|
|
5415
|
+
refetch: () => Promise<void>;
|
|
5416
|
+
};
|
|
5417
|
+
/** @description Hook para useFetchList de la entidad JobAuditLog */
|
|
5418
|
+
declare const useFetchListJobAuditLog: (params: QueryParams<JobAuditLogQuery>) => {
|
|
5419
|
+
data: JobAuditLogDTO[] | null;
|
|
5420
|
+
error: Error | null;
|
|
5421
|
+
isFetching: boolean;
|
|
5422
|
+
isLoading: boolean;
|
|
5423
|
+
refetch: () => Promise<void>;
|
|
5424
|
+
};
|
|
5425
|
+
/** @description Hook para useCreate de la entidad JobAuditLog */
|
|
5426
|
+
declare const useCreateJobAuditLog: () => {
|
|
5427
|
+
mutate: (params: CreateParams<JobAuditLogCreateDTO, JobAuditLogQuery>) => Promise<JobAuditLogDTO | null>;
|
|
5428
|
+
isLoading: boolean;
|
|
5429
|
+
error: Error | null;
|
|
5430
|
+
data: JobAuditLogDTO | null;
|
|
5431
|
+
};
|
|
5432
|
+
/** @description Hook para useUpdate de la entidad JobAuditLog */
|
|
5433
|
+
declare const useUpdateJobAuditLog: () => {
|
|
5434
|
+
mutate: (params: UpdateParams<JobAuditLogUpdateDTO, JobAuditLogQuery>) => Promise<JobAuditLogDTO | null>;
|
|
5435
|
+
isLoading: boolean;
|
|
5436
|
+
error: Error | null;
|
|
5437
|
+
data: JobAuditLogDTO | null;
|
|
5438
|
+
};
|
|
5439
|
+
/** @description Hook para useDelete de la entidad JobAuditLog */
|
|
5440
|
+
declare const useDeleteJobAuditLog: () => {
|
|
5441
|
+
mutate: (params: DeleteParams<JobAuditLogQuery>) => Promise<boolean>;
|
|
5442
|
+
isLoading: boolean;
|
|
5443
|
+
error: Error | null;
|
|
5444
|
+
success: boolean;
|
|
5445
|
+
};
|
|
5446
|
+
/** @description Hook para useFilterMatch de la entidad JobAuditLog */
|
|
5447
|
+
declare const useFilterMatchJobAuditLog: (params: FilterMatchParams<JobAuditLogQuery>) => {
|
|
5448
|
+
data: JobAuditLogDTO[] | null;
|
|
5449
|
+
error: Error | null;
|
|
5450
|
+
isFetching: boolean;
|
|
5451
|
+
isLoading: boolean;
|
|
5452
|
+
refetch: () => Promise<void>;
|
|
5453
|
+
};
|
|
3766
5454
|
/** @description Hook para useFetchById de la entidad modulo */
|
|
3767
5455
|
declare const useFetchByIdModulo: (params: GetByIdParams<ModuloQuery>) => {
|
|
3768
5456
|
data: ModuloDTO | null;
|
|
@@ -3853,6 +5541,321 @@ declare const useFilterMatchPagos: (params: FilterMatchParams<PagosQuery>) => {
|
|
|
3853
5541
|
isLoading: boolean;
|
|
3854
5542
|
refetch: () => Promise<void>;
|
|
3855
5543
|
};
|
|
5544
|
+
/** @description Hook para useFetchById de la entidad PagosPorColoniasResumen */
|
|
5545
|
+
declare const useFetchByIdPagosPorColoniasResumen: (params: GetByIdParams<PagosPorColoniasResumenQuery>) => {
|
|
5546
|
+
data: PagosPorColoniasResumenDTO | null;
|
|
5547
|
+
error: Error | null;
|
|
5548
|
+
isFetching: boolean;
|
|
5549
|
+
isLoading: boolean;
|
|
5550
|
+
refetch: () => Promise<void>;
|
|
5551
|
+
};
|
|
5552
|
+
/** @description Hook para useFetchList de la entidad PagosPorColoniasResumen */
|
|
5553
|
+
declare const useFetchListPagosPorColoniasResumen: (params: QueryParams<PagosPorColoniasResumenQuery>) => {
|
|
5554
|
+
data: PagosPorColoniasResumenDTO[] | null;
|
|
5555
|
+
error: Error | null;
|
|
5556
|
+
isFetching: boolean;
|
|
5557
|
+
isLoading: boolean;
|
|
5558
|
+
refetch: () => Promise<void>;
|
|
5559
|
+
};
|
|
5560
|
+
/** @description Hook para useCreate de la entidad PagosPorColoniasResumen */
|
|
5561
|
+
declare const useCreatePagosPorColoniasResumen: () => {
|
|
5562
|
+
mutate: (params: CreateParams<PagosPorColoniasResumenCreateDTO, PagosPorColoniasResumenQuery>) => Promise<PagosPorColoniasResumenDTO | null>;
|
|
5563
|
+
isLoading: boolean;
|
|
5564
|
+
error: Error | null;
|
|
5565
|
+
data: PagosPorColoniasResumenDTO | null;
|
|
5566
|
+
};
|
|
5567
|
+
/** @description Hook para useUpdate de la entidad PagosPorColoniasResumen */
|
|
5568
|
+
declare const useUpdatePagosPorColoniasResumen: () => {
|
|
5569
|
+
mutate: (params: UpdateParams<PagosPorColoniasResumenUpdateDTO, PagosPorColoniasResumenQuery>) => Promise<PagosPorColoniasResumenDTO | null>;
|
|
5570
|
+
isLoading: boolean;
|
|
5571
|
+
error: Error | null;
|
|
5572
|
+
data: PagosPorColoniasResumenDTO | null;
|
|
5573
|
+
};
|
|
5574
|
+
/** @description Hook para useDelete de la entidad PagosPorColoniasResumen */
|
|
5575
|
+
declare const useDeletePagosPorColoniasResumen: () => {
|
|
5576
|
+
mutate: (params: DeleteParams<PagosPorColoniasResumenQuery>) => Promise<boolean>;
|
|
5577
|
+
isLoading: boolean;
|
|
5578
|
+
error: Error | null;
|
|
5579
|
+
success: boolean;
|
|
5580
|
+
};
|
|
5581
|
+
/** @description Hook para useFilterMatch de la entidad PagosPorColoniasResumen */
|
|
5582
|
+
declare const useFilterMatchPagosPorColoniasResumen: (params: FilterMatchParams<PagosPorColoniasResumenQuery>) => {
|
|
5583
|
+
data: PagosPorColoniasResumenDTO[] | null;
|
|
5584
|
+
error: Error | null;
|
|
5585
|
+
isFetching: boolean;
|
|
5586
|
+
isLoading: boolean;
|
|
5587
|
+
refetch: () => Promise<void>;
|
|
5588
|
+
};
|
|
5589
|
+
/** @description Hook para useFetchById de la entidad PagosPorColoniasResumenMensual */
|
|
5590
|
+
declare const useFetchByIdPagosPorColoniasResumenMensual: (params: GetByIdParams<PagosPorColoniasResumenMensualQuery>) => {
|
|
5591
|
+
data: PagosPorColoniasResumenMensualDTO | null;
|
|
5592
|
+
error: Error | null;
|
|
5593
|
+
isFetching: boolean;
|
|
5594
|
+
isLoading: boolean;
|
|
5595
|
+
refetch: () => Promise<void>;
|
|
5596
|
+
};
|
|
5597
|
+
/** @description Hook para useFetchList de la entidad PagosPorColoniasResumenMensual */
|
|
5598
|
+
declare const useFetchListPagosPorColoniasResumenMensual: (params: QueryParams<PagosPorColoniasResumenMensualQuery>) => {
|
|
5599
|
+
data: PagosPorColoniasResumenMensualDTO[] | null;
|
|
5600
|
+
error: Error | null;
|
|
5601
|
+
isFetching: boolean;
|
|
5602
|
+
isLoading: boolean;
|
|
5603
|
+
refetch: () => Promise<void>;
|
|
5604
|
+
};
|
|
5605
|
+
/** @description Hook para useCreate de la entidad PagosPorColoniasResumenMensual */
|
|
5606
|
+
declare const useCreatePagosPorColoniasResumenMensual: () => {
|
|
5607
|
+
mutate: (params: CreateParams<PagosPorColoniasResumenMensualCreateDTO, PagosPorColoniasResumenMensualQuery>) => Promise<PagosPorColoniasResumenMensualDTO | null>;
|
|
5608
|
+
isLoading: boolean;
|
|
5609
|
+
error: Error | null;
|
|
5610
|
+
data: PagosPorColoniasResumenMensualDTO | null;
|
|
5611
|
+
};
|
|
5612
|
+
/** @description Hook para useUpdate de la entidad PagosPorColoniasResumenMensual */
|
|
5613
|
+
declare const useUpdatePagosPorColoniasResumenMensual: () => {
|
|
5614
|
+
mutate: (params: UpdateParams<PagosPorColoniasResumenMensualUpdateDTO, PagosPorColoniasResumenMensualQuery>) => Promise<PagosPorColoniasResumenMensualDTO | null>;
|
|
5615
|
+
isLoading: boolean;
|
|
5616
|
+
error: Error | null;
|
|
5617
|
+
data: PagosPorColoniasResumenMensualDTO | null;
|
|
5618
|
+
};
|
|
5619
|
+
/** @description Hook para useDelete de la entidad PagosPorColoniasResumenMensual */
|
|
5620
|
+
declare const useDeletePagosPorColoniasResumenMensual: () => {
|
|
5621
|
+
mutate: (params: DeleteParams<PagosPorColoniasResumenMensualQuery>) => Promise<boolean>;
|
|
5622
|
+
isLoading: boolean;
|
|
5623
|
+
error: Error | null;
|
|
5624
|
+
success: boolean;
|
|
5625
|
+
};
|
|
5626
|
+
/** @description Hook para useFilterMatch de la entidad PagosPorColoniasResumenMensual */
|
|
5627
|
+
declare const useFilterMatchPagosPorColoniasResumenMensual: (params: FilterMatchParams<PagosPorColoniasResumenMensualQuery>) => {
|
|
5628
|
+
data: PagosPorColoniasResumenMensualDTO[] | null;
|
|
5629
|
+
error: Error | null;
|
|
5630
|
+
isFetching: boolean;
|
|
5631
|
+
isLoading: boolean;
|
|
5632
|
+
refetch: () => Promise<void>;
|
|
5633
|
+
};
|
|
5634
|
+
/** @description Hook para useFetchById de la entidad PagosPorTipoServicioMensual */
|
|
5635
|
+
declare const useFetchByIdPagosPorTipoServicioMensual: (params: GetByIdParams<PagosPorTipoServicioMensualQuery>) => {
|
|
5636
|
+
data: PagosPorTipoServicioMensualDTO | null;
|
|
5637
|
+
error: Error | null;
|
|
5638
|
+
isFetching: boolean;
|
|
5639
|
+
isLoading: boolean;
|
|
5640
|
+
refetch: () => Promise<void>;
|
|
5641
|
+
};
|
|
5642
|
+
/** @description Hook para useFetchList de la entidad PagosPorTipoServicioMensual */
|
|
5643
|
+
declare const useFetchListPagosPorTipoServicioMensual: (params: QueryParams<PagosPorTipoServicioMensualQuery>) => {
|
|
5644
|
+
data: PagosPorTipoServicioMensualDTO[] | null;
|
|
5645
|
+
error: Error | null;
|
|
5646
|
+
isFetching: boolean;
|
|
5647
|
+
isLoading: boolean;
|
|
5648
|
+
refetch: () => Promise<void>;
|
|
5649
|
+
};
|
|
5650
|
+
/** @description Hook para useCreate de la entidad PagosPorTipoServicioMensual */
|
|
5651
|
+
declare const useCreatePagosPorTipoServicioMensual: () => {
|
|
5652
|
+
mutate: (params: CreateParams<PagosPorTipoServicioMensualCreateDTO, PagosPorTipoServicioMensualQuery>) => Promise<PagosPorTipoServicioMensualDTO | null>;
|
|
5653
|
+
isLoading: boolean;
|
|
5654
|
+
error: Error | null;
|
|
5655
|
+
data: PagosPorTipoServicioMensualDTO | null;
|
|
5656
|
+
};
|
|
5657
|
+
/** @description Hook para useUpdate de la entidad PagosPorTipoServicioMensual */
|
|
5658
|
+
declare const useUpdatePagosPorTipoServicioMensual: () => {
|
|
5659
|
+
mutate: (params: UpdateParams<PagosPorTipoServicioMensualUpdateDTO, PagosPorTipoServicioMensualQuery>) => Promise<PagosPorTipoServicioMensualDTO | null>;
|
|
5660
|
+
isLoading: boolean;
|
|
5661
|
+
error: Error | null;
|
|
5662
|
+
data: PagosPorTipoServicioMensualDTO | null;
|
|
5663
|
+
};
|
|
5664
|
+
/** @description Hook para useDelete de la entidad PagosPorTipoServicioMensual */
|
|
5665
|
+
declare const useDeletePagosPorTipoServicioMensual: () => {
|
|
5666
|
+
mutate: (params: DeleteParams<PagosPorTipoServicioMensualQuery>) => Promise<boolean>;
|
|
5667
|
+
isLoading: boolean;
|
|
5668
|
+
error: Error | null;
|
|
5669
|
+
success: boolean;
|
|
5670
|
+
};
|
|
5671
|
+
/** @description Hook para useFilterMatch de la entidad PagosPorTipoServicioMensual */
|
|
5672
|
+
declare const useFilterMatchPagosPorTipoServicioMensual: (params: FilterMatchParams<PagosPorTipoServicioMensualQuery>) => {
|
|
5673
|
+
data: PagosPorTipoServicioMensualDTO[] | null;
|
|
5674
|
+
error: Error | null;
|
|
5675
|
+
isFetching: boolean;
|
|
5676
|
+
isLoading: boolean;
|
|
5677
|
+
refetch: () => Promise<void>;
|
|
5678
|
+
};
|
|
5679
|
+
/** @description Hook para useFetchById de la entidad PagosPorTipoServicioResumen */
|
|
5680
|
+
declare const useFetchByIdPagosPorTipoServicioResumen: (params: GetByIdParams<PagosPorTipoServicioResumenQuery>) => {
|
|
5681
|
+
data: PagosPorTipoServicioResumenDTO | null;
|
|
5682
|
+
error: Error | null;
|
|
5683
|
+
isFetching: boolean;
|
|
5684
|
+
isLoading: boolean;
|
|
5685
|
+
refetch: () => Promise<void>;
|
|
5686
|
+
};
|
|
5687
|
+
/** @description Hook para useFetchList de la entidad PagosPorTipoServicioResumen */
|
|
5688
|
+
declare const useFetchListPagosPorTipoServicioResumen: (params: QueryParams<PagosPorTipoServicioResumenQuery>) => {
|
|
5689
|
+
data: PagosPorTipoServicioResumenDTO[] | null;
|
|
5690
|
+
error: Error | null;
|
|
5691
|
+
isFetching: boolean;
|
|
5692
|
+
isLoading: boolean;
|
|
5693
|
+
refetch: () => Promise<void>;
|
|
5694
|
+
};
|
|
5695
|
+
/** @description Hook para useCreate de la entidad PagosPorTipoServicioResumen */
|
|
5696
|
+
declare const useCreatePagosPorTipoServicioResumen: () => {
|
|
5697
|
+
mutate: (params: CreateParams<PagosPorTipoServicioResumenCreateDTO, PagosPorTipoServicioResumenQuery>) => Promise<PagosPorTipoServicioResumenDTO | null>;
|
|
5698
|
+
isLoading: boolean;
|
|
5699
|
+
error: Error | null;
|
|
5700
|
+
data: PagosPorTipoServicioResumenDTO | null;
|
|
5701
|
+
};
|
|
5702
|
+
/** @description Hook para useUpdate de la entidad PagosPorTipoServicioResumen */
|
|
5703
|
+
declare const useUpdatePagosPorTipoServicioResumen: () => {
|
|
5704
|
+
mutate: (params: UpdateParams<PagosPorTipoServicioResumenUpdateDTO, PagosPorTipoServicioResumenQuery>) => Promise<PagosPorTipoServicioResumenDTO | null>;
|
|
5705
|
+
isLoading: boolean;
|
|
5706
|
+
error: Error | null;
|
|
5707
|
+
data: PagosPorTipoServicioResumenDTO | null;
|
|
5708
|
+
};
|
|
5709
|
+
/** @description Hook para useDelete de la entidad PagosPorTipoServicioResumen */
|
|
5710
|
+
declare const useDeletePagosPorTipoServicioResumen: () => {
|
|
5711
|
+
mutate: (params: DeleteParams<PagosPorTipoServicioResumenQuery>) => Promise<boolean>;
|
|
5712
|
+
isLoading: boolean;
|
|
5713
|
+
error: Error | null;
|
|
5714
|
+
success: boolean;
|
|
5715
|
+
};
|
|
5716
|
+
/** @description Hook para useFilterMatch de la entidad PagosPorTipoServicioResumen */
|
|
5717
|
+
declare const useFilterMatchPagosPorTipoServicioResumen: (params: FilterMatchParams<PagosPorTipoServicioResumenQuery>) => {
|
|
5718
|
+
data: PagosPorTipoServicioResumenDTO[] | null;
|
|
5719
|
+
error: Error | null;
|
|
5720
|
+
isFetching: boolean;
|
|
5721
|
+
isLoading: boolean;
|
|
5722
|
+
refetch: () => Promise<void>;
|
|
5723
|
+
};
|
|
5724
|
+
/** @description Hook para useFetchById de la entidad PagosPorTipoTarifaResumen */
|
|
5725
|
+
declare const useFetchByIdPagosPorTipoTarifaResumen: (params: GetByIdParams<PagosPorTipoTarifaResumenQuery>) => {
|
|
5726
|
+
data: PagosPorTipoTarifaResumenDTO | null;
|
|
5727
|
+
error: Error | null;
|
|
5728
|
+
isFetching: boolean;
|
|
5729
|
+
isLoading: boolean;
|
|
5730
|
+
refetch: () => Promise<void>;
|
|
5731
|
+
};
|
|
5732
|
+
/** @description Hook para useFetchList de la entidad PagosPorTipoTarifaResumen */
|
|
5733
|
+
declare const useFetchListPagosPorTipoTarifaResumen: (params: QueryParams<PagosPorTipoTarifaResumenQuery>) => {
|
|
5734
|
+
data: PagosPorTipoTarifaResumenDTO[] | null;
|
|
5735
|
+
error: Error | null;
|
|
5736
|
+
isFetching: boolean;
|
|
5737
|
+
isLoading: boolean;
|
|
5738
|
+
refetch: () => Promise<void>;
|
|
5739
|
+
};
|
|
5740
|
+
/** @description Hook para useCreate de la entidad PagosPorTipoTarifaResumen */
|
|
5741
|
+
declare const useCreatePagosPorTipoTarifaResumen: () => {
|
|
5742
|
+
mutate: (params: CreateParams<PagosPorTipoTarifaResumenCreateDTO, PagosPorTipoTarifaResumenQuery>) => Promise<PagosPorTipoTarifaResumenDTO | null>;
|
|
5743
|
+
isLoading: boolean;
|
|
5744
|
+
error: Error | null;
|
|
5745
|
+
data: PagosPorTipoTarifaResumenDTO | null;
|
|
5746
|
+
};
|
|
5747
|
+
/** @description Hook para useUpdate de la entidad PagosPorTipoTarifaResumen */
|
|
5748
|
+
declare const useUpdatePagosPorTipoTarifaResumen: () => {
|
|
5749
|
+
mutate: (params: UpdateParams<PagosPorTipoTarifaResumenUpdateDTO, PagosPorTipoTarifaResumenQuery>) => Promise<PagosPorTipoTarifaResumenDTO | null>;
|
|
5750
|
+
isLoading: boolean;
|
|
5751
|
+
error: Error | null;
|
|
5752
|
+
data: PagosPorTipoTarifaResumenDTO | null;
|
|
5753
|
+
};
|
|
5754
|
+
/** @description Hook para useDelete de la entidad PagosPorTipoTarifaResumen */
|
|
5755
|
+
declare const useDeletePagosPorTipoTarifaResumen: () => {
|
|
5756
|
+
mutate: (params: DeleteParams<PagosPorTipoTarifaResumenQuery>) => Promise<boolean>;
|
|
5757
|
+
isLoading: boolean;
|
|
5758
|
+
error: Error | null;
|
|
5759
|
+
success: boolean;
|
|
5760
|
+
};
|
|
5761
|
+
/** @description Hook para useFilterMatch de la entidad PagosPorTipoTarifaResumen */
|
|
5762
|
+
declare const useFilterMatchPagosPorTipoTarifaResumen: (params: FilterMatchParams<PagosPorTipoTarifaResumenQuery>) => {
|
|
5763
|
+
data: PagosPorTipoTarifaResumenDTO[] | null;
|
|
5764
|
+
error: Error | null;
|
|
5765
|
+
isFetching: boolean;
|
|
5766
|
+
isLoading: boolean;
|
|
5767
|
+
refetch: () => Promise<void>;
|
|
5768
|
+
};
|
|
5769
|
+
/** @description Hook para useFetchById de la entidad PagosPorTipoTarifaResumenMensual */
|
|
5770
|
+
declare const useFetchByIdPagosPorTipoTarifaResumenMensual: (params: GetByIdParams<PagosPorTipoTarifaResumenMensualQuery>) => {
|
|
5771
|
+
data: PagosPorTipoTarifaResumenMensualDTO | null;
|
|
5772
|
+
error: Error | null;
|
|
5773
|
+
isFetching: boolean;
|
|
5774
|
+
isLoading: boolean;
|
|
5775
|
+
refetch: () => Promise<void>;
|
|
5776
|
+
};
|
|
5777
|
+
/** @description Hook para useFetchList de la entidad PagosPorTipoTarifaResumenMensual */
|
|
5778
|
+
declare const useFetchListPagosPorTipoTarifaResumenMensual: (params: QueryParams<PagosPorTipoTarifaResumenMensualQuery>) => {
|
|
5779
|
+
data: PagosPorTipoTarifaResumenMensualDTO[] | null;
|
|
5780
|
+
error: Error | null;
|
|
5781
|
+
isFetching: boolean;
|
|
5782
|
+
isLoading: boolean;
|
|
5783
|
+
refetch: () => Promise<void>;
|
|
5784
|
+
};
|
|
5785
|
+
/** @description Hook para useCreate de la entidad PagosPorTipoTarifaResumenMensual */
|
|
5786
|
+
declare const useCreatePagosPorTipoTarifaResumenMensual: () => {
|
|
5787
|
+
mutate: (params: CreateParams<PagosPorTipoTarifaResumenMensualCreateDTO, PagosPorTipoTarifaResumenMensualQuery>) => Promise<PagosPorTipoTarifaResumenMensualDTO | null>;
|
|
5788
|
+
isLoading: boolean;
|
|
5789
|
+
error: Error | null;
|
|
5790
|
+
data: PagosPorTipoTarifaResumenMensualDTO | null;
|
|
5791
|
+
};
|
|
5792
|
+
/** @description Hook para useUpdate de la entidad PagosPorTipoTarifaResumenMensual */
|
|
5793
|
+
declare const useUpdatePagosPorTipoTarifaResumenMensual: () => {
|
|
5794
|
+
mutate: (params: UpdateParams<PagosPorTipoTarifaResumenMensualUpdateDTO, PagosPorTipoTarifaResumenMensualQuery>) => Promise<PagosPorTipoTarifaResumenMensualDTO | null>;
|
|
5795
|
+
isLoading: boolean;
|
|
5796
|
+
error: Error | null;
|
|
5797
|
+
data: PagosPorTipoTarifaResumenMensualDTO | null;
|
|
5798
|
+
};
|
|
5799
|
+
/** @description Hook para useDelete de la entidad PagosPorTipoTarifaResumenMensual */
|
|
5800
|
+
declare const useDeletePagosPorTipoTarifaResumenMensual: () => {
|
|
5801
|
+
mutate: (params: DeleteParams<PagosPorTipoTarifaResumenMensualQuery>) => Promise<boolean>;
|
|
5802
|
+
isLoading: boolean;
|
|
5803
|
+
error: Error | null;
|
|
5804
|
+
success: boolean;
|
|
5805
|
+
};
|
|
5806
|
+
/** @description Hook para useFilterMatch de la entidad PagosPorTipoTarifaResumenMensual */
|
|
5807
|
+
declare const useFilterMatchPagosPorTipoTarifaResumenMensual: (params: FilterMatchParams<PagosPorTipoTarifaResumenMensualQuery>) => {
|
|
5808
|
+
data: PagosPorTipoTarifaResumenMensualDTO[] | null;
|
|
5809
|
+
error: Error | null;
|
|
5810
|
+
isFetching: boolean;
|
|
5811
|
+
isLoading: boolean;
|
|
5812
|
+
refetch: () => Promise<void>;
|
|
5813
|
+
};
|
|
5814
|
+
/** @description Hook para useFetchById de la entidad PagosResumenMensual */
|
|
5815
|
+
declare const useFetchByIdPagosResumenMensual: (params: GetByIdParams<PagosResumenMensualQuery>) => {
|
|
5816
|
+
data: PagosResumenMensualDTO | null;
|
|
5817
|
+
error: Error | null;
|
|
5818
|
+
isFetching: boolean;
|
|
5819
|
+
isLoading: boolean;
|
|
5820
|
+
refetch: () => Promise<void>;
|
|
5821
|
+
};
|
|
5822
|
+
/** @description Hook para useFetchList de la entidad PagosResumenMensual */
|
|
5823
|
+
declare const useFetchListPagosResumenMensual: (params: QueryParams<PagosResumenMensualQuery>) => {
|
|
5824
|
+
data: PagosResumenMensualDTO[] | null;
|
|
5825
|
+
error: Error | null;
|
|
5826
|
+
isFetching: boolean;
|
|
5827
|
+
isLoading: boolean;
|
|
5828
|
+
refetch: () => Promise<void>;
|
|
5829
|
+
};
|
|
5830
|
+
/** @description Hook para useCreate de la entidad PagosResumenMensual */
|
|
5831
|
+
declare const useCreatePagosResumenMensual: () => {
|
|
5832
|
+
mutate: (params: CreateParams<PagosResumenMensualCreateDTO, PagosResumenMensualQuery>) => Promise<PagosResumenMensualDTO | null>;
|
|
5833
|
+
isLoading: boolean;
|
|
5834
|
+
error: Error | null;
|
|
5835
|
+
data: PagosResumenMensualDTO | null;
|
|
5836
|
+
};
|
|
5837
|
+
/** @description Hook para useUpdate de la entidad PagosResumenMensual */
|
|
5838
|
+
declare const useUpdatePagosResumenMensual: () => {
|
|
5839
|
+
mutate: (params: UpdateParams<PagosResumenMensualUpdateDTO, PagosResumenMensualQuery>) => Promise<PagosResumenMensualDTO | null>;
|
|
5840
|
+
isLoading: boolean;
|
|
5841
|
+
error: Error | null;
|
|
5842
|
+
data: PagosResumenMensualDTO | null;
|
|
5843
|
+
};
|
|
5844
|
+
/** @description Hook para useDelete de la entidad PagosResumenMensual */
|
|
5845
|
+
declare const useDeletePagosResumenMensual: () => {
|
|
5846
|
+
mutate: (params: DeleteParams<PagosResumenMensualQuery>) => Promise<boolean>;
|
|
5847
|
+
isLoading: boolean;
|
|
5848
|
+
error: Error | null;
|
|
5849
|
+
success: boolean;
|
|
5850
|
+
};
|
|
5851
|
+
/** @description Hook para useFilterMatch de la entidad PagosResumenMensual */
|
|
5852
|
+
declare const useFilterMatchPagosResumenMensual: (params: FilterMatchParams<PagosResumenMensualQuery>) => {
|
|
5853
|
+
data: PagosResumenMensualDTO[] | null;
|
|
5854
|
+
error: Error | null;
|
|
5855
|
+
isFetching: boolean;
|
|
5856
|
+
isLoading: boolean;
|
|
5857
|
+
refetch: () => Promise<void>;
|
|
5858
|
+
};
|
|
3856
5859
|
/** @description Hook para useFetchById de la entidad permiso_accion_entidad */
|
|
3857
5860
|
declare const useFetchByIdPermisoAccionEntidad: (params: GetByIdParams<PermisoAccionEntidadQuery>) => {
|
|
3858
5861
|
data: PermisoAccionEntidadDTO | null;
|
|
@@ -4528,5 +6531,50 @@ declare const useFilterMatchUsuarioRol: (params: FilterMatchParams<UsuarioRolQue
|
|
|
4528
6531
|
isLoading: boolean;
|
|
4529
6532
|
refetch: () => Promise<void>;
|
|
4530
6533
|
};
|
|
6534
|
+
/** @description Hook para useFetchById de la entidad usuario_rol_eliminacion_log */
|
|
6535
|
+
declare const useFetchByIdUsuarioRolEliminacionLog: (params: GetByIdParams<UsuarioRolEliminacionLogQuery>) => {
|
|
6536
|
+
data: UsuarioRolEliminacionLogDTO | null;
|
|
6537
|
+
error: Error | null;
|
|
6538
|
+
isFetching: boolean;
|
|
6539
|
+
isLoading: boolean;
|
|
6540
|
+
refetch: () => Promise<void>;
|
|
6541
|
+
};
|
|
6542
|
+
/** @description Hook para useFetchList de la entidad usuario_rol_eliminacion_log */
|
|
6543
|
+
declare const useFetchListUsuarioRolEliminacionLog: (params: QueryParams<UsuarioRolEliminacionLogQuery>) => {
|
|
6544
|
+
data: UsuarioRolEliminacionLogDTO[] | null;
|
|
6545
|
+
error: Error | null;
|
|
6546
|
+
isFetching: boolean;
|
|
6547
|
+
isLoading: boolean;
|
|
6548
|
+
refetch: () => Promise<void>;
|
|
6549
|
+
};
|
|
6550
|
+
/** @description Hook para useCreate de la entidad usuario_rol_eliminacion_log */
|
|
6551
|
+
declare const useCreateUsuarioRolEliminacionLog: () => {
|
|
6552
|
+
mutate: (params: CreateParams<UsuarioRolEliminacionLogCreateDTO, UsuarioRolEliminacionLogQuery>) => Promise<UsuarioRolEliminacionLogDTO | null>;
|
|
6553
|
+
isLoading: boolean;
|
|
6554
|
+
error: Error | null;
|
|
6555
|
+
data: UsuarioRolEliminacionLogDTO | null;
|
|
6556
|
+
};
|
|
6557
|
+
/** @description Hook para useUpdate de la entidad usuario_rol_eliminacion_log */
|
|
6558
|
+
declare const useUpdateUsuarioRolEliminacionLog: () => {
|
|
6559
|
+
mutate: (params: UpdateParams<UsuarioRolEliminacionLogUpdateDTO, UsuarioRolEliminacionLogQuery>) => Promise<UsuarioRolEliminacionLogDTO | null>;
|
|
6560
|
+
isLoading: boolean;
|
|
6561
|
+
error: Error | null;
|
|
6562
|
+
data: UsuarioRolEliminacionLogDTO | null;
|
|
6563
|
+
};
|
|
6564
|
+
/** @description Hook para useDelete de la entidad usuario_rol_eliminacion_log */
|
|
6565
|
+
declare const useDeleteUsuarioRolEliminacionLog: () => {
|
|
6566
|
+
mutate: (params: DeleteParams<UsuarioRolEliminacionLogQuery>) => Promise<boolean>;
|
|
6567
|
+
isLoading: boolean;
|
|
6568
|
+
error: Error | null;
|
|
6569
|
+
success: boolean;
|
|
6570
|
+
};
|
|
6571
|
+
/** @description Hook para useFilterMatch de la entidad usuario_rol_eliminacion_log */
|
|
6572
|
+
declare const useFilterMatchUsuarioRolEliminacionLog: (params: FilterMatchParams<UsuarioRolEliminacionLogQuery>) => {
|
|
6573
|
+
data: UsuarioRolEliminacionLogDTO[] | null;
|
|
6574
|
+
error: Error | null;
|
|
6575
|
+
isFetching: boolean;
|
|
6576
|
+
isLoading: boolean;
|
|
6577
|
+
refetch: () => Promise<void>;
|
|
6578
|
+
};
|
|
4531
6579
|
|
|
4532
|
-
export { APIFactory, useCreateAdeudo, useCreateCatAccion, useCreateCatConceptoPago, useCreateCatEntidad, useCreateCatFechaAgrupacion, useCreateCatGraficaGrupo, useCreateCatPlaza, useCreateCatRolGrupo, useCreateCatTipoParametro, useCreateCatTipoServicio, useCreateCatTipoSuelo, useCreateCatTipoTarifa, useCreateContribuyente, useCreateContribuyenteDomicilio, useCreateDashboardEstilo, useCreateDashboardGrafica, useCreateDashboardGraficaElemento, useCreateDashboardGraficaElementoDetalle, useCreateDashboardGraficaElementoParametro, useCreateDashboardGraficaGrupo, useCreateDashboardGraficaGrupoRol, useCreateDashboardRuta, useCreateGrafica, useCreateGraficaAgrupacion, useCreateGraficaFiltro, useCreateGraficaParametro, useCreateGraficaParametroDefecto, useCreateGraficaParametroTipo, useCreateGraficaPorGrupo, useCreateGrupoUsuario, useCreateModulo, useCreatePagos, useCreatePermisoAccionEntidad, useCreatePermisoModulo, useCreatePermisoSubmodulo, useCreatePlazas, useCreateRol, useCreateRolDashboardRuta, useCreateRolGrafica, useCreateSubmodulo, useCreateTipoGrafica, useCreateTipoRol, useCreateUsuario, useCreateUsuarioDashboardAcceso, useCreateUsuarioGrafica, useCreateUsuarioGraficaExcluida, useCreateUsuarioRol, useDeleteAdeudo, useDeleteCatAccion, useDeleteCatConceptoPago, useDeleteCatEntidad, useDeleteCatFechaAgrupacion, useDeleteCatGraficaGrupo, useDeleteCatPlaza, useDeleteCatRolGrupo, useDeleteCatTipoParametro, useDeleteCatTipoServicio, useDeleteCatTipoSuelo, useDeleteCatTipoTarifa, useDeleteContribuyente, useDeleteContribuyenteDomicilio, useDeleteDashboardEstilo, useDeleteDashboardGrafica, useDeleteDashboardGraficaElemento, useDeleteDashboardGraficaElementoDetalle, useDeleteDashboardGraficaElementoParametro, useDeleteDashboardGraficaGrupo, useDeleteDashboardGraficaGrupoRol, useDeleteDashboardRuta, useDeleteGrafica, useDeleteGraficaAgrupacion, useDeleteGraficaFiltro, useDeleteGraficaParametro, useDeleteGraficaParametroDefecto, useDeleteGraficaParametroTipo, useDeleteGraficaPorGrupo, useDeleteGrupoUsuario, useDeleteModulo, useDeletePagos, useDeletePermisoAccionEntidad, useDeletePermisoModulo, useDeletePermisoSubmodulo, useDeletePlazas, useDeleteRol, useDeleteRolDashboardRuta, useDeleteRolGrafica, useDeleteSubmodulo, useDeleteTipoGrafica, useDeleteTipoRol, useDeleteUsuario, useDeleteUsuarioDashboardAcceso, useDeleteUsuarioGrafica, useDeleteUsuarioGraficaExcluida, useDeleteUsuarioRol, useFetchByIdAdeudo, useFetchByIdCatAccion, useFetchByIdCatConceptoPago, useFetchByIdCatEntidad, useFetchByIdCatFechaAgrupacion, useFetchByIdCatGraficaGrupo, useFetchByIdCatPlaza, useFetchByIdCatRolGrupo, useFetchByIdCatTipoParametro, useFetchByIdCatTipoServicio, useFetchByIdCatTipoSuelo, useFetchByIdCatTipoTarifa, useFetchByIdContribuyente, useFetchByIdContribuyenteDomicilio, useFetchByIdDashboardEstilo, useFetchByIdDashboardGrafica, useFetchByIdDashboardGraficaElemento, useFetchByIdDashboardGraficaElementoDetalle, useFetchByIdDashboardGraficaElementoParametro, useFetchByIdDashboardGraficaGrupo, useFetchByIdDashboardGraficaGrupoRol, useFetchByIdDashboardRuta, useFetchByIdGrafica, useFetchByIdGraficaAgrupacion, useFetchByIdGraficaFiltro, useFetchByIdGraficaParametro, useFetchByIdGraficaParametroDefecto, useFetchByIdGraficaParametroTipo, useFetchByIdGraficaPorGrupo, useFetchByIdGrupoUsuario, useFetchByIdModulo, useFetchByIdPagos, useFetchByIdPermisoAccionEntidad, useFetchByIdPermisoModulo, useFetchByIdPermisoSubmodulo, useFetchByIdPlazas, useFetchByIdRol, useFetchByIdRolDashboardRuta, useFetchByIdRolGrafica, useFetchByIdSubmodulo, useFetchByIdTipoGrafica, useFetchByIdTipoRol, useFetchByIdUsuario, useFetchByIdUsuarioDashboardAcceso, useFetchByIdUsuarioGrafica, useFetchByIdUsuarioGraficaExcluida, useFetchByIdUsuarioRol, useFetchListAdeudo, useFetchListCatAccion, useFetchListCatConceptoPago, useFetchListCatEntidad, useFetchListCatFechaAgrupacion, useFetchListCatGraficaGrupo, useFetchListCatPlaza, useFetchListCatRolGrupo, useFetchListCatTipoParametro, useFetchListCatTipoServicio, useFetchListCatTipoSuelo, useFetchListCatTipoTarifa, useFetchListContribuyente, useFetchListContribuyenteDomicilio, useFetchListDashboardEstilo, useFetchListDashboardGrafica, useFetchListDashboardGraficaElemento, useFetchListDashboardGraficaElementoDetalle, useFetchListDashboardGraficaElementoParametro, useFetchListDashboardGraficaGrupo, useFetchListDashboardGraficaGrupoRol, useFetchListDashboardRuta, useFetchListGrafica, useFetchListGraficaAgrupacion, useFetchListGraficaFiltro, useFetchListGraficaParametro, useFetchListGraficaParametroDefecto, useFetchListGraficaParametroTipo, useFetchListGraficaPorGrupo, useFetchListGrupoUsuario, useFetchListModulo, useFetchListPagos, useFetchListPermisoAccionEntidad, useFetchListPermisoModulo, useFetchListPermisoSubmodulo, useFetchListPlazas, useFetchListRol, useFetchListRolDashboardRuta, useFetchListRolGrafica, useFetchListSubmodulo, useFetchListTipoGrafica, useFetchListTipoRol, useFetchListUsuario, useFetchListUsuarioDashboardAcceso, useFetchListUsuarioGrafica, useFetchListUsuarioGraficaExcluida, useFetchListUsuarioRol, useFilterMatchAdeudo, useFilterMatchCatAccion, useFilterMatchCatConceptoPago, useFilterMatchCatEntidad, useFilterMatchCatFechaAgrupacion, useFilterMatchCatGraficaGrupo, useFilterMatchCatPlaza, useFilterMatchCatRolGrupo, useFilterMatchCatTipoParametro, useFilterMatchCatTipoServicio, useFilterMatchCatTipoSuelo, useFilterMatchCatTipoTarifa, useFilterMatchContribuyente, useFilterMatchContribuyenteDomicilio, useFilterMatchDashboardEstilo, useFilterMatchDashboardGrafica, useFilterMatchDashboardGraficaElemento, useFilterMatchDashboardGraficaElementoDetalle, useFilterMatchDashboardGraficaElementoParametro, useFilterMatchDashboardGraficaGrupo, useFilterMatchDashboardGraficaGrupoRol, useFilterMatchDashboardRuta, useFilterMatchGrafica, useFilterMatchGraficaAgrupacion, useFilterMatchGraficaFiltro, useFilterMatchGraficaParametro, useFilterMatchGraficaParametroDefecto, useFilterMatchGraficaParametroTipo, useFilterMatchGraficaPorGrupo, useFilterMatchGrupoUsuario, useFilterMatchModulo, useFilterMatchPagos, useFilterMatchPermisoAccionEntidad, useFilterMatchPermisoModulo, useFilterMatchPermisoSubmodulo, useFilterMatchPlazas, useFilterMatchRol, useFilterMatchRolDashboardRuta, useFilterMatchRolGrafica, useFilterMatchSubmodulo, useFilterMatchTipoGrafica, useFilterMatchTipoRol, useFilterMatchUsuario, useFilterMatchUsuarioDashboardAcceso, useFilterMatchUsuarioGrafica, useFilterMatchUsuarioGraficaExcluida, useFilterMatchUsuarioRol, useUpdateAdeudo, useUpdateCatAccion, useUpdateCatConceptoPago, useUpdateCatEntidad, useUpdateCatFechaAgrupacion, useUpdateCatGraficaGrupo, useUpdateCatPlaza, useUpdateCatRolGrupo, useUpdateCatTipoParametro, useUpdateCatTipoServicio, useUpdateCatTipoSuelo, useUpdateCatTipoTarifa, useUpdateContribuyente, useUpdateContribuyenteDomicilio, useUpdateDashboardEstilo, useUpdateDashboardGrafica, useUpdateDashboardGraficaElemento, useUpdateDashboardGraficaElementoDetalle, useUpdateDashboardGraficaElementoParametro, useUpdateDashboardGraficaGrupo, useUpdateDashboardGraficaGrupoRol, useUpdateDashboardRuta, useUpdateGrafica, useUpdateGraficaAgrupacion, useUpdateGraficaFiltro, useUpdateGraficaParametro, useUpdateGraficaParametroDefecto, useUpdateGraficaParametroTipo, useUpdateGraficaPorGrupo, useUpdateGrupoUsuario, useUpdateModulo, useUpdatePagos, useUpdatePermisoAccionEntidad, useUpdatePermisoModulo, useUpdatePermisoSubmodulo, useUpdatePlazas, useUpdateRol, useUpdateRolDashboardRuta, useUpdateRolGrafica, useUpdateSubmodulo, useUpdateTipoGrafica, useUpdateTipoRol, useUpdateUsuario, useUpdateUsuarioDashboardAcceso, useUpdateUsuarioGrafica, useUpdateUsuarioGraficaExcluida, useUpdateUsuarioRol };
|
|
6580
|
+
export { APIFactory, ApiClientContext, useCreateAdeudo, useCreateAdeudoResumenMensual, useCreateAdeudoResumenTipoSuelo, useCreateAdeudoResumenTipoSueloResumen, useCreateAdeudoTipoSueloResumenMensual, useCreateAdeudosPorPlazaResumen, useCreateCatAccion, useCreateCatColorGrupo, useCreateCatConceptoPago, useCreateCatEntidad, useCreateCatFechaAgrupacion, useCreateCatGraficaGrupo, useCreateCatPlaza, useCreateCatRolGrupo, useCreateCatTema, useCreateCatTipoParametro, useCreateCatTipoServicio, useCreateCatTipoSuelo, useCreateCatTipoTarifa, useCreateContribuyente, useCreateContribuyenteDomicilio, useCreateCuentasConAltosMontosResumen, useCreateDashboardEstilo, useCreateDashboardGrafica, useCreateDashboardGraficaElemento, useCreateDashboardGraficaElementoDetalle, useCreateDashboardGraficaElementoParametro, useCreateDashboardGraficaGrupo, useCreateDashboardGraficaGrupoRol, useCreateDashboardRuta, useCreateGrafica, useCreateGraficaAgrupacion, useCreateGraficaColor, useCreateGraficaColorGrupo, useCreateGraficaColorGrupoAsignacion, useCreateGraficaFiltro, useCreateGraficaParametro, useCreateGraficaParametroDefecto, useCreateGraficaParametroTipo, useCreateGraficaPorGrupo, useCreateGrupoUsuario, useCreateJobAuditLog, useCreateModulo, useCreatePagos, useCreatePagosPorColoniasResumen, useCreatePagosPorColoniasResumenMensual, useCreatePagosPorTipoServicioMensual, useCreatePagosPorTipoServicioResumen, useCreatePagosPorTipoTarifaResumen, useCreatePagosPorTipoTarifaResumenMensual, useCreatePagosResumenMensual, useCreatePermisoAccionEntidad, useCreatePermisoModulo, useCreatePermisoSubmodulo, useCreatePlazas, useCreateRol, useCreateRolDashboardRuta, useCreateRolGrafica, useCreateSubmodulo, useCreateTipoGrafica, useCreateTipoRol, useCreateUsuario, useCreateUsuarioDashboardAcceso, useCreateUsuarioGrafica, useCreateUsuarioGraficaExcluida, useCreateUsuarioRol, useCreateUsuarioRolEliminacionLog, useDeleteAdeudo, useDeleteAdeudoResumenMensual, useDeleteAdeudoResumenTipoSuelo, useDeleteAdeudoResumenTipoSueloResumen, useDeleteAdeudoTipoSueloResumenMensual, useDeleteAdeudosPorPlazaResumen, useDeleteCatAccion, useDeleteCatColorGrupo, useDeleteCatConceptoPago, useDeleteCatEntidad, useDeleteCatFechaAgrupacion, useDeleteCatGraficaGrupo, useDeleteCatPlaza, useDeleteCatRolGrupo, useDeleteCatTema, useDeleteCatTipoParametro, useDeleteCatTipoServicio, useDeleteCatTipoSuelo, useDeleteCatTipoTarifa, useDeleteContribuyente, useDeleteContribuyenteDomicilio, useDeleteCuentasConAltosMontosResumen, useDeleteDashboardEstilo, useDeleteDashboardGrafica, useDeleteDashboardGraficaElemento, useDeleteDashboardGraficaElementoDetalle, useDeleteDashboardGraficaElementoParametro, useDeleteDashboardGraficaGrupo, useDeleteDashboardGraficaGrupoRol, useDeleteDashboardRuta, useDeleteGrafica, useDeleteGraficaAgrupacion, useDeleteGraficaColor, useDeleteGraficaColorGrupo, useDeleteGraficaColorGrupoAsignacion, useDeleteGraficaFiltro, useDeleteGraficaParametro, useDeleteGraficaParametroDefecto, useDeleteGraficaParametroTipo, useDeleteGraficaPorGrupo, useDeleteGrupoUsuario, useDeleteJobAuditLog, useDeleteModulo, useDeletePagos, useDeletePagosPorColoniasResumen, useDeletePagosPorColoniasResumenMensual, useDeletePagosPorTipoServicioMensual, useDeletePagosPorTipoServicioResumen, useDeletePagosPorTipoTarifaResumen, useDeletePagosPorTipoTarifaResumenMensual, useDeletePagosResumenMensual, useDeletePermisoAccionEntidad, useDeletePermisoModulo, useDeletePermisoSubmodulo, useDeletePlazas, useDeleteRol, useDeleteRolDashboardRuta, useDeleteRolGrafica, useDeleteSubmodulo, useDeleteTipoGrafica, useDeleteTipoRol, useDeleteUsuario, useDeleteUsuarioDashboardAcceso, useDeleteUsuarioGrafica, useDeleteUsuarioGraficaExcluida, useDeleteUsuarioRol, useDeleteUsuarioRolEliminacionLog, useFetchByIdAdeudo, useFetchByIdAdeudoResumenMensual, useFetchByIdAdeudoResumenTipoSuelo, useFetchByIdAdeudoResumenTipoSueloResumen, useFetchByIdAdeudoTipoSueloResumenMensual, useFetchByIdAdeudosPorPlazaResumen, useFetchByIdCatAccion, useFetchByIdCatColorGrupo, useFetchByIdCatConceptoPago, useFetchByIdCatEntidad, useFetchByIdCatFechaAgrupacion, useFetchByIdCatGraficaGrupo, useFetchByIdCatPlaza, useFetchByIdCatRolGrupo, useFetchByIdCatTema, useFetchByIdCatTipoParametro, useFetchByIdCatTipoServicio, useFetchByIdCatTipoSuelo, useFetchByIdCatTipoTarifa, useFetchByIdContribuyente, useFetchByIdContribuyenteDomicilio, useFetchByIdCuentasConAltosMontosResumen, useFetchByIdDashboardEstilo, useFetchByIdDashboardGrafica, useFetchByIdDashboardGraficaElemento, useFetchByIdDashboardGraficaElementoDetalle, useFetchByIdDashboardGraficaElementoParametro, useFetchByIdDashboardGraficaGrupo, useFetchByIdDashboardGraficaGrupoRol, useFetchByIdDashboardRuta, useFetchByIdGrafica, useFetchByIdGraficaAgrupacion, useFetchByIdGraficaColor, useFetchByIdGraficaColorGrupo, useFetchByIdGraficaColorGrupoAsignacion, useFetchByIdGraficaFiltro, useFetchByIdGraficaParametro, useFetchByIdGraficaParametroDefecto, useFetchByIdGraficaParametroTipo, useFetchByIdGraficaPorGrupo, useFetchByIdGrupoUsuario, useFetchByIdJobAuditLog, useFetchByIdModulo, useFetchByIdPagos, useFetchByIdPagosPorColoniasResumen, useFetchByIdPagosPorColoniasResumenMensual, useFetchByIdPagosPorTipoServicioMensual, useFetchByIdPagosPorTipoServicioResumen, useFetchByIdPagosPorTipoTarifaResumen, useFetchByIdPagosPorTipoTarifaResumenMensual, useFetchByIdPagosResumenMensual, useFetchByIdPermisoAccionEntidad, useFetchByIdPermisoModulo, useFetchByIdPermisoSubmodulo, useFetchByIdPlazas, useFetchByIdRol, useFetchByIdRolDashboardRuta, useFetchByIdRolGrafica, useFetchByIdSubmodulo, useFetchByIdTipoGrafica, useFetchByIdTipoRol, useFetchByIdUsuario, useFetchByIdUsuarioDashboardAcceso, useFetchByIdUsuarioGrafica, useFetchByIdUsuarioGraficaExcluida, useFetchByIdUsuarioRol, useFetchByIdUsuarioRolEliminacionLog, useFetchListAdeudo, useFetchListAdeudoResumenMensual, useFetchListAdeudoResumenTipoSuelo, useFetchListAdeudoResumenTipoSueloResumen, useFetchListAdeudoTipoSueloResumenMensual, useFetchListAdeudosPorPlazaResumen, useFetchListCatAccion, useFetchListCatColorGrupo, useFetchListCatConceptoPago, useFetchListCatEntidad, useFetchListCatFechaAgrupacion, useFetchListCatGraficaGrupo, useFetchListCatPlaza, useFetchListCatRolGrupo, useFetchListCatTema, useFetchListCatTipoParametro, useFetchListCatTipoServicio, useFetchListCatTipoSuelo, useFetchListCatTipoTarifa, useFetchListContribuyente, useFetchListContribuyenteDomicilio, useFetchListCuentasConAltosMontosResumen, useFetchListDashboardEstilo, useFetchListDashboardGrafica, useFetchListDashboardGraficaElemento, useFetchListDashboardGraficaElementoDetalle, useFetchListDashboardGraficaElementoParametro, useFetchListDashboardGraficaGrupo, useFetchListDashboardGraficaGrupoRol, useFetchListDashboardRuta, useFetchListGrafica, useFetchListGraficaAgrupacion, useFetchListGraficaColor, useFetchListGraficaColorGrupo, useFetchListGraficaColorGrupoAsignacion, useFetchListGraficaFiltro, useFetchListGraficaParametro, useFetchListGraficaParametroDefecto, useFetchListGraficaParametroTipo, useFetchListGraficaPorGrupo, useFetchListGrupoUsuario, useFetchListJobAuditLog, useFetchListModulo, useFetchListPagos, useFetchListPagosPorColoniasResumen, useFetchListPagosPorColoniasResumenMensual, useFetchListPagosPorTipoServicioMensual, useFetchListPagosPorTipoServicioResumen, useFetchListPagosPorTipoTarifaResumen, useFetchListPagosPorTipoTarifaResumenMensual, useFetchListPagosResumenMensual, useFetchListPermisoAccionEntidad, useFetchListPermisoModulo, useFetchListPermisoSubmodulo, useFetchListPlazas, useFetchListRol, useFetchListRolDashboardRuta, useFetchListRolGrafica, useFetchListSubmodulo, useFetchListTipoGrafica, useFetchListTipoRol, useFetchListUsuario, useFetchListUsuarioDashboardAcceso, useFetchListUsuarioGrafica, useFetchListUsuarioGraficaExcluida, useFetchListUsuarioRol, useFetchListUsuarioRolEliminacionLog, useFilterMatchAdeudo, useFilterMatchAdeudoResumenMensual, useFilterMatchAdeudoResumenTipoSuelo, useFilterMatchAdeudoResumenTipoSueloResumen, useFilterMatchAdeudoTipoSueloResumenMensual, useFilterMatchAdeudosPorPlazaResumen, useFilterMatchCatAccion, useFilterMatchCatColorGrupo, useFilterMatchCatConceptoPago, useFilterMatchCatEntidad, useFilterMatchCatFechaAgrupacion, useFilterMatchCatGraficaGrupo, useFilterMatchCatPlaza, useFilterMatchCatRolGrupo, useFilterMatchCatTema, useFilterMatchCatTipoParametro, useFilterMatchCatTipoServicio, useFilterMatchCatTipoSuelo, useFilterMatchCatTipoTarifa, useFilterMatchContribuyente, useFilterMatchContribuyenteDomicilio, useFilterMatchCuentasConAltosMontosResumen, useFilterMatchDashboardEstilo, useFilterMatchDashboardGrafica, useFilterMatchDashboardGraficaElemento, useFilterMatchDashboardGraficaElementoDetalle, useFilterMatchDashboardGraficaElementoParametro, useFilterMatchDashboardGraficaGrupo, useFilterMatchDashboardGraficaGrupoRol, useFilterMatchDashboardRuta, useFilterMatchGrafica, useFilterMatchGraficaAgrupacion, useFilterMatchGraficaColor, useFilterMatchGraficaColorGrupo, useFilterMatchGraficaColorGrupoAsignacion, useFilterMatchGraficaFiltro, useFilterMatchGraficaParametro, useFilterMatchGraficaParametroDefecto, useFilterMatchGraficaParametroTipo, useFilterMatchGraficaPorGrupo, useFilterMatchGrupoUsuario, useFilterMatchJobAuditLog, useFilterMatchModulo, useFilterMatchPagos, useFilterMatchPagosPorColoniasResumen, useFilterMatchPagosPorColoniasResumenMensual, useFilterMatchPagosPorTipoServicioMensual, useFilterMatchPagosPorTipoServicioResumen, useFilterMatchPagosPorTipoTarifaResumen, useFilterMatchPagosPorTipoTarifaResumenMensual, useFilterMatchPagosResumenMensual, useFilterMatchPermisoAccionEntidad, useFilterMatchPermisoModulo, useFilterMatchPermisoSubmodulo, useFilterMatchPlazas, useFilterMatchRol, useFilterMatchRolDashboardRuta, useFilterMatchRolGrafica, useFilterMatchSubmodulo, useFilterMatchTipoGrafica, useFilterMatchTipoRol, useFilterMatchUsuario, useFilterMatchUsuarioDashboardAcceso, useFilterMatchUsuarioGrafica, useFilterMatchUsuarioGraficaExcluida, useFilterMatchUsuarioRol, useFilterMatchUsuarioRolEliminacionLog, useUpdateAdeudo, useUpdateAdeudoResumenMensual, useUpdateAdeudoResumenTipoSuelo, useUpdateAdeudoResumenTipoSueloResumen, useUpdateAdeudoTipoSueloResumenMensual, useUpdateAdeudosPorPlazaResumen, useUpdateCatAccion, useUpdateCatColorGrupo, useUpdateCatConceptoPago, useUpdateCatEntidad, useUpdateCatFechaAgrupacion, useUpdateCatGraficaGrupo, useUpdateCatPlaza, useUpdateCatRolGrupo, useUpdateCatTema, useUpdateCatTipoParametro, useUpdateCatTipoServicio, useUpdateCatTipoSuelo, useUpdateCatTipoTarifa, useUpdateContribuyente, useUpdateContribuyenteDomicilio, useUpdateCuentasConAltosMontosResumen, useUpdateDashboardEstilo, useUpdateDashboardGrafica, useUpdateDashboardGraficaElemento, useUpdateDashboardGraficaElementoDetalle, useUpdateDashboardGraficaElementoParametro, useUpdateDashboardGraficaGrupo, useUpdateDashboardGraficaGrupoRol, useUpdateDashboardRuta, useUpdateGrafica, useUpdateGraficaAgrupacion, useUpdateGraficaColor, useUpdateGraficaColorGrupo, useUpdateGraficaColorGrupoAsignacion, useUpdateGraficaFiltro, useUpdateGraficaParametro, useUpdateGraficaParametroDefecto, useUpdateGraficaParametroTipo, useUpdateGraficaPorGrupo, useUpdateGrupoUsuario, useUpdateJobAuditLog, useUpdateModulo, useUpdatePagos, useUpdatePagosPorColoniasResumen, useUpdatePagosPorColoniasResumenMensual, useUpdatePagosPorTipoServicioMensual, useUpdatePagosPorTipoServicioResumen, useUpdatePagosPorTipoTarifaResumen, useUpdatePagosPorTipoTarifaResumenMensual, useUpdatePagosResumenMensual, useUpdatePermisoAccionEntidad, useUpdatePermisoModulo, useUpdatePermisoSubmodulo, useUpdatePlazas, useUpdateRol, useUpdateRolDashboardRuta, useUpdateRolGrafica, useUpdateSubmodulo, useUpdateTipoGrafica, useUpdateTipoRol, useUpdateUsuario, useUpdateUsuarioDashboardAcceso, useUpdateUsuarioGrafica, useUpdateUsuarioGraficaExcluida, useUpdateUsuarioRol, useUpdateUsuarioRolEliminacionLog };
|