@erpp/react-api-cronos-frontend 1.0.1
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 +4532 -0
- package/dist/index.d.ts +4532 -0
- package/dist/index.js +4796 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +4480 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +35 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,4532 @@
|
|
|
1
|
+
import * as axios from 'axios';
|
|
2
|
+
import { AxiosInstance } from 'axios';
|
|
3
|
+
|
|
4
|
+
interface APISubpath {
|
|
5
|
+
config?: object;
|
|
6
|
+
}
|
|
7
|
+
interface APISubpathGetParams extends APISubpath {
|
|
8
|
+
id?: string | number;
|
|
9
|
+
params?: object;
|
|
10
|
+
where?: object;
|
|
11
|
+
}
|
|
12
|
+
interface APISubpathPostParams extends APISubpath {
|
|
13
|
+
data: any;
|
|
14
|
+
config?: object;
|
|
15
|
+
}
|
|
16
|
+
interface APISubpathPutParams extends APISubpath {
|
|
17
|
+
id?: string | number;
|
|
18
|
+
data?: any;
|
|
19
|
+
}
|
|
20
|
+
interface APISubpathDeleteParams extends APISubpath {
|
|
21
|
+
id?: string | number;
|
|
22
|
+
where?: object;
|
|
23
|
+
}
|
|
24
|
+
declare class API {
|
|
25
|
+
api: AxiosInstance;
|
|
26
|
+
private _baseURL;
|
|
27
|
+
setBaseURL(url: string): void;
|
|
28
|
+
getTokenCallback: (() => string | null) | undefined;
|
|
29
|
+
setGetTokenCallback(callback: () => string | null): void;
|
|
30
|
+
constructor({ urlBase, getTokenCallback }: {
|
|
31
|
+
urlBase: string;
|
|
32
|
+
getTokenCallback?: () => string | null;
|
|
33
|
+
});
|
|
34
|
+
private createDefaultMethods;
|
|
35
|
+
subpath: <T extends Record<string, any>>(path: string, factory?: (subclient: ReturnType<API["createDefaultMethods"]>, axiosInstance: AxiosInstance) => T) => ReturnType<API["createDefaultMethods"]> & T;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
interface BuildAPIParams {
|
|
39
|
+
client: API;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
declare const setupAdeudoApi: ({ client }: BuildAPIParams) => {
|
|
43
|
+
findByFilterMatch: (data?: {
|
|
44
|
+
filter: string;
|
|
45
|
+
pagination: {};
|
|
46
|
+
orderBy: string;
|
|
47
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
48
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
49
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
50
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
51
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
declare const setupCatAccionApi: ({ 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 setupCatConceptoPagoApi: ({ 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 setupCatEntidadApi: ({ 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 setupCatFechaAgrupacionApi: ({ 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 setupCatGraficaGrupoApi: ({ 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
|
+
|
|
114
|
+
declare const setupCatPlazaApi: ({ client }: BuildAPIParams) => {
|
|
115
|
+
findByFilterMatch: (data?: {
|
|
116
|
+
filter: string;
|
|
117
|
+
pagination: {};
|
|
118
|
+
orderBy: string;
|
|
119
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
120
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
121
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
122
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
123
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
declare const setupCatRolGrupoApi: ({ 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
|
+
|
|
138
|
+
declare const setupCatTipoParametroApi: ({ client }: BuildAPIParams) => {
|
|
139
|
+
findByFilterMatch: (data?: {
|
|
140
|
+
filter: string;
|
|
141
|
+
pagination: {};
|
|
142
|
+
orderBy: string;
|
|
143
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
144
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
145
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
146
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
147
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
declare const setupCatTipoServicioApi: ({ client }: BuildAPIParams) => {
|
|
151
|
+
findByFilterMatch: (data?: {
|
|
152
|
+
filter: string;
|
|
153
|
+
pagination: {};
|
|
154
|
+
orderBy: string;
|
|
155
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
156
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
157
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
158
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
159
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
160
|
+
};
|
|
161
|
+
|
|
162
|
+
declare const setupCatTipoSueloApi: ({ client }: BuildAPIParams) => {
|
|
163
|
+
findByFilterMatch: (data?: {
|
|
164
|
+
filter: string;
|
|
165
|
+
pagination: {};
|
|
166
|
+
orderBy: string;
|
|
167
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
168
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
169
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
170
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
171
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
declare const setupCatTipoTarifaApi: ({ client }: BuildAPIParams) => {
|
|
175
|
+
findByFilterMatch: (data?: {
|
|
176
|
+
filter: string;
|
|
177
|
+
pagination: {};
|
|
178
|
+
orderBy: string;
|
|
179
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
180
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
181
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
182
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
183
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
184
|
+
};
|
|
185
|
+
|
|
186
|
+
declare const setupContribuyenteApi: ({ client }: BuildAPIParams) => {
|
|
187
|
+
findByFilterMatch: (data?: {
|
|
188
|
+
filter: string;
|
|
189
|
+
pagination: {};
|
|
190
|
+
orderBy: string;
|
|
191
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
192
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
193
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
194
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
195
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
196
|
+
};
|
|
197
|
+
|
|
198
|
+
declare const setupContribuyenteDomicilioApi: ({ client }: BuildAPIParams) => {
|
|
199
|
+
findByFilterMatch: (data?: {
|
|
200
|
+
filter: string;
|
|
201
|
+
pagination: {};
|
|
202
|
+
orderBy: string;
|
|
203
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
204
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
205
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
206
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
207
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
208
|
+
};
|
|
209
|
+
|
|
210
|
+
declare const setupDashboardEstiloApi: ({ 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
|
+
|
|
222
|
+
declare const setupDashboardGraficaApi: ({ client }: BuildAPIParams) => {
|
|
223
|
+
findByFilterMatch: (data?: {
|
|
224
|
+
filter: string;
|
|
225
|
+
pagination: {};
|
|
226
|
+
orderBy: string;
|
|
227
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
228
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
229
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
230
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
231
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
232
|
+
};
|
|
233
|
+
|
|
234
|
+
declare const setupDashboardGraficaElementoApi: ({ client }: BuildAPIParams) => {
|
|
235
|
+
findByFilterMatch: (data?: {
|
|
236
|
+
filter: string;
|
|
237
|
+
pagination: {};
|
|
238
|
+
orderBy: string;
|
|
239
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
240
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
241
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
242
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
243
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
244
|
+
};
|
|
245
|
+
|
|
246
|
+
declare const setupDashboardGraficaElementoDetalleApi: ({ client }: BuildAPIParams) => {
|
|
247
|
+
findByFilterMatch: (data?: {
|
|
248
|
+
filter: string;
|
|
249
|
+
pagination: {};
|
|
250
|
+
orderBy: string;
|
|
251
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
252
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
253
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
254
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
255
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
256
|
+
};
|
|
257
|
+
|
|
258
|
+
declare const setupDashboardGraficaElementoParametroApi: ({ client }: BuildAPIParams) => {
|
|
259
|
+
findByFilterMatch: (data?: {
|
|
260
|
+
filter: string;
|
|
261
|
+
pagination: {};
|
|
262
|
+
orderBy: string;
|
|
263
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
264
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
265
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
266
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
267
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
268
|
+
};
|
|
269
|
+
|
|
270
|
+
declare const setupDashboardGraficaGrupoApi: ({ client }: BuildAPIParams) => {
|
|
271
|
+
findByFilterMatch: (data?: {
|
|
272
|
+
filter: string;
|
|
273
|
+
pagination: {};
|
|
274
|
+
orderBy: string;
|
|
275
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
276
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
277
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
278
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
279
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
280
|
+
};
|
|
281
|
+
|
|
282
|
+
declare const setupDashboardGraficaGrupoRolApi: ({ client }: BuildAPIParams) => {
|
|
283
|
+
findByFilterMatch: (data?: {
|
|
284
|
+
filter: string;
|
|
285
|
+
pagination: {};
|
|
286
|
+
orderBy: string;
|
|
287
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
288
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
289
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
290
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
291
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
292
|
+
};
|
|
293
|
+
|
|
294
|
+
declare const setupDashboardRutaApi: ({ 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
|
+
usuario: {
|
|
306
|
+
findByFilterMatch: (data?: {
|
|
307
|
+
filter: string;
|
|
308
|
+
pagination: {};
|
|
309
|
+
orderBy: string;
|
|
310
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
311
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
312
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
313
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
314
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
315
|
+
};
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
declare const setupGraficaApi: ({ client }: BuildAPIParams) => {
|
|
319
|
+
findByFilterMatch: (data?: {
|
|
320
|
+
filter: string;
|
|
321
|
+
pagination: {};
|
|
322
|
+
orderBy: string;
|
|
323
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
324
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
325
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
326
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
327
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
328
|
+
};
|
|
329
|
+
|
|
330
|
+
declare const setupGraficaAgrupacionApi: ({ client }: BuildAPIParams) => {
|
|
331
|
+
findByFilterMatch: (data?: {
|
|
332
|
+
filter: string;
|
|
333
|
+
pagination: {};
|
|
334
|
+
orderBy: string;
|
|
335
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
336
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
337
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
338
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
339
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
340
|
+
};
|
|
341
|
+
|
|
342
|
+
declare const setupGraficaFiltroApi: ({ client }: BuildAPIParams) => {
|
|
343
|
+
findByFilterMatch: (data?: {
|
|
344
|
+
filter: string;
|
|
345
|
+
pagination: {};
|
|
346
|
+
orderBy: string;
|
|
347
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
348
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
349
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
350
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
351
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
352
|
+
};
|
|
353
|
+
|
|
354
|
+
declare const setupGraficaParametroApi: ({ client }: BuildAPIParams) => {
|
|
355
|
+
findByFilterMatch: (data?: {
|
|
356
|
+
filter: string;
|
|
357
|
+
pagination: {};
|
|
358
|
+
orderBy: string;
|
|
359
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
360
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
361
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
362
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
363
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
364
|
+
};
|
|
365
|
+
|
|
366
|
+
declare const setupGraficaParametroDefectoApi: ({ client }: BuildAPIParams) => {
|
|
367
|
+
findByFilterMatch: (data?: {
|
|
368
|
+
filter: string;
|
|
369
|
+
pagination: {};
|
|
370
|
+
orderBy: string;
|
|
371
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
372
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
373
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
374
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
375
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
376
|
+
};
|
|
377
|
+
|
|
378
|
+
declare const setupGraficaParametroTipoApi: ({ client }: BuildAPIParams) => {
|
|
379
|
+
findByFilterMatch: (data?: {
|
|
380
|
+
filter: string;
|
|
381
|
+
pagination: {};
|
|
382
|
+
orderBy: string;
|
|
383
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
384
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
385
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
386
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
387
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
388
|
+
};
|
|
389
|
+
|
|
390
|
+
declare const setupGraficaPorGrupoApi: ({ client }: BuildAPIParams) => {
|
|
391
|
+
findByFilterMatch: (data?: {
|
|
392
|
+
filter: string;
|
|
393
|
+
pagination: {};
|
|
394
|
+
orderBy: string;
|
|
395
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
396
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
397
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
398
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
399
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
400
|
+
};
|
|
401
|
+
|
|
402
|
+
declare const setupGrupoUsuarioApi: ({ client }: BuildAPIParams) => {
|
|
403
|
+
findByFilterMatch: (data?: {
|
|
404
|
+
filter: string;
|
|
405
|
+
pagination: {};
|
|
406
|
+
orderBy: string;
|
|
407
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
408
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
409
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
410
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
411
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
412
|
+
};
|
|
413
|
+
|
|
414
|
+
declare const setupModuloApi: ({ client }: BuildAPIParams) => {
|
|
415
|
+
findByFilterMatch: (data?: {
|
|
416
|
+
filter: string;
|
|
417
|
+
pagination: {};
|
|
418
|
+
orderBy: string;
|
|
419
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
420
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
421
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
422
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
423
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
424
|
+
};
|
|
425
|
+
|
|
426
|
+
declare const setupPagosApi: ({ client }: BuildAPIParams) => {
|
|
427
|
+
findByFilterMatch: (data?: {
|
|
428
|
+
filter: string;
|
|
429
|
+
pagination: {};
|
|
430
|
+
orderBy: string;
|
|
431
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
432
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
433
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
434
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
435
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
436
|
+
};
|
|
437
|
+
|
|
438
|
+
declare const setupPermisoAccionEntidadApi: ({ 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 setupPermisoModuloApi: ({ 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 setupPermisoSubmoduloApi: ({ 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
|
+
|
|
474
|
+
declare const setupPlazasApi: ({ client }: BuildAPIParams) => {
|
|
475
|
+
findByFilterMatch: (data?: {
|
|
476
|
+
filter: string;
|
|
477
|
+
pagination: {};
|
|
478
|
+
orderBy: string;
|
|
479
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
480
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
481
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
482
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
483
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
484
|
+
};
|
|
485
|
+
|
|
486
|
+
declare const setupRolApi: ({ client }: BuildAPIParams) => {
|
|
487
|
+
findByFilterMatch: (data?: {
|
|
488
|
+
filter: string;
|
|
489
|
+
pagination: {};
|
|
490
|
+
orderBy: string;
|
|
491
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
492
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
493
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
494
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
495
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
496
|
+
};
|
|
497
|
+
|
|
498
|
+
declare const setupRolDashboardRutaApi: ({ client }: BuildAPIParams) => {
|
|
499
|
+
findByFilterMatch: (data?: {
|
|
500
|
+
filter: string;
|
|
501
|
+
pagination: {};
|
|
502
|
+
orderBy: string;
|
|
503
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
504
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
505
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
506
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
507
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
508
|
+
};
|
|
509
|
+
|
|
510
|
+
declare const setupRolGraficaApi: ({ client }: BuildAPIParams) => {
|
|
511
|
+
findByFilterMatch: (data?: {
|
|
512
|
+
filter: string;
|
|
513
|
+
pagination: {};
|
|
514
|
+
orderBy: string;
|
|
515
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
516
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
517
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
518
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
519
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
520
|
+
};
|
|
521
|
+
|
|
522
|
+
declare const setupSubmoduloApi: ({ client }: BuildAPIParams) => {
|
|
523
|
+
findByFilterMatch: (data?: {
|
|
524
|
+
filter: string;
|
|
525
|
+
pagination: {};
|
|
526
|
+
orderBy: string;
|
|
527
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
528
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
529
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
530
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
531
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
532
|
+
};
|
|
533
|
+
|
|
534
|
+
declare const setupTipoGraficaApi: ({ client }: BuildAPIParams) => {
|
|
535
|
+
findByFilterMatch: (data?: {
|
|
536
|
+
filter: string;
|
|
537
|
+
pagination: {};
|
|
538
|
+
orderBy: string;
|
|
539
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
540
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
541
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
542
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
543
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
544
|
+
};
|
|
545
|
+
|
|
546
|
+
declare const setupTipoRolApi: ({ 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
|
+
|
|
558
|
+
declare const setupUsuarioApi: ({ client }: BuildAPIParams) => {
|
|
559
|
+
findByFilterMatch: (data?: {
|
|
560
|
+
filter: string;
|
|
561
|
+
pagination: {};
|
|
562
|
+
orderBy: string;
|
|
563
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
564
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
565
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
566
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
567
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
568
|
+
};
|
|
569
|
+
|
|
570
|
+
declare const setupUsuarioDashboardAccesoApi: ({ client }: BuildAPIParams) => {
|
|
571
|
+
findByFilterMatch: (data?: {
|
|
572
|
+
filter: string;
|
|
573
|
+
pagination: {};
|
|
574
|
+
orderBy: string;
|
|
575
|
+
}) => Promise<axios.AxiosResponse<any, any>>;
|
|
576
|
+
get: ({ id, params, config, where }: APISubpathGetParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
577
|
+
post: ({ data, config }: APISubpathPostParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
578
|
+
put: ({ id, data, config }: APISubpathPutParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
579
|
+
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
580
|
+
};
|
|
581
|
+
|
|
582
|
+
declare const setupUsuarioGraficaApi: ({ 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 setupUsuarioGraficaExcluidaApi: ({ 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 setupUsuarioRolApi: ({ 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 class APIFactory {
|
|
619
|
+
adeudo: ReturnType<typeof setupAdeudoApi>;
|
|
620
|
+
cat_accion: ReturnType<typeof setupCatAccionApi>;
|
|
621
|
+
cat_concepto_pago: ReturnType<typeof setupCatConceptoPagoApi>;
|
|
622
|
+
cat_entidad: ReturnType<typeof setupCatEntidadApi>;
|
|
623
|
+
cat_fecha_agrupacion: ReturnType<typeof setupCatFechaAgrupacionApi>;
|
|
624
|
+
cat_grafica_grupo: ReturnType<typeof setupCatGraficaGrupoApi>;
|
|
625
|
+
cat_plaza: ReturnType<typeof setupCatPlazaApi>;
|
|
626
|
+
cat_rol_grupo: ReturnType<typeof setupCatRolGrupoApi>;
|
|
627
|
+
cat_tipo_parametro: ReturnType<typeof setupCatTipoParametroApi>;
|
|
628
|
+
cat_tipo_servicio: ReturnType<typeof setupCatTipoServicioApi>;
|
|
629
|
+
cat_tipo_suelo: ReturnType<typeof setupCatTipoSueloApi>;
|
|
630
|
+
cat_tipo_tarifa: ReturnType<typeof setupCatTipoTarifaApi>;
|
|
631
|
+
contribuyente: ReturnType<typeof setupContribuyenteApi>;
|
|
632
|
+
contribuyente_domicilio: ReturnType<typeof setupContribuyenteDomicilioApi>;
|
|
633
|
+
dashboard_estilo: ReturnType<typeof setupDashboardEstiloApi>;
|
|
634
|
+
dashboard_grafica: ReturnType<typeof setupDashboardGraficaApi>;
|
|
635
|
+
dashboard_grafica_elemento: ReturnType<typeof setupDashboardGraficaElementoApi>;
|
|
636
|
+
dashboard_grafica_elemento_detalle: ReturnType<typeof setupDashboardGraficaElementoDetalleApi>;
|
|
637
|
+
dashboard_grafica_elemento_parametro: ReturnType<typeof setupDashboardGraficaElementoParametroApi>;
|
|
638
|
+
dashboard_grafica_grupo: ReturnType<typeof setupDashboardGraficaGrupoApi>;
|
|
639
|
+
dashboard_grafica_grupo_rol: ReturnType<typeof setupDashboardGraficaGrupoRolApi>;
|
|
640
|
+
dashboard_ruta: ReturnType<typeof setupDashboardRutaApi>;
|
|
641
|
+
grafica: ReturnType<typeof setupGraficaApi>;
|
|
642
|
+
grafica_agrupacion: ReturnType<typeof setupGraficaAgrupacionApi>;
|
|
643
|
+
grafica_filtro: ReturnType<typeof setupGraficaFiltroApi>;
|
|
644
|
+
grafica_parametro: ReturnType<typeof setupGraficaParametroApi>;
|
|
645
|
+
grafica_parametro_defecto: ReturnType<typeof setupGraficaParametroDefectoApi>;
|
|
646
|
+
grafica_parametro_tipo: ReturnType<typeof setupGraficaParametroTipoApi>;
|
|
647
|
+
grafica_por_grupo: ReturnType<typeof setupGraficaPorGrupoApi>;
|
|
648
|
+
grupo_usuario: ReturnType<typeof setupGrupoUsuarioApi>;
|
|
649
|
+
modulo: ReturnType<typeof setupModuloApi>;
|
|
650
|
+
pagos: ReturnType<typeof setupPagosApi>;
|
|
651
|
+
permiso_accion_entidad: ReturnType<typeof setupPermisoAccionEntidadApi>;
|
|
652
|
+
permiso_modulo: ReturnType<typeof setupPermisoModuloApi>;
|
|
653
|
+
permiso_submodulo: ReturnType<typeof setupPermisoSubmoduloApi>;
|
|
654
|
+
plazas: ReturnType<typeof setupPlazasApi>;
|
|
655
|
+
rol: ReturnType<typeof setupRolApi>;
|
|
656
|
+
rol_dashboard_ruta: ReturnType<typeof setupRolDashboardRutaApi>;
|
|
657
|
+
rol_grafica: ReturnType<typeof setupRolGraficaApi>;
|
|
658
|
+
submodulo: ReturnType<typeof setupSubmoduloApi>;
|
|
659
|
+
tipo_grafica: ReturnType<typeof setupTipoGraficaApi>;
|
|
660
|
+
tipo_rol: ReturnType<typeof setupTipoRolApi>;
|
|
661
|
+
usuario: ReturnType<typeof setupUsuarioApi>;
|
|
662
|
+
usuario_dashboard_acceso: ReturnType<typeof setupUsuarioDashboardAccesoApi>;
|
|
663
|
+
usuario_grafica: ReturnType<typeof setupUsuarioGraficaApi>;
|
|
664
|
+
usuario_grafica_excluida: ReturnType<typeof setupUsuarioGraficaExcluidaApi>;
|
|
665
|
+
usuario_rol: ReturnType<typeof setupUsuarioRolApi>;
|
|
666
|
+
urlBase: string;
|
|
667
|
+
getTokenCallback?: () => string;
|
|
668
|
+
axiosInstance: AxiosInstance;
|
|
669
|
+
constructor({ urlBase, getTokenCallback }: {
|
|
670
|
+
urlBase: string;
|
|
671
|
+
getTokenCallback?: () => string;
|
|
672
|
+
});
|
|
673
|
+
getAvailableAPIs(): string[];
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
interface UsuarioRolDTO {
|
|
677
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
678
|
+
usuario_id: number;
|
|
679
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey */
|
|
680
|
+
rol_id: number;
|
|
681
|
+
/** @maxLength (8) @nullable */
|
|
682
|
+
fecha_asignacion?: string;
|
|
683
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) */
|
|
684
|
+
asignado_por_usuario_id: number;
|
|
685
|
+
}
|
|
686
|
+
interface UsuarioRolCreateDTO {
|
|
687
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
688
|
+
usuario_id: number;
|
|
689
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey */
|
|
690
|
+
rol_id: number;
|
|
691
|
+
/** @maxLength (8) @nullable */
|
|
692
|
+
fecha_asignacion?: string;
|
|
693
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) */
|
|
694
|
+
asignado_por_usuario_id: number;
|
|
695
|
+
}
|
|
696
|
+
interface UsuarioRolUpdateDTO {
|
|
697
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey @optional */
|
|
698
|
+
usuario_id?: number;
|
|
699
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey @optional */
|
|
700
|
+
rol_id?: number;
|
|
701
|
+
/** @maxLength (8) @nullable @optional */
|
|
702
|
+
fecha_asignacion?: string;
|
|
703
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @optional */
|
|
704
|
+
asignado_por_usuario_id?: number;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
interface BaseQuery {
|
|
708
|
+
limit?: number;
|
|
709
|
+
page?: number;
|
|
710
|
+
orderBy?: string;
|
|
711
|
+
where?: Record<string, any>;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
/**
|
|
715
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de UsuarioRol.
|
|
716
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
717
|
+
*/
|
|
718
|
+
interface UsuarioRolQuery extends BaseQuery {
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
interface UsuarioGraficaExcluidaDTO {
|
|
722
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
723
|
+
usuario_id: number;
|
|
724
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
725
|
+
grafica_id: number;
|
|
726
|
+
}
|
|
727
|
+
interface UsuarioGraficaExcluidaCreateDTO {
|
|
728
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
729
|
+
usuario_id: number;
|
|
730
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
731
|
+
grafica_id: number;
|
|
732
|
+
}
|
|
733
|
+
interface UsuarioGraficaExcluidaUpdateDTO {
|
|
734
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey @optional */
|
|
735
|
+
usuario_id?: number;
|
|
736
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey @optional */
|
|
737
|
+
grafica_id?: number;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
/**
|
|
741
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de UsuarioGraficaExcluida.
|
|
742
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
743
|
+
*/
|
|
744
|
+
interface UsuarioGraficaExcluidaQuery extends BaseQuery {
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
interface UsuarioGraficaDTO {
|
|
748
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
749
|
+
usuario_id: number;
|
|
750
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
751
|
+
grafica_id: number;
|
|
752
|
+
}
|
|
753
|
+
interface UsuarioGraficaCreateDTO {
|
|
754
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey */
|
|
755
|
+
usuario_id: number;
|
|
756
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
757
|
+
grafica_id: number;
|
|
758
|
+
}
|
|
759
|
+
interface UsuarioGraficaUpdateDTO {
|
|
760
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @primaryKey @optional */
|
|
761
|
+
usuario_id?: number;
|
|
762
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey @optional */
|
|
763
|
+
grafica_id?: number;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
/**
|
|
767
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de UsuarioGrafica.
|
|
768
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
769
|
+
*/
|
|
770
|
+
interface UsuarioGraficaQuery extends BaseQuery {
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
interface UsuarioDashboardAccesoDTO {
|
|
774
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
775
|
+
usuario_dashboard_acceso_id: number;
|
|
776
|
+
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) */
|
|
777
|
+
dashboard_ruta_id: number;
|
|
778
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) */
|
|
779
|
+
usuario_id: number;
|
|
780
|
+
/** @maxLength (1) */
|
|
781
|
+
tiene_acceso: boolean;
|
|
782
|
+
}
|
|
783
|
+
interface UsuarioDashboardAccesoCreateDTO {
|
|
784
|
+
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) */
|
|
785
|
+
dashboard_ruta_id: number;
|
|
786
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) */
|
|
787
|
+
usuario_id: number;
|
|
788
|
+
/** @maxLength (1) */
|
|
789
|
+
tiene_acceso: boolean;
|
|
790
|
+
}
|
|
791
|
+
interface UsuarioDashboardAccesoUpdateDTO {
|
|
792
|
+
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) @optional */
|
|
793
|
+
dashboard_ruta_id?: number;
|
|
794
|
+
/** @foreignKey (usuario.usuario_id) @maxLength (4) @optional */
|
|
795
|
+
usuario_id?: number;
|
|
796
|
+
/** @maxLength (1) @optional */
|
|
797
|
+
tiene_acceso?: boolean;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
/**
|
|
801
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de UsuarioDashboardAcceso.
|
|
802
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
803
|
+
*/
|
|
804
|
+
interface UsuarioDashboardAccesoQuery extends BaseQuery {
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
interface UsuarioDTO {
|
|
808
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
809
|
+
usuario_id: number;
|
|
810
|
+
/** @maxLength (50) @nullable */
|
|
811
|
+
usuario_nombre_usuario?: string;
|
|
812
|
+
/** @maxLength (80) @nullable */
|
|
813
|
+
usuario_nombre?: string;
|
|
814
|
+
/** @maxLength (80) @nullable */
|
|
815
|
+
usuario_apellidos?: string;
|
|
816
|
+
/** @maxLength (100) @nullable */
|
|
817
|
+
usuario_cargo?: string;
|
|
818
|
+
/** @maxLength (500) @nullable */
|
|
819
|
+
usuario_direccion?: string;
|
|
820
|
+
/** @maxLength (100) @nullable */
|
|
821
|
+
usuario_email?: string;
|
|
822
|
+
/** @maxLength (2000) @nullable */
|
|
823
|
+
usuario_password?: string;
|
|
824
|
+
/** @maxLength (100) @nullable */
|
|
825
|
+
usuario_url_img_perfil?: string;
|
|
826
|
+
/** @foreignKey (grupo_usuario.grupo_usuario_id) @maxLength (4) @nullable */
|
|
827
|
+
grupo_usuario_id?: number;
|
|
828
|
+
/** @maxLength (8) @nullable */
|
|
829
|
+
usuario_fecha_creacion?: string;
|
|
830
|
+
/** @maxLength (8) @nullable */
|
|
831
|
+
usuario_fecha_modificacion?: string;
|
|
832
|
+
/** @maxLength (-1) @nullable */
|
|
833
|
+
usuario_status?: string;
|
|
834
|
+
}
|
|
835
|
+
interface UsuarioCreateDTO {
|
|
836
|
+
/** @maxLength (50) @nullable */
|
|
837
|
+
usuario_nombre_usuario?: string;
|
|
838
|
+
/** @maxLength (80) @nullable */
|
|
839
|
+
usuario_nombre?: string;
|
|
840
|
+
/** @maxLength (80) @nullable */
|
|
841
|
+
usuario_apellidos?: string;
|
|
842
|
+
/** @maxLength (100) @nullable */
|
|
843
|
+
usuario_cargo?: string;
|
|
844
|
+
/** @maxLength (500) @nullable */
|
|
845
|
+
usuario_direccion?: string;
|
|
846
|
+
/** @maxLength (100) @nullable */
|
|
847
|
+
usuario_email?: string;
|
|
848
|
+
/** @maxLength (2000) @nullable */
|
|
849
|
+
usuario_password?: string;
|
|
850
|
+
/** @maxLength (100) @nullable */
|
|
851
|
+
usuario_url_img_perfil?: string;
|
|
852
|
+
/** @foreignKey (grupo_usuario.grupo_usuario_id) @maxLength (4) @nullable */
|
|
853
|
+
grupo_usuario_id?: number;
|
|
854
|
+
/** @maxLength (8) @nullable */
|
|
855
|
+
usuario_fecha_creacion?: string;
|
|
856
|
+
/** @maxLength (8) @nullable */
|
|
857
|
+
usuario_fecha_modificacion?: string;
|
|
858
|
+
/** @maxLength (-1) @nullable */
|
|
859
|
+
usuario_status?: string;
|
|
860
|
+
}
|
|
861
|
+
interface UsuarioUpdateDTO {
|
|
862
|
+
/** @maxLength (50) @nullable @optional */
|
|
863
|
+
usuario_nombre_usuario?: string;
|
|
864
|
+
/** @maxLength (80) @nullable @optional */
|
|
865
|
+
usuario_nombre?: string;
|
|
866
|
+
/** @maxLength (80) @nullable @optional */
|
|
867
|
+
usuario_apellidos?: string;
|
|
868
|
+
/** @maxLength (100) @nullable @optional */
|
|
869
|
+
usuario_cargo?: string;
|
|
870
|
+
/** @maxLength (500) @nullable @optional */
|
|
871
|
+
usuario_direccion?: string;
|
|
872
|
+
/** @maxLength (100) @nullable @optional */
|
|
873
|
+
usuario_email?: string;
|
|
874
|
+
/** @maxLength (2000) @nullable @optional */
|
|
875
|
+
usuario_password?: string;
|
|
876
|
+
/** @maxLength (100) @nullable @optional */
|
|
877
|
+
usuario_url_img_perfil?: string;
|
|
878
|
+
/** @foreignKey (grupo_usuario.grupo_usuario_id) @maxLength (4) @nullable @optional */
|
|
879
|
+
grupo_usuario_id?: number;
|
|
880
|
+
/** @maxLength (8) @nullable @optional */
|
|
881
|
+
usuario_fecha_creacion?: string;
|
|
882
|
+
/** @maxLength (8) @nullable @optional */
|
|
883
|
+
usuario_fecha_modificacion?: string;
|
|
884
|
+
/** @maxLength (-1) @nullable @optional */
|
|
885
|
+
usuario_status?: string;
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
/**
|
|
889
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Usuario.
|
|
890
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
891
|
+
*/
|
|
892
|
+
interface UsuarioQuery extends BaseQuery {
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
interface TipoRolDTO {
|
|
896
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
897
|
+
tipo_rol_id: number;
|
|
898
|
+
/** @maxLength (200) */
|
|
899
|
+
nombre: string;
|
|
900
|
+
}
|
|
901
|
+
interface TipoRolCreateDTO {
|
|
902
|
+
/** @maxLength (200) */
|
|
903
|
+
nombre: string;
|
|
904
|
+
}
|
|
905
|
+
interface TipoRolUpdateDTO {
|
|
906
|
+
/** @maxLength (200) @optional */
|
|
907
|
+
nombre?: string;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
/**
|
|
911
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de TipoRol.
|
|
912
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
913
|
+
*/
|
|
914
|
+
interface TipoRolQuery extends BaseQuery {
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
interface TipoGraficaDTO {
|
|
918
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
919
|
+
tipo_grafica_id: number;
|
|
920
|
+
/** @maxLength (200) */
|
|
921
|
+
nombre: string;
|
|
922
|
+
/** @maxLength (510) @nullable */
|
|
923
|
+
descripcion?: string;
|
|
924
|
+
/** @maxLength (200) */
|
|
925
|
+
nombre_componente: string;
|
|
926
|
+
/** @maxLength (510) */
|
|
927
|
+
ruta_componente: string;
|
|
928
|
+
}
|
|
929
|
+
interface TipoGraficaCreateDTO {
|
|
930
|
+
/** @maxLength (200) */
|
|
931
|
+
nombre: string;
|
|
932
|
+
/** @maxLength (510) @nullable */
|
|
933
|
+
descripcion?: string;
|
|
934
|
+
/** @maxLength (200) */
|
|
935
|
+
nombre_componente: string;
|
|
936
|
+
/** @maxLength (510) */
|
|
937
|
+
ruta_componente: string;
|
|
938
|
+
}
|
|
939
|
+
interface TipoGraficaUpdateDTO {
|
|
940
|
+
/** @maxLength (200) @optional */
|
|
941
|
+
nombre?: string;
|
|
942
|
+
/** @maxLength (510) @nullable @optional */
|
|
943
|
+
descripcion?: string;
|
|
944
|
+
/** @maxLength (200) @optional */
|
|
945
|
+
nombre_componente?: string;
|
|
946
|
+
/** @maxLength (510) @optional */
|
|
947
|
+
ruta_componente?: string;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
/**
|
|
951
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de TipoGrafica.
|
|
952
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
953
|
+
*/
|
|
954
|
+
interface TipoGraficaQuery extends BaseQuery {
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
interface SubmoduloDTO {
|
|
958
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
959
|
+
submodulo_id: number;
|
|
960
|
+
/** @maxLength (100) @nullable */
|
|
961
|
+
submodulo_nombre?: string;
|
|
962
|
+
/** @maxLength (100) @nullable */
|
|
963
|
+
submodulo_ruta_url?: string;
|
|
964
|
+
/** @foreignKey (modulo.modulo_id) @maxLength (4) @nullable */
|
|
965
|
+
modulo_id?: number;
|
|
966
|
+
/** @maxLength (-1) @nullable */
|
|
967
|
+
submodulo_status?: string;
|
|
968
|
+
}
|
|
969
|
+
interface SubmoduloCreateDTO {
|
|
970
|
+
/** @maxLength (100) @nullable */
|
|
971
|
+
submodulo_nombre?: string;
|
|
972
|
+
/** @maxLength (100) @nullable */
|
|
973
|
+
submodulo_ruta_url?: string;
|
|
974
|
+
/** @foreignKey (modulo.modulo_id) @maxLength (4) @nullable */
|
|
975
|
+
modulo_id?: number;
|
|
976
|
+
/** @maxLength (-1) @nullable */
|
|
977
|
+
submodulo_status?: string;
|
|
978
|
+
}
|
|
979
|
+
interface SubmoduloUpdateDTO {
|
|
980
|
+
/** @maxLength (100) @nullable @optional */
|
|
981
|
+
submodulo_nombre?: string;
|
|
982
|
+
/** @maxLength (100) @nullable @optional */
|
|
983
|
+
submodulo_ruta_url?: string;
|
|
984
|
+
/** @foreignKey (modulo.modulo_id) @maxLength (4) @nullable @optional */
|
|
985
|
+
modulo_id?: number;
|
|
986
|
+
/** @maxLength (-1) @nullable @optional */
|
|
987
|
+
submodulo_status?: string;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
/**
|
|
991
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Submodulo.
|
|
992
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
993
|
+
*/
|
|
994
|
+
interface SubmoduloQuery extends BaseQuery {
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
interface RolGraficaDTO {
|
|
998
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey */
|
|
999
|
+
rol_id: number;
|
|
1000
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
1001
|
+
grafica_id: number;
|
|
1002
|
+
}
|
|
1003
|
+
interface RolGraficaCreateDTO {
|
|
1004
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey */
|
|
1005
|
+
rol_id: number;
|
|
1006
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
1007
|
+
grafica_id: number;
|
|
1008
|
+
}
|
|
1009
|
+
interface RolGraficaUpdateDTO {
|
|
1010
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @primaryKey @optional */
|
|
1011
|
+
rol_id?: number;
|
|
1012
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey @optional */
|
|
1013
|
+
grafica_id?: number;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
/**
|
|
1017
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de RolGrafica.
|
|
1018
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1019
|
+
*/
|
|
1020
|
+
interface RolGraficaQuery extends BaseQuery {
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
interface RolDashboardRutaDTO {
|
|
1024
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1025
|
+
rol_dashboard_ruta_id: number;
|
|
1026
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) */
|
|
1027
|
+
rol_id: number;
|
|
1028
|
+
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) */
|
|
1029
|
+
dashboard_ruta_id: number;
|
|
1030
|
+
/** @maxLength (1) */
|
|
1031
|
+
es_predeterminado: boolean;
|
|
1032
|
+
}
|
|
1033
|
+
interface RolDashboardRutaCreateDTO {
|
|
1034
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) */
|
|
1035
|
+
rol_id: number;
|
|
1036
|
+
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) */
|
|
1037
|
+
dashboard_ruta_id: number;
|
|
1038
|
+
/** @maxLength (1) */
|
|
1039
|
+
es_predeterminado: boolean;
|
|
1040
|
+
}
|
|
1041
|
+
interface RolDashboardRutaUpdateDTO {
|
|
1042
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @optional */
|
|
1043
|
+
rol_id?: number;
|
|
1044
|
+
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) @optional */
|
|
1045
|
+
dashboard_ruta_id?: number;
|
|
1046
|
+
/** @maxLength (1) @optional */
|
|
1047
|
+
es_predeterminado?: boolean;
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
/**
|
|
1051
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de RolDashboardRuta.
|
|
1052
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1053
|
+
*/
|
|
1054
|
+
interface RolDashboardRutaQuery extends BaseQuery {
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
interface RolDTO {
|
|
1058
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1059
|
+
rol_id: number;
|
|
1060
|
+
/** @maxLength (200) */
|
|
1061
|
+
nombre: string;
|
|
1062
|
+
/** @maxLength (4) */
|
|
1063
|
+
tipo_rol_id: number;
|
|
1064
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @nullable */
|
|
1065
|
+
rol_padre_id?: number;
|
|
1066
|
+
/** @foreignKey (cat_rol_grupo.cat_rol_grupo_id) @maxLength (4) @nullable */
|
|
1067
|
+
rol_grupo_id?: number;
|
|
1068
|
+
}
|
|
1069
|
+
interface RolCreateDTO {
|
|
1070
|
+
/** @maxLength (200) */
|
|
1071
|
+
nombre: string;
|
|
1072
|
+
/** @maxLength (4) */
|
|
1073
|
+
tipo_rol_id: number;
|
|
1074
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @nullable */
|
|
1075
|
+
rol_padre_id?: number;
|
|
1076
|
+
/** @foreignKey (cat_rol_grupo.cat_rol_grupo_id) @maxLength (4) @nullable */
|
|
1077
|
+
rol_grupo_id?: number;
|
|
1078
|
+
}
|
|
1079
|
+
interface RolUpdateDTO {
|
|
1080
|
+
/** @maxLength (200) @optional */
|
|
1081
|
+
nombre?: string;
|
|
1082
|
+
/** @maxLength (4) @optional */
|
|
1083
|
+
tipo_rol_id?: number;
|
|
1084
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @nullable @optional */
|
|
1085
|
+
rol_padre_id?: number;
|
|
1086
|
+
/** @foreignKey (cat_rol_grupo.cat_rol_grupo_id) @maxLength (4) @nullable @optional */
|
|
1087
|
+
rol_grupo_id?: number;
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
/**
|
|
1091
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Rol.
|
|
1092
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1093
|
+
*/
|
|
1094
|
+
interface RolQuery extends BaseQuery {
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
interface PlazasDTO {
|
|
1098
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1099
|
+
plaza_id: number;
|
|
1100
|
+
/** @maxLength (510) @nullable */
|
|
1101
|
+
imagen?: string;
|
|
1102
|
+
/** @maxLength (510) */
|
|
1103
|
+
latitud: string;
|
|
1104
|
+
/** @maxLength (510) */
|
|
1105
|
+
longitud: string;
|
|
1106
|
+
}
|
|
1107
|
+
interface PlazasCreateDTO {
|
|
1108
|
+
/** @maxLength (510) @nullable */
|
|
1109
|
+
imagen?: string;
|
|
1110
|
+
/** @maxLength (510) */
|
|
1111
|
+
latitud: string;
|
|
1112
|
+
/** @maxLength (510) */
|
|
1113
|
+
longitud: string;
|
|
1114
|
+
}
|
|
1115
|
+
interface PlazasUpdateDTO {
|
|
1116
|
+
/** @maxLength (510) @nullable @optional */
|
|
1117
|
+
imagen?: string;
|
|
1118
|
+
/** @maxLength (510) @optional */
|
|
1119
|
+
latitud?: string;
|
|
1120
|
+
/** @maxLength (510) @optional */
|
|
1121
|
+
longitud?: string;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
/**
|
|
1125
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Plazas.
|
|
1126
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1127
|
+
*/
|
|
1128
|
+
interface PlazasQuery extends BaseQuery {
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
interface PermisoSubmoduloDTO {
|
|
1132
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1133
|
+
permiso_submodulo_id: number;
|
|
1134
|
+
/** @foreignKey (submodulo.submodulo_id) @maxLength (4) @nullable */
|
|
1135
|
+
submodulo_id?: number;
|
|
1136
|
+
/** @maxLength (4) @nullable */
|
|
1137
|
+
grupo_usuario_id?: number;
|
|
1138
|
+
/** @maxLength (-1) @nullable */
|
|
1139
|
+
permiso_submodulo_status?: string;
|
|
1140
|
+
}
|
|
1141
|
+
interface PermisoSubmoduloCreateDTO {
|
|
1142
|
+
/** @foreignKey (submodulo.submodulo_id) @maxLength (4) @nullable */
|
|
1143
|
+
submodulo_id?: number;
|
|
1144
|
+
/** @maxLength (4) @nullable */
|
|
1145
|
+
grupo_usuario_id?: number;
|
|
1146
|
+
/** @maxLength (-1) @nullable */
|
|
1147
|
+
permiso_submodulo_status?: string;
|
|
1148
|
+
}
|
|
1149
|
+
interface PermisoSubmoduloUpdateDTO {
|
|
1150
|
+
/** @foreignKey (submodulo.submodulo_id) @maxLength (4) @nullable @optional */
|
|
1151
|
+
submodulo_id?: number;
|
|
1152
|
+
/** @maxLength (4) @nullable @optional */
|
|
1153
|
+
grupo_usuario_id?: number;
|
|
1154
|
+
/** @maxLength (-1) @nullable @optional */
|
|
1155
|
+
permiso_submodulo_status?: string;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
/**
|
|
1159
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PermisoSubmodulo.
|
|
1160
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1161
|
+
*/
|
|
1162
|
+
interface PermisoSubmoduloQuery extends BaseQuery {
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
interface PermisoModuloDTO {
|
|
1166
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1167
|
+
permiso_modulo_id: number;
|
|
1168
|
+
/** @foreignKey (modulo.modulo_id) @maxLength (4) @nullable */
|
|
1169
|
+
modulo_id?: number;
|
|
1170
|
+
/** @maxLength (4) @nullable */
|
|
1171
|
+
grupo_usuario_id?: number;
|
|
1172
|
+
/** @maxLength (-1) @nullable */
|
|
1173
|
+
permiso_modulo_status?: string;
|
|
1174
|
+
}
|
|
1175
|
+
interface PermisoModuloCreateDTO {
|
|
1176
|
+
/** @foreignKey (modulo.modulo_id) @maxLength (4) @nullable */
|
|
1177
|
+
modulo_id?: number;
|
|
1178
|
+
/** @maxLength (4) @nullable */
|
|
1179
|
+
grupo_usuario_id?: number;
|
|
1180
|
+
/** @maxLength (-1) @nullable */
|
|
1181
|
+
permiso_modulo_status?: string;
|
|
1182
|
+
}
|
|
1183
|
+
interface PermisoModuloUpdateDTO {
|
|
1184
|
+
/** @foreignKey (modulo.modulo_id) @maxLength (4) @nullable @optional */
|
|
1185
|
+
modulo_id?: number;
|
|
1186
|
+
/** @maxLength (4) @nullable @optional */
|
|
1187
|
+
grupo_usuario_id?: number;
|
|
1188
|
+
/** @maxLength (-1) @nullable @optional */
|
|
1189
|
+
permiso_modulo_status?: string;
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
/**
|
|
1193
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PermisoModulo.
|
|
1194
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1195
|
+
*/
|
|
1196
|
+
interface PermisoModuloQuery extends BaseQuery {
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
interface PermisoAccionEntidadDTO {
|
|
1200
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1201
|
+
permiso_accion_entidad_id: number;
|
|
1202
|
+
/** @foreignKey (permiso_accion_entidad.permiso_accion_entidad_id) @maxLength (4) @nullable */
|
|
1203
|
+
cat_accion_id?: number;
|
|
1204
|
+
/** @maxLength (4) @nullable */
|
|
1205
|
+
cat_entidad_id?: number;
|
|
1206
|
+
/** @maxLength (4) @nullable */
|
|
1207
|
+
grupo_usuario_id?: number;
|
|
1208
|
+
/** @maxLength (-1) @nullable */
|
|
1209
|
+
permiso_accion_entidad_status?: string;
|
|
1210
|
+
}
|
|
1211
|
+
interface PermisoAccionEntidadCreateDTO {
|
|
1212
|
+
/** @foreignKey (permiso_accion_entidad.permiso_accion_entidad_id) @maxLength (4) @nullable */
|
|
1213
|
+
cat_accion_id?: number;
|
|
1214
|
+
/** @maxLength (4) @nullable */
|
|
1215
|
+
cat_entidad_id?: number;
|
|
1216
|
+
/** @maxLength (4) @nullable */
|
|
1217
|
+
grupo_usuario_id?: number;
|
|
1218
|
+
/** @maxLength (-1) @nullable */
|
|
1219
|
+
permiso_accion_entidad_status?: string;
|
|
1220
|
+
}
|
|
1221
|
+
interface PermisoAccionEntidadUpdateDTO {
|
|
1222
|
+
/** @foreignKey (permiso_accion_entidad.permiso_accion_entidad_id) @maxLength (4) @nullable @optional */
|
|
1223
|
+
cat_accion_id?: number;
|
|
1224
|
+
/** @maxLength (4) @nullable @optional */
|
|
1225
|
+
cat_entidad_id?: number;
|
|
1226
|
+
/** @maxLength (4) @nullable @optional */
|
|
1227
|
+
grupo_usuario_id?: number;
|
|
1228
|
+
/** @maxLength (-1) @nullable @optional */
|
|
1229
|
+
permiso_accion_entidad_status?: string;
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
/**
|
|
1233
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de PermisoAccionEntidad.
|
|
1234
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1235
|
+
*/
|
|
1236
|
+
interface PermisoAccionEntidadQuery extends BaseQuery {
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
interface PagosDTO {
|
|
1240
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1241
|
+
id: number;
|
|
1242
|
+
/** @maxLength (4) */
|
|
1243
|
+
cuenta_id: number;
|
|
1244
|
+
/** @maxLength (9) */
|
|
1245
|
+
total: number;
|
|
1246
|
+
/** @maxLength (3) */
|
|
1247
|
+
fecha_de_pago: string;
|
|
1248
|
+
/** @maxLength (50) */
|
|
1249
|
+
periodo_de_pago: string;
|
|
1250
|
+
/** @foreignKey (cat_concepto_pago.id) @maxLength (4) */
|
|
1251
|
+
concepto_id: number;
|
|
1252
|
+
/** @maxLength (1) */
|
|
1253
|
+
convenio: boolean;
|
|
1254
|
+
/** @maxLength (4) @nullable */
|
|
1255
|
+
numero_convenio?: number;
|
|
1256
|
+
/** @maxLength (50) @nullable */
|
|
1257
|
+
recibo?: string;
|
|
1258
|
+
}
|
|
1259
|
+
interface PagosCreateDTO {
|
|
1260
|
+
/** @maxLength (4) */
|
|
1261
|
+
cuenta_id: number;
|
|
1262
|
+
/** @maxLength (9) */
|
|
1263
|
+
total: number;
|
|
1264
|
+
/** @maxLength (3) */
|
|
1265
|
+
fecha_de_pago: string;
|
|
1266
|
+
/** @maxLength (50) */
|
|
1267
|
+
periodo_de_pago: string;
|
|
1268
|
+
/** @foreignKey (cat_concepto_pago.id) @maxLength (4) */
|
|
1269
|
+
concepto_id: number;
|
|
1270
|
+
/** @maxLength (1) */
|
|
1271
|
+
convenio: boolean;
|
|
1272
|
+
/** @maxLength (4) @nullable */
|
|
1273
|
+
numero_convenio?: number;
|
|
1274
|
+
/** @maxLength (50) @nullable */
|
|
1275
|
+
recibo?: string;
|
|
1276
|
+
}
|
|
1277
|
+
interface PagosUpdateDTO {
|
|
1278
|
+
/** @maxLength (4) @optional */
|
|
1279
|
+
cuenta_id?: number;
|
|
1280
|
+
/** @maxLength (9) @optional */
|
|
1281
|
+
total?: number;
|
|
1282
|
+
/** @maxLength (3) @optional */
|
|
1283
|
+
fecha_de_pago?: string;
|
|
1284
|
+
/** @maxLength (50) @optional */
|
|
1285
|
+
periodo_de_pago?: string;
|
|
1286
|
+
/** @foreignKey (cat_concepto_pago.id) @maxLength (4) @optional */
|
|
1287
|
+
concepto_id?: number;
|
|
1288
|
+
/** @maxLength (1) @optional */
|
|
1289
|
+
convenio?: boolean;
|
|
1290
|
+
/** @maxLength (4) @nullable @optional */
|
|
1291
|
+
numero_convenio?: number;
|
|
1292
|
+
/** @maxLength (50) @nullable @optional */
|
|
1293
|
+
recibo?: string;
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
/**
|
|
1297
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Pagos.
|
|
1298
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1299
|
+
*/
|
|
1300
|
+
interface PagosQuery extends BaseQuery {
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
interface ModuloDTO {
|
|
1304
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1305
|
+
modulo_id: number;
|
|
1306
|
+
/** @maxLength (100) @nullable */
|
|
1307
|
+
modulo_nombre?: string;
|
|
1308
|
+
/** @maxLength (100) @nullable */
|
|
1309
|
+
modulo_ruta_url?: string;
|
|
1310
|
+
/** @maxLength (80) @nullable */
|
|
1311
|
+
modulo_icon_url?: string;
|
|
1312
|
+
/** @maxLength (-1) @nullable */
|
|
1313
|
+
modulo_status?: string;
|
|
1314
|
+
/** @maxLength (-1) @nullable */
|
|
1315
|
+
ordinal_position?: string;
|
|
1316
|
+
}
|
|
1317
|
+
interface ModuloCreateDTO {
|
|
1318
|
+
/** @maxLength (100) @nullable */
|
|
1319
|
+
modulo_nombre?: string;
|
|
1320
|
+
/** @maxLength (100) @nullable */
|
|
1321
|
+
modulo_ruta_url?: string;
|
|
1322
|
+
/** @maxLength (80) @nullable */
|
|
1323
|
+
modulo_icon_url?: string;
|
|
1324
|
+
/** @maxLength (-1) @nullable */
|
|
1325
|
+
modulo_status?: string;
|
|
1326
|
+
/** @maxLength (-1) @nullable */
|
|
1327
|
+
ordinal_position?: string;
|
|
1328
|
+
}
|
|
1329
|
+
interface ModuloUpdateDTO {
|
|
1330
|
+
/** @maxLength (100) @nullable @optional */
|
|
1331
|
+
modulo_nombre?: string;
|
|
1332
|
+
/** @maxLength (100) @nullable @optional */
|
|
1333
|
+
modulo_ruta_url?: string;
|
|
1334
|
+
/** @maxLength (80) @nullable @optional */
|
|
1335
|
+
modulo_icon_url?: string;
|
|
1336
|
+
/** @maxLength (-1) @nullable @optional */
|
|
1337
|
+
modulo_status?: string;
|
|
1338
|
+
/** @maxLength (-1) @nullable @optional */
|
|
1339
|
+
ordinal_position?: string;
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
/**
|
|
1343
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Modulo.
|
|
1344
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1345
|
+
*/
|
|
1346
|
+
interface ModuloQuery extends BaseQuery {
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
interface GrupoUsuarioDTO {
|
|
1350
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1351
|
+
grupo_usuario_id: number;
|
|
1352
|
+
/** @maxLength (50) @nullable */
|
|
1353
|
+
grupo_usuario_nombre?: string;
|
|
1354
|
+
/** @maxLength (8) @nullable */
|
|
1355
|
+
grupo_usuario_fecha_creacion?: string;
|
|
1356
|
+
/** @maxLength (8) @nullable */
|
|
1357
|
+
grupo_usuario_fecha_modificacion?: string;
|
|
1358
|
+
/** @maxLength (-1) @nullable */
|
|
1359
|
+
grupo_usuario_status?: string;
|
|
1360
|
+
}
|
|
1361
|
+
interface GrupoUsuarioCreateDTO {
|
|
1362
|
+
/** @maxLength (50) @nullable */
|
|
1363
|
+
grupo_usuario_nombre?: string;
|
|
1364
|
+
/** @maxLength (8) @nullable */
|
|
1365
|
+
grupo_usuario_fecha_creacion?: string;
|
|
1366
|
+
/** @maxLength (8) @nullable */
|
|
1367
|
+
grupo_usuario_fecha_modificacion?: string;
|
|
1368
|
+
/** @maxLength (-1) @nullable */
|
|
1369
|
+
grupo_usuario_status?: string;
|
|
1370
|
+
}
|
|
1371
|
+
interface GrupoUsuarioUpdateDTO {
|
|
1372
|
+
/** @maxLength (50) @nullable @optional */
|
|
1373
|
+
grupo_usuario_nombre?: string;
|
|
1374
|
+
/** @maxLength (8) @nullable @optional */
|
|
1375
|
+
grupo_usuario_fecha_creacion?: string;
|
|
1376
|
+
/** @maxLength (8) @nullable @optional */
|
|
1377
|
+
grupo_usuario_fecha_modificacion?: string;
|
|
1378
|
+
/** @maxLength (-1) @nullable @optional */
|
|
1379
|
+
grupo_usuario_status?: string;
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
/**
|
|
1383
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GrupoUsuario.
|
|
1384
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1385
|
+
*/
|
|
1386
|
+
interface GrupoUsuarioQuery extends BaseQuery {
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
interface GraficaPorGrupoDTO {
|
|
1390
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
1391
|
+
grafica_id: number;
|
|
1392
|
+
/** @foreignKey (cat_grafica_grupo.cat_grafica_grupo_id) @maxLength (4) @primaryKey */
|
|
1393
|
+
cat_grafica_grupo_id: number;
|
|
1394
|
+
/** @maxLength (4) @nullable */
|
|
1395
|
+
orden?: number;
|
|
1396
|
+
}
|
|
1397
|
+
interface GraficaPorGrupoCreateDTO {
|
|
1398
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey */
|
|
1399
|
+
grafica_id: number;
|
|
1400
|
+
/** @foreignKey (cat_grafica_grupo.cat_grafica_grupo_id) @maxLength (4) @primaryKey */
|
|
1401
|
+
cat_grafica_grupo_id: number;
|
|
1402
|
+
/** @maxLength (4) @nullable */
|
|
1403
|
+
orden?: number;
|
|
1404
|
+
}
|
|
1405
|
+
interface GraficaPorGrupoUpdateDTO {
|
|
1406
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @primaryKey @optional */
|
|
1407
|
+
grafica_id?: number;
|
|
1408
|
+
/** @foreignKey (cat_grafica_grupo.cat_grafica_grupo_id) @maxLength (4) @primaryKey @optional */
|
|
1409
|
+
cat_grafica_grupo_id?: number;
|
|
1410
|
+
/** @maxLength (4) @nullable @optional */
|
|
1411
|
+
orden?: number;
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
/**
|
|
1415
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaPorGrupo.
|
|
1416
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1417
|
+
*/
|
|
1418
|
+
interface GraficaPorGrupoQuery extends BaseQuery {
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
interface GraficaParametroTipoDTO {
|
|
1422
|
+
/** @foreignKey (grafica_parametro.grafica_parametro_id) @maxLength (4) @primaryKey */
|
|
1423
|
+
grafica_parametro_id: number;
|
|
1424
|
+
/** @foreignKey (cat_tipo_parametro.cat_tipo_parametro_id) @maxLength (4) @primaryKey */
|
|
1425
|
+
cat_tipo_parametro_id: number;
|
|
1426
|
+
}
|
|
1427
|
+
interface GraficaParametroTipoCreateDTO {
|
|
1428
|
+
/** @foreignKey (grafica_parametro.grafica_parametro_id) @maxLength (4) @primaryKey */
|
|
1429
|
+
grafica_parametro_id: number;
|
|
1430
|
+
/** @foreignKey (cat_tipo_parametro.cat_tipo_parametro_id) @maxLength (4) @primaryKey */
|
|
1431
|
+
cat_tipo_parametro_id: number;
|
|
1432
|
+
}
|
|
1433
|
+
interface GraficaParametroTipoUpdateDTO {
|
|
1434
|
+
/** @foreignKey (grafica_parametro.grafica_parametro_id) @maxLength (4) @primaryKey @optional */
|
|
1435
|
+
grafica_parametro_id?: number;
|
|
1436
|
+
/** @foreignKey (cat_tipo_parametro.cat_tipo_parametro_id) @maxLength (4) @primaryKey @optional */
|
|
1437
|
+
cat_tipo_parametro_id?: number;
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
/**
|
|
1441
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaParametroTipo.
|
|
1442
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1443
|
+
*/
|
|
1444
|
+
interface GraficaParametroTipoQuery extends BaseQuery {
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
interface GraficaParametroDefectoDTO {
|
|
1448
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1449
|
+
grafica_parametro_defecto_id: number;
|
|
1450
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
1451
|
+
grafica_id: number;
|
|
1452
|
+
/** @foreignKey (grafica_parametro.grafica_parametro_id) @maxLength (4) */
|
|
1453
|
+
grafica_parametro_id: number;
|
|
1454
|
+
}
|
|
1455
|
+
interface GraficaParametroDefectoCreateDTO {
|
|
1456
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
1457
|
+
grafica_id: number;
|
|
1458
|
+
/** @foreignKey (grafica_parametro.grafica_parametro_id) @maxLength (4) */
|
|
1459
|
+
grafica_parametro_id: number;
|
|
1460
|
+
}
|
|
1461
|
+
interface GraficaParametroDefectoUpdateDTO {
|
|
1462
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @optional */
|
|
1463
|
+
grafica_id?: number;
|
|
1464
|
+
/** @foreignKey (grafica_parametro.grafica_parametro_id) @maxLength (4) @optional */
|
|
1465
|
+
grafica_parametro_id?: number;
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1468
|
+
/**
|
|
1469
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaParametroDefecto.
|
|
1470
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1471
|
+
*/
|
|
1472
|
+
interface GraficaParametroDefectoQuery extends BaseQuery {
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
interface GraficaParametroDTO {
|
|
1476
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1477
|
+
grafica_parametro_id: number;
|
|
1478
|
+
/** @maxLength (100) */
|
|
1479
|
+
nombre: string;
|
|
1480
|
+
/** @maxLength (255) @nullable */
|
|
1481
|
+
descripcion?: string;
|
|
1482
|
+
/** @maxLength (1) @nullable */
|
|
1483
|
+
requerido?: boolean;
|
|
1484
|
+
/** @maxLength (255) @nullable */
|
|
1485
|
+
valor_defecto?: string;
|
|
1486
|
+
/** @maxLength (128) */
|
|
1487
|
+
etiqueta: string;
|
|
1488
|
+
}
|
|
1489
|
+
interface GraficaParametroCreateDTO {
|
|
1490
|
+
/** @maxLength (100) */
|
|
1491
|
+
nombre: string;
|
|
1492
|
+
/** @maxLength (255) @nullable */
|
|
1493
|
+
descripcion?: string;
|
|
1494
|
+
/** @maxLength (1) @nullable */
|
|
1495
|
+
requerido?: boolean;
|
|
1496
|
+
/** @maxLength (255) @nullable */
|
|
1497
|
+
valor_defecto?: string;
|
|
1498
|
+
/** @maxLength (128) */
|
|
1499
|
+
etiqueta: string;
|
|
1500
|
+
}
|
|
1501
|
+
interface GraficaParametroUpdateDTO {
|
|
1502
|
+
/** @maxLength (100) @optional */
|
|
1503
|
+
nombre?: string;
|
|
1504
|
+
/** @maxLength (255) @nullable @optional */
|
|
1505
|
+
descripcion?: string;
|
|
1506
|
+
/** @maxLength (1) @nullable @optional */
|
|
1507
|
+
requerido?: boolean;
|
|
1508
|
+
/** @maxLength (255) @nullable @optional */
|
|
1509
|
+
valor_defecto?: string;
|
|
1510
|
+
/** @maxLength (128) @optional */
|
|
1511
|
+
etiqueta?: string;
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
/**
|
|
1515
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaParametro.
|
|
1516
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1517
|
+
*/
|
|
1518
|
+
interface GraficaParametroQuery extends BaseQuery {
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
interface GraficaFiltroDTO {
|
|
1522
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1523
|
+
filtro_id: number;
|
|
1524
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
1525
|
+
grafica_id: number;
|
|
1526
|
+
/** @maxLength (200) */
|
|
1527
|
+
campo: string;
|
|
1528
|
+
/** @maxLength (20) */
|
|
1529
|
+
operador: string;
|
|
1530
|
+
/** @maxLength (510) */
|
|
1531
|
+
valor: string;
|
|
1532
|
+
}
|
|
1533
|
+
interface GraficaFiltroCreateDTO {
|
|
1534
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
1535
|
+
grafica_id: number;
|
|
1536
|
+
/** @maxLength (200) */
|
|
1537
|
+
campo: string;
|
|
1538
|
+
/** @maxLength (20) */
|
|
1539
|
+
operador: string;
|
|
1540
|
+
/** @maxLength (510) */
|
|
1541
|
+
valor: string;
|
|
1542
|
+
}
|
|
1543
|
+
interface GraficaFiltroUpdateDTO {
|
|
1544
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @optional */
|
|
1545
|
+
grafica_id?: number;
|
|
1546
|
+
/** @maxLength (200) @optional */
|
|
1547
|
+
campo?: string;
|
|
1548
|
+
/** @maxLength (20) @optional */
|
|
1549
|
+
operador?: string;
|
|
1550
|
+
/** @maxLength (510) @optional */
|
|
1551
|
+
valor?: string;
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
/**
|
|
1555
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaFiltro.
|
|
1556
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1557
|
+
*/
|
|
1558
|
+
interface GraficaFiltroQuery extends BaseQuery {
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
interface GraficaDTO {
|
|
1562
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1563
|
+
grafica_id: number;
|
|
1564
|
+
/** @maxLength (200) */
|
|
1565
|
+
nombre: string;
|
|
1566
|
+
/** @maxLength (510) @nullable */
|
|
1567
|
+
descripcion?: string;
|
|
1568
|
+
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) */
|
|
1569
|
+
tipo_grafica_id: number;
|
|
1570
|
+
/** @maxLength (1000) */
|
|
1571
|
+
endpoint_url: string;
|
|
1572
|
+
}
|
|
1573
|
+
interface GraficaCreateDTO {
|
|
1574
|
+
/** @maxLength (200) */
|
|
1575
|
+
nombre: string;
|
|
1576
|
+
/** @maxLength (510) @nullable */
|
|
1577
|
+
descripcion?: string;
|
|
1578
|
+
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) */
|
|
1579
|
+
tipo_grafica_id: number;
|
|
1580
|
+
/** @maxLength (1000) */
|
|
1581
|
+
endpoint_url: string;
|
|
1582
|
+
}
|
|
1583
|
+
interface GraficaUpdateDTO {
|
|
1584
|
+
/** @maxLength (200) @optional */
|
|
1585
|
+
nombre?: string;
|
|
1586
|
+
/** @maxLength (510) @nullable @optional */
|
|
1587
|
+
descripcion?: string;
|
|
1588
|
+
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) @optional */
|
|
1589
|
+
tipo_grafica_id?: number;
|
|
1590
|
+
/** @maxLength (1000) @optional */
|
|
1591
|
+
endpoint_url?: string;
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
/**
|
|
1595
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Grafica.
|
|
1596
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1597
|
+
*/
|
|
1598
|
+
interface GraficaQuery extends BaseQuery {
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
interface GraficaAgrupacionDTO {
|
|
1602
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1603
|
+
agrupacion_id: number;
|
|
1604
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
1605
|
+
grafica_id: number;
|
|
1606
|
+
/** @maxLength (200) */
|
|
1607
|
+
campo: string;
|
|
1608
|
+
/** @maxLength (200) @nullable */
|
|
1609
|
+
etiqueta?: string;
|
|
1610
|
+
/** @maxLength (4) @nullable */
|
|
1611
|
+
orden?: number;
|
|
1612
|
+
}
|
|
1613
|
+
interface GraficaAgrupacionCreateDTO {
|
|
1614
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
1615
|
+
grafica_id: number;
|
|
1616
|
+
/** @maxLength (200) */
|
|
1617
|
+
campo: string;
|
|
1618
|
+
/** @maxLength (200) @nullable */
|
|
1619
|
+
etiqueta?: string;
|
|
1620
|
+
/** @maxLength (4) @nullable */
|
|
1621
|
+
orden?: number;
|
|
1622
|
+
}
|
|
1623
|
+
interface GraficaAgrupacionUpdateDTO {
|
|
1624
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @optional */
|
|
1625
|
+
grafica_id?: number;
|
|
1626
|
+
/** @maxLength (200) @optional */
|
|
1627
|
+
campo?: string;
|
|
1628
|
+
/** @maxLength (200) @nullable @optional */
|
|
1629
|
+
etiqueta?: string;
|
|
1630
|
+
/** @maxLength (4) @nullable @optional */
|
|
1631
|
+
orden?: number;
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
/**
|
|
1635
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de GraficaAgrupacion.
|
|
1636
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1637
|
+
*/
|
|
1638
|
+
interface GraficaAgrupacionQuery extends BaseQuery {
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
interface DashboardRutaDTO {
|
|
1642
|
+
/** @maxLength (4) @primaryKey */
|
|
1643
|
+
dashboard_ruta_id: number;
|
|
1644
|
+
/** @maxLength (510) */
|
|
1645
|
+
ruta: string;
|
|
1646
|
+
/** @maxLength (200) */
|
|
1647
|
+
nombre: string;
|
|
1648
|
+
/** @maxLength (200) @nullable */
|
|
1649
|
+
icono?: string;
|
|
1650
|
+
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) @nullable */
|
|
1651
|
+
dashboard_ruta_padre_id?: number;
|
|
1652
|
+
/** @maxLength (4) */
|
|
1653
|
+
nivel: number;
|
|
1654
|
+
/** @maxLength (1) */
|
|
1655
|
+
habilitado: boolean;
|
|
1656
|
+
/** @maxLength (4) @nullable */
|
|
1657
|
+
orden?: number;
|
|
1658
|
+
}
|
|
1659
|
+
interface DashboardRutaCreateDTO {
|
|
1660
|
+
/** @maxLength (4) @primaryKey */
|
|
1661
|
+
dashboard_ruta_id: number;
|
|
1662
|
+
/** @maxLength (510) */
|
|
1663
|
+
ruta: string;
|
|
1664
|
+
/** @maxLength (200) */
|
|
1665
|
+
nombre: string;
|
|
1666
|
+
/** @maxLength (200) @nullable */
|
|
1667
|
+
icono?: string;
|
|
1668
|
+
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) @nullable */
|
|
1669
|
+
dashboard_ruta_padre_id?: number;
|
|
1670
|
+
/** @maxLength (4) */
|
|
1671
|
+
nivel: number;
|
|
1672
|
+
/** @maxLength (1) */
|
|
1673
|
+
habilitado: boolean;
|
|
1674
|
+
/** @maxLength (4) @nullable */
|
|
1675
|
+
orden?: number;
|
|
1676
|
+
}
|
|
1677
|
+
interface DashboardRutaUpdateDTO {
|
|
1678
|
+
/** @maxLength (4) @primaryKey @optional */
|
|
1679
|
+
dashboard_ruta_id?: number;
|
|
1680
|
+
/** @maxLength (510) @optional */
|
|
1681
|
+
ruta?: string;
|
|
1682
|
+
/** @maxLength (200) @optional */
|
|
1683
|
+
nombre?: string;
|
|
1684
|
+
/** @maxLength (200) @nullable @optional */
|
|
1685
|
+
icono?: string;
|
|
1686
|
+
/** @foreignKey (dashboard_ruta.dashboard_ruta_id) @maxLength (4) @nullable @optional */
|
|
1687
|
+
dashboard_ruta_padre_id?: number;
|
|
1688
|
+
/** @maxLength (4) @optional */
|
|
1689
|
+
nivel?: number;
|
|
1690
|
+
/** @maxLength (1) @optional */
|
|
1691
|
+
habilitado?: boolean;
|
|
1692
|
+
/** @maxLength (4) @nullable @optional */
|
|
1693
|
+
orden?: number;
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
/**
|
|
1697
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardRuta.
|
|
1698
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1699
|
+
*/
|
|
1700
|
+
interface DashboardRutaQuery extends BaseQuery {
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1703
|
+
interface DashboardGraficaGrupoRolDTO {
|
|
1704
|
+
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey */
|
|
1705
|
+
dashboard_grafica_grupo_id: number;
|
|
1706
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @nullable */
|
|
1707
|
+
rol_id?: number;
|
|
1708
|
+
}
|
|
1709
|
+
interface DashboardGraficaGrupoRolCreateDTO {
|
|
1710
|
+
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey */
|
|
1711
|
+
dashboard_grafica_grupo_id: number;
|
|
1712
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @nullable */
|
|
1713
|
+
rol_id?: number;
|
|
1714
|
+
}
|
|
1715
|
+
interface DashboardGraficaGrupoRolUpdateDTO {
|
|
1716
|
+
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey @optional */
|
|
1717
|
+
dashboard_grafica_grupo_id?: number;
|
|
1718
|
+
/** @foreignKey (rol.rol_id) @maxLength (4) @nullable @optional */
|
|
1719
|
+
rol_id?: number;
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
/**
|
|
1723
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGraficaGrupoRol.
|
|
1724
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1725
|
+
*/
|
|
1726
|
+
interface DashboardGraficaGrupoRolQuery extends BaseQuery {
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
interface DashboardGraficaGrupoDTO {
|
|
1730
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1731
|
+
dashboard_grafica_grupo_id: number;
|
|
1732
|
+
/** @maxLength (100) @nullable */
|
|
1733
|
+
titulo?: string;
|
|
1734
|
+
}
|
|
1735
|
+
interface DashboardGraficaGrupoCreateDTO {
|
|
1736
|
+
/** @maxLength (100) @nullable */
|
|
1737
|
+
titulo?: string;
|
|
1738
|
+
}
|
|
1739
|
+
interface DashboardGraficaGrupoUpdateDTO {
|
|
1740
|
+
/** @maxLength (100) @nullable @optional */
|
|
1741
|
+
titulo?: string;
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1744
|
+
/**
|
|
1745
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGraficaGrupo.
|
|
1746
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1747
|
+
*/
|
|
1748
|
+
interface DashboardGraficaGrupoQuery extends BaseQuery {
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
interface DashboardGraficaElementoParametroDTO {
|
|
1752
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1753
|
+
dashboard_grafica_elemento_parametro_id: number;
|
|
1754
|
+
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) */
|
|
1755
|
+
dashboard_grafica_elemento_id: number;
|
|
1756
|
+
/** @foreignKey (grafica_parametro_defecto.grafica_parametro_defecto_id) @maxLength (4) */
|
|
1757
|
+
grafica_parametro_defecto_id: number;
|
|
1758
|
+
/** @maxLength (255) @nullable */
|
|
1759
|
+
valor?: string;
|
|
1760
|
+
}
|
|
1761
|
+
interface DashboardGraficaElementoParametroCreateDTO {
|
|
1762
|
+
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) */
|
|
1763
|
+
dashboard_grafica_elemento_id: number;
|
|
1764
|
+
/** @foreignKey (grafica_parametro_defecto.grafica_parametro_defecto_id) @maxLength (4) */
|
|
1765
|
+
grafica_parametro_defecto_id: number;
|
|
1766
|
+
/** @maxLength (255) @nullable */
|
|
1767
|
+
valor?: string;
|
|
1768
|
+
}
|
|
1769
|
+
interface DashboardGraficaElementoParametroUpdateDTO {
|
|
1770
|
+
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) @optional */
|
|
1771
|
+
dashboard_grafica_elemento_id?: number;
|
|
1772
|
+
/** @foreignKey (grafica_parametro_defecto.grafica_parametro_defecto_id) @maxLength (4) @optional */
|
|
1773
|
+
grafica_parametro_defecto_id?: number;
|
|
1774
|
+
/** @maxLength (255) @nullable @optional */
|
|
1775
|
+
valor?: string;
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
/**
|
|
1779
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGraficaElementoParametro.
|
|
1780
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1781
|
+
*/
|
|
1782
|
+
interface DashboardGraficaElementoParametroQuery extends BaseQuery {
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
interface DashboardGraficaElementoDetalleDTO {
|
|
1786
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1787
|
+
dashboard_grafica_elemento_detalle_id: number;
|
|
1788
|
+
/** @maxLength (255) @nullable */
|
|
1789
|
+
titulo?: string;
|
|
1790
|
+
/** @maxLength (4) @nullable */
|
|
1791
|
+
orden?: number;
|
|
1792
|
+
}
|
|
1793
|
+
interface DashboardGraficaElementoDetalleCreateDTO {
|
|
1794
|
+
/** @maxLength (255) @nullable */
|
|
1795
|
+
titulo?: string;
|
|
1796
|
+
/** @maxLength (4) @nullable */
|
|
1797
|
+
orden?: number;
|
|
1798
|
+
}
|
|
1799
|
+
interface DashboardGraficaElementoDetalleUpdateDTO {
|
|
1800
|
+
/** @maxLength (255) @nullable @optional */
|
|
1801
|
+
titulo?: string;
|
|
1802
|
+
/** @maxLength (4) @nullable @optional */
|
|
1803
|
+
orden?: number;
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
/**
|
|
1807
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGraficaElementoDetalle.
|
|
1808
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1809
|
+
*/
|
|
1810
|
+
interface DashboardGraficaElementoDetalleQuery extends BaseQuery {
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
interface DashboardGraficaElementoDTO {
|
|
1814
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1815
|
+
dashboard_grafica_elemento_id: number;
|
|
1816
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
1817
|
+
grafica_id: number;
|
|
1818
|
+
/** @foreignKey (dashboard_estilo.dashboard_estilo_id) @maxLength (4) */
|
|
1819
|
+
dashboard_estilo_id: number;
|
|
1820
|
+
/** @foreignKey (dashboard_grafica_elemento_detalle.dashboard_grafica_elemento_detalle_id) @maxLength (4) */
|
|
1821
|
+
dashboard_grafica_elemento_detalle_id: number;
|
|
1822
|
+
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) @nullable */
|
|
1823
|
+
tipo_grafica_id?: number;
|
|
1824
|
+
}
|
|
1825
|
+
interface DashboardGraficaElementoCreateDTO {
|
|
1826
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) */
|
|
1827
|
+
grafica_id: number;
|
|
1828
|
+
/** @foreignKey (dashboard_estilo.dashboard_estilo_id) @maxLength (4) */
|
|
1829
|
+
dashboard_estilo_id: number;
|
|
1830
|
+
/** @foreignKey (dashboard_grafica_elemento_detalle.dashboard_grafica_elemento_detalle_id) @maxLength (4) */
|
|
1831
|
+
dashboard_grafica_elemento_detalle_id: number;
|
|
1832
|
+
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) @nullable */
|
|
1833
|
+
tipo_grafica_id?: number;
|
|
1834
|
+
}
|
|
1835
|
+
interface DashboardGraficaElementoUpdateDTO {
|
|
1836
|
+
/** @foreignKey (grafica.grafica_id) @maxLength (4) @optional */
|
|
1837
|
+
grafica_id?: number;
|
|
1838
|
+
/** @foreignKey (dashboard_estilo.dashboard_estilo_id) @maxLength (4) @optional */
|
|
1839
|
+
dashboard_estilo_id?: number;
|
|
1840
|
+
/** @foreignKey (dashboard_grafica_elemento_detalle.dashboard_grafica_elemento_detalle_id) @maxLength (4) @optional */
|
|
1841
|
+
dashboard_grafica_elemento_detalle_id?: number;
|
|
1842
|
+
/** @foreignKey (tipo_grafica.tipo_grafica_id) @maxLength (4) @nullable @optional */
|
|
1843
|
+
tipo_grafica_id?: number;
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
/**
|
|
1847
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGraficaElemento.
|
|
1848
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1849
|
+
*/
|
|
1850
|
+
interface DashboardGraficaElementoQuery extends BaseQuery {
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
interface DashboardGraficaDTO {
|
|
1854
|
+
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) */
|
|
1855
|
+
dashboard_grafica_grupo_id: number;
|
|
1856
|
+
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) */
|
|
1857
|
+
dashboard_grafica_elemento_id: number;
|
|
1858
|
+
}
|
|
1859
|
+
interface DashboardGraficaCreateDTO {
|
|
1860
|
+
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) */
|
|
1861
|
+
dashboard_grafica_grupo_id: number;
|
|
1862
|
+
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) */
|
|
1863
|
+
dashboard_grafica_elemento_id: number;
|
|
1864
|
+
}
|
|
1865
|
+
interface DashboardGraficaUpdateDTO {
|
|
1866
|
+
/** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @optional */
|
|
1867
|
+
dashboard_grafica_grupo_id?: number;
|
|
1868
|
+
/** @foreignKey (dashboard_grafica_elemento.dashboard_grafica_elemento_id) @maxLength (4) @optional */
|
|
1869
|
+
dashboard_grafica_elemento_id?: number;
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
/**
|
|
1873
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardGrafica.
|
|
1874
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1875
|
+
*/
|
|
1876
|
+
interface DashboardGraficaQuery extends BaseQuery {
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1879
|
+
interface DashboardEstiloDTO {
|
|
1880
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1881
|
+
dashboard_estilo_id: number;
|
|
1882
|
+
/** @maxLength (64) */
|
|
1883
|
+
height: string;
|
|
1884
|
+
/** @maxLength (64) */
|
|
1885
|
+
width: string;
|
|
1886
|
+
/** @maxLength (4) @nullable */
|
|
1887
|
+
flexGrow?: number;
|
|
1888
|
+
}
|
|
1889
|
+
interface DashboardEstiloCreateDTO {
|
|
1890
|
+
/** @maxLength (64) */
|
|
1891
|
+
height: string;
|
|
1892
|
+
/** @maxLength (64) */
|
|
1893
|
+
width: string;
|
|
1894
|
+
/** @maxLength (4) @nullable */
|
|
1895
|
+
flexGrow?: number;
|
|
1896
|
+
}
|
|
1897
|
+
interface DashboardEstiloUpdateDTO {
|
|
1898
|
+
/** @maxLength (64) @optional */
|
|
1899
|
+
height?: string;
|
|
1900
|
+
/** @maxLength (64) @optional */
|
|
1901
|
+
width?: string;
|
|
1902
|
+
/** @maxLength (4) @nullable @optional */
|
|
1903
|
+
flexGrow?: number;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
/**
|
|
1907
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de DashboardEstilo.
|
|
1908
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1909
|
+
*/
|
|
1910
|
+
interface DashboardEstiloQuery extends BaseQuery {
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1913
|
+
interface ContribuyenteDomicilioDTO {
|
|
1914
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1915
|
+
contribuyente_domicilio_id: number;
|
|
1916
|
+
/** @foreignKey (contribuyente.contribuyente_id) @maxLength (4) */
|
|
1917
|
+
contribuyente_id: number;
|
|
1918
|
+
/** @maxLength (50) */
|
|
1919
|
+
cuenta_id: string;
|
|
1920
|
+
/** @maxLength (150) */
|
|
1921
|
+
calle: string;
|
|
1922
|
+
/** @maxLength (20) */
|
|
1923
|
+
numero: string;
|
|
1924
|
+
/** @maxLength (100) */
|
|
1925
|
+
colonia: string;
|
|
1926
|
+
/** @maxLength (9) @nullable */
|
|
1927
|
+
latitud?: number;
|
|
1928
|
+
/** @maxLength (9) @nullable */
|
|
1929
|
+
longitud?: number;
|
|
1930
|
+
}
|
|
1931
|
+
interface ContribuyenteDomicilioCreateDTO {
|
|
1932
|
+
/** @foreignKey (contribuyente.contribuyente_id) @maxLength (4) */
|
|
1933
|
+
contribuyente_id: number;
|
|
1934
|
+
/** @maxLength (50) */
|
|
1935
|
+
cuenta_id: string;
|
|
1936
|
+
/** @maxLength (150) */
|
|
1937
|
+
calle: string;
|
|
1938
|
+
/** @maxLength (20) */
|
|
1939
|
+
numero: string;
|
|
1940
|
+
/** @maxLength (100) */
|
|
1941
|
+
colonia: string;
|
|
1942
|
+
/** @maxLength (9) @nullable */
|
|
1943
|
+
latitud?: number;
|
|
1944
|
+
/** @maxLength (9) @nullable */
|
|
1945
|
+
longitud?: number;
|
|
1946
|
+
}
|
|
1947
|
+
interface ContribuyenteDomicilioUpdateDTO {
|
|
1948
|
+
/** @foreignKey (contribuyente.contribuyente_id) @maxLength (4) @optional */
|
|
1949
|
+
contribuyente_id?: number;
|
|
1950
|
+
/** @maxLength (50) @optional */
|
|
1951
|
+
cuenta_id?: string;
|
|
1952
|
+
/** @maxLength (150) @optional */
|
|
1953
|
+
calle?: string;
|
|
1954
|
+
/** @maxLength (20) @optional */
|
|
1955
|
+
numero?: string;
|
|
1956
|
+
/** @maxLength (100) @optional */
|
|
1957
|
+
colonia?: string;
|
|
1958
|
+
/** @maxLength (9) @nullable @optional */
|
|
1959
|
+
latitud?: number;
|
|
1960
|
+
/** @maxLength (9) @nullable @optional */
|
|
1961
|
+
longitud?: number;
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
/**
|
|
1965
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de ContribuyenteDomicilio.
|
|
1966
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
1967
|
+
*/
|
|
1968
|
+
interface ContribuyenteDomicilioQuery extends BaseQuery {
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
interface ContribuyenteDTO {
|
|
1972
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
1973
|
+
contribuyente_id: number;
|
|
1974
|
+
/** @maxLength (50) */
|
|
1975
|
+
cuenta_id: string;
|
|
1976
|
+
/** @maxLength (150) */
|
|
1977
|
+
propietario: string;
|
|
1978
|
+
/** @foreignKey (cat_tipo_suelo.tipo_suelo_id) @maxLength (4) */
|
|
1979
|
+
tipo_suelo_id: number;
|
|
1980
|
+
/** @foreignKey (cat_tipo_tarifa.tipo_tarifa_id) @maxLength (4) */
|
|
1981
|
+
tipo_tarifa_id: number;
|
|
1982
|
+
/** @foreignKey (cat_tipo_servicio.tipo_servicio_id) @maxLength (4) */
|
|
1983
|
+
tipo_servicio_id: number;
|
|
1984
|
+
/** @foreignKey (cat_plaza.plaza_id) @maxLength (4) */
|
|
1985
|
+
plaza_id: number;
|
|
1986
|
+
}
|
|
1987
|
+
interface ContribuyenteCreateDTO {
|
|
1988
|
+
/** @maxLength (50) */
|
|
1989
|
+
cuenta_id: string;
|
|
1990
|
+
/** @maxLength (150) */
|
|
1991
|
+
propietario: string;
|
|
1992
|
+
/** @foreignKey (cat_tipo_suelo.tipo_suelo_id) @maxLength (4) */
|
|
1993
|
+
tipo_suelo_id: number;
|
|
1994
|
+
/** @foreignKey (cat_tipo_tarifa.tipo_tarifa_id) @maxLength (4) */
|
|
1995
|
+
tipo_tarifa_id: number;
|
|
1996
|
+
/** @foreignKey (cat_tipo_servicio.tipo_servicio_id) @maxLength (4) */
|
|
1997
|
+
tipo_servicio_id: number;
|
|
1998
|
+
/** @foreignKey (cat_plaza.plaza_id) @maxLength (4) */
|
|
1999
|
+
plaza_id: number;
|
|
2000
|
+
}
|
|
2001
|
+
interface ContribuyenteUpdateDTO {
|
|
2002
|
+
/** @maxLength (50) @optional */
|
|
2003
|
+
cuenta_id?: string;
|
|
2004
|
+
/** @maxLength (150) @optional */
|
|
2005
|
+
propietario?: string;
|
|
2006
|
+
/** @foreignKey (cat_tipo_suelo.tipo_suelo_id) @maxLength (4) @optional */
|
|
2007
|
+
tipo_suelo_id?: number;
|
|
2008
|
+
/** @foreignKey (cat_tipo_tarifa.tipo_tarifa_id) @maxLength (4) @optional */
|
|
2009
|
+
tipo_tarifa_id?: number;
|
|
2010
|
+
/** @foreignKey (cat_tipo_servicio.tipo_servicio_id) @maxLength (4) @optional */
|
|
2011
|
+
tipo_servicio_id?: number;
|
|
2012
|
+
/** @foreignKey (cat_plaza.plaza_id) @maxLength (4) @optional */
|
|
2013
|
+
plaza_id?: number;
|
|
2014
|
+
}
|
|
2015
|
+
|
|
2016
|
+
/**
|
|
2017
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Contribuyente.
|
|
2018
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2019
|
+
*/
|
|
2020
|
+
interface ContribuyenteQuery extends BaseQuery {
|
|
2021
|
+
}
|
|
2022
|
+
|
|
2023
|
+
interface CatTipoTarifaDTO {
|
|
2024
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2025
|
+
tipo_tarifa_id: number;
|
|
2026
|
+
/** @maxLength (100) */
|
|
2027
|
+
tipo_tarifa: string;
|
|
2028
|
+
}
|
|
2029
|
+
interface CatTipoTarifaCreateDTO {
|
|
2030
|
+
/** @maxLength (100) */
|
|
2031
|
+
tipo_tarifa: string;
|
|
2032
|
+
}
|
|
2033
|
+
interface CatTipoTarifaUpdateDTO {
|
|
2034
|
+
/** @maxLength (100) @optional */
|
|
2035
|
+
tipo_tarifa?: string;
|
|
2036
|
+
}
|
|
2037
|
+
|
|
2038
|
+
/**
|
|
2039
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatTipoTarifa.
|
|
2040
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2041
|
+
*/
|
|
2042
|
+
interface CatTipoTarifaQuery extends BaseQuery {
|
|
2043
|
+
}
|
|
2044
|
+
|
|
2045
|
+
interface CatTipoSueloDTO {
|
|
2046
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2047
|
+
tipo_suelo_id: number;
|
|
2048
|
+
/** @maxLength (100) */
|
|
2049
|
+
tipo_suelo: string;
|
|
2050
|
+
}
|
|
2051
|
+
interface CatTipoSueloCreateDTO {
|
|
2052
|
+
/** @maxLength (100) */
|
|
2053
|
+
tipo_suelo: string;
|
|
2054
|
+
}
|
|
2055
|
+
interface CatTipoSueloUpdateDTO {
|
|
2056
|
+
/** @maxLength (100) @optional */
|
|
2057
|
+
tipo_suelo?: string;
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
/**
|
|
2061
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatTipoSuelo.
|
|
2062
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2063
|
+
*/
|
|
2064
|
+
interface CatTipoSueloQuery extends BaseQuery {
|
|
2065
|
+
}
|
|
2066
|
+
|
|
2067
|
+
interface CatTipoServicioDTO {
|
|
2068
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2069
|
+
tipo_servicio_id: number;
|
|
2070
|
+
/** @maxLength (100) */
|
|
2071
|
+
tipo_servicio: string;
|
|
2072
|
+
}
|
|
2073
|
+
interface CatTipoServicioCreateDTO {
|
|
2074
|
+
/** @maxLength (100) */
|
|
2075
|
+
tipo_servicio: string;
|
|
2076
|
+
}
|
|
2077
|
+
interface CatTipoServicioUpdateDTO {
|
|
2078
|
+
/** @maxLength (100) @optional */
|
|
2079
|
+
tipo_servicio?: string;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
/**
|
|
2083
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatTipoServicio.
|
|
2084
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2085
|
+
*/
|
|
2086
|
+
interface CatTipoServicioQuery extends BaseQuery {
|
|
2087
|
+
}
|
|
2088
|
+
|
|
2089
|
+
interface CatTipoParametroDTO {
|
|
2090
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2091
|
+
cat_tipo_parametro_id: number;
|
|
2092
|
+
/** @maxLength (100) */
|
|
2093
|
+
nombre: string;
|
|
2094
|
+
/** @maxLength (255) @nullable */
|
|
2095
|
+
descripcion?: string;
|
|
2096
|
+
}
|
|
2097
|
+
interface CatTipoParametroCreateDTO {
|
|
2098
|
+
/** @maxLength (100) */
|
|
2099
|
+
nombre: string;
|
|
2100
|
+
/** @maxLength (255) @nullable */
|
|
2101
|
+
descripcion?: string;
|
|
2102
|
+
}
|
|
2103
|
+
interface CatTipoParametroUpdateDTO {
|
|
2104
|
+
/** @maxLength (100) @optional */
|
|
2105
|
+
nombre?: string;
|
|
2106
|
+
/** @maxLength (255) @nullable @optional */
|
|
2107
|
+
descripcion?: string;
|
|
2108
|
+
}
|
|
2109
|
+
|
|
2110
|
+
/**
|
|
2111
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatTipoParametro.
|
|
2112
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2113
|
+
*/
|
|
2114
|
+
interface CatTipoParametroQuery extends BaseQuery {
|
|
2115
|
+
}
|
|
2116
|
+
|
|
2117
|
+
interface CatRolGrupoDTO {
|
|
2118
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2119
|
+
cat_rol_grupo_id: number;
|
|
2120
|
+
/** @maxLength (200) */
|
|
2121
|
+
nombre: string;
|
|
2122
|
+
}
|
|
2123
|
+
interface CatRolGrupoCreateDTO {
|
|
2124
|
+
/** @maxLength (200) */
|
|
2125
|
+
nombre: string;
|
|
2126
|
+
}
|
|
2127
|
+
interface CatRolGrupoUpdateDTO {
|
|
2128
|
+
/** @maxLength (200) @optional */
|
|
2129
|
+
nombre?: string;
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
/**
|
|
2133
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatRolGrupo.
|
|
2134
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2135
|
+
*/
|
|
2136
|
+
interface CatRolGrupoQuery extends BaseQuery {
|
|
2137
|
+
}
|
|
2138
|
+
|
|
2139
|
+
interface CatPlazaDTO {
|
|
2140
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2141
|
+
plaza_id: number;
|
|
2142
|
+
/** @maxLength (150) */
|
|
2143
|
+
nombre: string;
|
|
2144
|
+
/** @maxLength (150) */
|
|
2145
|
+
municipio: string;
|
|
2146
|
+
/** @maxLength (255) @nullable */
|
|
2147
|
+
imagen?: string;
|
|
2148
|
+
/** @maxLength (5) @nullable */
|
|
2149
|
+
latitud?: number;
|
|
2150
|
+
/** @maxLength (5) @nullable */
|
|
2151
|
+
longitud?: number;
|
|
2152
|
+
}
|
|
2153
|
+
interface CatPlazaCreateDTO {
|
|
2154
|
+
/** @maxLength (150) */
|
|
2155
|
+
nombre: string;
|
|
2156
|
+
/** @maxLength (150) */
|
|
2157
|
+
municipio: string;
|
|
2158
|
+
/** @maxLength (255) @nullable */
|
|
2159
|
+
imagen?: string;
|
|
2160
|
+
/** @maxLength (5) @nullable */
|
|
2161
|
+
latitud?: number;
|
|
2162
|
+
/** @maxLength (5) @nullable */
|
|
2163
|
+
longitud?: number;
|
|
2164
|
+
}
|
|
2165
|
+
interface CatPlazaUpdateDTO {
|
|
2166
|
+
/** @maxLength (150) @optional */
|
|
2167
|
+
nombre?: string;
|
|
2168
|
+
/** @maxLength (150) @optional */
|
|
2169
|
+
municipio?: string;
|
|
2170
|
+
/** @maxLength (255) @nullable @optional */
|
|
2171
|
+
imagen?: string;
|
|
2172
|
+
/** @maxLength (5) @nullable @optional */
|
|
2173
|
+
latitud?: number;
|
|
2174
|
+
/** @maxLength (5) @nullable @optional */
|
|
2175
|
+
longitud?: number;
|
|
2176
|
+
}
|
|
2177
|
+
|
|
2178
|
+
/**
|
|
2179
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatPlaza.
|
|
2180
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2181
|
+
*/
|
|
2182
|
+
interface CatPlazaQuery extends BaseQuery {
|
|
2183
|
+
}
|
|
2184
|
+
|
|
2185
|
+
interface CatGraficaGrupoDTO {
|
|
2186
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2187
|
+
cat_grafica_grupo_id: number;
|
|
2188
|
+
/** @maxLength (200) */
|
|
2189
|
+
nombre: string;
|
|
2190
|
+
/** @maxLength (510) @nullable */
|
|
2191
|
+
descripcion?: string;
|
|
2192
|
+
}
|
|
2193
|
+
interface CatGraficaGrupoCreateDTO {
|
|
2194
|
+
/** @maxLength (200) */
|
|
2195
|
+
nombre: string;
|
|
2196
|
+
/** @maxLength (510) @nullable */
|
|
2197
|
+
descripcion?: string;
|
|
2198
|
+
}
|
|
2199
|
+
interface CatGraficaGrupoUpdateDTO {
|
|
2200
|
+
/** @maxLength (200) @optional */
|
|
2201
|
+
nombre?: string;
|
|
2202
|
+
/** @maxLength (510) @nullable @optional */
|
|
2203
|
+
descripcion?: string;
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2206
|
+
/**
|
|
2207
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatGraficaGrupo.
|
|
2208
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2209
|
+
*/
|
|
2210
|
+
interface CatGraficaGrupoQuery extends BaseQuery {
|
|
2211
|
+
}
|
|
2212
|
+
|
|
2213
|
+
interface CatFechaAgrupacionDTO {
|
|
2214
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2215
|
+
fecha_agrupacion_id: number;
|
|
2216
|
+
/** @maxLength (100) @nullable */
|
|
2217
|
+
nombre?: string;
|
|
2218
|
+
/** @maxLength (200) @nullable */
|
|
2219
|
+
descripcion?: string;
|
|
2220
|
+
}
|
|
2221
|
+
interface CatFechaAgrupacionCreateDTO {
|
|
2222
|
+
/** @maxLength (100) @nullable */
|
|
2223
|
+
nombre?: string;
|
|
2224
|
+
/** @maxLength (200) @nullable */
|
|
2225
|
+
descripcion?: string;
|
|
2226
|
+
}
|
|
2227
|
+
interface CatFechaAgrupacionUpdateDTO {
|
|
2228
|
+
/** @maxLength (100) @nullable @optional */
|
|
2229
|
+
nombre?: string;
|
|
2230
|
+
/** @maxLength (200) @nullable @optional */
|
|
2231
|
+
descripcion?: string;
|
|
2232
|
+
}
|
|
2233
|
+
|
|
2234
|
+
/**
|
|
2235
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatFechaAgrupacion.
|
|
2236
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2237
|
+
*/
|
|
2238
|
+
interface CatFechaAgrupacionQuery extends BaseQuery {
|
|
2239
|
+
}
|
|
2240
|
+
|
|
2241
|
+
interface CatEntidadDTO {
|
|
2242
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2243
|
+
cat_entidad_id: number;
|
|
2244
|
+
/** @maxLength (100) @nullable */
|
|
2245
|
+
cat_entidad_nombre?: string;
|
|
2246
|
+
/** @maxLength (-1) @nullable */
|
|
2247
|
+
cat_entidad_status?: string;
|
|
2248
|
+
}
|
|
2249
|
+
interface CatEntidadCreateDTO {
|
|
2250
|
+
/** @maxLength (100) @nullable */
|
|
2251
|
+
cat_entidad_nombre?: string;
|
|
2252
|
+
/** @maxLength (-1) @nullable */
|
|
2253
|
+
cat_entidad_status?: string;
|
|
2254
|
+
}
|
|
2255
|
+
interface CatEntidadUpdateDTO {
|
|
2256
|
+
/** @maxLength (100) @nullable @optional */
|
|
2257
|
+
cat_entidad_nombre?: string;
|
|
2258
|
+
/** @maxLength (-1) @nullable @optional */
|
|
2259
|
+
cat_entidad_status?: string;
|
|
2260
|
+
}
|
|
2261
|
+
|
|
2262
|
+
/**
|
|
2263
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatEntidad.
|
|
2264
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2265
|
+
*/
|
|
2266
|
+
interface CatEntidadQuery extends BaseQuery {
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2269
|
+
interface CatConceptoPagoDTO {
|
|
2270
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2271
|
+
id: number;
|
|
2272
|
+
/** @maxLength (100) */
|
|
2273
|
+
nombre: string;
|
|
2274
|
+
/** @maxLength (255) @nullable */
|
|
2275
|
+
descripcion?: string;
|
|
2276
|
+
}
|
|
2277
|
+
interface CatConceptoPagoCreateDTO {
|
|
2278
|
+
/** @maxLength (100) */
|
|
2279
|
+
nombre: string;
|
|
2280
|
+
/** @maxLength (255) @nullable */
|
|
2281
|
+
descripcion?: string;
|
|
2282
|
+
}
|
|
2283
|
+
interface CatConceptoPagoUpdateDTO {
|
|
2284
|
+
/** @maxLength (100) @optional */
|
|
2285
|
+
nombre?: string;
|
|
2286
|
+
/** @maxLength (255) @nullable @optional */
|
|
2287
|
+
descripcion?: string;
|
|
2288
|
+
}
|
|
2289
|
+
|
|
2290
|
+
/**
|
|
2291
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatConceptoPago.
|
|
2292
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2293
|
+
*/
|
|
2294
|
+
interface CatConceptoPagoQuery extends BaseQuery {
|
|
2295
|
+
}
|
|
2296
|
+
|
|
2297
|
+
interface CatAccionDTO {
|
|
2298
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2299
|
+
cat_accion_id: number;
|
|
2300
|
+
/** @maxLength (100) @nullable */
|
|
2301
|
+
cat_accion_nombre?: string;
|
|
2302
|
+
/** @maxLength (-1) @nullable */
|
|
2303
|
+
cat_accion_status?: string;
|
|
2304
|
+
}
|
|
2305
|
+
interface CatAccionCreateDTO {
|
|
2306
|
+
/** @maxLength (100) @nullable */
|
|
2307
|
+
cat_accion_nombre?: string;
|
|
2308
|
+
/** @maxLength (-1) @nullable */
|
|
2309
|
+
cat_accion_status?: string;
|
|
2310
|
+
}
|
|
2311
|
+
interface CatAccionUpdateDTO {
|
|
2312
|
+
/** @maxLength (100) @nullable @optional */
|
|
2313
|
+
cat_accion_nombre?: string;
|
|
2314
|
+
/** @maxLength (-1) @nullable @optional */
|
|
2315
|
+
cat_accion_status?: string;
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2318
|
+
/**
|
|
2319
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de CatAccion.
|
|
2320
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2321
|
+
*/
|
|
2322
|
+
interface CatAccionQuery extends BaseQuery {
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
interface AdeudoDTO {
|
|
2326
|
+
/** @maxLength (4) @identity @primaryKey */
|
|
2327
|
+
id: number;
|
|
2328
|
+
/** @maxLength (4) */
|
|
2329
|
+
cuenta_id: number;
|
|
2330
|
+
/** @maxLength (9) */
|
|
2331
|
+
total: number;
|
|
2332
|
+
/** @maxLength (50) */
|
|
2333
|
+
periodo_de_adeudo: string;
|
|
2334
|
+
/** @maxLength (3) @nullable */
|
|
2335
|
+
ultimo_pago?: string;
|
|
2336
|
+
/** @maxLength (3) */
|
|
2337
|
+
fecha_actualizacion: string;
|
|
2338
|
+
/** @maxLength (3) */
|
|
2339
|
+
fecha_corte: string;
|
|
2340
|
+
/** @foreignKey (cat_concepto_pago.id) @maxLength (4) @nullable */
|
|
2341
|
+
concepto_id?: number;
|
|
2342
|
+
}
|
|
2343
|
+
interface AdeudoCreateDTO {
|
|
2344
|
+
/** @maxLength (4) */
|
|
2345
|
+
cuenta_id: number;
|
|
2346
|
+
/** @maxLength (9) */
|
|
2347
|
+
total: number;
|
|
2348
|
+
/** @maxLength (50) */
|
|
2349
|
+
periodo_de_adeudo: string;
|
|
2350
|
+
/** @maxLength (3) @nullable */
|
|
2351
|
+
ultimo_pago?: string;
|
|
2352
|
+
/** @maxLength (3) */
|
|
2353
|
+
fecha_actualizacion: string;
|
|
2354
|
+
/** @maxLength (3) */
|
|
2355
|
+
fecha_corte: string;
|
|
2356
|
+
/** @foreignKey (cat_concepto_pago.id) @maxLength (4) @nullable */
|
|
2357
|
+
concepto_id?: number;
|
|
2358
|
+
}
|
|
2359
|
+
interface AdeudoUpdateDTO {
|
|
2360
|
+
/** @maxLength (4) @optional */
|
|
2361
|
+
cuenta_id?: number;
|
|
2362
|
+
/** @maxLength (9) @optional */
|
|
2363
|
+
total?: number;
|
|
2364
|
+
/** @maxLength (50) @optional */
|
|
2365
|
+
periodo_de_adeudo?: string;
|
|
2366
|
+
/** @maxLength (3) @nullable @optional */
|
|
2367
|
+
ultimo_pago?: string;
|
|
2368
|
+
/** @maxLength (3) @optional */
|
|
2369
|
+
fecha_actualizacion?: string;
|
|
2370
|
+
/** @maxLength (3) @optional */
|
|
2371
|
+
fecha_corte?: string;
|
|
2372
|
+
/** @foreignKey (cat_concepto_pago.id) @maxLength (4) @nullable @optional */
|
|
2373
|
+
concepto_id?: number;
|
|
2374
|
+
}
|
|
2375
|
+
|
|
2376
|
+
interface GetByIdParams<TQuery extends BaseQuery> {
|
|
2377
|
+
id: string | number;
|
|
2378
|
+
params?: TQuery;
|
|
2379
|
+
}
|
|
2380
|
+
interface CreateParams<TCreate extends object, TQuery extends BaseQuery> {
|
|
2381
|
+
data: TCreate;
|
|
2382
|
+
params?: TQuery;
|
|
2383
|
+
}
|
|
2384
|
+
interface UpdateParams<TUpdate extends object, TQuery extends BaseQuery> {
|
|
2385
|
+
id: string | number;
|
|
2386
|
+
data: TUpdate;
|
|
2387
|
+
params?: TQuery;
|
|
2388
|
+
}
|
|
2389
|
+
interface DeleteParams<TQuery extends BaseQuery> {
|
|
2390
|
+
id: string | number;
|
|
2391
|
+
params?: TQuery;
|
|
2392
|
+
}
|
|
2393
|
+
interface QueryParams<TQuery extends BaseQuery> {
|
|
2394
|
+
params?: TQuery;
|
|
2395
|
+
}
|
|
2396
|
+
interface FilterMatchBody {
|
|
2397
|
+
pagination: {
|
|
2398
|
+
limit: number;
|
|
2399
|
+
page: number;
|
|
2400
|
+
};
|
|
2401
|
+
filter: string;
|
|
2402
|
+
orderBy: string;
|
|
2403
|
+
}
|
|
2404
|
+
interface FilterMatchParams<TQuery extends BaseQuery = BaseQuery> {
|
|
2405
|
+
body: FilterMatchBody;
|
|
2406
|
+
params?: TQuery;
|
|
2407
|
+
}
|
|
2408
|
+
|
|
2409
|
+
/**
|
|
2410
|
+
* @description aqui se define la interfaz de la query que se usará para las peticiones de Adeudo.
|
|
2411
|
+
* Extiende de BaseQuery para incluir los parámetros comunes de paginación y ordenación.
|
|
2412
|
+
*/
|
|
2413
|
+
interface AdeudoQuery extends BaseQuery {
|
|
2414
|
+
}
|
|
2415
|
+
|
|
2416
|
+
/** @description Hook para useFetchById de la entidad adeudo */
|
|
2417
|
+
declare const useFetchByIdAdeudo: (params: GetByIdParams<AdeudoQuery>) => {
|
|
2418
|
+
data: AdeudoDTO | null;
|
|
2419
|
+
error: Error | null;
|
|
2420
|
+
isFetching: boolean;
|
|
2421
|
+
isLoading: boolean;
|
|
2422
|
+
refetch: () => Promise<void>;
|
|
2423
|
+
};
|
|
2424
|
+
/** @description Hook para useFetchList de la entidad adeudo */
|
|
2425
|
+
declare const useFetchListAdeudo: (params: QueryParams<AdeudoQuery>) => {
|
|
2426
|
+
data: AdeudoDTO[] | null;
|
|
2427
|
+
error: Error | null;
|
|
2428
|
+
isFetching: boolean;
|
|
2429
|
+
isLoading: boolean;
|
|
2430
|
+
refetch: () => Promise<void>;
|
|
2431
|
+
};
|
|
2432
|
+
/** @description Hook para useCreate de la entidad adeudo */
|
|
2433
|
+
declare const useCreateAdeudo: () => {
|
|
2434
|
+
mutate: (params: CreateParams<AdeudoCreateDTO, AdeudoQuery>) => Promise<AdeudoDTO | null>;
|
|
2435
|
+
isLoading: boolean;
|
|
2436
|
+
error: Error | null;
|
|
2437
|
+
data: AdeudoDTO | null;
|
|
2438
|
+
};
|
|
2439
|
+
/** @description Hook para useUpdate de la entidad adeudo */
|
|
2440
|
+
declare const useUpdateAdeudo: () => {
|
|
2441
|
+
mutate: (params: UpdateParams<AdeudoUpdateDTO, AdeudoQuery>) => Promise<AdeudoDTO | null>;
|
|
2442
|
+
isLoading: boolean;
|
|
2443
|
+
error: Error | null;
|
|
2444
|
+
data: AdeudoDTO | null;
|
|
2445
|
+
};
|
|
2446
|
+
/** @description Hook para useDelete de la entidad adeudo */
|
|
2447
|
+
declare const useDeleteAdeudo: () => {
|
|
2448
|
+
mutate: (params: DeleteParams<AdeudoQuery>) => Promise<boolean>;
|
|
2449
|
+
isLoading: boolean;
|
|
2450
|
+
error: Error | null;
|
|
2451
|
+
success: boolean;
|
|
2452
|
+
};
|
|
2453
|
+
/** @description Hook para useFilterMatch de la entidad adeudo */
|
|
2454
|
+
declare const useFilterMatchAdeudo: (params: FilterMatchParams<AdeudoQuery>) => {
|
|
2455
|
+
data: AdeudoDTO[] | null;
|
|
2456
|
+
error: Error | null;
|
|
2457
|
+
isFetching: boolean;
|
|
2458
|
+
isLoading: boolean;
|
|
2459
|
+
refetch: () => Promise<void>;
|
|
2460
|
+
};
|
|
2461
|
+
/** @description Hook para useFetchById de la entidad cat_accion */
|
|
2462
|
+
declare const useFetchByIdCatAccion: (params: GetByIdParams<CatAccionQuery>) => {
|
|
2463
|
+
data: CatAccionDTO | null;
|
|
2464
|
+
error: Error | null;
|
|
2465
|
+
isFetching: boolean;
|
|
2466
|
+
isLoading: boolean;
|
|
2467
|
+
refetch: () => Promise<void>;
|
|
2468
|
+
};
|
|
2469
|
+
/** @description Hook para useFetchList de la entidad cat_accion */
|
|
2470
|
+
declare const useFetchListCatAccion: (params: QueryParams<CatAccionQuery>) => {
|
|
2471
|
+
data: CatAccionDTO[] | null;
|
|
2472
|
+
error: Error | null;
|
|
2473
|
+
isFetching: boolean;
|
|
2474
|
+
isLoading: boolean;
|
|
2475
|
+
refetch: () => Promise<void>;
|
|
2476
|
+
};
|
|
2477
|
+
/** @description Hook para useCreate de la entidad cat_accion */
|
|
2478
|
+
declare const useCreateCatAccion: () => {
|
|
2479
|
+
mutate: (params: CreateParams<CatAccionCreateDTO, CatAccionQuery>) => Promise<CatAccionDTO | null>;
|
|
2480
|
+
isLoading: boolean;
|
|
2481
|
+
error: Error | null;
|
|
2482
|
+
data: CatAccionDTO | null;
|
|
2483
|
+
};
|
|
2484
|
+
/** @description Hook para useUpdate de la entidad cat_accion */
|
|
2485
|
+
declare const useUpdateCatAccion: () => {
|
|
2486
|
+
mutate: (params: UpdateParams<CatAccionUpdateDTO, CatAccionQuery>) => Promise<CatAccionDTO | null>;
|
|
2487
|
+
isLoading: boolean;
|
|
2488
|
+
error: Error | null;
|
|
2489
|
+
data: CatAccionDTO | null;
|
|
2490
|
+
};
|
|
2491
|
+
/** @description Hook para useDelete de la entidad cat_accion */
|
|
2492
|
+
declare const useDeleteCatAccion: () => {
|
|
2493
|
+
mutate: (params: DeleteParams<CatAccionQuery>) => Promise<boolean>;
|
|
2494
|
+
isLoading: boolean;
|
|
2495
|
+
error: Error | null;
|
|
2496
|
+
success: boolean;
|
|
2497
|
+
};
|
|
2498
|
+
/** @description Hook para useFilterMatch de la entidad cat_accion */
|
|
2499
|
+
declare const useFilterMatchCatAccion: (params: FilterMatchParams<CatAccionQuery>) => {
|
|
2500
|
+
data: CatAccionDTO[] | null;
|
|
2501
|
+
error: Error | null;
|
|
2502
|
+
isFetching: boolean;
|
|
2503
|
+
isLoading: boolean;
|
|
2504
|
+
refetch: () => Promise<void>;
|
|
2505
|
+
};
|
|
2506
|
+
/** @description Hook para useFetchById de la entidad cat_concepto_pago */
|
|
2507
|
+
declare const useFetchByIdCatConceptoPago: (params: GetByIdParams<CatConceptoPagoQuery>) => {
|
|
2508
|
+
data: CatConceptoPagoDTO | null;
|
|
2509
|
+
error: Error | null;
|
|
2510
|
+
isFetching: boolean;
|
|
2511
|
+
isLoading: boolean;
|
|
2512
|
+
refetch: () => Promise<void>;
|
|
2513
|
+
};
|
|
2514
|
+
/** @description Hook para useFetchList de la entidad cat_concepto_pago */
|
|
2515
|
+
declare const useFetchListCatConceptoPago: (params: QueryParams<CatConceptoPagoQuery>) => {
|
|
2516
|
+
data: CatConceptoPagoDTO[] | null;
|
|
2517
|
+
error: Error | null;
|
|
2518
|
+
isFetching: boolean;
|
|
2519
|
+
isLoading: boolean;
|
|
2520
|
+
refetch: () => Promise<void>;
|
|
2521
|
+
};
|
|
2522
|
+
/** @description Hook para useCreate de la entidad cat_concepto_pago */
|
|
2523
|
+
declare const useCreateCatConceptoPago: () => {
|
|
2524
|
+
mutate: (params: CreateParams<CatConceptoPagoCreateDTO, CatConceptoPagoQuery>) => Promise<CatConceptoPagoDTO | null>;
|
|
2525
|
+
isLoading: boolean;
|
|
2526
|
+
error: Error | null;
|
|
2527
|
+
data: CatConceptoPagoDTO | null;
|
|
2528
|
+
};
|
|
2529
|
+
/** @description Hook para useUpdate de la entidad cat_concepto_pago */
|
|
2530
|
+
declare const useUpdateCatConceptoPago: () => {
|
|
2531
|
+
mutate: (params: UpdateParams<CatConceptoPagoUpdateDTO, CatConceptoPagoQuery>) => Promise<CatConceptoPagoDTO | null>;
|
|
2532
|
+
isLoading: boolean;
|
|
2533
|
+
error: Error | null;
|
|
2534
|
+
data: CatConceptoPagoDTO | null;
|
|
2535
|
+
};
|
|
2536
|
+
/** @description Hook para useDelete de la entidad cat_concepto_pago */
|
|
2537
|
+
declare const useDeleteCatConceptoPago: () => {
|
|
2538
|
+
mutate: (params: DeleteParams<CatConceptoPagoQuery>) => Promise<boolean>;
|
|
2539
|
+
isLoading: boolean;
|
|
2540
|
+
error: Error | null;
|
|
2541
|
+
success: boolean;
|
|
2542
|
+
};
|
|
2543
|
+
/** @description Hook para useFilterMatch de la entidad cat_concepto_pago */
|
|
2544
|
+
declare const useFilterMatchCatConceptoPago: (params: FilterMatchParams<CatConceptoPagoQuery>) => {
|
|
2545
|
+
data: CatConceptoPagoDTO[] | null;
|
|
2546
|
+
error: Error | null;
|
|
2547
|
+
isFetching: boolean;
|
|
2548
|
+
isLoading: boolean;
|
|
2549
|
+
refetch: () => Promise<void>;
|
|
2550
|
+
};
|
|
2551
|
+
/** @description Hook para useFetchById de la entidad cat_entidad */
|
|
2552
|
+
declare const useFetchByIdCatEntidad: (params: GetByIdParams<CatEntidadQuery>) => {
|
|
2553
|
+
data: CatEntidadDTO | null;
|
|
2554
|
+
error: Error | null;
|
|
2555
|
+
isFetching: boolean;
|
|
2556
|
+
isLoading: boolean;
|
|
2557
|
+
refetch: () => Promise<void>;
|
|
2558
|
+
};
|
|
2559
|
+
/** @description Hook para useFetchList de la entidad cat_entidad */
|
|
2560
|
+
declare const useFetchListCatEntidad: (params: QueryParams<CatEntidadQuery>) => {
|
|
2561
|
+
data: CatEntidadDTO[] | null;
|
|
2562
|
+
error: Error | null;
|
|
2563
|
+
isFetching: boolean;
|
|
2564
|
+
isLoading: boolean;
|
|
2565
|
+
refetch: () => Promise<void>;
|
|
2566
|
+
};
|
|
2567
|
+
/** @description Hook para useCreate de la entidad cat_entidad */
|
|
2568
|
+
declare const useCreateCatEntidad: () => {
|
|
2569
|
+
mutate: (params: CreateParams<CatEntidadCreateDTO, CatEntidadQuery>) => Promise<CatEntidadDTO | null>;
|
|
2570
|
+
isLoading: boolean;
|
|
2571
|
+
error: Error | null;
|
|
2572
|
+
data: CatEntidadDTO | null;
|
|
2573
|
+
};
|
|
2574
|
+
/** @description Hook para useUpdate de la entidad cat_entidad */
|
|
2575
|
+
declare const useUpdateCatEntidad: () => {
|
|
2576
|
+
mutate: (params: UpdateParams<CatEntidadUpdateDTO, CatEntidadQuery>) => Promise<CatEntidadDTO | null>;
|
|
2577
|
+
isLoading: boolean;
|
|
2578
|
+
error: Error | null;
|
|
2579
|
+
data: CatEntidadDTO | null;
|
|
2580
|
+
};
|
|
2581
|
+
/** @description Hook para useDelete de la entidad cat_entidad */
|
|
2582
|
+
declare const useDeleteCatEntidad: () => {
|
|
2583
|
+
mutate: (params: DeleteParams<CatEntidadQuery>) => Promise<boolean>;
|
|
2584
|
+
isLoading: boolean;
|
|
2585
|
+
error: Error | null;
|
|
2586
|
+
success: boolean;
|
|
2587
|
+
};
|
|
2588
|
+
/** @description Hook para useFilterMatch de la entidad cat_entidad */
|
|
2589
|
+
declare const useFilterMatchCatEntidad: (params: FilterMatchParams<CatEntidadQuery>) => {
|
|
2590
|
+
data: CatEntidadDTO[] | null;
|
|
2591
|
+
error: Error | null;
|
|
2592
|
+
isFetching: boolean;
|
|
2593
|
+
isLoading: boolean;
|
|
2594
|
+
refetch: () => Promise<void>;
|
|
2595
|
+
};
|
|
2596
|
+
/** @description Hook para useFetchById de la entidad cat_fecha_agrupacion */
|
|
2597
|
+
declare const useFetchByIdCatFechaAgrupacion: (params: GetByIdParams<CatFechaAgrupacionQuery>) => {
|
|
2598
|
+
data: CatFechaAgrupacionDTO | null;
|
|
2599
|
+
error: Error | null;
|
|
2600
|
+
isFetching: boolean;
|
|
2601
|
+
isLoading: boolean;
|
|
2602
|
+
refetch: () => Promise<void>;
|
|
2603
|
+
};
|
|
2604
|
+
/** @description Hook para useFetchList de la entidad cat_fecha_agrupacion */
|
|
2605
|
+
declare const useFetchListCatFechaAgrupacion: (params: QueryParams<CatFechaAgrupacionQuery>) => {
|
|
2606
|
+
data: CatFechaAgrupacionDTO[] | null;
|
|
2607
|
+
error: Error | null;
|
|
2608
|
+
isFetching: boolean;
|
|
2609
|
+
isLoading: boolean;
|
|
2610
|
+
refetch: () => Promise<void>;
|
|
2611
|
+
};
|
|
2612
|
+
/** @description Hook para useCreate de la entidad cat_fecha_agrupacion */
|
|
2613
|
+
declare const useCreateCatFechaAgrupacion: () => {
|
|
2614
|
+
mutate: (params: CreateParams<CatFechaAgrupacionCreateDTO, CatFechaAgrupacionQuery>) => Promise<CatFechaAgrupacionDTO | null>;
|
|
2615
|
+
isLoading: boolean;
|
|
2616
|
+
error: Error | null;
|
|
2617
|
+
data: CatFechaAgrupacionDTO | null;
|
|
2618
|
+
};
|
|
2619
|
+
/** @description Hook para useUpdate de la entidad cat_fecha_agrupacion */
|
|
2620
|
+
declare const useUpdateCatFechaAgrupacion: () => {
|
|
2621
|
+
mutate: (params: UpdateParams<CatFechaAgrupacionUpdateDTO, CatFechaAgrupacionQuery>) => Promise<CatFechaAgrupacionDTO | null>;
|
|
2622
|
+
isLoading: boolean;
|
|
2623
|
+
error: Error | null;
|
|
2624
|
+
data: CatFechaAgrupacionDTO | null;
|
|
2625
|
+
};
|
|
2626
|
+
/** @description Hook para useDelete de la entidad cat_fecha_agrupacion */
|
|
2627
|
+
declare const useDeleteCatFechaAgrupacion: () => {
|
|
2628
|
+
mutate: (params: DeleteParams<CatFechaAgrupacionQuery>) => Promise<boolean>;
|
|
2629
|
+
isLoading: boolean;
|
|
2630
|
+
error: Error | null;
|
|
2631
|
+
success: boolean;
|
|
2632
|
+
};
|
|
2633
|
+
/** @description Hook para useFilterMatch de la entidad cat_fecha_agrupacion */
|
|
2634
|
+
declare const useFilterMatchCatFechaAgrupacion: (params: FilterMatchParams<CatFechaAgrupacionQuery>) => {
|
|
2635
|
+
data: CatFechaAgrupacionDTO[] | null;
|
|
2636
|
+
error: Error | null;
|
|
2637
|
+
isFetching: boolean;
|
|
2638
|
+
isLoading: boolean;
|
|
2639
|
+
refetch: () => Promise<void>;
|
|
2640
|
+
};
|
|
2641
|
+
/** @description Hook para useFetchById de la entidad cat_grafica_grupo */
|
|
2642
|
+
declare const useFetchByIdCatGraficaGrupo: (params: GetByIdParams<CatGraficaGrupoQuery>) => {
|
|
2643
|
+
data: CatGraficaGrupoDTO | null;
|
|
2644
|
+
error: Error | null;
|
|
2645
|
+
isFetching: boolean;
|
|
2646
|
+
isLoading: boolean;
|
|
2647
|
+
refetch: () => Promise<void>;
|
|
2648
|
+
};
|
|
2649
|
+
/** @description Hook para useFetchList de la entidad cat_grafica_grupo */
|
|
2650
|
+
declare const useFetchListCatGraficaGrupo: (params: QueryParams<CatGraficaGrupoQuery>) => {
|
|
2651
|
+
data: CatGraficaGrupoDTO[] | null;
|
|
2652
|
+
error: Error | null;
|
|
2653
|
+
isFetching: boolean;
|
|
2654
|
+
isLoading: boolean;
|
|
2655
|
+
refetch: () => Promise<void>;
|
|
2656
|
+
};
|
|
2657
|
+
/** @description Hook para useCreate de la entidad cat_grafica_grupo */
|
|
2658
|
+
declare const useCreateCatGraficaGrupo: () => {
|
|
2659
|
+
mutate: (params: CreateParams<CatGraficaGrupoCreateDTO, CatGraficaGrupoQuery>) => Promise<CatGraficaGrupoDTO | null>;
|
|
2660
|
+
isLoading: boolean;
|
|
2661
|
+
error: Error | null;
|
|
2662
|
+
data: CatGraficaGrupoDTO | null;
|
|
2663
|
+
};
|
|
2664
|
+
/** @description Hook para useUpdate de la entidad cat_grafica_grupo */
|
|
2665
|
+
declare const useUpdateCatGraficaGrupo: () => {
|
|
2666
|
+
mutate: (params: UpdateParams<CatGraficaGrupoUpdateDTO, CatGraficaGrupoQuery>) => Promise<CatGraficaGrupoDTO | null>;
|
|
2667
|
+
isLoading: boolean;
|
|
2668
|
+
error: Error | null;
|
|
2669
|
+
data: CatGraficaGrupoDTO | null;
|
|
2670
|
+
};
|
|
2671
|
+
/** @description Hook para useDelete de la entidad cat_grafica_grupo */
|
|
2672
|
+
declare const useDeleteCatGraficaGrupo: () => {
|
|
2673
|
+
mutate: (params: DeleteParams<CatGraficaGrupoQuery>) => Promise<boolean>;
|
|
2674
|
+
isLoading: boolean;
|
|
2675
|
+
error: Error | null;
|
|
2676
|
+
success: boolean;
|
|
2677
|
+
};
|
|
2678
|
+
/** @description Hook para useFilterMatch de la entidad cat_grafica_grupo */
|
|
2679
|
+
declare const useFilterMatchCatGraficaGrupo: (params: FilterMatchParams<CatGraficaGrupoQuery>) => {
|
|
2680
|
+
data: CatGraficaGrupoDTO[] | null;
|
|
2681
|
+
error: Error | null;
|
|
2682
|
+
isFetching: boolean;
|
|
2683
|
+
isLoading: boolean;
|
|
2684
|
+
refetch: () => Promise<void>;
|
|
2685
|
+
};
|
|
2686
|
+
/** @description Hook para useFetchById de la entidad cat_plaza */
|
|
2687
|
+
declare const useFetchByIdCatPlaza: (params: GetByIdParams<CatPlazaQuery>) => {
|
|
2688
|
+
data: CatPlazaDTO | null;
|
|
2689
|
+
error: Error | null;
|
|
2690
|
+
isFetching: boolean;
|
|
2691
|
+
isLoading: boolean;
|
|
2692
|
+
refetch: () => Promise<void>;
|
|
2693
|
+
};
|
|
2694
|
+
/** @description Hook para useFetchList de la entidad cat_plaza */
|
|
2695
|
+
declare const useFetchListCatPlaza: (params: QueryParams<CatPlazaQuery>) => {
|
|
2696
|
+
data: CatPlazaDTO[] | null;
|
|
2697
|
+
error: Error | null;
|
|
2698
|
+
isFetching: boolean;
|
|
2699
|
+
isLoading: boolean;
|
|
2700
|
+
refetch: () => Promise<void>;
|
|
2701
|
+
};
|
|
2702
|
+
/** @description Hook para useCreate de la entidad cat_plaza */
|
|
2703
|
+
declare const useCreateCatPlaza: () => {
|
|
2704
|
+
mutate: (params: CreateParams<CatPlazaCreateDTO, CatPlazaQuery>) => Promise<CatPlazaDTO | null>;
|
|
2705
|
+
isLoading: boolean;
|
|
2706
|
+
error: Error | null;
|
|
2707
|
+
data: CatPlazaDTO | null;
|
|
2708
|
+
};
|
|
2709
|
+
/** @description Hook para useUpdate de la entidad cat_plaza */
|
|
2710
|
+
declare const useUpdateCatPlaza: () => {
|
|
2711
|
+
mutate: (params: UpdateParams<CatPlazaUpdateDTO, CatPlazaQuery>) => Promise<CatPlazaDTO | null>;
|
|
2712
|
+
isLoading: boolean;
|
|
2713
|
+
error: Error | null;
|
|
2714
|
+
data: CatPlazaDTO | null;
|
|
2715
|
+
};
|
|
2716
|
+
/** @description Hook para useDelete de la entidad cat_plaza */
|
|
2717
|
+
declare const useDeleteCatPlaza: () => {
|
|
2718
|
+
mutate: (params: DeleteParams<CatPlazaQuery>) => Promise<boolean>;
|
|
2719
|
+
isLoading: boolean;
|
|
2720
|
+
error: Error | null;
|
|
2721
|
+
success: boolean;
|
|
2722
|
+
};
|
|
2723
|
+
/** @description Hook para useFilterMatch de la entidad cat_plaza */
|
|
2724
|
+
declare const useFilterMatchCatPlaza: (params: FilterMatchParams<CatPlazaQuery>) => {
|
|
2725
|
+
data: CatPlazaDTO[] | null;
|
|
2726
|
+
error: Error | null;
|
|
2727
|
+
isFetching: boolean;
|
|
2728
|
+
isLoading: boolean;
|
|
2729
|
+
refetch: () => Promise<void>;
|
|
2730
|
+
};
|
|
2731
|
+
/** @description Hook para useFetchById de la entidad cat_rol_grupo */
|
|
2732
|
+
declare const useFetchByIdCatRolGrupo: (params: GetByIdParams<CatRolGrupoQuery>) => {
|
|
2733
|
+
data: CatRolGrupoDTO | null;
|
|
2734
|
+
error: Error | null;
|
|
2735
|
+
isFetching: boolean;
|
|
2736
|
+
isLoading: boolean;
|
|
2737
|
+
refetch: () => Promise<void>;
|
|
2738
|
+
};
|
|
2739
|
+
/** @description Hook para useFetchList de la entidad cat_rol_grupo */
|
|
2740
|
+
declare const useFetchListCatRolGrupo: (params: QueryParams<CatRolGrupoQuery>) => {
|
|
2741
|
+
data: CatRolGrupoDTO[] | null;
|
|
2742
|
+
error: Error | null;
|
|
2743
|
+
isFetching: boolean;
|
|
2744
|
+
isLoading: boolean;
|
|
2745
|
+
refetch: () => Promise<void>;
|
|
2746
|
+
};
|
|
2747
|
+
/** @description Hook para useCreate de la entidad cat_rol_grupo */
|
|
2748
|
+
declare const useCreateCatRolGrupo: () => {
|
|
2749
|
+
mutate: (params: CreateParams<CatRolGrupoCreateDTO, CatRolGrupoQuery>) => Promise<CatRolGrupoDTO | null>;
|
|
2750
|
+
isLoading: boolean;
|
|
2751
|
+
error: Error | null;
|
|
2752
|
+
data: CatRolGrupoDTO | null;
|
|
2753
|
+
};
|
|
2754
|
+
/** @description Hook para useUpdate de la entidad cat_rol_grupo */
|
|
2755
|
+
declare const useUpdateCatRolGrupo: () => {
|
|
2756
|
+
mutate: (params: UpdateParams<CatRolGrupoUpdateDTO, CatRolGrupoQuery>) => Promise<CatRolGrupoDTO | null>;
|
|
2757
|
+
isLoading: boolean;
|
|
2758
|
+
error: Error | null;
|
|
2759
|
+
data: CatRolGrupoDTO | null;
|
|
2760
|
+
};
|
|
2761
|
+
/** @description Hook para useDelete de la entidad cat_rol_grupo */
|
|
2762
|
+
declare const useDeleteCatRolGrupo: () => {
|
|
2763
|
+
mutate: (params: DeleteParams<CatRolGrupoQuery>) => Promise<boolean>;
|
|
2764
|
+
isLoading: boolean;
|
|
2765
|
+
error: Error | null;
|
|
2766
|
+
success: boolean;
|
|
2767
|
+
};
|
|
2768
|
+
/** @description Hook para useFilterMatch de la entidad cat_rol_grupo */
|
|
2769
|
+
declare const useFilterMatchCatRolGrupo: (params: FilterMatchParams<CatRolGrupoQuery>) => {
|
|
2770
|
+
data: CatRolGrupoDTO[] | null;
|
|
2771
|
+
error: Error | null;
|
|
2772
|
+
isFetching: boolean;
|
|
2773
|
+
isLoading: boolean;
|
|
2774
|
+
refetch: () => Promise<void>;
|
|
2775
|
+
};
|
|
2776
|
+
/** @description Hook para useFetchById de la entidad cat_tipo_parametro */
|
|
2777
|
+
declare const useFetchByIdCatTipoParametro: (params: GetByIdParams<CatTipoParametroQuery>) => {
|
|
2778
|
+
data: CatTipoParametroDTO | null;
|
|
2779
|
+
error: Error | null;
|
|
2780
|
+
isFetching: boolean;
|
|
2781
|
+
isLoading: boolean;
|
|
2782
|
+
refetch: () => Promise<void>;
|
|
2783
|
+
};
|
|
2784
|
+
/** @description Hook para useFetchList de la entidad cat_tipo_parametro */
|
|
2785
|
+
declare const useFetchListCatTipoParametro: (params: QueryParams<CatTipoParametroQuery>) => {
|
|
2786
|
+
data: CatTipoParametroDTO[] | null;
|
|
2787
|
+
error: Error | null;
|
|
2788
|
+
isFetching: boolean;
|
|
2789
|
+
isLoading: boolean;
|
|
2790
|
+
refetch: () => Promise<void>;
|
|
2791
|
+
};
|
|
2792
|
+
/** @description Hook para useCreate de la entidad cat_tipo_parametro */
|
|
2793
|
+
declare const useCreateCatTipoParametro: () => {
|
|
2794
|
+
mutate: (params: CreateParams<CatTipoParametroCreateDTO, CatTipoParametroQuery>) => Promise<CatTipoParametroDTO | null>;
|
|
2795
|
+
isLoading: boolean;
|
|
2796
|
+
error: Error | null;
|
|
2797
|
+
data: CatTipoParametroDTO | null;
|
|
2798
|
+
};
|
|
2799
|
+
/** @description Hook para useUpdate de la entidad cat_tipo_parametro */
|
|
2800
|
+
declare const useUpdateCatTipoParametro: () => {
|
|
2801
|
+
mutate: (params: UpdateParams<CatTipoParametroUpdateDTO, CatTipoParametroQuery>) => Promise<CatTipoParametroDTO | null>;
|
|
2802
|
+
isLoading: boolean;
|
|
2803
|
+
error: Error | null;
|
|
2804
|
+
data: CatTipoParametroDTO | null;
|
|
2805
|
+
};
|
|
2806
|
+
/** @description Hook para useDelete de la entidad cat_tipo_parametro */
|
|
2807
|
+
declare const useDeleteCatTipoParametro: () => {
|
|
2808
|
+
mutate: (params: DeleteParams<CatTipoParametroQuery>) => Promise<boolean>;
|
|
2809
|
+
isLoading: boolean;
|
|
2810
|
+
error: Error | null;
|
|
2811
|
+
success: boolean;
|
|
2812
|
+
};
|
|
2813
|
+
/** @description Hook para useFilterMatch de la entidad cat_tipo_parametro */
|
|
2814
|
+
declare const useFilterMatchCatTipoParametro: (params: FilterMatchParams<CatTipoParametroQuery>) => {
|
|
2815
|
+
data: CatTipoParametroDTO[] | null;
|
|
2816
|
+
error: Error | null;
|
|
2817
|
+
isFetching: boolean;
|
|
2818
|
+
isLoading: boolean;
|
|
2819
|
+
refetch: () => Promise<void>;
|
|
2820
|
+
};
|
|
2821
|
+
/** @description Hook para useFetchById de la entidad cat_tipo_servicio */
|
|
2822
|
+
declare const useFetchByIdCatTipoServicio: (params: GetByIdParams<CatTipoServicioQuery>) => {
|
|
2823
|
+
data: CatTipoServicioDTO | null;
|
|
2824
|
+
error: Error | null;
|
|
2825
|
+
isFetching: boolean;
|
|
2826
|
+
isLoading: boolean;
|
|
2827
|
+
refetch: () => Promise<void>;
|
|
2828
|
+
};
|
|
2829
|
+
/** @description Hook para useFetchList de la entidad cat_tipo_servicio */
|
|
2830
|
+
declare const useFetchListCatTipoServicio: (params: QueryParams<CatTipoServicioQuery>) => {
|
|
2831
|
+
data: CatTipoServicioDTO[] | null;
|
|
2832
|
+
error: Error | null;
|
|
2833
|
+
isFetching: boolean;
|
|
2834
|
+
isLoading: boolean;
|
|
2835
|
+
refetch: () => Promise<void>;
|
|
2836
|
+
};
|
|
2837
|
+
/** @description Hook para useCreate de la entidad cat_tipo_servicio */
|
|
2838
|
+
declare const useCreateCatTipoServicio: () => {
|
|
2839
|
+
mutate: (params: CreateParams<CatTipoServicioCreateDTO, CatTipoServicioQuery>) => Promise<CatTipoServicioDTO | null>;
|
|
2840
|
+
isLoading: boolean;
|
|
2841
|
+
error: Error | null;
|
|
2842
|
+
data: CatTipoServicioDTO | null;
|
|
2843
|
+
};
|
|
2844
|
+
/** @description Hook para useUpdate de la entidad cat_tipo_servicio */
|
|
2845
|
+
declare const useUpdateCatTipoServicio: () => {
|
|
2846
|
+
mutate: (params: UpdateParams<CatTipoServicioUpdateDTO, CatTipoServicioQuery>) => Promise<CatTipoServicioDTO | null>;
|
|
2847
|
+
isLoading: boolean;
|
|
2848
|
+
error: Error | null;
|
|
2849
|
+
data: CatTipoServicioDTO | null;
|
|
2850
|
+
};
|
|
2851
|
+
/** @description Hook para useDelete de la entidad cat_tipo_servicio */
|
|
2852
|
+
declare const useDeleteCatTipoServicio: () => {
|
|
2853
|
+
mutate: (params: DeleteParams<CatTipoServicioQuery>) => Promise<boolean>;
|
|
2854
|
+
isLoading: boolean;
|
|
2855
|
+
error: Error | null;
|
|
2856
|
+
success: boolean;
|
|
2857
|
+
};
|
|
2858
|
+
/** @description Hook para useFilterMatch de la entidad cat_tipo_servicio */
|
|
2859
|
+
declare const useFilterMatchCatTipoServicio: (params: FilterMatchParams<CatTipoServicioQuery>) => {
|
|
2860
|
+
data: CatTipoServicioDTO[] | null;
|
|
2861
|
+
error: Error | null;
|
|
2862
|
+
isFetching: boolean;
|
|
2863
|
+
isLoading: boolean;
|
|
2864
|
+
refetch: () => Promise<void>;
|
|
2865
|
+
};
|
|
2866
|
+
/** @description Hook para useFetchById de la entidad cat_tipo_suelo */
|
|
2867
|
+
declare const useFetchByIdCatTipoSuelo: (params: GetByIdParams<CatTipoSueloQuery>) => {
|
|
2868
|
+
data: CatTipoSueloDTO | null;
|
|
2869
|
+
error: Error | null;
|
|
2870
|
+
isFetching: boolean;
|
|
2871
|
+
isLoading: boolean;
|
|
2872
|
+
refetch: () => Promise<void>;
|
|
2873
|
+
};
|
|
2874
|
+
/** @description Hook para useFetchList de la entidad cat_tipo_suelo */
|
|
2875
|
+
declare const useFetchListCatTipoSuelo: (params: QueryParams<CatTipoSueloQuery>) => {
|
|
2876
|
+
data: CatTipoSueloDTO[] | null;
|
|
2877
|
+
error: Error | null;
|
|
2878
|
+
isFetching: boolean;
|
|
2879
|
+
isLoading: boolean;
|
|
2880
|
+
refetch: () => Promise<void>;
|
|
2881
|
+
};
|
|
2882
|
+
/** @description Hook para useCreate de la entidad cat_tipo_suelo */
|
|
2883
|
+
declare const useCreateCatTipoSuelo: () => {
|
|
2884
|
+
mutate: (params: CreateParams<CatTipoSueloCreateDTO, CatTipoSueloQuery>) => Promise<CatTipoSueloDTO | null>;
|
|
2885
|
+
isLoading: boolean;
|
|
2886
|
+
error: Error | null;
|
|
2887
|
+
data: CatTipoSueloDTO | null;
|
|
2888
|
+
};
|
|
2889
|
+
/** @description Hook para useUpdate de la entidad cat_tipo_suelo */
|
|
2890
|
+
declare const useUpdateCatTipoSuelo: () => {
|
|
2891
|
+
mutate: (params: UpdateParams<CatTipoSueloUpdateDTO, CatTipoSueloQuery>) => Promise<CatTipoSueloDTO | null>;
|
|
2892
|
+
isLoading: boolean;
|
|
2893
|
+
error: Error | null;
|
|
2894
|
+
data: CatTipoSueloDTO | null;
|
|
2895
|
+
};
|
|
2896
|
+
/** @description Hook para useDelete de la entidad cat_tipo_suelo */
|
|
2897
|
+
declare const useDeleteCatTipoSuelo: () => {
|
|
2898
|
+
mutate: (params: DeleteParams<CatTipoSueloQuery>) => Promise<boolean>;
|
|
2899
|
+
isLoading: boolean;
|
|
2900
|
+
error: Error | null;
|
|
2901
|
+
success: boolean;
|
|
2902
|
+
};
|
|
2903
|
+
/** @description Hook para useFilterMatch de la entidad cat_tipo_suelo */
|
|
2904
|
+
declare const useFilterMatchCatTipoSuelo: (params: FilterMatchParams<CatTipoSueloQuery>) => {
|
|
2905
|
+
data: CatTipoSueloDTO[] | null;
|
|
2906
|
+
error: Error | null;
|
|
2907
|
+
isFetching: boolean;
|
|
2908
|
+
isLoading: boolean;
|
|
2909
|
+
refetch: () => Promise<void>;
|
|
2910
|
+
};
|
|
2911
|
+
/** @description Hook para useFetchById de la entidad cat_tipo_tarifa */
|
|
2912
|
+
declare const useFetchByIdCatTipoTarifa: (params: GetByIdParams<CatTipoTarifaQuery>) => {
|
|
2913
|
+
data: CatTipoTarifaDTO | null;
|
|
2914
|
+
error: Error | null;
|
|
2915
|
+
isFetching: boolean;
|
|
2916
|
+
isLoading: boolean;
|
|
2917
|
+
refetch: () => Promise<void>;
|
|
2918
|
+
};
|
|
2919
|
+
/** @description Hook para useFetchList de la entidad cat_tipo_tarifa */
|
|
2920
|
+
declare const useFetchListCatTipoTarifa: (params: QueryParams<CatTipoTarifaQuery>) => {
|
|
2921
|
+
data: CatTipoTarifaDTO[] | null;
|
|
2922
|
+
error: Error | null;
|
|
2923
|
+
isFetching: boolean;
|
|
2924
|
+
isLoading: boolean;
|
|
2925
|
+
refetch: () => Promise<void>;
|
|
2926
|
+
};
|
|
2927
|
+
/** @description Hook para useCreate de la entidad cat_tipo_tarifa */
|
|
2928
|
+
declare const useCreateCatTipoTarifa: () => {
|
|
2929
|
+
mutate: (params: CreateParams<CatTipoTarifaCreateDTO, CatTipoTarifaQuery>) => Promise<CatTipoTarifaDTO | null>;
|
|
2930
|
+
isLoading: boolean;
|
|
2931
|
+
error: Error | null;
|
|
2932
|
+
data: CatTipoTarifaDTO | null;
|
|
2933
|
+
};
|
|
2934
|
+
/** @description Hook para useUpdate de la entidad cat_tipo_tarifa */
|
|
2935
|
+
declare const useUpdateCatTipoTarifa: () => {
|
|
2936
|
+
mutate: (params: UpdateParams<CatTipoTarifaUpdateDTO, CatTipoTarifaQuery>) => Promise<CatTipoTarifaDTO | null>;
|
|
2937
|
+
isLoading: boolean;
|
|
2938
|
+
error: Error | null;
|
|
2939
|
+
data: CatTipoTarifaDTO | null;
|
|
2940
|
+
};
|
|
2941
|
+
/** @description Hook para useDelete de la entidad cat_tipo_tarifa */
|
|
2942
|
+
declare const useDeleteCatTipoTarifa: () => {
|
|
2943
|
+
mutate: (params: DeleteParams<CatTipoTarifaQuery>) => Promise<boolean>;
|
|
2944
|
+
isLoading: boolean;
|
|
2945
|
+
error: Error | null;
|
|
2946
|
+
success: boolean;
|
|
2947
|
+
};
|
|
2948
|
+
/** @description Hook para useFilterMatch de la entidad cat_tipo_tarifa */
|
|
2949
|
+
declare const useFilterMatchCatTipoTarifa: (params: FilterMatchParams<CatTipoTarifaQuery>) => {
|
|
2950
|
+
data: CatTipoTarifaDTO[] | null;
|
|
2951
|
+
error: Error | null;
|
|
2952
|
+
isFetching: boolean;
|
|
2953
|
+
isLoading: boolean;
|
|
2954
|
+
refetch: () => Promise<void>;
|
|
2955
|
+
};
|
|
2956
|
+
/** @description Hook para useFetchById de la entidad contribuyente */
|
|
2957
|
+
declare const useFetchByIdContribuyente: (params: GetByIdParams<ContribuyenteQuery>) => {
|
|
2958
|
+
data: ContribuyenteDTO | null;
|
|
2959
|
+
error: Error | null;
|
|
2960
|
+
isFetching: boolean;
|
|
2961
|
+
isLoading: boolean;
|
|
2962
|
+
refetch: () => Promise<void>;
|
|
2963
|
+
};
|
|
2964
|
+
/** @description Hook para useFetchList de la entidad contribuyente */
|
|
2965
|
+
declare const useFetchListContribuyente: (params: QueryParams<ContribuyenteQuery>) => {
|
|
2966
|
+
data: ContribuyenteDTO[] | null;
|
|
2967
|
+
error: Error | null;
|
|
2968
|
+
isFetching: boolean;
|
|
2969
|
+
isLoading: boolean;
|
|
2970
|
+
refetch: () => Promise<void>;
|
|
2971
|
+
};
|
|
2972
|
+
/** @description Hook para useCreate de la entidad contribuyente */
|
|
2973
|
+
declare const useCreateContribuyente: () => {
|
|
2974
|
+
mutate: (params: CreateParams<ContribuyenteCreateDTO, ContribuyenteQuery>) => Promise<ContribuyenteDTO | null>;
|
|
2975
|
+
isLoading: boolean;
|
|
2976
|
+
error: Error | null;
|
|
2977
|
+
data: ContribuyenteDTO | null;
|
|
2978
|
+
};
|
|
2979
|
+
/** @description Hook para useUpdate de la entidad contribuyente */
|
|
2980
|
+
declare const useUpdateContribuyente: () => {
|
|
2981
|
+
mutate: (params: UpdateParams<ContribuyenteUpdateDTO, ContribuyenteQuery>) => Promise<ContribuyenteDTO | null>;
|
|
2982
|
+
isLoading: boolean;
|
|
2983
|
+
error: Error | null;
|
|
2984
|
+
data: ContribuyenteDTO | null;
|
|
2985
|
+
};
|
|
2986
|
+
/** @description Hook para useDelete de la entidad contribuyente */
|
|
2987
|
+
declare const useDeleteContribuyente: () => {
|
|
2988
|
+
mutate: (params: DeleteParams<ContribuyenteQuery>) => Promise<boolean>;
|
|
2989
|
+
isLoading: boolean;
|
|
2990
|
+
error: Error | null;
|
|
2991
|
+
success: boolean;
|
|
2992
|
+
};
|
|
2993
|
+
/** @description Hook para useFilterMatch de la entidad contribuyente */
|
|
2994
|
+
declare const useFilterMatchContribuyente: (params: FilterMatchParams<ContribuyenteQuery>) => {
|
|
2995
|
+
data: ContribuyenteDTO[] | null;
|
|
2996
|
+
error: Error | null;
|
|
2997
|
+
isFetching: boolean;
|
|
2998
|
+
isLoading: boolean;
|
|
2999
|
+
refetch: () => Promise<void>;
|
|
3000
|
+
};
|
|
3001
|
+
/** @description Hook para useFetchById de la entidad contribuyente_domicilio */
|
|
3002
|
+
declare const useFetchByIdContribuyenteDomicilio: (params: GetByIdParams<ContribuyenteDomicilioQuery>) => {
|
|
3003
|
+
data: ContribuyenteDomicilioDTO | null;
|
|
3004
|
+
error: Error | null;
|
|
3005
|
+
isFetching: boolean;
|
|
3006
|
+
isLoading: boolean;
|
|
3007
|
+
refetch: () => Promise<void>;
|
|
3008
|
+
};
|
|
3009
|
+
/** @description Hook para useFetchList de la entidad contribuyente_domicilio */
|
|
3010
|
+
declare const useFetchListContribuyenteDomicilio: (params: QueryParams<ContribuyenteDomicilioQuery>) => {
|
|
3011
|
+
data: ContribuyenteDomicilioDTO[] | null;
|
|
3012
|
+
error: Error | null;
|
|
3013
|
+
isFetching: boolean;
|
|
3014
|
+
isLoading: boolean;
|
|
3015
|
+
refetch: () => Promise<void>;
|
|
3016
|
+
};
|
|
3017
|
+
/** @description Hook para useCreate de la entidad contribuyente_domicilio */
|
|
3018
|
+
declare const useCreateContribuyenteDomicilio: () => {
|
|
3019
|
+
mutate: (params: CreateParams<ContribuyenteDomicilioCreateDTO, ContribuyenteDomicilioQuery>) => Promise<ContribuyenteDomicilioDTO | null>;
|
|
3020
|
+
isLoading: boolean;
|
|
3021
|
+
error: Error | null;
|
|
3022
|
+
data: ContribuyenteDomicilioDTO | null;
|
|
3023
|
+
};
|
|
3024
|
+
/** @description Hook para useUpdate de la entidad contribuyente_domicilio */
|
|
3025
|
+
declare const useUpdateContribuyenteDomicilio: () => {
|
|
3026
|
+
mutate: (params: UpdateParams<ContribuyenteDomicilioUpdateDTO, ContribuyenteDomicilioQuery>) => Promise<ContribuyenteDomicilioDTO | null>;
|
|
3027
|
+
isLoading: boolean;
|
|
3028
|
+
error: Error | null;
|
|
3029
|
+
data: ContribuyenteDomicilioDTO | null;
|
|
3030
|
+
};
|
|
3031
|
+
/** @description Hook para useDelete de la entidad contribuyente_domicilio */
|
|
3032
|
+
declare const useDeleteContribuyenteDomicilio: () => {
|
|
3033
|
+
mutate: (params: DeleteParams<ContribuyenteDomicilioQuery>) => Promise<boolean>;
|
|
3034
|
+
isLoading: boolean;
|
|
3035
|
+
error: Error | null;
|
|
3036
|
+
success: boolean;
|
|
3037
|
+
};
|
|
3038
|
+
/** @description Hook para useFilterMatch de la entidad contribuyente_domicilio */
|
|
3039
|
+
declare const useFilterMatchContribuyenteDomicilio: (params: FilterMatchParams<ContribuyenteDomicilioQuery>) => {
|
|
3040
|
+
data: ContribuyenteDomicilioDTO[] | null;
|
|
3041
|
+
error: Error | null;
|
|
3042
|
+
isFetching: boolean;
|
|
3043
|
+
isLoading: boolean;
|
|
3044
|
+
refetch: () => Promise<void>;
|
|
3045
|
+
};
|
|
3046
|
+
/** @description Hook para useFetchById de la entidad dashboard_estilo */
|
|
3047
|
+
declare const useFetchByIdDashboardEstilo: (params: GetByIdParams<DashboardEstiloQuery>) => {
|
|
3048
|
+
data: DashboardEstiloDTO | null;
|
|
3049
|
+
error: Error | null;
|
|
3050
|
+
isFetching: boolean;
|
|
3051
|
+
isLoading: boolean;
|
|
3052
|
+
refetch: () => Promise<void>;
|
|
3053
|
+
};
|
|
3054
|
+
/** @description Hook para useFetchList de la entidad dashboard_estilo */
|
|
3055
|
+
declare const useFetchListDashboardEstilo: (params: QueryParams<DashboardEstiloQuery>) => {
|
|
3056
|
+
data: DashboardEstiloDTO[] | null;
|
|
3057
|
+
error: Error | null;
|
|
3058
|
+
isFetching: boolean;
|
|
3059
|
+
isLoading: boolean;
|
|
3060
|
+
refetch: () => Promise<void>;
|
|
3061
|
+
};
|
|
3062
|
+
/** @description Hook para useCreate de la entidad dashboard_estilo */
|
|
3063
|
+
declare const useCreateDashboardEstilo: () => {
|
|
3064
|
+
mutate: (params: CreateParams<DashboardEstiloCreateDTO, DashboardEstiloQuery>) => Promise<DashboardEstiloDTO | null>;
|
|
3065
|
+
isLoading: boolean;
|
|
3066
|
+
error: Error | null;
|
|
3067
|
+
data: DashboardEstiloDTO | null;
|
|
3068
|
+
};
|
|
3069
|
+
/** @description Hook para useUpdate de la entidad dashboard_estilo */
|
|
3070
|
+
declare const useUpdateDashboardEstilo: () => {
|
|
3071
|
+
mutate: (params: UpdateParams<DashboardEstiloUpdateDTO, DashboardEstiloQuery>) => Promise<DashboardEstiloDTO | null>;
|
|
3072
|
+
isLoading: boolean;
|
|
3073
|
+
error: Error | null;
|
|
3074
|
+
data: DashboardEstiloDTO | null;
|
|
3075
|
+
};
|
|
3076
|
+
/** @description Hook para useDelete de la entidad dashboard_estilo */
|
|
3077
|
+
declare const useDeleteDashboardEstilo: () => {
|
|
3078
|
+
mutate: (params: DeleteParams<DashboardEstiloQuery>) => Promise<boolean>;
|
|
3079
|
+
isLoading: boolean;
|
|
3080
|
+
error: Error | null;
|
|
3081
|
+
success: boolean;
|
|
3082
|
+
};
|
|
3083
|
+
/** @description Hook para useFilterMatch de la entidad dashboard_estilo */
|
|
3084
|
+
declare const useFilterMatchDashboardEstilo: (params: FilterMatchParams<DashboardEstiloQuery>) => {
|
|
3085
|
+
data: DashboardEstiloDTO[] | null;
|
|
3086
|
+
error: Error | null;
|
|
3087
|
+
isFetching: boolean;
|
|
3088
|
+
isLoading: boolean;
|
|
3089
|
+
refetch: () => Promise<void>;
|
|
3090
|
+
};
|
|
3091
|
+
/** @description Hook para useFetchById de la entidad dashboard_grafica */
|
|
3092
|
+
declare const useFetchByIdDashboardGrafica: (params: GetByIdParams<DashboardGraficaQuery>) => {
|
|
3093
|
+
data: DashboardGraficaDTO | null;
|
|
3094
|
+
error: Error | null;
|
|
3095
|
+
isFetching: boolean;
|
|
3096
|
+
isLoading: boolean;
|
|
3097
|
+
refetch: () => Promise<void>;
|
|
3098
|
+
};
|
|
3099
|
+
/** @description Hook para useFetchList de la entidad dashboard_grafica */
|
|
3100
|
+
declare const useFetchListDashboardGrafica: (params: QueryParams<DashboardGraficaQuery>) => {
|
|
3101
|
+
data: DashboardGraficaDTO[] | null;
|
|
3102
|
+
error: Error | null;
|
|
3103
|
+
isFetching: boolean;
|
|
3104
|
+
isLoading: boolean;
|
|
3105
|
+
refetch: () => Promise<void>;
|
|
3106
|
+
};
|
|
3107
|
+
/** @description Hook para useCreate de la entidad dashboard_grafica */
|
|
3108
|
+
declare const useCreateDashboardGrafica: () => {
|
|
3109
|
+
mutate: (params: CreateParams<DashboardGraficaCreateDTO, DashboardGraficaQuery>) => Promise<DashboardGraficaDTO | null>;
|
|
3110
|
+
isLoading: boolean;
|
|
3111
|
+
error: Error | null;
|
|
3112
|
+
data: DashboardGraficaDTO | null;
|
|
3113
|
+
};
|
|
3114
|
+
/** @description Hook para useUpdate de la entidad dashboard_grafica */
|
|
3115
|
+
declare const useUpdateDashboardGrafica: () => {
|
|
3116
|
+
mutate: (params: UpdateParams<DashboardGraficaUpdateDTO, DashboardGraficaQuery>) => Promise<DashboardGraficaDTO | null>;
|
|
3117
|
+
isLoading: boolean;
|
|
3118
|
+
error: Error | null;
|
|
3119
|
+
data: DashboardGraficaDTO | null;
|
|
3120
|
+
};
|
|
3121
|
+
/** @description Hook para useDelete de la entidad dashboard_grafica */
|
|
3122
|
+
declare const useDeleteDashboardGrafica: () => {
|
|
3123
|
+
mutate: (params: DeleteParams<DashboardGraficaQuery>) => Promise<boolean>;
|
|
3124
|
+
isLoading: boolean;
|
|
3125
|
+
error: Error | null;
|
|
3126
|
+
success: boolean;
|
|
3127
|
+
};
|
|
3128
|
+
/** @description Hook para useFilterMatch de la entidad dashboard_grafica */
|
|
3129
|
+
declare const useFilterMatchDashboardGrafica: (params: FilterMatchParams<DashboardGraficaQuery>) => {
|
|
3130
|
+
data: DashboardGraficaDTO[] | null;
|
|
3131
|
+
error: Error | null;
|
|
3132
|
+
isFetching: boolean;
|
|
3133
|
+
isLoading: boolean;
|
|
3134
|
+
refetch: () => Promise<void>;
|
|
3135
|
+
};
|
|
3136
|
+
/** @description Hook para useFetchById de la entidad dashboard_grafica_elemento */
|
|
3137
|
+
declare const useFetchByIdDashboardGraficaElemento: (params: GetByIdParams<DashboardGraficaElementoQuery>) => {
|
|
3138
|
+
data: DashboardGraficaElementoDTO | null;
|
|
3139
|
+
error: Error | null;
|
|
3140
|
+
isFetching: boolean;
|
|
3141
|
+
isLoading: boolean;
|
|
3142
|
+
refetch: () => Promise<void>;
|
|
3143
|
+
};
|
|
3144
|
+
/** @description Hook para useFetchList de la entidad dashboard_grafica_elemento */
|
|
3145
|
+
declare const useFetchListDashboardGraficaElemento: (params: QueryParams<DashboardGraficaElementoQuery>) => {
|
|
3146
|
+
data: DashboardGraficaElementoDTO[] | null;
|
|
3147
|
+
error: Error | null;
|
|
3148
|
+
isFetching: boolean;
|
|
3149
|
+
isLoading: boolean;
|
|
3150
|
+
refetch: () => Promise<void>;
|
|
3151
|
+
};
|
|
3152
|
+
/** @description Hook para useCreate de la entidad dashboard_grafica_elemento */
|
|
3153
|
+
declare const useCreateDashboardGraficaElemento: () => {
|
|
3154
|
+
mutate: (params: CreateParams<DashboardGraficaElementoCreateDTO, DashboardGraficaElementoQuery>) => Promise<DashboardGraficaElementoDTO | null>;
|
|
3155
|
+
isLoading: boolean;
|
|
3156
|
+
error: Error | null;
|
|
3157
|
+
data: DashboardGraficaElementoDTO | null;
|
|
3158
|
+
};
|
|
3159
|
+
/** @description Hook para useUpdate de la entidad dashboard_grafica_elemento */
|
|
3160
|
+
declare const useUpdateDashboardGraficaElemento: () => {
|
|
3161
|
+
mutate: (params: UpdateParams<DashboardGraficaElementoUpdateDTO, DashboardGraficaElementoQuery>) => Promise<DashboardGraficaElementoDTO | null>;
|
|
3162
|
+
isLoading: boolean;
|
|
3163
|
+
error: Error | null;
|
|
3164
|
+
data: DashboardGraficaElementoDTO | null;
|
|
3165
|
+
};
|
|
3166
|
+
/** @description Hook para useDelete de la entidad dashboard_grafica_elemento */
|
|
3167
|
+
declare const useDeleteDashboardGraficaElemento: () => {
|
|
3168
|
+
mutate: (params: DeleteParams<DashboardGraficaElementoQuery>) => Promise<boolean>;
|
|
3169
|
+
isLoading: boolean;
|
|
3170
|
+
error: Error | null;
|
|
3171
|
+
success: boolean;
|
|
3172
|
+
};
|
|
3173
|
+
/** @description Hook para useFilterMatch de la entidad dashboard_grafica_elemento */
|
|
3174
|
+
declare const useFilterMatchDashboardGraficaElemento: (params: FilterMatchParams<DashboardGraficaElementoQuery>) => {
|
|
3175
|
+
data: DashboardGraficaElementoDTO[] | null;
|
|
3176
|
+
error: Error | null;
|
|
3177
|
+
isFetching: boolean;
|
|
3178
|
+
isLoading: boolean;
|
|
3179
|
+
refetch: () => Promise<void>;
|
|
3180
|
+
};
|
|
3181
|
+
/** @description Hook para useFetchById de la entidad dashboard_grafica_elemento_detalle */
|
|
3182
|
+
declare const useFetchByIdDashboardGraficaElementoDetalle: (params: GetByIdParams<DashboardGraficaElementoDetalleQuery>) => {
|
|
3183
|
+
data: DashboardGraficaElementoDetalleDTO | null;
|
|
3184
|
+
error: Error | null;
|
|
3185
|
+
isFetching: boolean;
|
|
3186
|
+
isLoading: boolean;
|
|
3187
|
+
refetch: () => Promise<void>;
|
|
3188
|
+
};
|
|
3189
|
+
/** @description Hook para useFetchList de la entidad dashboard_grafica_elemento_detalle */
|
|
3190
|
+
declare const useFetchListDashboardGraficaElementoDetalle: (params: QueryParams<DashboardGraficaElementoDetalleQuery>) => {
|
|
3191
|
+
data: DashboardGraficaElementoDetalleDTO[] | null;
|
|
3192
|
+
error: Error | null;
|
|
3193
|
+
isFetching: boolean;
|
|
3194
|
+
isLoading: boolean;
|
|
3195
|
+
refetch: () => Promise<void>;
|
|
3196
|
+
};
|
|
3197
|
+
/** @description Hook para useCreate de la entidad dashboard_grafica_elemento_detalle */
|
|
3198
|
+
declare const useCreateDashboardGraficaElementoDetalle: () => {
|
|
3199
|
+
mutate: (params: CreateParams<DashboardGraficaElementoDetalleCreateDTO, DashboardGraficaElementoDetalleQuery>) => Promise<DashboardGraficaElementoDetalleDTO | null>;
|
|
3200
|
+
isLoading: boolean;
|
|
3201
|
+
error: Error | null;
|
|
3202
|
+
data: DashboardGraficaElementoDetalleDTO | null;
|
|
3203
|
+
};
|
|
3204
|
+
/** @description Hook para useUpdate de la entidad dashboard_grafica_elemento_detalle */
|
|
3205
|
+
declare const useUpdateDashboardGraficaElementoDetalle: () => {
|
|
3206
|
+
mutate: (params: UpdateParams<DashboardGraficaElementoDetalleUpdateDTO, DashboardGraficaElementoDetalleQuery>) => Promise<DashboardGraficaElementoDetalleDTO | null>;
|
|
3207
|
+
isLoading: boolean;
|
|
3208
|
+
error: Error | null;
|
|
3209
|
+
data: DashboardGraficaElementoDetalleDTO | null;
|
|
3210
|
+
};
|
|
3211
|
+
/** @description Hook para useDelete de la entidad dashboard_grafica_elemento_detalle */
|
|
3212
|
+
declare const useDeleteDashboardGraficaElementoDetalle: () => {
|
|
3213
|
+
mutate: (params: DeleteParams<DashboardGraficaElementoDetalleQuery>) => Promise<boolean>;
|
|
3214
|
+
isLoading: boolean;
|
|
3215
|
+
error: Error | null;
|
|
3216
|
+
success: boolean;
|
|
3217
|
+
};
|
|
3218
|
+
/** @description Hook para useFilterMatch de la entidad dashboard_grafica_elemento_detalle */
|
|
3219
|
+
declare const useFilterMatchDashboardGraficaElementoDetalle: (params: FilterMatchParams<DashboardGraficaElementoDetalleQuery>) => {
|
|
3220
|
+
data: DashboardGraficaElementoDetalleDTO[] | null;
|
|
3221
|
+
error: Error | null;
|
|
3222
|
+
isFetching: boolean;
|
|
3223
|
+
isLoading: boolean;
|
|
3224
|
+
refetch: () => Promise<void>;
|
|
3225
|
+
};
|
|
3226
|
+
/** @description Hook para useFetchById de la entidad dashboard_grafica_elemento_parametro */
|
|
3227
|
+
declare const useFetchByIdDashboardGraficaElementoParametro: (params: GetByIdParams<DashboardGraficaElementoParametroQuery>) => {
|
|
3228
|
+
data: DashboardGraficaElementoParametroDTO | null;
|
|
3229
|
+
error: Error | null;
|
|
3230
|
+
isFetching: boolean;
|
|
3231
|
+
isLoading: boolean;
|
|
3232
|
+
refetch: () => Promise<void>;
|
|
3233
|
+
};
|
|
3234
|
+
/** @description Hook para useFetchList de la entidad dashboard_grafica_elemento_parametro */
|
|
3235
|
+
declare const useFetchListDashboardGraficaElementoParametro: (params: QueryParams<DashboardGraficaElementoParametroQuery>) => {
|
|
3236
|
+
data: DashboardGraficaElementoParametroDTO[] | null;
|
|
3237
|
+
error: Error | null;
|
|
3238
|
+
isFetching: boolean;
|
|
3239
|
+
isLoading: boolean;
|
|
3240
|
+
refetch: () => Promise<void>;
|
|
3241
|
+
};
|
|
3242
|
+
/** @description Hook para useCreate de la entidad dashboard_grafica_elemento_parametro */
|
|
3243
|
+
declare const useCreateDashboardGraficaElementoParametro: () => {
|
|
3244
|
+
mutate: (params: CreateParams<DashboardGraficaElementoParametroCreateDTO, DashboardGraficaElementoParametroQuery>) => Promise<DashboardGraficaElementoParametroDTO | null>;
|
|
3245
|
+
isLoading: boolean;
|
|
3246
|
+
error: Error | null;
|
|
3247
|
+
data: DashboardGraficaElementoParametroDTO | null;
|
|
3248
|
+
};
|
|
3249
|
+
/** @description Hook para useUpdate de la entidad dashboard_grafica_elemento_parametro */
|
|
3250
|
+
declare const useUpdateDashboardGraficaElementoParametro: () => {
|
|
3251
|
+
mutate: (params: UpdateParams<DashboardGraficaElementoParametroUpdateDTO, DashboardGraficaElementoParametroQuery>) => Promise<DashboardGraficaElementoParametroDTO | null>;
|
|
3252
|
+
isLoading: boolean;
|
|
3253
|
+
error: Error | null;
|
|
3254
|
+
data: DashboardGraficaElementoParametroDTO | null;
|
|
3255
|
+
};
|
|
3256
|
+
/** @description Hook para useDelete de la entidad dashboard_grafica_elemento_parametro */
|
|
3257
|
+
declare const useDeleteDashboardGraficaElementoParametro: () => {
|
|
3258
|
+
mutate: (params: DeleteParams<DashboardGraficaElementoParametroQuery>) => Promise<boolean>;
|
|
3259
|
+
isLoading: boolean;
|
|
3260
|
+
error: Error | null;
|
|
3261
|
+
success: boolean;
|
|
3262
|
+
};
|
|
3263
|
+
/** @description Hook para useFilterMatch de la entidad dashboard_grafica_elemento_parametro */
|
|
3264
|
+
declare const useFilterMatchDashboardGraficaElementoParametro: (params: FilterMatchParams<DashboardGraficaElementoParametroQuery>) => {
|
|
3265
|
+
data: DashboardGraficaElementoParametroDTO[] | null;
|
|
3266
|
+
error: Error | null;
|
|
3267
|
+
isFetching: boolean;
|
|
3268
|
+
isLoading: boolean;
|
|
3269
|
+
refetch: () => Promise<void>;
|
|
3270
|
+
};
|
|
3271
|
+
/** @description Hook para useFetchById de la entidad dashboard_grafica_grupo */
|
|
3272
|
+
declare const useFetchByIdDashboardGraficaGrupo: (params: GetByIdParams<DashboardGraficaGrupoQuery>) => {
|
|
3273
|
+
data: DashboardGraficaGrupoDTO | null;
|
|
3274
|
+
error: Error | null;
|
|
3275
|
+
isFetching: boolean;
|
|
3276
|
+
isLoading: boolean;
|
|
3277
|
+
refetch: () => Promise<void>;
|
|
3278
|
+
};
|
|
3279
|
+
/** @description Hook para useFetchList de la entidad dashboard_grafica_grupo */
|
|
3280
|
+
declare const useFetchListDashboardGraficaGrupo: (params: QueryParams<DashboardGraficaGrupoQuery>) => {
|
|
3281
|
+
data: DashboardGraficaGrupoDTO[] | null;
|
|
3282
|
+
error: Error | null;
|
|
3283
|
+
isFetching: boolean;
|
|
3284
|
+
isLoading: boolean;
|
|
3285
|
+
refetch: () => Promise<void>;
|
|
3286
|
+
};
|
|
3287
|
+
/** @description Hook para useCreate de la entidad dashboard_grafica_grupo */
|
|
3288
|
+
declare const useCreateDashboardGraficaGrupo: () => {
|
|
3289
|
+
mutate: (params: CreateParams<DashboardGraficaGrupoCreateDTO, DashboardGraficaGrupoQuery>) => Promise<DashboardGraficaGrupoDTO | null>;
|
|
3290
|
+
isLoading: boolean;
|
|
3291
|
+
error: Error | null;
|
|
3292
|
+
data: DashboardGraficaGrupoDTO | null;
|
|
3293
|
+
};
|
|
3294
|
+
/** @description Hook para useUpdate de la entidad dashboard_grafica_grupo */
|
|
3295
|
+
declare const useUpdateDashboardGraficaGrupo: () => {
|
|
3296
|
+
mutate: (params: UpdateParams<DashboardGraficaGrupoUpdateDTO, DashboardGraficaGrupoQuery>) => Promise<DashboardGraficaGrupoDTO | null>;
|
|
3297
|
+
isLoading: boolean;
|
|
3298
|
+
error: Error | null;
|
|
3299
|
+
data: DashboardGraficaGrupoDTO | null;
|
|
3300
|
+
};
|
|
3301
|
+
/** @description Hook para useDelete de la entidad dashboard_grafica_grupo */
|
|
3302
|
+
declare const useDeleteDashboardGraficaGrupo: () => {
|
|
3303
|
+
mutate: (params: DeleteParams<DashboardGraficaGrupoQuery>) => Promise<boolean>;
|
|
3304
|
+
isLoading: boolean;
|
|
3305
|
+
error: Error | null;
|
|
3306
|
+
success: boolean;
|
|
3307
|
+
};
|
|
3308
|
+
/** @description Hook para useFilterMatch de la entidad dashboard_grafica_grupo */
|
|
3309
|
+
declare const useFilterMatchDashboardGraficaGrupo: (params: FilterMatchParams<DashboardGraficaGrupoQuery>) => {
|
|
3310
|
+
data: DashboardGraficaGrupoDTO[] | null;
|
|
3311
|
+
error: Error | null;
|
|
3312
|
+
isFetching: boolean;
|
|
3313
|
+
isLoading: boolean;
|
|
3314
|
+
refetch: () => Promise<void>;
|
|
3315
|
+
};
|
|
3316
|
+
/** @description Hook para useFetchById de la entidad dashboard_grafica_grupo_rol */
|
|
3317
|
+
declare const useFetchByIdDashboardGraficaGrupoRol: (params: GetByIdParams<DashboardGraficaGrupoRolQuery>) => {
|
|
3318
|
+
data: DashboardGraficaGrupoRolDTO | null;
|
|
3319
|
+
error: Error | null;
|
|
3320
|
+
isFetching: boolean;
|
|
3321
|
+
isLoading: boolean;
|
|
3322
|
+
refetch: () => Promise<void>;
|
|
3323
|
+
};
|
|
3324
|
+
/** @description Hook para useFetchList de la entidad dashboard_grafica_grupo_rol */
|
|
3325
|
+
declare const useFetchListDashboardGraficaGrupoRol: (params: QueryParams<DashboardGraficaGrupoRolQuery>) => {
|
|
3326
|
+
data: DashboardGraficaGrupoRolDTO[] | null;
|
|
3327
|
+
error: Error | null;
|
|
3328
|
+
isFetching: boolean;
|
|
3329
|
+
isLoading: boolean;
|
|
3330
|
+
refetch: () => Promise<void>;
|
|
3331
|
+
};
|
|
3332
|
+
/** @description Hook para useCreate de la entidad dashboard_grafica_grupo_rol */
|
|
3333
|
+
declare const useCreateDashboardGraficaGrupoRol: () => {
|
|
3334
|
+
mutate: (params: CreateParams<DashboardGraficaGrupoRolCreateDTO, DashboardGraficaGrupoRolQuery>) => Promise<DashboardGraficaGrupoRolDTO | null>;
|
|
3335
|
+
isLoading: boolean;
|
|
3336
|
+
error: Error | null;
|
|
3337
|
+
data: DashboardGraficaGrupoRolDTO | null;
|
|
3338
|
+
};
|
|
3339
|
+
/** @description Hook para useUpdate de la entidad dashboard_grafica_grupo_rol */
|
|
3340
|
+
declare const useUpdateDashboardGraficaGrupoRol: () => {
|
|
3341
|
+
mutate: (params: UpdateParams<DashboardGraficaGrupoRolUpdateDTO, DashboardGraficaGrupoRolQuery>) => Promise<DashboardGraficaGrupoRolDTO | null>;
|
|
3342
|
+
isLoading: boolean;
|
|
3343
|
+
error: Error | null;
|
|
3344
|
+
data: DashboardGraficaGrupoRolDTO | null;
|
|
3345
|
+
};
|
|
3346
|
+
/** @description Hook para useDelete de la entidad dashboard_grafica_grupo_rol */
|
|
3347
|
+
declare const useDeleteDashboardGraficaGrupoRol: () => {
|
|
3348
|
+
mutate: (params: DeleteParams<DashboardGraficaGrupoRolQuery>) => Promise<boolean>;
|
|
3349
|
+
isLoading: boolean;
|
|
3350
|
+
error: Error | null;
|
|
3351
|
+
success: boolean;
|
|
3352
|
+
};
|
|
3353
|
+
/** @description Hook para useFilterMatch de la entidad dashboard_grafica_grupo_rol */
|
|
3354
|
+
declare const useFilterMatchDashboardGraficaGrupoRol: (params: FilterMatchParams<DashboardGraficaGrupoRolQuery>) => {
|
|
3355
|
+
data: DashboardGraficaGrupoRolDTO[] | null;
|
|
3356
|
+
error: Error | null;
|
|
3357
|
+
isFetching: boolean;
|
|
3358
|
+
isLoading: boolean;
|
|
3359
|
+
refetch: () => Promise<void>;
|
|
3360
|
+
};
|
|
3361
|
+
/** @description Hook para useFetchById de la entidad dashboard_ruta */
|
|
3362
|
+
declare const useFetchByIdDashboardRuta: (params: GetByIdParams<DashboardRutaQuery>) => {
|
|
3363
|
+
data: DashboardRutaDTO | null;
|
|
3364
|
+
error: Error | null;
|
|
3365
|
+
isFetching: boolean;
|
|
3366
|
+
isLoading: boolean;
|
|
3367
|
+
refetch: () => Promise<void>;
|
|
3368
|
+
};
|
|
3369
|
+
/** @description Hook para useFetchList de la entidad dashboard_ruta */
|
|
3370
|
+
declare const useFetchListDashboardRuta: (params: QueryParams<DashboardRutaQuery>) => {
|
|
3371
|
+
data: DashboardRutaDTO[] | null;
|
|
3372
|
+
error: Error | null;
|
|
3373
|
+
isFetching: boolean;
|
|
3374
|
+
isLoading: boolean;
|
|
3375
|
+
refetch: () => Promise<void>;
|
|
3376
|
+
};
|
|
3377
|
+
/** @description Hook para useCreate de la entidad dashboard_ruta */
|
|
3378
|
+
declare const useCreateDashboardRuta: () => {
|
|
3379
|
+
mutate: (params: CreateParams<DashboardRutaCreateDTO, DashboardRutaQuery>) => Promise<DashboardRutaDTO | null>;
|
|
3380
|
+
isLoading: boolean;
|
|
3381
|
+
error: Error | null;
|
|
3382
|
+
data: DashboardRutaDTO | null;
|
|
3383
|
+
};
|
|
3384
|
+
/** @description Hook para useUpdate de la entidad dashboard_ruta */
|
|
3385
|
+
declare const useUpdateDashboardRuta: () => {
|
|
3386
|
+
mutate: (params: UpdateParams<DashboardRutaUpdateDTO, DashboardRutaQuery>) => Promise<DashboardRutaDTO | null>;
|
|
3387
|
+
isLoading: boolean;
|
|
3388
|
+
error: Error | null;
|
|
3389
|
+
data: DashboardRutaDTO | null;
|
|
3390
|
+
};
|
|
3391
|
+
/** @description Hook para useDelete de la entidad dashboard_ruta */
|
|
3392
|
+
declare const useDeleteDashboardRuta: () => {
|
|
3393
|
+
mutate: (params: DeleteParams<DashboardRutaQuery>) => Promise<boolean>;
|
|
3394
|
+
isLoading: boolean;
|
|
3395
|
+
error: Error | null;
|
|
3396
|
+
success: boolean;
|
|
3397
|
+
};
|
|
3398
|
+
/** @description Hook para useFilterMatch de la entidad dashboard_ruta */
|
|
3399
|
+
declare const useFilterMatchDashboardRuta: (params: FilterMatchParams<DashboardRutaQuery>) => {
|
|
3400
|
+
data: DashboardRutaDTO[] | null;
|
|
3401
|
+
error: Error | null;
|
|
3402
|
+
isFetching: boolean;
|
|
3403
|
+
isLoading: boolean;
|
|
3404
|
+
refetch: () => Promise<void>;
|
|
3405
|
+
};
|
|
3406
|
+
/** @description Hook para useFetchById de la entidad grafica_agrupacion */
|
|
3407
|
+
declare const useFetchByIdGraficaAgrupacion: (params: GetByIdParams<GraficaAgrupacionQuery>) => {
|
|
3408
|
+
data: GraficaAgrupacionDTO | null;
|
|
3409
|
+
error: Error | null;
|
|
3410
|
+
isFetching: boolean;
|
|
3411
|
+
isLoading: boolean;
|
|
3412
|
+
refetch: () => Promise<void>;
|
|
3413
|
+
};
|
|
3414
|
+
/** @description Hook para useFetchList de la entidad grafica_agrupacion */
|
|
3415
|
+
declare const useFetchListGraficaAgrupacion: (params: QueryParams<GraficaAgrupacionQuery>) => {
|
|
3416
|
+
data: GraficaAgrupacionDTO[] | null;
|
|
3417
|
+
error: Error | null;
|
|
3418
|
+
isFetching: boolean;
|
|
3419
|
+
isLoading: boolean;
|
|
3420
|
+
refetch: () => Promise<void>;
|
|
3421
|
+
};
|
|
3422
|
+
/** @description Hook para useCreate de la entidad grafica_agrupacion */
|
|
3423
|
+
declare const useCreateGraficaAgrupacion: () => {
|
|
3424
|
+
mutate: (params: CreateParams<GraficaAgrupacionCreateDTO, GraficaAgrupacionQuery>) => Promise<GraficaAgrupacionDTO | null>;
|
|
3425
|
+
isLoading: boolean;
|
|
3426
|
+
error: Error | null;
|
|
3427
|
+
data: GraficaAgrupacionDTO | null;
|
|
3428
|
+
};
|
|
3429
|
+
/** @description Hook para useUpdate de la entidad grafica_agrupacion */
|
|
3430
|
+
declare const useUpdateGraficaAgrupacion: () => {
|
|
3431
|
+
mutate: (params: UpdateParams<GraficaAgrupacionUpdateDTO, GraficaAgrupacionQuery>) => Promise<GraficaAgrupacionDTO | null>;
|
|
3432
|
+
isLoading: boolean;
|
|
3433
|
+
error: Error | null;
|
|
3434
|
+
data: GraficaAgrupacionDTO | null;
|
|
3435
|
+
};
|
|
3436
|
+
/** @description Hook para useDelete de la entidad grafica_agrupacion */
|
|
3437
|
+
declare const useDeleteGraficaAgrupacion: () => {
|
|
3438
|
+
mutate: (params: DeleteParams<GraficaAgrupacionQuery>) => Promise<boolean>;
|
|
3439
|
+
isLoading: boolean;
|
|
3440
|
+
error: Error | null;
|
|
3441
|
+
success: boolean;
|
|
3442
|
+
};
|
|
3443
|
+
/** @description Hook para useFilterMatch de la entidad grafica_agrupacion */
|
|
3444
|
+
declare const useFilterMatchGraficaAgrupacion: (params: FilterMatchParams<GraficaAgrupacionQuery>) => {
|
|
3445
|
+
data: GraficaAgrupacionDTO[] | null;
|
|
3446
|
+
error: Error | null;
|
|
3447
|
+
isFetching: boolean;
|
|
3448
|
+
isLoading: boolean;
|
|
3449
|
+
refetch: () => Promise<void>;
|
|
3450
|
+
};
|
|
3451
|
+
/** @description Hook para useFetchById de la entidad grafica */
|
|
3452
|
+
declare const useFetchByIdGrafica: (params: GetByIdParams<GraficaQuery>) => {
|
|
3453
|
+
data: GraficaDTO | null;
|
|
3454
|
+
error: Error | null;
|
|
3455
|
+
isFetching: boolean;
|
|
3456
|
+
isLoading: boolean;
|
|
3457
|
+
refetch: () => Promise<void>;
|
|
3458
|
+
};
|
|
3459
|
+
/** @description Hook para useFetchList de la entidad grafica */
|
|
3460
|
+
declare const useFetchListGrafica: (params: QueryParams<GraficaQuery>) => {
|
|
3461
|
+
data: GraficaDTO[] | null;
|
|
3462
|
+
error: Error | null;
|
|
3463
|
+
isFetching: boolean;
|
|
3464
|
+
isLoading: boolean;
|
|
3465
|
+
refetch: () => Promise<void>;
|
|
3466
|
+
};
|
|
3467
|
+
/** @description Hook para useCreate de la entidad grafica */
|
|
3468
|
+
declare const useCreateGrafica: () => {
|
|
3469
|
+
mutate: (params: CreateParams<GraficaCreateDTO, GraficaQuery>) => Promise<GraficaDTO | null>;
|
|
3470
|
+
isLoading: boolean;
|
|
3471
|
+
error: Error | null;
|
|
3472
|
+
data: GraficaDTO | null;
|
|
3473
|
+
};
|
|
3474
|
+
/** @description Hook para useUpdate de la entidad grafica */
|
|
3475
|
+
declare const useUpdateGrafica: () => {
|
|
3476
|
+
mutate: (params: UpdateParams<GraficaUpdateDTO, GraficaQuery>) => Promise<GraficaDTO | null>;
|
|
3477
|
+
isLoading: boolean;
|
|
3478
|
+
error: Error | null;
|
|
3479
|
+
data: GraficaDTO | null;
|
|
3480
|
+
};
|
|
3481
|
+
/** @description Hook para useDelete de la entidad grafica */
|
|
3482
|
+
declare const useDeleteGrafica: () => {
|
|
3483
|
+
mutate: (params: DeleteParams<GraficaQuery>) => Promise<boolean>;
|
|
3484
|
+
isLoading: boolean;
|
|
3485
|
+
error: Error | null;
|
|
3486
|
+
success: boolean;
|
|
3487
|
+
};
|
|
3488
|
+
/** @description Hook para useFilterMatch de la entidad grafica */
|
|
3489
|
+
declare const useFilterMatchGrafica: (params: FilterMatchParams<GraficaQuery>) => {
|
|
3490
|
+
data: GraficaDTO[] | null;
|
|
3491
|
+
error: Error | null;
|
|
3492
|
+
isFetching: boolean;
|
|
3493
|
+
isLoading: boolean;
|
|
3494
|
+
refetch: () => Promise<void>;
|
|
3495
|
+
};
|
|
3496
|
+
/** @description Hook para useFetchById de la entidad grafica_filtro */
|
|
3497
|
+
declare const useFetchByIdGraficaFiltro: (params: GetByIdParams<GraficaFiltroQuery>) => {
|
|
3498
|
+
data: GraficaFiltroDTO | null;
|
|
3499
|
+
error: Error | null;
|
|
3500
|
+
isFetching: boolean;
|
|
3501
|
+
isLoading: boolean;
|
|
3502
|
+
refetch: () => Promise<void>;
|
|
3503
|
+
};
|
|
3504
|
+
/** @description Hook para useFetchList de la entidad grafica_filtro */
|
|
3505
|
+
declare const useFetchListGraficaFiltro: (params: QueryParams<GraficaFiltroQuery>) => {
|
|
3506
|
+
data: GraficaFiltroDTO[] | null;
|
|
3507
|
+
error: Error | null;
|
|
3508
|
+
isFetching: boolean;
|
|
3509
|
+
isLoading: boolean;
|
|
3510
|
+
refetch: () => Promise<void>;
|
|
3511
|
+
};
|
|
3512
|
+
/** @description Hook para useCreate de la entidad grafica_filtro */
|
|
3513
|
+
declare const useCreateGraficaFiltro: () => {
|
|
3514
|
+
mutate: (params: CreateParams<GraficaFiltroCreateDTO, GraficaFiltroQuery>) => Promise<GraficaFiltroDTO | null>;
|
|
3515
|
+
isLoading: boolean;
|
|
3516
|
+
error: Error | null;
|
|
3517
|
+
data: GraficaFiltroDTO | null;
|
|
3518
|
+
};
|
|
3519
|
+
/** @description Hook para useUpdate de la entidad grafica_filtro */
|
|
3520
|
+
declare const useUpdateGraficaFiltro: () => {
|
|
3521
|
+
mutate: (params: UpdateParams<GraficaFiltroUpdateDTO, GraficaFiltroQuery>) => Promise<GraficaFiltroDTO | null>;
|
|
3522
|
+
isLoading: boolean;
|
|
3523
|
+
error: Error | null;
|
|
3524
|
+
data: GraficaFiltroDTO | null;
|
|
3525
|
+
};
|
|
3526
|
+
/** @description Hook para useDelete de la entidad grafica_filtro */
|
|
3527
|
+
declare const useDeleteGraficaFiltro: () => {
|
|
3528
|
+
mutate: (params: DeleteParams<GraficaFiltroQuery>) => Promise<boolean>;
|
|
3529
|
+
isLoading: boolean;
|
|
3530
|
+
error: Error | null;
|
|
3531
|
+
success: boolean;
|
|
3532
|
+
};
|
|
3533
|
+
/** @description Hook para useFilterMatch de la entidad grafica_filtro */
|
|
3534
|
+
declare const useFilterMatchGraficaFiltro: (params: FilterMatchParams<GraficaFiltroQuery>) => {
|
|
3535
|
+
data: GraficaFiltroDTO[] | null;
|
|
3536
|
+
error: Error | null;
|
|
3537
|
+
isFetching: boolean;
|
|
3538
|
+
isLoading: boolean;
|
|
3539
|
+
refetch: () => Promise<void>;
|
|
3540
|
+
};
|
|
3541
|
+
/** @description Hook para useFetchById de la entidad grafica_parametro */
|
|
3542
|
+
declare const useFetchByIdGraficaParametro: (params: GetByIdParams<GraficaParametroQuery>) => {
|
|
3543
|
+
data: GraficaParametroDTO | null;
|
|
3544
|
+
error: Error | null;
|
|
3545
|
+
isFetching: boolean;
|
|
3546
|
+
isLoading: boolean;
|
|
3547
|
+
refetch: () => Promise<void>;
|
|
3548
|
+
};
|
|
3549
|
+
/** @description Hook para useFetchList de la entidad grafica_parametro */
|
|
3550
|
+
declare const useFetchListGraficaParametro: (params: QueryParams<GraficaParametroQuery>) => {
|
|
3551
|
+
data: GraficaParametroDTO[] | null;
|
|
3552
|
+
error: Error | null;
|
|
3553
|
+
isFetching: boolean;
|
|
3554
|
+
isLoading: boolean;
|
|
3555
|
+
refetch: () => Promise<void>;
|
|
3556
|
+
};
|
|
3557
|
+
/** @description Hook para useCreate de la entidad grafica_parametro */
|
|
3558
|
+
declare const useCreateGraficaParametro: () => {
|
|
3559
|
+
mutate: (params: CreateParams<GraficaParametroCreateDTO, GraficaParametroQuery>) => Promise<GraficaParametroDTO | null>;
|
|
3560
|
+
isLoading: boolean;
|
|
3561
|
+
error: Error | null;
|
|
3562
|
+
data: GraficaParametroDTO | null;
|
|
3563
|
+
};
|
|
3564
|
+
/** @description Hook para useUpdate de la entidad grafica_parametro */
|
|
3565
|
+
declare const useUpdateGraficaParametro: () => {
|
|
3566
|
+
mutate: (params: UpdateParams<GraficaParametroUpdateDTO, GraficaParametroQuery>) => Promise<GraficaParametroDTO | null>;
|
|
3567
|
+
isLoading: boolean;
|
|
3568
|
+
error: Error | null;
|
|
3569
|
+
data: GraficaParametroDTO | null;
|
|
3570
|
+
};
|
|
3571
|
+
/** @description Hook para useDelete de la entidad grafica_parametro */
|
|
3572
|
+
declare const useDeleteGraficaParametro: () => {
|
|
3573
|
+
mutate: (params: DeleteParams<GraficaParametroQuery>) => Promise<boolean>;
|
|
3574
|
+
isLoading: boolean;
|
|
3575
|
+
error: Error | null;
|
|
3576
|
+
success: boolean;
|
|
3577
|
+
};
|
|
3578
|
+
/** @description Hook para useFilterMatch de la entidad grafica_parametro */
|
|
3579
|
+
declare const useFilterMatchGraficaParametro: (params: FilterMatchParams<GraficaParametroQuery>) => {
|
|
3580
|
+
data: GraficaParametroDTO[] | null;
|
|
3581
|
+
error: Error | null;
|
|
3582
|
+
isFetching: boolean;
|
|
3583
|
+
isLoading: boolean;
|
|
3584
|
+
refetch: () => Promise<void>;
|
|
3585
|
+
};
|
|
3586
|
+
/** @description Hook para useFetchById de la entidad grafica_parametro_defecto */
|
|
3587
|
+
declare const useFetchByIdGraficaParametroDefecto: (params: GetByIdParams<GraficaParametroDefectoQuery>) => {
|
|
3588
|
+
data: GraficaParametroDefectoDTO | null;
|
|
3589
|
+
error: Error | null;
|
|
3590
|
+
isFetching: boolean;
|
|
3591
|
+
isLoading: boolean;
|
|
3592
|
+
refetch: () => Promise<void>;
|
|
3593
|
+
};
|
|
3594
|
+
/** @description Hook para useFetchList de la entidad grafica_parametro_defecto */
|
|
3595
|
+
declare const useFetchListGraficaParametroDefecto: (params: QueryParams<GraficaParametroDefectoQuery>) => {
|
|
3596
|
+
data: GraficaParametroDefectoDTO[] | null;
|
|
3597
|
+
error: Error | null;
|
|
3598
|
+
isFetching: boolean;
|
|
3599
|
+
isLoading: boolean;
|
|
3600
|
+
refetch: () => Promise<void>;
|
|
3601
|
+
};
|
|
3602
|
+
/** @description Hook para useCreate de la entidad grafica_parametro_defecto */
|
|
3603
|
+
declare const useCreateGraficaParametroDefecto: () => {
|
|
3604
|
+
mutate: (params: CreateParams<GraficaParametroDefectoCreateDTO, GraficaParametroDefectoQuery>) => Promise<GraficaParametroDefectoDTO | null>;
|
|
3605
|
+
isLoading: boolean;
|
|
3606
|
+
error: Error | null;
|
|
3607
|
+
data: GraficaParametroDefectoDTO | null;
|
|
3608
|
+
};
|
|
3609
|
+
/** @description Hook para useUpdate de la entidad grafica_parametro_defecto */
|
|
3610
|
+
declare const useUpdateGraficaParametroDefecto: () => {
|
|
3611
|
+
mutate: (params: UpdateParams<GraficaParametroDefectoUpdateDTO, GraficaParametroDefectoQuery>) => Promise<GraficaParametroDefectoDTO | null>;
|
|
3612
|
+
isLoading: boolean;
|
|
3613
|
+
error: Error | null;
|
|
3614
|
+
data: GraficaParametroDefectoDTO | null;
|
|
3615
|
+
};
|
|
3616
|
+
/** @description Hook para useDelete de la entidad grafica_parametro_defecto */
|
|
3617
|
+
declare const useDeleteGraficaParametroDefecto: () => {
|
|
3618
|
+
mutate: (params: DeleteParams<GraficaParametroDefectoQuery>) => Promise<boolean>;
|
|
3619
|
+
isLoading: boolean;
|
|
3620
|
+
error: Error | null;
|
|
3621
|
+
success: boolean;
|
|
3622
|
+
};
|
|
3623
|
+
/** @description Hook para useFilterMatch de la entidad grafica_parametro_defecto */
|
|
3624
|
+
declare const useFilterMatchGraficaParametroDefecto: (params: FilterMatchParams<GraficaParametroDefectoQuery>) => {
|
|
3625
|
+
data: GraficaParametroDefectoDTO[] | null;
|
|
3626
|
+
error: Error | null;
|
|
3627
|
+
isFetching: boolean;
|
|
3628
|
+
isLoading: boolean;
|
|
3629
|
+
refetch: () => Promise<void>;
|
|
3630
|
+
};
|
|
3631
|
+
/** @description Hook para useFetchById de la entidad grafica_parametro_tipo */
|
|
3632
|
+
declare const useFetchByIdGraficaParametroTipo: (params: GetByIdParams<GraficaParametroTipoQuery>) => {
|
|
3633
|
+
data: GraficaParametroTipoDTO | null;
|
|
3634
|
+
error: Error | null;
|
|
3635
|
+
isFetching: boolean;
|
|
3636
|
+
isLoading: boolean;
|
|
3637
|
+
refetch: () => Promise<void>;
|
|
3638
|
+
};
|
|
3639
|
+
/** @description Hook para useFetchList de la entidad grafica_parametro_tipo */
|
|
3640
|
+
declare const useFetchListGraficaParametroTipo: (params: QueryParams<GraficaParametroTipoQuery>) => {
|
|
3641
|
+
data: GraficaParametroTipoDTO[] | null;
|
|
3642
|
+
error: Error | null;
|
|
3643
|
+
isFetching: boolean;
|
|
3644
|
+
isLoading: boolean;
|
|
3645
|
+
refetch: () => Promise<void>;
|
|
3646
|
+
};
|
|
3647
|
+
/** @description Hook para useCreate de la entidad grafica_parametro_tipo */
|
|
3648
|
+
declare const useCreateGraficaParametroTipo: () => {
|
|
3649
|
+
mutate: (params: CreateParams<GraficaParametroTipoCreateDTO, GraficaParametroTipoQuery>) => Promise<GraficaParametroTipoDTO | null>;
|
|
3650
|
+
isLoading: boolean;
|
|
3651
|
+
error: Error | null;
|
|
3652
|
+
data: GraficaParametroTipoDTO | null;
|
|
3653
|
+
};
|
|
3654
|
+
/** @description Hook para useUpdate de la entidad grafica_parametro_tipo */
|
|
3655
|
+
declare const useUpdateGraficaParametroTipo: () => {
|
|
3656
|
+
mutate: (params: UpdateParams<GraficaParametroTipoUpdateDTO, GraficaParametroTipoQuery>) => Promise<GraficaParametroTipoDTO | null>;
|
|
3657
|
+
isLoading: boolean;
|
|
3658
|
+
error: Error | null;
|
|
3659
|
+
data: GraficaParametroTipoDTO | null;
|
|
3660
|
+
};
|
|
3661
|
+
/** @description Hook para useDelete de la entidad grafica_parametro_tipo */
|
|
3662
|
+
declare const useDeleteGraficaParametroTipo: () => {
|
|
3663
|
+
mutate: (params: DeleteParams<GraficaParametroTipoQuery>) => Promise<boolean>;
|
|
3664
|
+
isLoading: boolean;
|
|
3665
|
+
error: Error | null;
|
|
3666
|
+
success: boolean;
|
|
3667
|
+
};
|
|
3668
|
+
/** @description Hook para useFilterMatch de la entidad grafica_parametro_tipo */
|
|
3669
|
+
declare const useFilterMatchGraficaParametroTipo: (params: FilterMatchParams<GraficaParametroTipoQuery>) => {
|
|
3670
|
+
data: GraficaParametroTipoDTO[] | null;
|
|
3671
|
+
error: Error | null;
|
|
3672
|
+
isFetching: boolean;
|
|
3673
|
+
isLoading: boolean;
|
|
3674
|
+
refetch: () => Promise<void>;
|
|
3675
|
+
};
|
|
3676
|
+
/** @description Hook para useFetchById de la entidad grafica_por_grupo */
|
|
3677
|
+
declare const useFetchByIdGraficaPorGrupo: (params: GetByIdParams<GraficaPorGrupoQuery>) => {
|
|
3678
|
+
data: GraficaPorGrupoDTO | null;
|
|
3679
|
+
error: Error | null;
|
|
3680
|
+
isFetching: boolean;
|
|
3681
|
+
isLoading: boolean;
|
|
3682
|
+
refetch: () => Promise<void>;
|
|
3683
|
+
};
|
|
3684
|
+
/** @description Hook para useFetchList de la entidad grafica_por_grupo */
|
|
3685
|
+
declare const useFetchListGraficaPorGrupo: (params: QueryParams<GraficaPorGrupoQuery>) => {
|
|
3686
|
+
data: GraficaPorGrupoDTO[] | null;
|
|
3687
|
+
error: Error | null;
|
|
3688
|
+
isFetching: boolean;
|
|
3689
|
+
isLoading: boolean;
|
|
3690
|
+
refetch: () => Promise<void>;
|
|
3691
|
+
};
|
|
3692
|
+
/** @description Hook para useCreate de la entidad grafica_por_grupo */
|
|
3693
|
+
declare const useCreateGraficaPorGrupo: () => {
|
|
3694
|
+
mutate: (params: CreateParams<GraficaPorGrupoCreateDTO, GraficaPorGrupoQuery>) => Promise<GraficaPorGrupoDTO | null>;
|
|
3695
|
+
isLoading: boolean;
|
|
3696
|
+
error: Error | null;
|
|
3697
|
+
data: GraficaPorGrupoDTO | null;
|
|
3698
|
+
};
|
|
3699
|
+
/** @description Hook para useUpdate de la entidad grafica_por_grupo */
|
|
3700
|
+
declare const useUpdateGraficaPorGrupo: () => {
|
|
3701
|
+
mutate: (params: UpdateParams<GraficaPorGrupoUpdateDTO, GraficaPorGrupoQuery>) => Promise<GraficaPorGrupoDTO | null>;
|
|
3702
|
+
isLoading: boolean;
|
|
3703
|
+
error: Error | null;
|
|
3704
|
+
data: GraficaPorGrupoDTO | null;
|
|
3705
|
+
};
|
|
3706
|
+
/** @description Hook para useDelete de la entidad grafica_por_grupo */
|
|
3707
|
+
declare const useDeleteGraficaPorGrupo: () => {
|
|
3708
|
+
mutate: (params: DeleteParams<GraficaPorGrupoQuery>) => Promise<boolean>;
|
|
3709
|
+
isLoading: boolean;
|
|
3710
|
+
error: Error | null;
|
|
3711
|
+
success: boolean;
|
|
3712
|
+
};
|
|
3713
|
+
/** @description Hook para useFilterMatch de la entidad grafica_por_grupo */
|
|
3714
|
+
declare const useFilterMatchGraficaPorGrupo: (params: FilterMatchParams<GraficaPorGrupoQuery>) => {
|
|
3715
|
+
data: GraficaPorGrupoDTO[] | null;
|
|
3716
|
+
error: Error | null;
|
|
3717
|
+
isFetching: boolean;
|
|
3718
|
+
isLoading: boolean;
|
|
3719
|
+
refetch: () => Promise<void>;
|
|
3720
|
+
};
|
|
3721
|
+
/** @description Hook para useFetchById de la entidad grupo_usuario */
|
|
3722
|
+
declare const useFetchByIdGrupoUsuario: (params: GetByIdParams<GrupoUsuarioQuery>) => {
|
|
3723
|
+
data: GrupoUsuarioDTO | null;
|
|
3724
|
+
error: Error | null;
|
|
3725
|
+
isFetching: boolean;
|
|
3726
|
+
isLoading: boolean;
|
|
3727
|
+
refetch: () => Promise<void>;
|
|
3728
|
+
};
|
|
3729
|
+
/** @description Hook para useFetchList de la entidad grupo_usuario */
|
|
3730
|
+
declare const useFetchListGrupoUsuario: (params: QueryParams<GrupoUsuarioQuery>) => {
|
|
3731
|
+
data: GrupoUsuarioDTO[] | null;
|
|
3732
|
+
error: Error | null;
|
|
3733
|
+
isFetching: boolean;
|
|
3734
|
+
isLoading: boolean;
|
|
3735
|
+
refetch: () => Promise<void>;
|
|
3736
|
+
};
|
|
3737
|
+
/** @description Hook para useCreate de la entidad grupo_usuario */
|
|
3738
|
+
declare const useCreateGrupoUsuario: () => {
|
|
3739
|
+
mutate: (params: CreateParams<GrupoUsuarioCreateDTO, GrupoUsuarioQuery>) => Promise<GrupoUsuarioDTO | null>;
|
|
3740
|
+
isLoading: boolean;
|
|
3741
|
+
error: Error | null;
|
|
3742
|
+
data: GrupoUsuarioDTO | null;
|
|
3743
|
+
};
|
|
3744
|
+
/** @description Hook para useUpdate de la entidad grupo_usuario */
|
|
3745
|
+
declare const useUpdateGrupoUsuario: () => {
|
|
3746
|
+
mutate: (params: UpdateParams<GrupoUsuarioUpdateDTO, GrupoUsuarioQuery>) => Promise<GrupoUsuarioDTO | null>;
|
|
3747
|
+
isLoading: boolean;
|
|
3748
|
+
error: Error | null;
|
|
3749
|
+
data: GrupoUsuarioDTO | null;
|
|
3750
|
+
};
|
|
3751
|
+
/** @description Hook para useDelete de la entidad grupo_usuario */
|
|
3752
|
+
declare const useDeleteGrupoUsuario: () => {
|
|
3753
|
+
mutate: (params: DeleteParams<GrupoUsuarioQuery>) => Promise<boolean>;
|
|
3754
|
+
isLoading: boolean;
|
|
3755
|
+
error: Error | null;
|
|
3756
|
+
success: boolean;
|
|
3757
|
+
};
|
|
3758
|
+
/** @description Hook para useFilterMatch de la entidad grupo_usuario */
|
|
3759
|
+
declare const useFilterMatchGrupoUsuario: (params: FilterMatchParams<GrupoUsuarioQuery>) => {
|
|
3760
|
+
data: GrupoUsuarioDTO[] | null;
|
|
3761
|
+
error: Error | null;
|
|
3762
|
+
isFetching: boolean;
|
|
3763
|
+
isLoading: boolean;
|
|
3764
|
+
refetch: () => Promise<void>;
|
|
3765
|
+
};
|
|
3766
|
+
/** @description Hook para useFetchById de la entidad modulo */
|
|
3767
|
+
declare const useFetchByIdModulo: (params: GetByIdParams<ModuloQuery>) => {
|
|
3768
|
+
data: ModuloDTO | null;
|
|
3769
|
+
error: Error | null;
|
|
3770
|
+
isFetching: boolean;
|
|
3771
|
+
isLoading: boolean;
|
|
3772
|
+
refetch: () => Promise<void>;
|
|
3773
|
+
};
|
|
3774
|
+
/** @description Hook para useFetchList de la entidad modulo */
|
|
3775
|
+
declare const useFetchListModulo: (params: QueryParams<ModuloQuery>) => {
|
|
3776
|
+
data: ModuloDTO[] | null;
|
|
3777
|
+
error: Error | null;
|
|
3778
|
+
isFetching: boolean;
|
|
3779
|
+
isLoading: boolean;
|
|
3780
|
+
refetch: () => Promise<void>;
|
|
3781
|
+
};
|
|
3782
|
+
/** @description Hook para useCreate de la entidad modulo */
|
|
3783
|
+
declare const useCreateModulo: () => {
|
|
3784
|
+
mutate: (params: CreateParams<ModuloCreateDTO, ModuloQuery>) => Promise<ModuloDTO | null>;
|
|
3785
|
+
isLoading: boolean;
|
|
3786
|
+
error: Error | null;
|
|
3787
|
+
data: ModuloDTO | null;
|
|
3788
|
+
};
|
|
3789
|
+
/** @description Hook para useUpdate de la entidad modulo */
|
|
3790
|
+
declare const useUpdateModulo: () => {
|
|
3791
|
+
mutate: (params: UpdateParams<ModuloUpdateDTO, ModuloQuery>) => Promise<ModuloDTO | null>;
|
|
3792
|
+
isLoading: boolean;
|
|
3793
|
+
error: Error | null;
|
|
3794
|
+
data: ModuloDTO | null;
|
|
3795
|
+
};
|
|
3796
|
+
/** @description Hook para useDelete de la entidad modulo */
|
|
3797
|
+
declare const useDeleteModulo: () => {
|
|
3798
|
+
mutate: (params: DeleteParams<ModuloQuery>) => Promise<boolean>;
|
|
3799
|
+
isLoading: boolean;
|
|
3800
|
+
error: Error | null;
|
|
3801
|
+
success: boolean;
|
|
3802
|
+
};
|
|
3803
|
+
/** @description Hook para useFilterMatch de la entidad modulo */
|
|
3804
|
+
declare const useFilterMatchModulo: (params: FilterMatchParams<ModuloQuery>) => {
|
|
3805
|
+
data: ModuloDTO[] | null;
|
|
3806
|
+
error: Error | null;
|
|
3807
|
+
isFetching: boolean;
|
|
3808
|
+
isLoading: boolean;
|
|
3809
|
+
refetch: () => Promise<void>;
|
|
3810
|
+
};
|
|
3811
|
+
/** @description Hook para useFetchById de la entidad pagos */
|
|
3812
|
+
declare const useFetchByIdPagos: (params: GetByIdParams<PagosQuery>) => {
|
|
3813
|
+
data: PagosDTO | null;
|
|
3814
|
+
error: Error | null;
|
|
3815
|
+
isFetching: boolean;
|
|
3816
|
+
isLoading: boolean;
|
|
3817
|
+
refetch: () => Promise<void>;
|
|
3818
|
+
};
|
|
3819
|
+
/** @description Hook para useFetchList de la entidad pagos */
|
|
3820
|
+
declare const useFetchListPagos: (params: QueryParams<PagosQuery>) => {
|
|
3821
|
+
data: PagosDTO[] | null;
|
|
3822
|
+
error: Error | null;
|
|
3823
|
+
isFetching: boolean;
|
|
3824
|
+
isLoading: boolean;
|
|
3825
|
+
refetch: () => Promise<void>;
|
|
3826
|
+
};
|
|
3827
|
+
/** @description Hook para useCreate de la entidad pagos */
|
|
3828
|
+
declare const useCreatePagos: () => {
|
|
3829
|
+
mutate: (params: CreateParams<PagosCreateDTO, PagosQuery>) => Promise<PagosDTO | null>;
|
|
3830
|
+
isLoading: boolean;
|
|
3831
|
+
error: Error | null;
|
|
3832
|
+
data: PagosDTO | null;
|
|
3833
|
+
};
|
|
3834
|
+
/** @description Hook para useUpdate de la entidad pagos */
|
|
3835
|
+
declare const useUpdatePagos: () => {
|
|
3836
|
+
mutate: (params: UpdateParams<PagosUpdateDTO, PagosQuery>) => Promise<PagosDTO | null>;
|
|
3837
|
+
isLoading: boolean;
|
|
3838
|
+
error: Error | null;
|
|
3839
|
+
data: PagosDTO | null;
|
|
3840
|
+
};
|
|
3841
|
+
/** @description Hook para useDelete de la entidad pagos */
|
|
3842
|
+
declare const useDeletePagos: () => {
|
|
3843
|
+
mutate: (params: DeleteParams<PagosQuery>) => Promise<boolean>;
|
|
3844
|
+
isLoading: boolean;
|
|
3845
|
+
error: Error | null;
|
|
3846
|
+
success: boolean;
|
|
3847
|
+
};
|
|
3848
|
+
/** @description Hook para useFilterMatch de la entidad pagos */
|
|
3849
|
+
declare const useFilterMatchPagos: (params: FilterMatchParams<PagosQuery>) => {
|
|
3850
|
+
data: PagosDTO[] | null;
|
|
3851
|
+
error: Error | null;
|
|
3852
|
+
isFetching: boolean;
|
|
3853
|
+
isLoading: boolean;
|
|
3854
|
+
refetch: () => Promise<void>;
|
|
3855
|
+
};
|
|
3856
|
+
/** @description Hook para useFetchById de la entidad permiso_accion_entidad */
|
|
3857
|
+
declare const useFetchByIdPermisoAccionEntidad: (params: GetByIdParams<PermisoAccionEntidadQuery>) => {
|
|
3858
|
+
data: PermisoAccionEntidadDTO | null;
|
|
3859
|
+
error: Error | null;
|
|
3860
|
+
isFetching: boolean;
|
|
3861
|
+
isLoading: boolean;
|
|
3862
|
+
refetch: () => Promise<void>;
|
|
3863
|
+
};
|
|
3864
|
+
/** @description Hook para useFetchList de la entidad permiso_accion_entidad */
|
|
3865
|
+
declare const useFetchListPermisoAccionEntidad: (params: QueryParams<PermisoAccionEntidadQuery>) => {
|
|
3866
|
+
data: PermisoAccionEntidadDTO[] | null;
|
|
3867
|
+
error: Error | null;
|
|
3868
|
+
isFetching: boolean;
|
|
3869
|
+
isLoading: boolean;
|
|
3870
|
+
refetch: () => Promise<void>;
|
|
3871
|
+
};
|
|
3872
|
+
/** @description Hook para useCreate de la entidad permiso_accion_entidad */
|
|
3873
|
+
declare const useCreatePermisoAccionEntidad: () => {
|
|
3874
|
+
mutate: (params: CreateParams<PermisoAccionEntidadCreateDTO, PermisoAccionEntidadQuery>) => Promise<PermisoAccionEntidadDTO | null>;
|
|
3875
|
+
isLoading: boolean;
|
|
3876
|
+
error: Error | null;
|
|
3877
|
+
data: PermisoAccionEntidadDTO | null;
|
|
3878
|
+
};
|
|
3879
|
+
/** @description Hook para useUpdate de la entidad permiso_accion_entidad */
|
|
3880
|
+
declare const useUpdatePermisoAccionEntidad: () => {
|
|
3881
|
+
mutate: (params: UpdateParams<PermisoAccionEntidadUpdateDTO, PermisoAccionEntidadQuery>) => Promise<PermisoAccionEntidadDTO | null>;
|
|
3882
|
+
isLoading: boolean;
|
|
3883
|
+
error: Error | null;
|
|
3884
|
+
data: PermisoAccionEntidadDTO | null;
|
|
3885
|
+
};
|
|
3886
|
+
/** @description Hook para useDelete de la entidad permiso_accion_entidad */
|
|
3887
|
+
declare const useDeletePermisoAccionEntidad: () => {
|
|
3888
|
+
mutate: (params: DeleteParams<PermisoAccionEntidadQuery>) => Promise<boolean>;
|
|
3889
|
+
isLoading: boolean;
|
|
3890
|
+
error: Error | null;
|
|
3891
|
+
success: boolean;
|
|
3892
|
+
};
|
|
3893
|
+
/** @description Hook para useFilterMatch de la entidad permiso_accion_entidad */
|
|
3894
|
+
declare const useFilterMatchPermisoAccionEntidad: (params: FilterMatchParams<PermisoAccionEntidadQuery>) => {
|
|
3895
|
+
data: PermisoAccionEntidadDTO[] | null;
|
|
3896
|
+
error: Error | null;
|
|
3897
|
+
isFetching: boolean;
|
|
3898
|
+
isLoading: boolean;
|
|
3899
|
+
refetch: () => Promise<void>;
|
|
3900
|
+
};
|
|
3901
|
+
/** @description Hook para useFetchById de la entidad permiso_modulo */
|
|
3902
|
+
declare const useFetchByIdPermisoModulo: (params: GetByIdParams<PermisoModuloQuery>) => {
|
|
3903
|
+
data: PermisoModuloDTO | null;
|
|
3904
|
+
error: Error | null;
|
|
3905
|
+
isFetching: boolean;
|
|
3906
|
+
isLoading: boolean;
|
|
3907
|
+
refetch: () => Promise<void>;
|
|
3908
|
+
};
|
|
3909
|
+
/** @description Hook para useFetchList de la entidad permiso_modulo */
|
|
3910
|
+
declare const useFetchListPermisoModulo: (params: QueryParams<PermisoModuloQuery>) => {
|
|
3911
|
+
data: PermisoModuloDTO[] | null;
|
|
3912
|
+
error: Error | null;
|
|
3913
|
+
isFetching: boolean;
|
|
3914
|
+
isLoading: boolean;
|
|
3915
|
+
refetch: () => Promise<void>;
|
|
3916
|
+
};
|
|
3917
|
+
/** @description Hook para useCreate de la entidad permiso_modulo */
|
|
3918
|
+
declare const useCreatePermisoModulo: () => {
|
|
3919
|
+
mutate: (params: CreateParams<PermisoModuloCreateDTO, PermisoModuloQuery>) => Promise<PermisoModuloDTO | null>;
|
|
3920
|
+
isLoading: boolean;
|
|
3921
|
+
error: Error | null;
|
|
3922
|
+
data: PermisoModuloDTO | null;
|
|
3923
|
+
};
|
|
3924
|
+
/** @description Hook para useUpdate de la entidad permiso_modulo */
|
|
3925
|
+
declare const useUpdatePermisoModulo: () => {
|
|
3926
|
+
mutate: (params: UpdateParams<PermisoModuloUpdateDTO, PermisoModuloQuery>) => Promise<PermisoModuloDTO | null>;
|
|
3927
|
+
isLoading: boolean;
|
|
3928
|
+
error: Error | null;
|
|
3929
|
+
data: PermisoModuloDTO | null;
|
|
3930
|
+
};
|
|
3931
|
+
/** @description Hook para useDelete de la entidad permiso_modulo */
|
|
3932
|
+
declare const useDeletePermisoModulo: () => {
|
|
3933
|
+
mutate: (params: DeleteParams<PermisoModuloQuery>) => Promise<boolean>;
|
|
3934
|
+
isLoading: boolean;
|
|
3935
|
+
error: Error | null;
|
|
3936
|
+
success: boolean;
|
|
3937
|
+
};
|
|
3938
|
+
/** @description Hook para useFilterMatch de la entidad permiso_modulo */
|
|
3939
|
+
declare const useFilterMatchPermisoModulo: (params: FilterMatchParams<PermisoModuloQuery>) => {
|
|
3940
|
+
data: PermisoModuloDTO[] | null;
|
|
3941
|
+
error: Error | null;
|
|
3942
|
+
isFetching: boolean;
|
|
3943
|
+
isLoading: boolean;
|
|
3944
|
+
refetch: () => Promise<void>;
|
|
3945
|
+
};
|
|
3946
|
+
/** @description Hook para useFetchById de la entidad permiso_submodulo */
|
|
3947
|
+
declare const useFetchByIdPermisoSubmodulo: (params: GetByIdParams<PermisoSubmoduloQuery>) => {
|
|
3948
|
+
data: PermisoSubmoduloDTO | null;
|
|
3949
|
+
error: Error | null;
|
|
3950
|
+
isFetching: boolean;
|
|
3951
|
+
isLoading: boolean;
|
|
3952
|
+
refetch: () => Promise<void>;
|
|
3953
|
+
};
|
|
3954
|
+
/** @description Hook para useFetchList de la entidad permiso_submodulo */
|
|
3955
|
+
declare const useFetchListPermisoSubmodulo: (params: QueryParams<PermisoSubmoduloQuery>) => {
|
|
3956
|
+
data: PermisoSubmoduloDTO[] | null;
|
|
3957
|
+
error: Error | null;
|
|
3958
|
+
isFetching: boolean;
|
|
3959
|
+
isLoading: boolean;
|
|
3960
|
+
refetch: () => Promise<void>;
|
|
3961
|
+
};
|
|
3962
|
+
/** @description Hook para useCreate de la entidad permiso_submodulo */
|
|
3963
|
+
declare const useCreatePermisoSubmodulo: () => {
|
|
3964
|
+
mutate: (params: CreateParams<PermisoSubmoduloCreateDTO, PermisoSubmoduloQuery>) => Promise<PermisoSubmoduloDTO | null>;
|
|
3965
|
+
isLoading: boolean;
|
|
3966
|
+
error: Error | null;
|
|
3967
|
+
data: PermisoSubmoduloDTO | null;
|
|
3968
|
+
};
|
|
3969
|
+
/** @description Hook para useUpdate de la entidad permiso_submodulo */
|
|
3970
|
+
declare const useUpdatePermisoSubmodulo: () => {
|
|
3971
|
+
mutate: (params: UpdateParams<PermisoSubmoduloUpdateDTO, PermisoSubmoduloQuery>) => Promise<PermisoSubmoduloDTO | null>;
|
|
3972
|
+
isLoading: boolean;
|
|
3973
|
+
error: Error | null;
|
|
3974
|
+
data: PermisoSubmoduloDTO | null;
|
|
3975
|
+
};
|
|
3976
|
+
/** @description Hook para useDelete de la entidad permiso_submodulo */
|
|
3977
|
+
declare const useDeletePermisoSubmodulo: () => {
|
|
3978
|
+
mutate: (params: DeleteParams<PermisoSubmoduloQuery>) => Promise<boolean>;
|
|
3979
|
+
isLoading: boolean;
|
|
3980
|
+
error: Error | null;
|
|
3981
|
+
success: boolean;
|
|
3982
|
+
};
|
|
3983
|
+
/** @description Hook para useFilterMatch de la entidad permiso_submodulo */
|
|
3984
|
+
declare const useFilterMatchPermisoSubmodulo: (params: FilterMatchParams<PermisoSubmoduloQuery>) => {
|
|
3985
|
+
data: PermisoSubmoduloDTO[] | null;
|
|
3986
|
+
error: Error | null;
|
|
3987
|
+
isFetching: boolean;
|
|
3988
|
+
isLoading: boolean;
|
|
3989
|
+
refetch: () => Promise<void>;
|
|
3990
|
+
};
|
|
3991
|
+
/** @description Hook para useFetchById de la entidad plazas */
|
|
3992
|
+
declare const useFetchByIdPlazas: (params: GetByIdParams<PlazasQuery>) => {
|
|
3993
|
+
data: PlazasDTO | null;
|
|
3994
|
+
error: Error | null;
|
|
3995
|
+
isFetching: boolean;
|
|
3996
|
+
isLoading: boolean;
|
|
3997
|
+
refetch: () => Promise<void>;
|
|
3998
|
+
};
|
|
3999
|
+
/** @description Hook para useFetchList de la entidad plazas */
|
|
4000
|
+
declare const useFetchListPlazas: (params: QueryParams<PlazasQuery>) => {
|
|
4001
|
+
data: PlazasDTO[] | null;
|
|
4002
|
+
error: Error | null;
|
|
4003
|
+
isFetching: boolean;
|
|
4004
|
+
isLoading: boolean;
|
|
4005
|
+
refetch: () => Promise<void>;
|
|
4006
|
+
};
|
|
4007
|
+
/** @description Hook para useCreate de la entidad plazas */
|
|
4008
|
+
declare const useCreatePlazas: () => {
|
|
4009
|
+
mutate: (params: CreateParams<PlazasCreateDTO, PlazasQuery>) => Promise<PlazasDTO | null>;
|
|
4010
|
+
isLoading: boolean;
|
|
4011
|
+
error: Error | null;
|
|
4012
|
+
data: PlazasDTO | null;
|
|
4013
|
+
};
|
|
4014
|
+
/** @description Hook para useUpdate de la entidad plazas */
|
|
4015
|
+
declare const useUpdatePlazas: () => {
|
|
4016
|
+
mutate: (params: UpdateParams<PlazasUpdateDTO, PlazasQuery>) => Promise<PlazasDTO | null>;
|
|
4017
|
+
isLoading: boolean;
|
|
4018
|
+
error: Error | null;
|
|
4019
|
+
data: PlazasDTO | null;
|
|
4020
|
+
};
|
|
4021
|
+
/** @description Hook para useDelete de la entidad plazas */
|
|
4022
|
+
declare const useDeletePlazas: () => {
|
|
4023
|
+
mutate: (params: DeleteParams<PlazasQuery>) => Promise<boolean>;
|
|
4024
|
+
isLoading: boolean;
|
|
4025
|
+
error: Error | null;
|
|
4026
|
+
success: boolean;
|
|
4027
|
+
};
|
|
4028
|
+
/** @description Hook para useFilterMatch de la entidad plazas */
|
|
4029
|
+
declare const useFilterMatchPlazas: (params: FilterMatchParams<PlazasQuery>) => {
|
|
4030
|
+
data: PlazasDTO[] | null;
|
|
4031
|
+
error: Error | null;
|
|
4032
|
+
isFetching: boolean;
|
|
4033
|
+
isLoading: boolean;
|
|
4034
|
+
refetch: () => Promise<void>;
|
|
4035
|
+
};
|
|
4036
|
+
/** @description Hook para useFetchById de la entidad rol */
|
|
4037
|
+
declare const useFetchByIdRol: (params: GetByIdParams<RolQuery>) => {
|
|
4038
|
+
data: RolDTO | null;
|
|
4039
|
+
error: Error | null;
|
|
4040
|
+
isFetching: boolean;
|
|
4041
|
+
isLoading: boolean;
|
|
4042
|
+
refetch: () => Promise<void>;
|
|
4043
|
+
};
|
|
4044
|
+
/** @description Hook para useFetchList de la entidad rol */
|
|
4045
|
+
declare const useFetchListRol: (params: QueryParams<RolQuery>) => {
|
|
4046
|
+
data: RolDTO[] | null;
|
|
4047
|
+
error: Error | null;
|
|
4048
|
+
isFetching: boolean;
|
|
4049
|
+
isLoading: boolean;
|
|
4050
|
+
refetch: () => Promise<void>;
|
|
4051
|
+
};
|
|
4052
|
+
/** @description Hook para useCreate de la entidad rol */
|
|
4053
|
+
declare const useCreateRol: () => {
|
|
4054
|
+
mutate: (params: CreateParams<RolCreateDTO, RolQuery>) => Promise<RolDTO | null>;
|
|
4055
|
+
isLoading: boolean;
|
|
4056
|
+
error: Error | null;
|
|
4057
|
+
data: RolDTO | null;
|
|
4058
|
+
};
|
|
4059
|
+
/** @description Hook para useUpdate de la entidad rol */
|
|
4060
|
+
declare const useUpdateRol: () => {
|
|
4061
|
+
mutate: (params: UpdateParams<RolUpdateDTO, RolQuery>) => Promise<RolDTO | null>;
|
|
4062
|
+
isLoading: boolean;
|
|
4063
|
+
error: Error | null;
|
|
4064
|
+
data: RolDTO | null;
|
|
4065
|
+
};
|
|
4066
|
+
/** @description Hook para useDelete de la entidad rol */
|
|
4067
|
+
declare const useDeleteRol: () => {
|
|
4068
|
+
mutate: (params: DeleteParams<RolQuery>) => Promise<boolean>;
|
|
4069
|
+
isLoading: boolean;
|
|
4070
|
+
error: Error | null;
|
|
4071
|
+
success: boolean;
|
|
4072
|
+
};
|
|
4073
|
+
/** @description Hook para useFilterMatch de la entidad rol */
|
|
4074
|
+
declare const useFilterMatchRol: (params: FilterMatchParams<RolQuery>) => {
|
|
4075
|
+
data: RolDTO[] | null;
|
|
4076
|
+
error: Error | null;
|
|
4077
|
+
isFetching: boolean;
|
|
4078
|
+
isLoading: boolean;
|
|
4079
|
+
refetch: () => Promise<void>;
|
|
4080
|
+
};
|
|
4081
|
+
/** @description Hook para useFetchById de la entidad rol_dashboard_ruta */
|
|
4082
|
+
declare const useFetchByIdRolDashboardRuta: (params: GetByIdParams<RolDashboardRutaQuery>) => {
|
|
4083
|
+
data: RolDashboardRutaDTO | null;
|
|
4084
|
+
error: Error | null;
|
|
4085
|
+
isFetching: boolean;
|
|
4086
|
+
isLoading: boolean;
|
|
4087
|
+
refetch: () => Promise<void>;
|
|
4088
|
+
};
|
|
4089
|
+
/** @description Hook para useFetchList de la entidad rol_dashboard_ruta */
|
|
4090
|
+
declare const useFetchListRolDashboardRuta: (params: QueryParams<RolDashboardRutaQuery>) => {
|
|
4091
|
+
data: RolDashboardRutaDTO[] | null;
|
|
4092
|
+
error: Error | null;
|
|
4093
|
+
isFetching: boolean;
|
|
4094
|
+
isLoading: boolean;
|
|
4095
|
+
refetch: () => Promise<void>;
|
|
4096
|
+
};
|
|
4097
|
+
/** @description Hook para useCreate de la entidad rol_dashboard_ruta */
|
|
4098
|
+
declare const useCreateRolDashboardRuta: () => {
|
|
4099
|
+
mutate: (params: CreateParams<RolDashboardRutaCreateDTO, RolDashboardRutaQuery>) => Promise<RolDashboardRutaDTO | null>;
|
|
4100
|
+
isLoading: boolean;
|
|
4101
|
+
error: Error | null;
|
|
4102
|
+
data: RolDashboardRutaDTO | null;
|
|
4103
|
+
};
|
|
4104
|
+
/** @description Hook para useUpdate de la entidad rol_dashboard_ruta */
|
|
4105
|
+
declare const useUpdateRolDashboardRuta: () => {
|
|
4106
|
+
mutate: (params: UpdateParams<RolDashboardRutaUpdateDTO, RolDashboardRutaQuery>) => Promise<RolDashboardRutaDTO | null>;
|
|
4107
|
+
isLoading: boolean;
|
|
4108
|
+
error: Error | null;
|
|
4109
|
+
data: RolDashboardRutaDTO | null;
|
|
4110
|
+
};
|
|
4111
|
+
/** @description Hook para useDelete de la entidad rol_dashboard_ruta */
|
|
4112
|
+
declare const useDeleteRolDashboardRuta: () => {
|
|
4113
|
+
mutate: (params: DeleteParams<RolDashboardRutaQuery>) => Promise<boolean>;
|
|
4114
|
+
isLoading: boolean;
|
|
4115
|
+
error: Error | null;
|
|
4116
|
+
success: boolean;
|
|
4117
|
+
};
|
|
4118
|
+
/** @description Hook para useFilterMatch de la entidad rol_dashboard_ruta */
|
|
4119
|
+
declare const useFilterMatchRolDashboardRuta: (params: FilterMatchParams<RolDashboardRutaQuery>) => {
|
|
4120
|
+
data: RolDashboardRutaDTO[] | null;
|
|
4121
|
+
error: Error | null;
|
|
4122
|
+
isFetching: boolean;
|
|
4123
|
+
isLoading: boolean;
|
|
4124
|
+
refetch: () => Promise<void>;
|
|
4125
|
+
};
|
|
4126
|
+
/** @description Hook para useFetchById de la entidad rol_grafica */
|
|
4127
|
+
declare const useFetchByIdRolGrafica: (params: GetByIdParams<RolGraficaQuery>) => {
|
|
4128
|
+
data: RolGraficaDTO | null;
|
|
4129
|
+
error: Error | null;
|
|
4130
|
+
isFetching: boolean;
|
|
4131
|
+
isLoading: boolean;
|
|
4132
|
+
refetch: () => Promise<void>;
|
|
4133
|
+
};
|
|
4134
|
+
/** @description Hook para useFetchList de la entidad rol_grafica */
|
|
4135
|
+
declare const useFetchListRolGrafica: (params: QueryParams<RolGraficaQuery>) => {
|
|
4136
|
+
data: RolGraficaDTO[] | null;
|
|
4137
|
+
error: Error | null;
|
|
4138
|
+
isFetching: boolean;
|
|
4139
|
+
isLoading: boolean;
|
|
4140
|
+
refetch: () => Promise<void>;
|
|
4141
|
+
};
|
|
4142
|
+
/** @description Hook para useCreate de la entidad rol_grafica */
|
|
4143
|
+
declare const useCreateRolGrafica: () => {
|
|
4144
|
+
mutate: (params: CreateParams<RolGraficaCreateDTO, RolGraficaQuery>) => Promise<RolGraficaDTO | null>;
|
|
4145
|
+
isLoading: boolean;
|
|
4146
|
+
error: Error | null;
|
|
4147
|
+
data: RolGraficaDTO | null;
|
|
4148
|
+
};
|
|
4149
|
+
/** @description Hook para useUpdate de la entidad rol_grafica */
|
|
4150
|
+
declare const useUpdateRolGrafica: () => {
|
|
4151
|
+
mutate: (params: UpdateParams<RolGraficaUpdateDTO, RolGraficaQuery>) => Promise<RolGraficaDTO | null>;
|
|
4152
|
+
isLoading: boolean;
|
|
4153
|
+
error: Error | null;
|
|
4154
|
+
data: RolGraficaDTO | null;
|
|
4155
|
+
};
|
|
4156
|
+
/** @description Hook para useDelete de la entidad rol_grafica */
|
|
4157
|
+
declare const useDeleteRolGrafica: () => {
|
|
4158
|
+
mutate: (params: DeleteParams<RolGraficaQuery>) => Promise<boolean>;
|
|
4159
|
+
isLoading: boolean;
|
|
4160
|
+
error: Error | null;
|
|
4161
|
+
success: boolean;
|
|
4162
|
+
};
|
|
4163
|
+
/** @description Hook para useFilterMatch de la entidad rol_grafica */
|
|
4164
|
+
declare const useFilterMatchRolGrafica: (params: FilterMatchParams<RolGraficaQuery>) => {
|
|
4165
|
+
data: RolGraficaDTO[] | null;
|
|
4166
|
+
error: Error | null;
|
|
4167
|
+
isFetching: boolean;
|
|
4168
|
+
isLoading: boolean;
|
|
4169
|
+
refetch: () => Promise<void>;
|
|
4170
|
+
};
|
|
4171
|
+
/** @description Hook para useFetchById de la entidad submodulo */
|
|
4172
|
+
declare const useFetchByIdSubmodulo: (params: GetByIdParams<SubmoduloQuery>) => {
|
|
4173
|
+
data: SubmoduloDTO | null;
|
|
4174
|
+
error: Error | null;
|
|
4175
|
+
isFetching: boolean;
|
|
4176
|
+
isLoading: boolean;
|
|
4177
|
+
refetch: () => Promise<void>;
|
|
4178
|
+
};
|
|
4179
|
+
/** @description Hook para useFetchList de la entidad submodulo */
|
|
4180
|
+
declare const useFetchListSubmodulo: (params: QueryParams<SubmoduloQuery>) => {
|
|
4181
|
+
data: SubmoduloDTO[] | null;
|
|
4182
|
+
error: Error | null;
|
|
4183
|
+
isFetching: boolean;
|
|
4184
|
+
isLoading: boolean;
|
|
4185
|
+
refetch: () => Promise<void>;
|
|
4186
|
+
};
|
|
4187
|
+
/** @description Hook para useCreate de la entidad submodulo */
|
|
4188
|
+
declare const useCreateSubmodulo: () => {
|
|
4189
|
+
mutate: (params: CreateParams<SubmoduloCreateDTO, SubmoduloQuery>) => Promise<SubmoduloDTO | null>;
|
|
4190
|
+
isLoading: boolean;
|
|
4191
|
+
error: Error | null;
|
|
4192
|
+
data: SubmoduloDTO | null;
|
|
4193
|
+
};
|
|
4194
|
+
/** @description Hook para useUpdate de la entidad submodulo */
|
|
4195
|
+
declare const useUpdateSubmodulo: () => {
|
|
4196
|
+
mutate: (params: UpdateParams<SubmoduloUpdateDTO, SubmoduloQuery>) => Promise<SubmoduloDTO | null>;
|
|
4197
|
+
isLoading: boolean;
|
|
4198
|
+
error: Error | null;
|
|
4199
|
+
data: SubmoduloDTO | null;
|
|
4200
|
+
};
|
|
4201
|
+
/** @description Hook para useDelete de la entidad submodulo */
|
|
4202
|
+
declare const useDeleteSubmodulo: () => {
|
|
4203
|
+
mutate: (params: DeleteParams<SubmoduloQuery>) => Promise<boolean>;
|
|
4204
|
+
isLoading: boolean;
|
|
4205
|
+
error: Error | null;
|
|
4206
|
+
success: boolean;
|
|
4207
|
+
};
|
|
4208
|
+
/** @description Hook para useFilterMatch de la entidad submodulo */
|
|
4209
|
+
declare const useFilterMatchSubmodulo: (params: FilterMatchParams<SubmoduloQuery>) => {
|
|
4210
|
+
data: SubmoduloDTO[] | null;
|
|
4211
|
+
error: Error | null;
|
|
4212
|
+
isFetching: boolean;
|
|
4213
|
+
isLoading: boolean;
|
|
4214
|
+
refetch: () => Promise<void>;
|
|
4215
|
+
};
|
|
4216
|
+
/** @description Hook para useFetchById de la entidad tipo_grafica */
|
|
4217
|
+
declare const useFetchByIdTipoGrafica: (params: GetByIdParams<TipoGraficaQuery>) => {
|
|
4218
|
+
data: TipoGraficaDTO | null;
|
|
4219
|
+
error: Error | null;
|
|
4220
|
+
isFetching: boolean;
|
|
4221
|
+
isLoading: boolean;
|
|
4222
|
+
refetch: () => Promise<void>;
|
|
4223
|
+
};
|
|
4224
|
+
/** @description Hook para useFetchList de la entidad tipo_grafica */
|
|
4225
|
+
declare const useFetchListTipoGrafica: (params: QueryParams<TipoGraficaQuery>) => {
|
|
4226
|
+
data: TipoGraficaDTO[] | null;
|
|
4227
|
+
error: Error | null;
|
|
4228
|
+
isFetching: boolean;
|
|
4229
|
+
isLoading: boolean;
|
|
4230
|
+
refetch: () => Promise<void>;
|
|
4231
|
+
};
|
|
4232
|
+
/** @description Hook para useCreate de la entidad tipo_grafica */
|
|
4233
|
+
declare const useCreateTipoGrafica: () => {
|
|
4234
|
+
mutate: (params: CreateParams<TipoGraficaCreateDTO, TipoGraficaQuery>) => Promise<TipoGraficaDTO | null>;
|
|
4235
|
+
isLoading: boolean;
|
|
4236
|
+
error: Error | null;
|
|
4237
|
+
data: TipoGraficaDTO | null;
|
|
4238
|
+
};
|
|
4239
|
+
/** @description Hook para useUpdate de la entidad tipo_grafica */
|
|
4240
|
+
declare const useUpdateTipoGrafica: () => {
|
|
4241
|
+
mutate: (params: UpdateParams<TipoGraficaUpdateDTO, TipoGraficaQuery>) => Promise<TipoGraficaDTO | null>;
|
|
4242
|
+
isLoading: boolean;
|
|
4243
|
+
error: Error | null;
|
|
4244
|
+
data: TipoGraficaDTO | null;
|
|
4245
|
+
};
|
|
4246
|
+
/** @description Hook para useDelete de la entidad tipo_grafica */
|
|
4247
|
+
declare const useDeleteTipoGrafica: () => {
|
|
4248
|
+
mutate: (params: DeleteParams<TipoGraficaQuery>) => Promise<boolean>;
|
|
4249
|
+
isLoading: boolean;
|
|
4250
|
+
error: Error | null;
|
|
4251
|
+
success: boolean;
|
|
4252
|
+
};
|
|
4253
|
+
/** @description Hook para useFilterMatch de la entidad tipo_grafica */
|
|
4254
|
+
declare const useFilterMatchTipoGrafica: (params: FilterMatchParams<TipoGraficaQuery>) => {
|
|
4255
|
+
data: TipoGraficaDTO[] | null;
|
|
4256
|
+
error: Error | null;
|
|
4257
|
+
isFetching: boolean;
|
|
4258
|
+
isLoading: boolean;
|
|
4259
|
+
refetch: () => Promise<void>;
|
|
4260
|
+
};
|
|
4261
|
+
/** @description Hook para useFetchById de la entidad tipo_rol */
|
|
4262
|
+
declare const useFetchByIdTipoRol: (params: GetByIdParams<TipoRolQuery>) => {
|
|
4263
|
+
data: TipoRolDTO | null;
|
|
4264
|
+
error: Error | null;
|
|
4265
|
+
isFetching: boolean;
|
|
4266
|
+
isLoading: boolean;
|
|
4267
|
+
refetch: () => Promise<void>;
|
|
4268
|
+
};
|
|
4269
|
+
/** @description Hook para useFetchList de la entidad tipo_rol */
|
|
4270
|
+
declare const useFetchListTipoRol: (params: QueryParams<TipoRolQuery>) => {
|
|
4271
|
+
data: TipoRolDTO[] | null;
|
|
4272
|
+
error: Error | null;
|
|
4273
|
+
isFetching: boolean;
|
|
4274
|
+
isLoading: boolean;
|
|
4275
|
+
refetch: () => Promise<void>;
|
|
4276
|
+
};
|
|
4277
|
+
/** @description Hook para useCreate de la entidad tipo_rol */
|
|
4278
|
+
declare const useCreateTipoRol: () => {
|
|
4279
|
+
mutate: (params: CreateParams<TipoRolCreateDTO, TipoRolQuery>) => Promise<TipoRolDTO | null>;
|
|
4280
|
+
isLoading: boolean;
|
|
4281
|
+
error: Error | null;
|
|
4282
|
+
data: TipoRolDTO | null;
|
|
4283
|
+
};
|
|
4284
|
+
/** @description Hook para useUpdate de la entidad tipo_rol */
|
|
4285
|
+
declare const useUpdateTipoRol: () => {
|
|
4286
|
+
mutate: (params: UpdateParams<TipoRolUpdateDTO, TipoRolQuery>) => Promise<TipoRolDTO | null>;
|
|
4287
|
+
isLoading: boolean;
|
|
4288
|
+
error: Error | null;
|
|
4289
|
+
data: TipoRolDTO | null;
|
|
4290
|
+
};
|
|
4291
|
+
/** @description Hook para useDelete de la entidad tipo_rol */
|
|
4292
|
+
declare const useDeleteTipoRol: () => {
|
|
4293
|
+
mutate: (params: DeleteParams<TipoRolQuery>) => Promise<boolean>;
|
|
4294
|
+
isLoading: boolean;
|
|
4295
|
+
error: Error | null;
|
|
4296
|
+
success: boolean;
|
|
4297
|
+
};
|
|
4298
|
+
/** @description Hook para useFilterMatch de la entidad tipo_rol */
|
|
4299
|
+
declare const useFilterMatchTipoRol: (params: FilterMatchParams<TipoRolQuery>) => {
|
|
4300
|
+
data: TipoRolDTO[] | null;
|
|
4301
|
+
error: Error | null;
|
|
4302
|
+
isFetching: boolean;
|
|
4303
|
+
isLoading: boolean;
|
|
4304
|
+
refetch: () => Promise<void>;
|
|
4305
|
+
};
|
|
4306
|
+
/** @description Hook para useFetchById de la entidad usuario */
|
|
4307
|
+
declare const useFetchByIdUsuario: (params: GetByIdParams<UsuarioQuery>) => {
|
|
4308
|
+
data: UsuarioDTO | null;
|
|
4309
|
+
error: Error | null;
|
|
4310
|
+
isFetching: boolean;
|
|
4311
|
+
isLoading: boolean;
|
|
4312
|
+
refetch: () => Promise<void>;
|
|
4313
|
+
};
|
|
4314
|
+
/** @description Hook para useFetchList de la entidad usuario */
|
|
4315
|
+
declare const useFetchListUsuario: (params: QueryParams<UsuarioQuery>) => {
|
|
4316
|
+
data: UsuarioDTO[] | null;
|
|
4317
|
+
error: Error | null;
|
|
4318
|
+
isFetching: boolean;
|
|
4319
|
+
isLoading: boolean;
|
|
4320
|
+
refetch: () => Promise<void>;
|
|
4321
|
+
};
|
|
4322
|
+
/** @description Hook para useCreate de la entidad usuario */
|
|
4323
|
+
declare const useCreateUsuario: () => {
|
|
4324
|
+
mutate: (params: CreateParams<UsuarioCreateDTO, UsuarioQuery>) => Promise<UsuarioDTO | null>;
|
|
4325
|
+
isLoading: boolean;
|
|
4326
|
+
error: Error | null;
|
|
4327
|
+
data: UsuarioDTO | null;
|
|
4328
|
+
};
|
|
4329
|
+
/** @description Hook para useUpdate de la entidad usuario */
|
|
4330
|
+
declare const useUpdateUsuario: () => {
|
|
4331
|
+
mutate: (params: UpdateParams<UsuarioUpdateDTO, UsuarioQuery>) => Promise<UsuarioDTO | null>;
|
|
4332
|
+
isLoading: boolean;
|
|
4333
|
+
error: Error | null;
|
|
4334
|
+
data: UsuarioDTO | null;
|
|
4335
|
+
};
|
|
4336
|
+
/** @description Hook para useDelete de la entidad usuario */
|
|
4337
|
+
declare const useDeleteUsuario: () => {
|
|
4338
|
+
mutate: (params: DeleteParams<UsuarioQuery>) => Promise<boolean>;
|
|
4339
|
+
isLoading: boolean;
|
|
4340
|
+
error: Error | null;
|
|
4341
|
+
success: boolean;
|
|
4342
|
+
};
|
|
4343
|
+
/** @description Hook para useFilterMatch de la entidad usuario */
|
|
4344
|
+
declare const useFilterMatchUsuario: (params: FilterMatchParams<UsuarioQuery>) => {
|
|
4345
|
+
data: UsuarioDTO[] | null;
|
|
4346
|
+
error: Error | null;
|
|
4347
|
+
isFetching: boolean;
|
|
4348
|
+
isLoading: boolean;
|
|
4349
|
+
refetch: () => Promise<void>;
|
|
4350
|
+
};
|
|
4351
|
+
/** @description Hook para useFetchById de la entidad usuario_dashboard_acceso */
|
|
4352
|
+
declare const useFetchByIdUsuarioDashboardAcceso: (params: GetByIdParams<UsuarioDashboardAccesoQuery>) => {
|
|
4353
|
+
data: UsuarioDashboardAccesoDTO | null;
|
|
4354
|
+
error: Error | null;
|
|
4355
|
+
isFetching: boolean;
|
|
4356
|
+
isLoading: boolean;
|
|
4357
|
+
refetch: () => Promise<void>;
|
|
4358
|
+
};
|
|
4359
|
+
/** @description Hook para useFetchList de la entidad usuario_dashboard_acceso */
|
|
4360
|
+
declare const useFetchListUsuarioDashboardAcceso: (params: QueryParams<UsuarioDashboardAccesoQuery>) => {
|
|
4361
|
+
data: UsuarioDashboardAccesoDTO[] | null;
|
|
4362
|
+
error: Error | null;
|
|
4363
|
+
isFetching: boolean;
|
|
4364
|
+
isLoading: boolean;
|
|
4365
|
+
refetch: () => Promise<void>;
|
|
4366
|
+
};
|
|
4367
|
+
/** @description Hook para useCreate de la entidad usuario_dashboard_acceso */
|
|
4368
|
+
declare const useCreateUsuarioDashboardAcceso: () => {
|
|
4369
|
+
mutate: (params: CreateParams<UsuarioDashboardAccesoCreateDTO, UsuarioDashboardAccesoQuery>) => Promise<UsuarioDashboardAccesoDTO | null>;
|
|
4370
|
+
isLoading: boolean;
|
|
4371
|
+
error: Error | null;
|
|
4372
|
+
data: UsuarioDashboardAccesoDTO | null;
|
|
4373
|
+
};
|
|
4374
|
+
/** @description Hook para useUpdate de la entidad usuario_dashboard_acceso */
|
|
4375
|
+
declare const useUpdateUsuarioDashboardAcceso: () => {
|
|
4376
|
+
mutate: (params: UpdateParams<UsuarioDashboardAccesoUpdateDTO, UsuarioDashboardAccesoQuery>) => Promise<UsuarioDashboardAccesoDTO | null>;
|
|
4377
|
+
isLoading: boolean;
|
|
4378
|
+
error: Error | null;
|
|
4379
|
+
data: UsuarioDashboardAccesoDTO | null;
|
|
4380
|
+
};
|
|
4381
|
+
/** @description Hook para useDelete de la entidad usuario_dashboard_acceso */
|
|
4382
|
+
declare const useDeleteUsuarioDashboardAcceso: () => {
|
|
4383
|
+
mutate: (params: DeleteParams<UsuarioDashboardAccesoQuery>) => Promise<boolean>;
|
|
4384
|
+
isLoading: boolean;
|
|
4385
|
+
error: Error | null;
|
|
4386
|
+
success: boolean;
|
|
4387
|
+
};
|
|
4388
|
+
/** @description Hook para useFilterMatch de la entidad usuario_dashboard_acceso */
|
|
4389
|
+
declare const useFilterMatchUsuarioDashboardAcceso: (params: FilterMatchParams<UsuarioDashboardAccesoQuery>) => {
|
|
4390
|
+
data: UsuarioDashboardAccesoDTO[] | null;
|
|
4391
|
+
error: Error | null;
|
|
4392
|
+
isFetching: boolean;
|
|
4393
|
+
isLoading: boolean;
|
|
4394
|
+
refetch: () => Promise<void>;
|
|
4395
|
+
};
|
|
4396
|
+
/** @description Hook para useFetchById de la entidad usuario_grafica */
|
|
4397
|
+
declare const useFetchByIdUsuarioGrafica: (params: GetByIdParams<UsuarioGraficaQuery>) => {
|
|
4398
|
+
data: UsuarioGraficaDTO | null;
|
|
4399
|
+
error: Error | null;
|
|
4400
|
+
isFetching: boolean;
|
|
4401
|
+
isLoading: boolean;
|
|
4402
|
+
refetch: () => Promise<void>;
|
|
4403
|
+
};
|
|
4404
|
+
/** @description Hook para useFetchList de la entidad usuario_grafica */
|
|
4405
|
+
declare const useFetchListUsuarioGrafica: (params: QueryParams<UsuarioGraficaQuery>) => {
|
|
4406
|
+
data: UsuarioGraficaDTO[] | null;
|
|
4407
|
+
error: Error | null;
|
|
4408
|
+
isFetching: boolean;
|
|
4409
|
+
isLoading: boolean;
|
|
4410
|
+
refetch: () => Promise<void>;
|
|
4411
|
+
};
|
|
4412
|
+
/** @description Hook para useCreate de la entidad usuario_grafica */
|
|
4413
|
+
declare const useCreateUsuarioGrafica: () => {
|
|
4414
|
+
mutate: (params: CreateParams<UsuarioGraficaCreateDTO, UsuarioGraficaQuery>) => Promise<UsuarioGraficaDTO | null>;
|
|
4415
|
+
isLoading: boolean;
|
|
4416
|
+
error: Error | null;
|
|
4417
|
+
data: UsuarioGraficaDTO | null;
|
|
4418
|
+
};
|
|
4419
|
+
/** @description Hook para useUpdate de la entidad usuario_grafica */
|
|
4420
|
+
declare const useUpdateUsuarioGrafica: () => {
|
|
4421
|
+
mutate: (params: UpdateParams<UsuarioGraficaUpdateDTO, UsuarioGraficaQuery>) => Promise<UsuarioGraficaDTO | null>;
|
|
4422
|
+
isLoading: boolean;
|
|
4423
|
+
error: Error | null;
|
|
4424
|
+
data: UsuarioGraficaDTO | null;
|
|
4425
|
+
};
|
|
4426
|
+
/** @description Hook para useDelete de la entidad usuario_grafica */
|
|
4427
|
+
declare const useDeleteUsuarioGrafica: () => {
|
|
4428
|
+
mutate: (params: DeleteParams<UsuarioGraficaQuery>) => Promise<boolean>;
|
|
4429
|
+
isLoading: boolean;
|
|
4430
|
+
error: Error | null;
|
|
4431
|
+
success: boolean;
|
|
4432
|
+
};
|
|
4433
|
+
/** @description Hook para useFilterMatch de la entidad usuario_grafica */
|
|
4434
|
+
declare const useFilterMatchUsuarioGrafica: (params: FilterMatchParams<UsuarioGraficaQuery>) => {
|
|
4435
|
+
data: UsuarioGraficaDTO[] | null;
|
|
4436
|
+
error: Error | null;
|
|
4437
|
+
isFetching: boolean;
|
|
4438
|
+
isLoading: boolean;
|
|
4439
|
+
refetch: () => Promise<void>;
|
|
4440
|
+
};
|
|
4441
|
+
/** @description Hook para useFetchById de la entidad usuario_grafica_excluida */
|
|
4442
|
+
declare const useFetchByIdUsuarioGraficaExcluida: (params: GetByIdParams<UsuarioGraficaExcluidaQuery>) => {
|
|
4443
|
+
data: UsuarioGraficaExcluidaDTO | null;
|
|
4444
|
+
error: Error | null;
|
|
4445
|
+
isFetching: boolean;
|
|
4446
|
+
isLoading: boolean;
|
|
4447
|
+
refetch: () => Promise<void>;
|
|
4448
|
+
};
|
|
4449
|
+
/** @description Hook para useFetchList de la entidad usuario_grafica_excluida */
|
|
4450
|
+
declare const useFetchListUsuarioGraficaExcluida: (params: QueryParams<UsuarioGraficaExcluidaQuery>) => {
|
|
4451
|
+
data: UsuarioGraficaExcluidaDTO[] | null;
|
|
4452
|
+
error: Error | null;
|
|
4453
|
+
isFetching: boolean;
|
|
4454
|
+
isLoading: boolean;
|
|
4455
|
+
refetch: () => Promise<void>;
|
|
4456
|
+
};
|
|
4457
|
+
/** @description Hook para useCreate de la entidad usuario_grafica_excluida */
|
|
4458
|
+
declare const useCreateUsuarioGraficaExcluida: () => {
|
|
4459
|
+
mutate: (params: CreateParams<UsuarioGraficaExcluidaCreateDTO, UsuarioGraficaExcluidaQuery>) => Promise<UsuarioGraficaExcluidaDTO | null>;
|
|
4460
|
+
isLoading: boolean;
|
|
4461
|
+
error: Error | null;
|
|
4462
|
+
data: UsuarioGraficaExcluidaDTO | null;
|
|
4463
|
+
};
|
|
4464
|
+
/** @description Hook para useUpdate de la entidad usuario_grafica_excluida */
|
|
4465
|
+
declare const useUpdateUsuarioGraficaExcluida: () => {
|
|
4466
|
+
mutate: (params: UpdateParams<UsuarioGraficaExcluidaUpdateDTO, UsuarioGraficaExcluidaQuery>) => Promise<UsuarioGraficaExcluidaDTO | null>;
|
|
4467
|
+
isLoading: boolean;
|
|
4468
|
+
error: Error | null;
|
|
4469
|
+
data: UsuarioGraficaExcluidaDTO | null;
|
|
4470
|
+
};
|
|
4471
|
+
/** @description Hook para useDelete de la entidad usuario_grafica_excluida */
|
|
4472
|
+
declare const useDeleteUsuarioGraficaExcluida: () => {
|
|
4473
|
+
mutate: (params: DeleteParams<UsuarioGraficaExcluidaQuery>) => Promise<boolean>;
|
|
4474
|
+
isLoading: boolean;
|
|
4475
|
+
error: Error | null;
|
|
4476
|
+
success: boolean;
|
|
4477
|
+
};
|
|
4478
|
+
/** @description Hook para useFilterMatch de la entidad usuario_grafica_excluida */
|
|
4479
|
+
declare const useFilterMatchUsuarioGraficaExcluida: (params: FilterMatchParams<UsuarioGraficaExcluidaQuery>) => {
|
|
4480
|
+
data: UsuarioGraficaExcluidaDTO[] | null;
|
|
4481
|
+
error: Error | null;
|
|
4482
|
+
isFetching: boolean;
|
|
4483
|
+
isLoading: boolean;
|
|
4484
|
+
refetch: () => Promise<void>;
|
|
4485
|
+
};
|
|
4486
|
+
/** @description Hook para useFetchById de la entidad usuario_rol */
|
|
4487
|
+
declare const useFetchByIdUsuarioRol: (params: GetByIdParams<UsuarioRolQuery>) => {
|
|
4488
|
+
data: UsuarioRolDTO | null;
|
|
4489
|
+
error: Error | null;
|
|
4490
|
+
isFetching: boolean;
|
|
4491
|
+
isLoading: boolean;
|
|
4492
|
+
refetch: () => Promise<void>;
|
|
4493
|
+
};
|
|
4494
|
+
/** @description Hook para useFetchList de la entidad usuario_rol */
|
|
4495
|
+
declare const useFetchListUsuarioRol: (params: QueryParams<UsuarioRolQuery>) => {
|
|
4496
|
+
data: UsuarioRolDTO[] | null;
|
|
4497
|
+
error: Error | null;
|
|
4498
|
+
isFetching: boolean;
|
|
4499
|
+
isLoading: boolean;
|
|
4500
|
+
refetch: () => Promise<void>;
|
|
4501
|
+
};
|
|
4502
|
+
/** @description Hook para useCreate de la entidad usuario_rol */
|
|
4503
|
+
declare const useCreateUsuarioRol: () => {
|
|
4504
|
+
mutate: (params: CreateParams<UsuarioRolCreateDTO, UsuarioRolQuery>) => Promise<UsuarioRolDTO | null>;
|
|
4505
|
+
isLoading: boolean;
|
|
4506
|
+
error: Error | null;
|
|
4507
|
+
data: UsuarioRolDTO | null;
|
|
4508
|
+
};
|
|
4509
|
+
/** @description Hook para useUpdate de la entidad usuario_rol */
|
|
4510
|
+
declare const useUpdateUsuarioRol: () => {
|
|
4511
|
+
mutate: (params: UpdateParams<UsuarioRolUpdateDTO, UsuarioRolQuery>) => Promise<UsuarioRolDTO | null>;
|
|
4512
|
+
isLoading: boolean;
|
|
4513
|
+
error: Error | null;
|
|
4514
|
+
data: UsuarioRolDTO | null;
|
|
4515
|
+
};
|
|
4516
|
+
/** @description Hook para useDelete de la entidad usuario_rol */
|
|
4517
|
+
declare const useDeleteUsuarioRol: () => {
|
|
4518
|
+
mutate: (params: DeleteParams<UsuarioRolQuery>) => Promise<boolean>;
|
|
4519
|
+
isLoading: boolean;
|
|
4520
|
+
error: Error | null;
|
|
4521
|
+
success: boolean;
|
|
4522
|
+
};
|
|
4523
|
+
/** @description Hook para useFilterMatch de la entidad usuario_rol */
|
|
4524
|
+
declare const useFilterMatchUsuarioRol: (params: FilterMatchParams<UsuarioRolQuery>) => {
|
|
4525
|
+
data: UsuarioRolDTO[] | null;
|
|
4526
|
+
error: Error | null;
|
|
4527
|
+
isFetching: boolean;
|
|
4528
|
+
isLoading: boolean;
|
|
4529
|
+
refetch: () => Promise<void>;
|
|
4530
|
+
};
|
|
4531
|
+
|
|
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 };
|