@erpp/react-api-cronos-frontend 1.0.29 → 1.0.31

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 CHANGED
@@ -1428,6 +1428,7 @@ interface DashboardGraficaElementoQuery extends BaseQuery {
1428
1428
  interface DashboardGraficaElementoParams extends APIClientParams {
1429
1429
  }
1430
1430
  interface DashboardGraficaElementoTreeParams {
1431
+ dashboard_grafica_grupo_id?: number;
1431
1432
  rol_id?: number;
1432
1433
  orderBy?: string;
1433
1434
  page: number;
@@ -1617,11 +1618,17 @@ declare class DashboardGraficaGrupoEstiloAPI extends APICRUDClientBase<Dashboard
1617
1618
  constructor(params?: DashboardGraficaGrupoEstiloParams);
1618
1619
  }
1619
1620
 
1621
+ interface DashboardGraficaGrupo {
1622
+ titulo: string;
1623
+ json_snapshot_orden: string;
1624
+ }
1620
1625
  interface DashboardGraficaGrupoRolDTO {
1621
1626
  /** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey */
1622
1627
  dashboard_grafica_grupo_id: number;
1623
1628
  /** @foreignKey (rol.rol_id) @maxLength (4) @nullable */
1624
1629
  rol_id?: number;
1630
+ /** @exclusivo para consultas */
1631
+ dashboard_grafica_grupo?: DashboardGraficaGrupo;
1625
1632
  }
1626
1633
  interface DashboardGraficaGrupoRolCreateDTO {
1627
1634
  /** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey */
@@ -3721,7 +3728,7 @@ declare function createApiHooksBase<TDTO extends object, TCreate extends object,
3721
3728
  error: Error | null;
3722
3729
  isFetching: boolean;
3723
3730
  isLoading: boolean;
3724
- refetch: () => Promise<void>;
3731
+ refetch: (newParams?: GetByIdParams<TQuery>) => Promise<void>;
3725
3732
  };
3726
3733
  useFetchList: (params: QueryParams<TQuery>, config?: useFetchListConfig) => {
3727
3734
  data: PaginatedResponse<TResponse> | null;
@@ -4148,7 +4155,7 @@ declare const useFetchByIdAdeudo: (params: GetByIdParams<AdeudoQuery>) => {
4148
4155
  error: Error | null;
4149
4156
  isFetching: boolean;
4150
4157
  isLoading: boolean;
4151
- refetch: () => Promise<void>;
4158
+ refetch: (newParams?: GetByIdParams<AdeudoQuery> | undefined) => Promise<void>;
4152
4159
  };
4153
4160
  /** @description Hook para useFetchList de la entidad adeudo */
4154
4161
  declare const useFetchListAdeudo: (params: QueryParams<AdeudoQuery>, config?: useFetchListConfig) => {
@@ -4210,7 +4217,7 @@ declare const useFetchByIdCatColor: (params: GetByIdParams<CatColorQuery>) => {
4210
4217
  error: Error | null;
4211
4218
  isFetching: boolean;
4212
4219
  isLoading: boolean;
4213
- refetch: () => Promise<void>;
4220
+ refetch: (newParams?: GetByIdParams<CatColorQuery> | undefined) => Promise<void>;
4214
4221
  };
4215
4222
  /** @description Hook para useFetchList de la entidad cat_color */
4216
4223
  declare const useFetchListCatColor: (params: QueryParams<CatColorQuery>, config?: useFetchListConfig) => {
@@ -4272,7 +4279,7 @@ declare const useFetchByIdCatColorGrupo: (params: GetByIdParams<CatColorGrupoQue
4272
4279
  error: Error | null;
4273
4280
  isFetching: boolean;
4274
4281
  isLoading: boolean;
4275
- refetch: () => Promise<void>;
4282
+ refetch: (newParams?: GetByIdParams<CatColorGrupoQuery> | undefined) => Promise<void>;
4276
4283
  };
4277
4284
  /** @description Hook para useFetchList de la entidad cat_color_grupo */
4278
4285
  declare const useFetchListCatColorGrupo: (params: QueryParams<CatColorGrupoQuery>, config?: useFetchListConfig) => {
@@ -4334,7 +4341,7 @@ declare const useFetchByIdCatGraficaGrupo: (params: GetByIdParams<CatGraficaGrup
4334
4341
  error: Error | null;
4335
4342
  isFetching: boolean;
4336
4343
  isLoading: boolean;
4337
- refetch: () => Promise<void>;
4344
+ refetch: (newParams?: GetByIdParams<CatGraficaGrupoQuery> | undefined) => Promise<void>;
4338
4345
  };
4339
4346
  /** @description Hook para useFetchList de la entidad cat_grafica_grupo */
4340
4347
  declare const useFetchListCatGraficaGrupo: (params: QueryParams<CatGraficaGrupoQuery>, config?: useFetchListConfig) => {
@@ -4396,7 +4403,7 @@ declare const useFetchByIdCatRolGrupo: (params: GetByIdParams<CatRolGrupoQuery>)
4396
4403
  error: Error | null;
4397
4404
  isFetching: boolean;
4398
4405
  isLoading: boolean;
4399
- refetch: () => Promise<void>;
4406
+ refetch: (newParams?: GetByIdParams<CatRolGrupoQuery> | undefined) => Promise<void>;
4400
4407
  };
4401
4408
  /** @description Hook para useFetchList de la entidad cat_rol_grupo */
4402
4409
  declare const useFetchListCatRolGrupo: (params: QueryParams<CatRolGrupoQuery>, config?: useFetchListConfig) => {
@@ -4458,7 +4465,7 @@ declare const useFetchByIdCatTema: (params: GetByIdParams<CatTemaQuery>) => {
4458
4465
  error: Error | null;
4459
4466
  isFetching: boolean;
4460
4467
  isLoading: boolean;
4461
- refetch: () => Promise<void>;
4468
+ refetch: (newParams?: GetByIdParams<CatTemaQuery> | undefined) => Promise<void>;
4462
4469
  };
4463
4470
  /** @description Hook para useFetchList de la entidad cat_tema */
4464
4471
  declare const useFetchListCatTema: (params: QueryParams<CatTemaQuery>, config?: useFetchListConfig) => {
@@ -4520,7 +4527,7 @@ declare const useFetchByIdDashboardEstilo: (params: GetByIdParams<DashboardEstil
4520
4527
  error: Error | null;
4521
4528
  isFetching: boolean;
4522
4529
  isLoading: boolean;
4523
- refetch: () => Promise<void>;
4530
+ refetch: (newParams?: GetByIdParams<DashboardEstiloQuery> | undefined) => Promise<void>;
4524
4531
  };
4525
4532
  /** @description Hook para useFetchList de la entidad dashboard_estilo */
4526
4533
  declare const useFetchListDashboardEstilo: (params: QueryParams<DashboardEstiloQuery>, config?: useFetchListConfig) => {
@@ -4582,7 +4589,7 @@ declare const useFetchByIdDashboardGrafica: (params: GetByIdParams<DashboardGraf
4582
4589
  error: Error | null;
4583
4590
  isFetching: boolean;
4584
4591
  isLoading: boolean;
4585
- refetch: () => Promise<void>;
4592
+ refetch: (newParams?: GetByIdParams<DashboardGraficaQuery> | undefined) => Promise<void>;
4586
4593
  };
4587
4594
  /** @description Hook para useFetchList de la entidad dashboard_grafica */
4588
4595
  declare const useFetchListDashboardGrafica: (params: QueryParams<DashboardGraficaQuery>, config?: useFetchListConfig) => {
@@ -4644,7 +4651,7 @@ declare const useFetchByIdDashboardGraficaElemento: (params: GetByIdParams<Dashb
4644
4651
  error: Error | null;
4645
4652
  isFetching: boolean;
4646
4653
  isLoading: boolean;
4647
- refetch: () => Promise<void>;
4654
+ refetch: (newParams?: GetByIdParams<DashboardGraficaElementoQuery> | undefined) => Promise<void>;
4648
4655
  };
4649
4656
  /** @description Hook para useFetchList de la entidad dashboard_grafica_elemento */
4650
4657
  declare const useFetchListDashboardGraficaElemento: (params: QueryParams<DashboardGraficaElementoQuery>, config?: useFetchListConfig) => {
@@ -4713,7 +4720,7 @@ declare const useFetchByIdDashboardGraficaElementoDetalle: (params: GetByIdParam
4713
4720
  error: Error | null;
4714
4721
  isFetching: boolean;
4715
4722
  isLoading: boolean;
4716
- refetch: () => Promise<void>;
4723
+ refetch: (newParams?: GetByIdParams<DashboardGraficaElementoDetalleQuery> | undefined) => Promise<void>;
4717
4724
  };
4718
4725
  /** @description Hook para useFetchList de la entidad dashboard_grafica_elemento_detalle */
4719
4726
  declare const useFetchListDashboardGraficaElementoDetalle: (params: QueryParams<DashboardGraficaElementoDetalleQuery>, config?: useFetchListConfig) => {
@@ -4775,7 +4782,7 @@ declare const useFetchByIdDashboardGraficaElementoEstilo: (params: GetByIdParams
4775
4782
  error: Error | null;
4776
4783
  isFetching: boolean;
4777
4784
  isLoading: boolean;
4778
- refetch: () => Promise<void>;
4785
+ refetch: (newParams?: GetByIdParams<DashboardGraficaElementoEstiloQuery> | undefined) => Promise<void>;
4779
4786
  };
4780
4787
  /** @description Hook para useFetchList de la entidad dashboard_grafica_elemento_estilo */
4781
4788
  declare const useFetchListDashboardGraficaElementoEstilo: (params: QueryParams<DashboardGraficaElementoEstiloQuery>, config?: useFetchListConfig) => {
@@ -4837,7 +4844,7 @@ declare const useFetchByIdDashboardGraficaElementoParametro: (params: GetByIdPar
4837
4844
  error: Error | null;
4838
4845
  isFetching: boolean;
4839
4846
  isLoading: boolean;
4840
- refetch: () => Promise<void>;
4847
+ refetch: (newParams?: GetByIdParams<DashboardGraficaElementoParametroQuery> | undefined) => Promise<void>;
4841
4848
  };
4842
4849
  /** @description Hook para useFetchList de la entidad dashboard_grafica_elemento_parametro */
4843
4850
  declare const useFetchListDashboardGraficaElementoParametro: (params: QueryParams<DashboardGraficaElementoParametroQuery>, config?: useFetchListConfig) => {
@@ -4899,7 +4906,7 @@ declare const useFetchByIdDashboardGraficaGrupo: (params: GetByIdParams<Dashboar
4899
4906
  error: Error | null;
4900
4907
  isFetching: boolean;
4901
4908
  isLoading: boolean;
4902
- refetch: () => Promise<void>;
4909
+ refetch: (newParams?: GetByIdParams<DashboardGraficaGrupoQuery> | undefined) => Promise<void>;
4903
4910
  };
4904
4911
  /** @description Hook para useFetchList de la entidad dashboard_grafica_grupo */
4905
4912
  declare const useFetchListDashboardGraficaGrupo: (params: QueryParams<DashboardGraficaGrupoQuery>, config?: useFetchListConfig) => {
@@ -4961,7 +4968,7 @@ declare const useFetchByIdDashboardGraficaGrupoEstilo: (params: GetByIdParams<Da
4961
4968
  error: Error | null;
4962
4969
  isFetching: boolean;
4963
4970
  isLoading: boolean;
4964
- refetch: () => Promise<void>;
4971
+ refetch: (newParams?: GetByIdParams<DashboardGraficaGrupoEstiloQuery> | undefined) => Promise<void>;
4965
4972
  };
4966
4973
  /** @description Hook para useFetchList de la entidad dashboard_grafica_grupo_estilo */
4967
4974
  declare const useFetchListDashboardGraficaGrupoEstilo: (params: QueryParams<DashboardGraficaGrupoEstiloQuery>, config?: useFetchListConfig) => {
@@ -5023,7 +5030,7 @@ declare const useFetchByIdDashboardGraficaGrupoRol: (params: GetByIdParams<Dashb
5023
5030
  error: Error | null;
5024
5031
  isFetching: boolean;
5025
5032
  isLoading: boolean;
5026
- refetch: () => Promise<void>;
5033
+ refetch: (newParams?: GetByIdParams<DashboardGraficaGrupoRolQuery> | undefined) => Promise<void>;
5027
5034
  };
5028
5035
  /** @description Hook para useFetchList de la entidad dashboard_grafica_grupo_rol */
5029
5036
  declare const useFetchListDashboardGraficaGrupoRol: (params: QueryParams<DashboardGraficaGrupoRolQuery>, config?: useFetchListConfig) => {
@@ -5085,7 +5092,7 @@ declare const useFetchByIdDashboardRuta: (params: GetByIdParams<DashboardRutaQue
5085
5092
  error: Error | null;
5086
5093
  isFetching: boolean;
5087
5094
  isLoading: boolean;
5088
- refetch: () => Promise<void>;
5095
+ refetch: (newParams?: GetByIdParams<DashboardRutaQuery> | undefined) => Promise<void>;
5089
5096
  };
5090
5097
  /** @description Hook para useFetchList de la entidad dashboard_ruta */
5091
5098
  declare const useFetchListDashboardRuta: (params: QueryParams<DashboardRutaQuery>, config?: useFetchListConfig) => {
@@ -5147,7 +5154,7 @@ declare const useFetchByIdGrafica: (params: GetByIdParams<GraficaQuery>) => {
5147
5154
  error: Error | null;
5148
5155
  isFetching: boolean;
5149
5156
  isLoading: boolean;
5150
- refetch: () => Promise<void>;
5157
+ refetch: (newParams?: GetByIdParams<GraficaQuery> | undefined) => Promise<void>;
5151
5158
  };
5152
5159
  /** @description Hook para useFetchList de la entidad grafica */
5153
5160
  declare const useFetchListGrafica: (params: QueryParams<GraficaQuery>, config?: useFetchListConfig) => {
@@ -5209,7 +5216,7 @@ declare const useFetchByIdGraficaColor: (params: GetByIdParams<GraficaColorQuery
5209
5216
  error: Error | null;
5210
5217
  isFetching: boolean;
5211
5218
  isLoading: boolean;
5212
- refetch: () => Promise<void>;
5219
+ refetch: (newParams?: GetByIdParams<GraficaColorQuery> | undefined) => Promise<void>;
5213
5220
  };
5214
5221
  /** @description Hook para useFetchList de la entidad grafica_color */
5215
5222
  declare const useFetchListGraficaColor: (params: QueryParams<GraficaColorQuery>, config?: useFetchListConfig) => {
@@ -5271,7 +5278,7 @@ declare const useFetchByIdGraficaColorGrupo: (params: GetByIdParams<GraficaColor
5271
5278
  error: Error | null;
5272
5279
  isFetching: boolean;
5273
5280
  isLoading: boolean;
5274
- refetch: () => Promise<void>;
5281
+ refetch: (newParams?: GetByIdParams<GraficaColorGrupoQuery> | undefined) => Promise<void>;
5275
5282
  };
5276
5283
  /** @description Hook para useFetchList de la entidad grafica_color_grupo */
5277
5284
  declare const useFetchListGraficaColorGrupo: (params: QueryParams<GraficaColorGrupoQuery>, config?: useFetchListConfig) => {
@@ -5333,7 +5340,7 @@ declare const useFetchByIdGraficaColorGrupoAsignacion: (params: GetByIdParams<Gr
5333
5340
  error: Error | null;
5334
5341
  isFetching: boolean;
5335
5342
  isLoading: boolean;
5336
- refetch: () => Promise<void>;
5343
+ refetch: (newParams?: GetByIdParams<GraficaColorGrupoAsignacionQuery> | undefined) => Promise<void>;
5337
5344
  };
5338
5345
  /** @description Hook para useFetchList de la entidad grafica_color_grupo_asignacion */
5339
5346
  declare const useFetchListGraficaColorGrupoAsignacion: (params: QueryParams<GraficaColorGrupoAsignacionQuery>, config?: useFetchListConfig) => {
@@ -5395,7 +5402,7 @@ declare const useFetchByIdGraficaColorGrupoTipoGrafica: (params: GetByIdParams<G
5395
5402
  error: Error | null;
5396
5403
  isFetching: boolean;
5397
5404
  isLoading: boolean;
5398
- refetch: () => Promise<void>;
5405
+ refetch: (newParams?: GetByIdParams<GraficaColorGrupoTipoGraficaQuery> | undefined) => Promise<void>;
5399
5406
  };
5400
5407
  /** @description Hook para useFetchList de la entidad grafica_color_grupo_tipo_grafica */
5401
5408
  declare const useFetchListGraficaColorGrupoTipoGrafica: (params: QueryParams<GraficaColorGrupoTipoGraficaQuery>, config?: useFetchListConfig) => {
@@ -5457,7 +5464,7 @@ declare const useFetchByIdGraficaParametro: (params: GetByIdParams<GraficaParame
5457
5464
  error: Error | null;
5458
5465
  isFetching: boolean;
5459
5466
  isLoading: boolean;
5460
- refetch: () => Promise<void>;
5467
+ refetch: (newParams?: GetByIdParams<GraficaParametroQuery> | undefined) => Promise<void>;
5461
5468
  };
5462
5469
  /** @description Hook para useFetchList de la entidad grafica_parametro */
5463
5470
  declare const useFetchListGraficaParametro: (params: QueryParams<GraficaParametroQuery>, config?: useFetchListConfig) => {
@@ -5519,7 +5526,7 @@ declare const useFetchByIdGraficaParametroDefecto: (params: GetByIdParams<Grafic
5519
5526
  error: Error | null;
5520
5527
  isFetching: boolean;
5521
5528
  isLoading: boolean;
5522
- refetch: () => Promise<void>;
5529
+ refetch: (newParams?: GetByIdParams<GraficaParametroDefectoQuery> | undefined) => Promise<void>;
5523
5530
  };
5524
5531
  /** @description Hook para useFetchList de la entidad grafica_parametro_defecto */
5525
5532
  declare const useFetchListGraficaParametroDefecto: (params: QueryParams<GraficaParametroDefectoQuery>, config?: useFetchListConfig) => {
@@ -5581,7 +5588,7 @@ declare const useFetchByIdGraficaParametroTipo: (params: GetByIdParams<GraficaPa
5581
5588
  error: Error | null;
5582
5589
  isFetching: boolean;
5583
5590
  isLoading: boolean;
5584
- refetch: () => Promise<void>;
5591
+ refetch: (newParams?: GetByIdParams<GraficaParametroTipoQuery> | undefined) => Promise<void>;
5585
5592
  };
5586
5593
  /** @description Hook para useFetchList de la entidad grafica_parametro_tipo */
5587
5594
  declare const useFetchListGraficaParametroTipo: (params: QueryParams<GraficaParametroTipoQuery>, config?: useFetchListConfig) => {
@@ -5643,7 +5650,7 @@ declare const useFetchByIdRol: (params: GetByIdParams<RolQuery>) => {
5643
5650
  error: Error | null;
5644
5651
  isFetching: boolean;
5645
5652
  isLoading: boolean;
5646
- refetch: () => Promise<void>;
5653
+ refetch: (newParams?: GetByIdParams<RolQuery> | undefined) => Promise<void>;
5647
5654
  };
5648
5655
  /** @description Hook para useFetchList de la entidad rol */
5649
5656
  declare const useFetchListRol: (params: QueryParams<RolQuery>, config?: useFetchListConfig) => {
@@ -5705,7 +5712,7 @@ declare const useFetchByIdRolDashboardRuta: (params: GetByIdParams<RolDashboardR
5705
5712
  error: Error | null;
5706
5713
  isFetching: boolean;
5707
5714
  isLoading: boolean;
5708
- refetch: () => Promise<void>;
5715
+ refetch: (newParams?: GetByIdParams<RolDashboardRutaQuery> | undefined) => Promise<void>;
5709
5716
  };
5710
5717
  /** @description Hook para useFetchList de la entidad rol_dashboard_ruta */
5711
5718
  declare const useFetchListRolDashboardRuta: (params: QueryParams<RolDashboardRutaQuery>, config?: useFetchListConfig) => {
@@ -5767,7 +5774,7 @@ declare const useFetchByIdTipoGrafica: (params: GetByIdParams<TipoGraficaQuery>)
5767
5774
  error: Error | null;
5768
5775
  isFetching: boolean;
5769
5776
  isLoading: boolean;
5770
- refetch: () => Promise<void>;
5777
+ refetch: (newParams?: GetByIdParams<TipoGraficaQuery> | undefined) => Promise<void>;
5771
5778
  };
5772
5779
  /** @description Hook para useFetchList de la entidad tipo_grafica */
5773
5780
  declare const useFetchListTipoGrafica: (params: QueryParams<TipoGraficaQuery>, config?: useFetchListConfig) => {
@@ -5829,7 +5836,7 @@ declare const useFetchByIdUsuario: (params: GetByIdParams<UsuarioQuery>) => {
5829
5836
  error: Error | null;
5830
5837
  isFetching: boolean;
5831
5838
  isLoading: boolean;
5832
- refetch: () => Promise<void>;
5839
+ refetch: (newParams?: GetByIdParams<UsuarioQuery> | undefined) => Promise<void>;
5833
5840
  };
5834
5841
  /** @description Hook para useFetchList de la entidad usuario */
5835
5842
  declare const useFetchListUsuario: (params: QueryParams<UsuarioQuery>, config?: useFetchListConfig) => {
@@ -5891,7 +5898,7 @@ declare const useFetchByIdUsuarioDashboardAcceso: (params: GetByIdParams<Usuario
5891
5898
  error: Error | null;
5892
5899
  isFetching: boolean;
5893
5900
  isLoading: boolean;
5894
- refetch: () => Promise<void>;
5901
+ refetch: (newParams?: GetByIdParams<UsuarioDashboardAccesoQuery> | undefined) => Promise<void>;
5895
5902
  };
5896
5903
  /** @description Hook para useFetchList de la entidad usuario_dashboard_acceso */
5897
5904
  declare const useFetchListUsuarioDashboardAcceso: (params: QueryParams<UsuarioDashboardAccesoQuery>, config?: useFetchListConfig) => {
@@ -5953,7 +5960,7 @@ declare const useFetchByIdUsuarioRol: (params: GetByIdParams<UsuarioRolQuery>) =
5953
5960
  error: Error | null;
5954
5961
  isFetching: boolean;
5955
5962
  isLoading: boolean;
5956
- refetch: () => Promise<void>;
5963
+ refetch: (newParams?: GetByIdParams<UsuarioRolQuery> | undefined) => Promise<void>;
5957
5964
  };
5958
5965
  /** @description Hook para useFetchList de la entidad usuario_rol */
5959
5966
  declare const useFetchListUsuarioRol: (params: QueryParams<UsuarioRolQuery>, config?: useFetchListConfig) => {
package/dist/index.d.ts CHANGED
@@ -1428,6 +1428,7 @@ interface DashboardGraficaElementoQuery extends BaseQuery {
1428
1428
  interface DashboardGraficaElementoParams extends APIClientParams {
1429
1429
  }
1430
1430
  interface DashboardGraficaElementoTreeParams {
1431
+ dashboard_grafica_grupo_id?: number;
1431
1432
  rol_id?: number;
1432
1433
  orderBy?: string;
1433
1434
  page: number;
@@ -1617,11 +1618,17 @@ declare class DashboardGraficaGrupoEstiloAPI extends APICRUDClientBase<Dashboard
1617
1618
  constructor(params?: DashboardGraficaGrupoEstiloParams);
1618
1619
  }
1619
1620
 
1621
+ interface DashboardGraficaGrupo {
1622
+ titulo: string;
1623
+ json_snapshot_orden: string;
1624
+ }
1620
1625
  interface DashboardGraficaGrupoRolDTO {
1621
1626
  /** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey */
1622
1627
  dashboard_grafica_grupo_id: number;
1623
1628
  /** @foreignKey (rol.rol_id) @maxLength (4) @nullable */
1624
1629
  rol_id?: number;
1630
+ /** @exclusivo para consultas */
1631
+ dashboard_grafica_grupo?: DashboardGraficaGrupo;
1625
1632
  }
1626
1633
  interface DashboardGraficaGrupoRolCreateDTO {
1627
1634
  /** @foreignKey (dashboard_grafica_grupo.dashboard_grafica_grupo_id) @maxLength (4) @primaryKey */
@@ -3721,7 +3728,7 @@ declare function createApiHooksBase<TDTO extends object, TCreate extends object,
3721
3728
  error: Error | null;
3722
3729
  isFetching: boolean;
3723
3730
  isLoading: boolean;
3724
- refetch: () => Promise<void>;
3731
+ refetch: (newParams?: GetByIdParams<TQuery>) => Promise<void>;
3725
3732
  };
3726
3733
  useFetchList: (params: QueryParams<TQuery>, config?: useFetchListConfig) => {
3727
3734
  data: PaginatedResponse<TResponse> | null;
@@ -4148,7 +4155,7 @@ declare const useFetchByIdAdeudo: (params: GetByIdParams<AdeudoQuery>) => {
4148
4155
  error: Error | null;
4149
4156
  isFetching: boolean;
4150
4157
  isLoading: boolean;
4151
- refetch: () => Promise<void>;
4158
+ refetch: (newParams?: GetByIdParams<AdeudoQuery> | undefined) => Promise<void>;
4152
4159
  };
4153
4160
  /** @description Hook para useFetchList de la entidad adeudo */
4154
4161
  declare const useFetchListAdeudo: (params: QueryParams<AdeudoQuery>, config?: useFetchListConfig) => {
@@ -4210,7 +4217,7 @@ declare const useFetchByIdCatColor: (params: GetByIdParams<CatColorQuery>) => {
4210
4217
  error: Error | null;
4211
4218
  isFetching: boolean;
4212
4219
  isLoading: boolean;
4213
- refetch: () => Promise<void>;
4220
+ refetch: (newParams?: GetByIdParams<CatColorQuery> | undefined) => Promise<void>;
4214
4221
  };
4215
4222
  /** @description Hook para useFetchList de la entidad cat_color */
4216
4223
  declare const useFetchListCatColor: (params: QueryParams<CatColorQuery>, config?: useFetchListConfig) => {
@@ -4272,7 +4279,7 @@ declare const useFetchByIdCatColorGrupo: (params: GetByIdParams<CatColorGrupoQue
4272
4279
  error: Error | null;
4273
4280
  isFetching: boolean;
4274
4281
  isLoading: boolean;
4275
- refetch: () => Promise<void>;
4282
+ refetch: (newParams?: GetByIdParams<CatColorGrupoQuery> | undefined) => Promise<void>;
4276
4283
  };
4277
4284
  /** @description Hook para useFetchList de la entidad cat_color_grupo */
4278
4285
  declare const useFetchListCatColorGrupo: (params: QueryParams<CatColorGrupoQuery>, config?: useFetchListConfig) => {
@@ -4334,7 +4341,7 @@ declare const useFetchByIdCatGraficaGrupo: (params: GetByIdParams<CatGraficaGrup
4334
4341
  error: Error | null;
4335
4342
  isFetching: boolean;
4336
4343
  isLoading: boolean;
4337
- refetch: () => Promise<void>;
4344
+ refetch: (newParams?: GetByIdParams<CatGraficaGrupoQuery> | undefined) => Promise<void>;
4338
4345
  };
4339
4346
  /** @description Hook para useFetchList de la entidad cat_grafica_grupo */
4340
4347
  declare const useFetchListCatGraficaGrupo: (params: QueryParams<CatGraficaGrupoQuery>, config?: useFetchListConfig) => {
@@ -4396,7 +4403,7 @@ declare const useFetchByIdCatRolGrupo: (params: GetByIdParams<CatRolGrupoQuery>)
4396
4403
  error: Error | null;
4397
4404
  isFetching: boolean;
4398
4405
  isLoading: boolean;
4399
- refetch: () => Promise<void>;
4406
+ refetch: (newParams?: GetByIdParams<CatRolGrupoQuery> | undefined) => Promise<void>;
4400
4407
  };
4401
4408
  /** @description Hook para useFetchList de la entidad cat_rol_grupo */
4402
4409
  declare const useFetchListCatRolGrupo: (params: QueryParams<CatRolGrupoQuery>, config?: useFetchListConfig) => {
@@ -4458,7 +4465,7 @@ declare const useFetchByIdCatTema: (params: GetByIdParams<CatTemaQuery>) => {
4458
4465
  error: Error | null;
4459
4466
  isFetching: boolean;
4460
4467
  isLoading: boolean;
4461
- refetch: () => Promise<void>;
4468
+ refetch: (newParams?: GetByIdParams<CatTemaQuery> | undefined) => Promise<void>;
4462
4469
  };
4463
4470
  /** @description Hook para useFetchList de la entidad cat_tema */
4464
4471
  declare const useFetchListCatTema: (params: QueryParams<CatTemaQuery>, config?: useFetchListConfig) => {
@@ -4520,7 +4527,7 @@ declare const useFetchByIdDashboardEstilo: (params: GetByIdParams<DashboardEstil
4520
4527
  error: Error | null;
4521
4528
  isFetching: boolean;
4522
4529
  isLoading: boolean;
4523
- refetch: () => Promise<void>;
4530
+ refetch: (newParams?: GetByIdParams<DashboardEstiloQuery> | undefined) => Promise<void>;
4524
4531
  };
4525
4532
  /** @description Hook para useFetchList de la entidad dashboard_estilo */
4526
4533
  declare const useFetchListDashboardEstilo: (params: QueryParams<DashboardEstiloQuery>, config?: useFetchListConfig) => {
@@ -4582,7 +4589,7 @@ declare const useFetchByIdDashboardGrafica: (params: GetByIdParams<DashboardGraf
4582
4589
  error: Error | null;
4583
4590
  isFetching: boolean;
4584
4591
  isLoading: boolean;
4585
- refetch: () => Promise<void>;
4592
+ refetch: (newParams?: GetByIdParams<DashboardGraficaQuery> | undefined) => Promise<void>;
4586
4593
  };
4587
4594
  /** @description Hook para useFetchList de la entidad dashboard_grafica */
4588
4595
  declare const useFetchListDashboardGrafica: (params: QueryParams<DashboardGraficaQuery>, config?: useFetchListConfig) => {
@@ -4644,7 +4651,7 @@ declare const useFetchByIdDashboardGraficaElemento: (params: GetByIdParams<Dashb
4644
4651
  error: Error | null;
4645
4652
  isFetching: boolean;
4646
4653
  isLoading: boolean;
4647
- refetch: () => Promise<void>;
4654
+ refetch: (newParams?: GetByIdParams<DashboardGraficaElementoQuery> | undefined) => Promise<void>;
4648
4655
  };
4649
4656
  /** @description Hook para useFetchList de la entidad dashboard_grafica_elemento */
4650
4657
  declare const useFetchListDashboardGraficaElemento: (params: QueryParams<DashboardGraficaElementoQuery>, config?: useFetchListConfig) => {
@@ -4713,7 +4720,7 @@ declare const useFetchByIdDashboardGraficaElementoDetalle: (params: GetByIdParam
4713
4720
  error: Error | null;
4714
4721
  isFetching: boolean;
4715
4722
  isLoading: boolean;
4716
- refetch: () => Promise<void>;
4723
+ refetch: (newParams?: GetByIdParams<DashboardGraficaElementoDetalleQuery> | undefined) => Promise<void>;
4717
4724
  };
4718
4725
  /** @description Hook para useFetchList de la entidad dashboard_grafica_elemento_detalle */
4719
4726
  declare const useFetchListDashboardGraficaElementoDetalle: (params: QueryParams<DashboardGraficaElementoDetalleQuery>, config?: useFetchListConfig) => {
@@ -4775,7 +4782,7 @@ declare const useFetchByIdDashboardGraficaElementoEstilo: (params: GetByIdParams
4775
4782
  error: Error | null;
4776
4783
  isFetching: boolean;
4777
4784
  isLoading: boolean;
4778
- refetch: () => Promise<void>;
4785
+ refetch: (newParams?: GetByIdParams<DashboardGraficaElementoEstiloQuery> | undefined) => Promise<void>;
4779
4786
  };
4780
4787
  /** @description Hook para useFetchList de la entidad dashboard_grafica_elemento_estilo */
4781
4788
  declare const useFetchListDashboardGraficaElementoEstilo: (params: QueryParams<DashboardGraficaElementoEstiloQuery>, config?: useFetchListConfig) => {
@@ -4837,7 +4844,7 @@ declare const useFetchByIdDashboardGraficaElementoParametro: (params: GetByIdPar
4837
4844
  error: Error | null;
4838
4845
  isFetching: boolean;
4839
4846
  isLoading: boolean;
4840
- refetch: () => Promise<void>;
4847
+ refetch: (newParams?: GetByIdParams<DashboardGraficaElementoParametroQuery> | undefined) => Promise<void>;
4841
4848
  };
4842
4849
  /** @description Hook para useFetchList de la entidad dashboard_grafica_elemento_parametro */
4843
4850
  declare const useFetchListDashboardGraficaElementoParametro: (params: QueryParams<DashboardGraficaElementoParametroQuery>, config?: useFetchListConfig) => {
@@ -4899,7 +4906,7 @@ declare const useFetchByIdDashboardGraficaGrupo: (params: GetByIdParams<Dashboar
4899
4906
  error: Error | null;
4900
4907
  isFetching: boolean;
4901
4908
  isLoading: boolean;
4902
- refetch: () => Promise<void>;
4909
+ refetch: (newParams?: GetByIdParams<DashboardGraficaGrupoQuery> | undefined) => Promise<void>;
4903
4910
  };
4904
4911
  /** @description Hook para useFetchList de la entidad dashboard_grafica_grupo */
4905
4912
  declare const useFetchListDashboardGraficaGrupo: (params: QueryParams<DashboardGraficaGrupoQuery>, config?: useFetchListConfig) => {
@@ -4961,7 +4968,7 @@ declare const useFetchByIdDashboardGraficaGrupoEstilo: (params: GetByIdParams<Da
4961
4968
  error: Error | null;
4962
4969
  isFetching: boolean;
4963
4970
  isLoading: boolean;
4964
- refetch: () => Promise<void>;
4971
+ refetch: (newParams?: GetByIdParams<DashboardGraficaGrupoEstiloQuery> | undefined) => Promise<void>;
4965
4972
  };
4966
4973
  /** @description Hook para useFetchList de la entidad dashboard_grafica_grupo_estilo */
4967
4974
  declare const useFetchListDashboardGraficaGrupoEstilo: (params: QueryParams<DashboardGraficaGrupoEstiloQuery>, config?: useFetchListConfig) => {
@@ -5023,7 +5030,7 @@ declare const useFetchByIdDashboardGraficaGrupoRol: (params: GetByIdParams<Dashb
5023
5030
  error: Error | null;
5024
5031
  isFetching: boolean;
5025
5032
  isLoading: boolean;
5026
- refetch: () => Promise<void>;
5033
+ refetch: (newParams?: GetByIdParams<DashboardGraficaGrupoRolQuery> | undefined) => Promise<void>;
5027
5034
  };
5028
5035
  /** @description Hook para useFetchList de la entidad dashboard_grafica_grupo_rol */
5029
5036
  declare const useFetchListDashboardGraficaGrupoRol: (params: QueryParams<DashboardGraficaGrupoRolQuery>, config?: useFetchListConfig) => {
@@ -5085,7 +5092,7 @@ declare const useFetchByIdDashboardRuta: (params: GetByIdParams<DashboardRutaQue
5085
5092
  error: Error | null;
5086
5093
  isFetching: boolean;
5087
5094
  isLoading: boolean;
5088
- refetch: () => Promise<void>;
5095
+ refetch: (newParams?: GetByIdParams<DashboardRutaQuery> | undefined) => Promise<void>;
5089
5096
  };
5090
5097
  /** @description Hook para useFetchList de la entidad dashboard_ruta */
5091
5098
  declare const useFetchListDashboardRuta: (params: QueryParams<DashboardRutaQuery>, config?: useFetchListConfig) => {
@@ -5147,7 +5154,7 @@ declare const useFetchByIdGrafica: (params: GetByIdParams<GraficaQuery>) => {
5147
5154
  error: Error | null;
5148
5155
  isFetching: boolean;
5149
5156
  isLoading: boolean;
5150
- refetch: () => Promise<void>;
5157
+ refetch: (newParams?: GetByIdParams<GraficaQuery> | undefined) => Promise<void>;
5151
5158
  };
5152
5159
  /** @description Hook para useFetchList de la entidad grafica */
5153
5160
  declare const useFetchListGrafica: (params: QueryParams<GraficaQuery>, config?: useFetchListConfig) => {
@@ -5209,7 +5216,7 @@ declare const useFetchByIdGraficaColor: (params: GetByIdParams<GraficaColorQuery
5209
5216
  error: Error | null;
5210
5217
  isFetching: boolean;
5211
5218
  isLoading: boolean;
5212
- refetch: () => Promise<void>;
5219
+ refetch: (newParams?: GetByIdParams<GraficaColorQuery> | undefined) => Promise<void>;
5213
5220
  };
5214
5221
  /** @description Hook para useFetchList de la entidad grafica_color */
5215
5222
  declare const useFetchListGraficaColor: (params: QueryParams<GraficaColorQuery>, config?: useFetchListConfig) => {
@@ -5271,7 +5278,7 @@ declare const useFetchByIdGraficaColorGrupo: (params: GetByIdParams<GraficaColor
5271
5278
  error: Error | null;
5272
5279
  isFetching: boolean;
5273
5280
  isLoading: boolean;
5274
- refetch: () => Promise<void>;
5281
+ refetch: (newParams?: GetByIdParams<GraficaColorGrupoQuery> | undefined) => Promise<void>;
5275
5282
  };
5276
5283
  /** @description Hook para useFetchList de la entidad grafica_color_grupo */
5277
5284
  declare const useFetchListGraficaColorGrupo: (params: QueryParams<GraficaColorGrupoQuery>, config?: useFetchListConfig) => {
@@ -5333,7 +5340,7 @@ declare const useFetchByIdGraficaColorGrupoAsignacion: (params: GetByIdParams<Gr
5333
5340
  error: Error | null;
5334
5341
  isFetching: boolean;
5335
5342
  isLoading: boolean;
5336
- refetch: () => Promise<void>;
5343
+ refetch: (newParams?: GetByIdParams<GraficaColorGrupoAsignacionQuery> | undefined) => Promise<void>;
5337
5344
  };
5338
5345
  /** @description Hook para useFetchList de la entidad grafica_color_grupo_asignacion */
5339
5346
  declare const useFetchListGraficaColorGrupoAsignacion: (params: QueryParams<GraficaColorGrupoAsignacionQuery>, config?: useFetchListConfig) => {
@@ -5395,7 +5402,7 @@ declare const useFetchByIdGraficaColorGrupoTipoGrafica: (params: GetByIdParams<G
5395
5402
  error: Error | null;
5396
5403
  isFetching: boolean;
5397
5404
  isLoading: boolean;
5398
- refetch: () => Promise<void>;
5405
+ refetch: (newParams?: GetByIdParams<GraficaColorGrupoTipoGraficaQuery> | undefined) => Promise<void>;
5399
5406
  };
5400
5407
  /** @description Hook para useFetchList de la entidad grafica_color_grupo_tipo_grafica */
5401
5408
  declare const useFetchListGraficaColorGrupoTipoGrafica: (params: QueryParams<GraficaColorGrupoTipoGraficaQuery>, config?: useFetchListConfig) => {
@@ -5457,7 +5464,7 @@ declare const useFetchByIdGraficaParametro: (params: GetByIdParams<GraficaParame
5457
5464
  error: Error | null;
5458
5465
  isFetching: boolean;
5459
5466
  isLoading: boolean;
5460
- refetch: () => Promise<void>;
5467
+ refetch: (newParams?: GetByIdParams<GraficaParametroQuery> | undefined) => Promise<void>;
5461
5468
  };
5462
5469
  /** @description Hook para useFetchList de la entidad grafica_parametro */
5463
5470
  declare const useFetchListGraficaParametro: (params: QueryParams<GraficaParametroQuery>, config?: useFetchListConfig) => {
@@ -5519,7 +5526,7 @@ declare const useFetchByIdGraficaParametroDefecto: (params: GetByIdParams<Grafic
5519
5526
  error: Error | null;
5520
5527
  isFetching: boolean;
5521
5528
  isLoading: boolean;
5522
- refetch: () => Promise<void>;
5529
+ refetch: (newParams?: GetByIdParams<GraficaParametroDefectoQuery> | undefined) => Promise<void>;
5523
5530
  };
5524
5531
  /** @description Hook para useFetchList de la entidad grafica_parametro_defecto */
5525
5532
  declare const useFetchListGraficaParametroDefecto: (params: QueryParams<GraficaParametroDefectoQuery>, config?: useFetchListConfig) => {
@@ -5581,7 +5588,7 @@ declare const useFetchByIdGraficaParametroTipo: (params: GetByIdParams<GraficaPa
5581
5588
  error: Error | null;
5582
5589
  isFetching: boolean;
5583
5590
  isLoading: boolean;
5584
- refetch: () => Promise<void>;
5591
+ refetch: (newParams?: GetByIdParams<GraficaParametroTipoQuery> | undefined) => Promise<void>;
5585
5592
  };
5586
5593
  /** @description Hook para useFetchList de la entidad grafica_parametro_tipo */
5587
5594
  declare const useFetchListGraficaParametroTipo: (params: QueryParams<GraficaParametroTipoQuery>, config?: useFetchListConfig) => {
@@ -5643,7 +5650,7 @@ declare const useFetchByIdRol: (params: GetByIdParams<RolQuery>) => {
5643
5650
  error: Error | null;
5644
5651
  isFetching: boolean;
5645
5652
  isLoading: boolean;
5646
- refetch: () => Promise<void>;
5653
+ refetch: (newParams?: GetByIdParams<RolQuery> | undefined) => Promise<void>;
5647
5654
  };
5648
5655
  /** @description Hook para useFetchList de la entidad rol */
5649
5656
  declare const useFetchListRol: (params: QueryParams<RolQuery>, config?: useFetchListConfig) => {
@@ -5705,7 +5712,7 @@ declare const useFetchByIdRolDashboardRuta: (params: GetByIdParams<RolDashboardR
5705
5712
  error: Error | null;
5706
5713
  isFetching: boolean;
5707
5714
  isLoading: boolean;
5708
- refetch: () => Promise<void>;
5715
+ refetch: (newParams?: GetByIdParams<RolDashboardRutaQuery> | undefined) => Promise<void>;
5709
5716
  };
5710
5717
  /** @description Hook para useFetchList de la entidad rol_dashboard_ruta */
5711
5718
  declare const useFetchListRolDashboardRuta: (params: QueryParams<RolDashboardRutaQuery>, config?: useFetchListConfig) => {
@@ -5767,7 +5774,7 @@ declare const useFetchByIdTipoGrafica: (params: GetByIdParams<TipoGraficaQuery>)
5767
5774
  error: Error | null;
5768
5775
  isFetching: boolean;
5769
5776
  isLoading: boolean;
5770
- refetch: () => Promise<void>;
5777
+ refetch: (newParams?: GetByIdParams<TipoGraficaQuery> | undefined) => Promise<void>;
5771
5778
  };
5772
5779
  /** @description Hook para useFetchList de la entidad tipo_grafica */
5773
5780
  declare const useFetchListTipoGrafica: (params: QueryParams<TipoGraficaQuery>, config?: useFetchListConfig) => {
@@ -5829,7 +5836,7 @@ declare const useFetchByIdUsuario: (params: GetByIdParams<UsuarioQuery>) => {
5829
5836
  error: Error | null;
5830
5837
  isFetching: boolean;
5831
5838
  isLoading: boolean;
5832
- refetch: () => Promise<void>;
5839
+ refetch: (newParams?: GetByIdParams<UsuarioQuery> | undefined) => Promise<void>;
5833
5840
  };
5834
5841
  /** @description Hook para useFetchList de la entidad usuario */
5835
5842
  declare const useFetchListUsuario: (params: QueryParams<UsuarioQuery>, config?: useFetchListConfig) => {
@@ -5891,7 +5898,7 @@ declare const useFetchByIdUsuarioDashboardAcceso: (params: GetByIdParams<Usuario
5891
5898
  error: Error | null;
5892
5899
  isFetching: boolean;
5893
5900
  isLoading: boolean;
5894
- refetch: () => Promise<void>;
5901
+ refetch: (newParams?: GetByIdParams<UsuarioDashboardAccesoQuery> | undefined) => Promise<void>;
5895
5902
  };
5896
5903
  /** @description Hook para useFetchList de la entidad usuario_dashboard_acceso */
5897
5904
  declare const useFetchListUsuarioDashboardAcceso: (params: QueryParams<UsuarioDashboardAccesoQuery>, config?: useFetchListConfig) => {
@@ -5953,7 +5960,7 @@ declare const useFetchByIdUsuarioRol: (params: GetByIdParams<UsuarioRolQuery>) =
5953
5960
  error: Error | null;
5954
5961
  isFetching: boolean;
5955
5962
  isLoading: boolean;
5956
- refetch: () => Promise<void>;
5963
+ refetch: (newParams?: GetByIdParams<UsuarioRolQuery> | undefined) => Promise<void>;
5957
5964
  };
5958
5965
  /** @description Hook para useFetchList de la entidad usuario_rol */
5959
5966
  declare const useFetchListUsuarioRol: (params: QueryParams<UsuarioRolQuery>, config?: useFetchListConfig) => {