@erpp/react-api-cronos-frontend 1.0.27 → 1.0.29
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 +165 -31
- package/dist/index.d.ts +165 -31
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3732,16 +3732,18 @@ declare function createApiHooksBase<TDTO extends object, TCreate extends object,
|
|
|
3732
3732
|
page?: number;
|
|
3733
3733
|
limit?: number;
|
|
3734
3734
|
orderBy?: string;
|
|
3735
|
+
where?: object;
|
|
3735
3736
|
};
|
|
3736
3737
|
refetch: () => Promise<void>;
|
|
3737
3738
|
fetchPage: (page: number) => Promise<void>;
|
|
3738
3739
|
fetchNextPage: () => void;
|
|
3739
3740
|
fetchPreviousPage: () => void;
|
|
3740
3741
|
fetchLimit: (limit: number) => Promise<void>;
|
|
3741
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
3742
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
3742
3743
|
page?: number;
|
|
3743
3744
|
limit?: number;
|
|
3744
3745
|
orderBy?: string;
|
|
3746
|
+
where?: object;
|
|
3745
3747
|
}) => Promise<void>;
|
|
3746
3748
|
};
|
|
3747
3749
|
useCreate: () => {
|
|
@@ -3948,6 +3950,18 @@ interface APIDashboardGraficaGrupoEstiloReturns extends ApiHooksBaseReturns<Dash
|
|
|
3948
3950
|
}
|
|
3949
3951
|
declare const createAPIDashboardGraficaGrupoEstilo: () => APIDashboardGraficaGrupoEstiloReturns;
|
|
3950
3952
|
|
|
3953
|
+
/**
|
|
3954
|
+
* @description Hooks personalizados para el modelo DashboardGraficaGrupoRol.
|
|
3955
|
+
* @param dashboardGraficaGrupoRolClient - Cliente para realizar operaciones con el modelo DashboardGraficaGrupoRol.
|
|
3956
|
+
*/
|
|
3957
|
+
declare const dashboardGraficaGrupoRolHooksCustom: (dashboardGraficaGrupoRolClient: DashboardGraficaGrupoRolAPI) => {};
|
|
3958
|
+
interface DashboardGraficaGrupoRolHooksReturns extends ReturnType<typeof dashboardGraficaGrupoRolHooksCustom> {
|
|
3959
|
+
}
|
|
3960
|
+
|
|
3961
|
+
interface APIDashboardGraficaGrupoRolReturns extends ApiHooksBaseReturns<DashboardGraficaGrupoRolDTO, DashboardGraficaGrupoRolCreateDTO, DashboardGraficaGrupoRolUpdateDTO, DashboardGraficaGrupoRolQuery, DashboardGraficaGrupoRolDTO>, DashboardGraficaGrupoRolHooksReturns {
|
|
3962
|
+
}
|
|
3963
|
+
declare const createAPIDashboardGraficaGrupoRol: () => APIDashboardGraficaGrupoRolReturns;
|
|
3964
|
+
|
|
3951
3965
|
/**
|
|
3952
3966
|
* @description Hooks personalizados para el modelo DashboardRuta.
|
|
3953
3967
|
* @param dashboardRutaClient - Cliente para realizar operaciones con el modelo DashboardRuta.
|
|
@@ -4146,16 +4160,18 @@ declare const useFetchListAdeudo: (params: QueryParams<AdeudoQuery>, config?: us
|
|
|
4146
4160
|
page?: number;
|
|
4147
4161
|
limit?: number;
|
|
4148
4162
|
orderBy?: string;
|
|
4163
|
+
where?: object;
|
|
4149
4164
|
};
|
|
4150
4165
|
refetch: () => Promise<void>;
|
|
4151
4166
|
fetchPage: (page: number) => Promise<void>;
|
|
4152
4167
|
fetchNextPage: () => void;
|
|
4153
4168
|
fetchPreviousPage: () => void;
|
|
4154
4169
|
fetchLimit: (limit: number) => Promise<void>;
|
|
4155
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
4170
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
4156
4171
|
page?: number;
|
|
4157
4172
|
limit?: number;
|
|
4158
4173
|
orderBy?: string;
|
|
4174
|
+
where?: object;
|
|
4159
4175
|
}) => Promise<void>;
|
|
4160
4176
|
};
|
|
4161
4177
|
/** @description Hook para useCreate de la entidad adeudo */
|
|
@@ -4206,16 +4222,18 @@ declare const useFetchListCatColor: (params: QueryParams<CatColorQuery>, config?
|
|
|
4206
4222
|
page?: number;
|
|
4207
4223
|
limit?: number;
|
|
4208
4224
|
orderBy?: string;
|
|
4225
|
+
where?: object;
|
|
4209
4226
|
};
|
|
4210
4227
|
refetch: () => Promise<void>;
|
|
4211
4228
|
fetchPage: (page: number) => Promise<void>;
|
|
4212
4229
|
fetchNextPage: () => void;
|
|
4213
4230
|
fetchPreviousPage: () => void;
|
|
4214
4231
|
fetchLimit: (limit: number) => Promise<void>;
|
|
4215
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
4232
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
4216
4233
|
page?: number;
|
|
4217
4234
|
limit?: number;
|
|
4218
4235
|
orderBy?: string;
|
|
4236
|
+
where?: object;
|
|
4219
4237
|
}) => Promise<void>;
|
|
4220
4238
|
};
|
|
4221
4239
|
/** @description Hook para useCreate de la entidad cat_color */
|
|
@@ -4266,16 +4284,18 @@ declare const useFetchListCatColorGrupo: (params: QueryParams<CatColorGrupoQuery
|
|
|
4266
4284
|
page?: number;
|
|
4267
4285
|
limit?: number;
|
|
4268
4286
|
orderBy?: string;
|
|
4287
|
+
where?: object;
|
|
4269
4288
|
};
|
|
4270
4289
|
refetch: () => Promise<void>;
|
|
4271
4290
|
fetchPage: (page: number) => Promise<void>;
|
|
4272
4291
|
fetchNextPage: () => void;
|
|
4273
4292
|
fetchPreviousPage: () => void;
|
|
4274
4293
|
fetchLimit: (limit: number) => Promise<void>;
|
|
4275
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
4294
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
4276
4295
|
page?: number;
|
|
4277
4296
|
limit?: number;
|
|
4278
4297
|
orderBy?: string;
|
|
4298
|
+
where?: object;
|
|
4279
4299
|
}) => Promise<void>;
|
|
4280
4300
|
};
|
|
4281
4301
|
/** @description Hook para useCreate de la entidad cat_color_grupo */
|
|
@@ -4326,16 +4346,18 @@ declare const useFetchListCatGraficaGrupo: (params: QueryParams<CatGraficaGrupoQ
|
|
|
4326
4346
|
page?: number;
|
|
4327
4347
|
limit?: number;
|
|
4328
4348
|
orderBy?: string;
|
|
4349
|
+
where?: object;
|
|
4329
4350
|
};
|
|
4330
4351
|
refetch: () => Promise<void>;
|
|
4331
4352
|
fetchPage: (page: number) => Promise<void>;
|
|
4332
4353
|
fetchNextPage: () => void;
|
|
4333
4354
|
fetchPreviousPage: () => void;
|
|
4334
4355
|
fetchLimit: (limit: number) => Promise<void>;
|
|
4335
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
4356
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
4336
4357
|
page?: number;
|
|
4337
4358
|
limit?: number;
|
|
4338
4359
|
orderBy?: string;
|
|
4360
|
+
where?: object;
|
|
4339
4361
|
}) => Promise<void>;
|
|
4340
4362
|
};
|
|
4341
4363
|
/** @description Hook para useCreate de la entidad cat_grafica_grupo */
|
|
@@ -4386,16 +4408,18 @@ declare const useFetchListCatRolGrupo: (params: QueryParams<CatRolGrupoQuery>, c
|
|
|
4386
4408
|
page?: number;
|
|
4387
4409
|
limit?: number;
|
|
4388
4410
|
orderBy?: string;
|
|
4411
|
+
where?: object;
|
|
4389
4412
|
};
|
|
4390
4413
|
refetch: () => Promise<void>;
|
|
4391
4414
|
fetchPage: (page: number) => Promise<void>;
|
|
4392
4415
|
fetchNextPage: () => void;
|
|
4393
4416
|
fetchPreviousPage: () => void;
|
|
4394
4417
|
fetchLimit: (limit: number) => Promise<void>;
|
|
4395
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
4418
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
4396
4419
|
page?: number;
|
|
4397
4420
|
limit?: number;
|
|
4398
4421
|
orderBy?: string;
|
|
4422
|
+
where?: object;
|
|
4399
4423
|
}) => Promise<void>;
|
|
4400
4424
|
};
|
|
4401
4425
|
/** @description Hook para useCreate de la entidad cat_rol_grupo */
|
|
@@ -4446,16 +4470,18 @@ declare const useFetchListCatTema: (params: QueryParams<CatTemaQuery>, config?:
|
|
|
4446
4470
|
page?: number;
|
|
4447
4471
|
limit?: number;
|
|
4448
4472
|
orderBy?: string;
|
|
4473
|
+
where?: object;
|
|
4449
4474
|
};
|
|
4450
4475
|
refetch: () => Promise<void>;
|
|
4451
4476
|
fetchPage: (page: number) => Promise<void>;
|
|
4452
4477
|
fetchNextPage: () => void;
|
|
4453
4478
|
fetchPreviousPage: () => void;
|
|
4454
4479
|
fetchLimit: (limit: number) => Promise<void>;
|
|
4455
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
4480
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
4456
4481
|
page?: number;
|
|
4457
4482
|
limit?: number;
|
|
4458
4483
|
orderBy?: string;
|
|
4484
|
+
where?: object;
|
|
4459
4485
|
}) => Promise<void>;
|
|
4460
4486
|
};
|
|
4461
4487
|
/** @description Hook para useCreate de la entidad cat_tema */
|
|
@@ -4506,16 +4532,18 @@ declare const useFetchListDashboardEstilo: (params: QueryParams<DashboardEstiloQ
|
|
|
4506
4532
|
page?: number;
|
|
4507
4533
|
limit?: number;
|
|
4508
4534
|
orderBy?: string;
|
|
4535
|
+
where?: object;
|
|
4509
4536
|
};
|
|
4510
4537
|
refetch: () => Promise<void>;
|
|
4511
4538
|
fetchPage: (page: number) => Promise<void>;
|
|
4512
4539
|
fetchNextPage: () => void;
|
|
4513
4540
|
fetchPreviousPage: () => void;
|
|
4514
4541
|
fetchLimit: (limit: number) => Promise<void>;
|
|
4515
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
4542
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
4516
4543
|
page?: number;
|
|
4517
4544
|
limit?: number;
|
|
4518
4545
|
orderBy?: string;
|
|
4546
|
+
where?: object;
|
|
4519
4547
|
}) => Promise<void>;
|
|
4520
4548
|
};
|
|
4521
4549
|
/** @description Hook para useCreate de la entidad dashboard_estilo */
|
|
@@ -4566,16 +4594,18 @@ declare const useFetchListDashboardGrafica: (params: QueryParams<DashboardGrafic
|
|
|
4566
4594
|
page?: number;
|
|
4567
4595
|
limit?: number;
|
|
4568
4596
|
orderBy?: string;
|
|
4597
|
+
where?: object;
|
|
4569
4598
|
};
|
|
4570
4599
|
refetch: () => Promise<void>;
|
|
4571
4600
|
fetchPage: (page: number) => Promise<void>;
|
|
4572
4601
|
fetchNextPage: () => void;
|
|
4573
4602
|
fetchPreviousPage: () => void;
|
|
4574
4603
|
fetchLimit: (limit: number) => Promise<void>;
|
|
4575
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
4604
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
4576
4605
|
page?: number;
|
|
4577
4606
|
limit?: number;
|
|
4578
4607
|
orderBy?: string;
|
|
4608
|
+
where?: object;
|
|
4579
4609
|
}) => Promise<void>;
|
|
4580
4610
|
};
|
|
4581
4611
|
/** @description Hook para useCreate de la entidad dashboard_grafica */
|
|
@@ -4626,16 +4656,18 @@ declare const useFetchListDashboardGraficaElemento: (params: QueryParams<Dashboa
|
|
|
4626
4656
|
page?: number;
|
|
4627
4657
|
limit?: number;
|
|
4628
4658
|
orderBy?: string;
|
|
4659
|
+
where?: object;
|
|
4629
4660
|
};
|
|
4630
4661
|
refetch: () => Promise<void>;
|
|
4631
4662
|
fetchPage: (page: number) => Promise<void>;
|
|
4632
4663
|
fetchNextPage: () => void;
|
|
4633
4664
|
fetchPreviousPage: () => void;
|
|
4634
4665
|
fetchLimit: (limit: number) => Promise<void>;
|
|
4635
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
4666
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
4636
4667
|
page?: number;
|
|
4637
4668
|
limit?: number;
|
|
4638
4669
|
orderBy?: string;
|
|
4670
|
+
where?: object;
|
|
4639
4671
|
}) => Promise<void>;
|
|
4640
4672
|
};
|
|
4641
4673
|
/** @description Hook para useCreate de la entidad dashboard_grafica_elemento */
|
|
@@ -4693,16 +4725,18 @@ declare const useFetchListDashboardGraficaElementoDetalle: (params: QueryParams<
|
|
|
4693
4725
|
page?: number;
|
|
4694
4726
|
limit?: number;
|
|
4695
4727
|
orderBy?: string;
|
|
4728
|
+
where?: object;
|
|
4696
4729
|
};
|
|
4697
4730
|
refetch: () => Promise<void>;
|
|
4698
4731
|
fetchPage: (page: number) => Promise<void>;
|
|
4699
4732
|
fetchNextPage: () => void;
|
|
4700
4733
|
fetchPreviousPage: () => void;
|
|
4701
4734
|
fetchLimit: (limit: number) => Promise<void>;
|
|
4702
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
4735
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
4703
4736
|
page?: number;
|
|
4704
4737
|
limit?: number;
|
|
4705
4738
|
orderBy?: string;
|
|
4739
|
+
where?: object;
|
|
4706
4740
|
}) => Promise<void>;
|
|
4707
4741
|
};
|
|
4708
4742
|
/** @description Hook para useCreate de la entidad dashboard_grafica_elemento_detalle */
|
|
@@ -4753,16 +4787,18 @@ declare const useFetchListDashboardGraficaElementoEstilo: (params: QueryParams<D
|
|
|
4753
4787
|
page?: number;
|
|
4754
4788
|
limit?: number;
|
|
4755
4789
|
orderBy?: string;
|
|
4790
|
+
where?: object;
|
|
4756
4791
|
};
|
|
4757
4792
|
refetch: () => Promise<void>;
|
|
4758
4793
|
fetchPage: (page: number) => Promise<void>;
|
|
4759
4794
|
fetchNextPage: () => void;
|
|
4760
4795
|
fetchPreviousPage: () => void;
|
|
4761
4796
|
fetchLimit: (limit: number) => Promise<void>;
|
|
4762
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
4797
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
4763
4798
|
page?: number;
|
|
4764
4799
|
limit?: number;
|
|
4765
4800
|
orderBy?: string;
|
|
4801
|
+
where?: object;
|
|
4766
4802
|
}) => Promise<void>;
|
|
4767
4803
|
};
|
|
4768
4804
|
/** @description Hook para useCreate de la entidad dashboard_grafica_elemento_estilo */
|
|
@@ -4813,16 +4849,18 @@ declare const useFetchListDashboardGraficaElementoParametro: (params: QueryParam
|
|
|
4813
4849
|
page?: number;
|
|
4814
4850
|
limit?: number;
|
|
4815
4851
|
orderBy?: string;
|
|
4852
|
+
where?: object;
|
|
4816
4853
|
};
|
|
4817
4854
|
refetch: () => Promise<void>;
|
|
4818
4855
|
fetchPage: (page: number) => Promise<void>;
|
|
4819
4856
|
fetchNextPage: () => void;
|
|
4820
4857
|
fetchPreviousPage: () => void;
|
|
4821
4858
|
fetchLimit: (limit: number) => Promise<void>;
|
|
4822
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
4859
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
4823
4860
|
page?: number;
|
|
4824
4861
|
limit?: number;
|
|
4825
4862
|
orderBy?: string;
|
|
4863
|
+
where?: object;
|
|
4826
4864
|
}) => Promise<void>;
|
|
4827
4865
|
};
|
|
4828
4866
|
/** @description Hook para useCreate de la entidad dashboard_grafica_elemento_parametro */
|
|
@@ -4873,16 +4911,18 @@ declare const useFetchListDashboardGraficaGrupo: (params: QueryParams<DashboardG
|
|
|
4873
4911
|
page?: number;
|
|
4874
4912
|
limit?: number;
|
|
4875
4913
|
orderBy?: string;
|
|
4914
|
+
where?: object;
|
|
4876
4915
|
};
|
|
4877
4916
|
refetch: () => Promise<void>;
|
|
4878
4917
|
fetchPage: (page: number) => Promise<void>;
|
|
4879
4918
|
fetchNextPage: () => void;
|
|
4880
4919
|
fetchPreviousPage: () => void;
|
|
4881
4920
|
fetchLimit: (limit: number) => Promise<void>;
|
|
4882
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
4921
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
4883
4922
|
page?: number;
|
|
4884
4923
|
limit?: number;
|
|
4885
4924
|
orderBy?: string;
|
|
4925
|
+
where?: object;
|
|
4886
4926
|
}) => Promise<void>;
|
|
4887
4927
|
};
|
|
4888
4928
|
/** @description Hook para useCreate de la entidad dashboard_grafica_grupo */
|
|
@@ -4933,16 +4973,18 @@ declare const useFetchListDashboardGraficaGrupoEstilo: (params: QueryParams<Dash
|
|
|
4933
4973
|
page?: number;
|
|
4934
4974
|
limit?: number;
|
|
4935
4975
|
orderBy?: string;
|
|
4976
|
+
where?: object;
|
|
4936
4977
|
};
|
|
4937
4978
|
refetch: () => Promise<void>;
|
|
4938
4979
|
fetchPage: (page: number) => Promise<void>;
|
|
4939
4980
|
fetchNextPage: () => void;
|
|
4940
4981
|
fetchPreviousPage: () => void;
|
|
4941
4982
|
fetchLimit: (limit: number) => Promise<void>;
|
|
4942
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
4983
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
4943
4984
|
page?: number;
|
|
4944
4985
|
limit?: number;
|
|
4945
4986
|
orderBy?: string;
|
|
4987
|
+
where?: object;
|
|
4946
4988
|
}) => Promise<void>;
|
|
4947
4989
|
};
|
|
4948
4990
|
/** @description Hook para useCreate de la entidad dashboard_grafica_grupo_estilo */
|
|
@@ -4975,6 +5017,68 @@ declare const useFilterMatchDashboardGraficaGrupoEstilo: (params: FilterMatchPar
|
|
|
4975
5017
|
refetch: () => Promise<void>;
|
|
4976
5018
|
};
|
|
4977
5019
|
|
|
5020
|
+
/** @description Hook para useFetchById de la entidad dashboard_grafica_grupo_rol */
|
|
5021
|
+
declare const useFetchByIdDashboardGraficaGrupoRol: (params: GetByIdParams<DashboardGraficaGrupoRolQuery>) => {
|
|
5022
|
+
data: DashboardGraficaGrupoRolDTO | null;
|
|
5023
|
+
error: Error | null;
|
|
5024
|
+
isFetching: boolean;
|
|
5025
|
+
isLoading: boolean;
|
|
5026
|
+
refetch: () => Promise<void>;
|
|
5027
|
+
};
|
|
5028
|
+
/** @description Hook para useFetchList de la entidad dashboard_grafica_grupo_rol */
|
|
5029
|
+
declare const useFetchListDashboardGraficaGrupoRol: (params: QueryParams<DashboardGraficaGrupoRolQuery>, config?: useFetchListConfig) => {
|
|
5030
|
+
data: PaginatedResponse<DashboardGraficaGrupoRolDTO> | null;
|
|
5031
|
+
error: Error | null;
|
|
5032
|
+
isFetching: boolean;
|
|
5033
|
+
isLoading: boolean;
|
|
5034
|
+
pagination: {
|
|
5035
|
+
page?: number;
|
|
5036
|
+
limit?: number;
|
|
5037
|
+
orderBy?: string;
|
|
5038
|
+
where?: object;
|
|
5039
|
+
};
|
|
5040
|
+
refetch: () => Promise<void>;
|
|
5041
|
+
fetchPage: (page: number) => Promise<void>;
|
|
5042
|
+
fetchNextPage: () => void;
|
|
5043
|
+
fetchPreviousPage: () => void;
|
|
5044
|
+
fetchLimit: (limit: number) => Promise<void>;
|
|
5045
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5046
|
+
page?: number;
|
|
5047
|
+
limit?: number;
|
|
5048
|
+
orderBy?: string;
|
|
5049
|
+
where?: object;
|
|
5050
|
+
}) => Promise<void>;
|
|
5051
|
+
};
|
|
5052
|
+
/** @description Hook para useCreate de la entidad dashboard_grafica_grupo_rol */
|
|
5053
|
+
declare const useCreateDashboardGraficaGrupoRol: () => {
|
|
5054
|
+
mutate: (params: CreateParams<DashboardGraficaGrupoRolCreateDTO, DashboardGraficaGrupoRolQuery>) => Promise<DashboardGraficaGrupoRolDTO | null>;
|
|
5055
|
+
isLoading: boolean;
|
|
5056
|
+
error: Error | null;
|
|
5057
|
+
data: DashboardGraficaGrupoRolDTO | null;
|
|
5058
|
+
};
|
|
5059
|
+
/** @description Hook para useUpdate de la entidad dashboard_grafica_grupo_rol */
|
|
5060
|
+
declare const useUpdateDashboardGraficaGrupoRol: () => {
|
|
5061
|
+
mutate: (params: UpdateParams<DashboardGraficaGrupoRolUpdateDTO, DashboardGraficaGrupoRolQuery>) => Promise<DashboardGraficaGrupoRolDTO | null>;
|
|
5062
|
+
isLoading: boolean;
|
|
5063
|
+
error: Error | null;
|
|
5064
|
+
data: DashboardGraficaGrupoRolDTO | null;
|
|
5065
|
+
};
|
|
5066
|
+
/** @description Hook para useDelete de la entidad dashboard_grafica_grupo_rol */
|
|
5067
|
+
declare const useDeleteDashboardGraficaGrupoRol: () => {
|
|
5068
|
+
mutate: (params: DeleteParams<DashboardGraficaGrupoRolQuery>) => Promise<boolean>;
|
|
5069
|
+
isLoading: boolean;
|
|
5070
|
+
error: Error | null;
|
|
5071
|
+
success: boolean;
|
|
5072
|
+
};
|
|
5073
|
+
/** @description Hook para useFilterMatch de la entidad dashboard_grafica_grupo_rol */
|
|
5074
|
+
declare const useFilterMatchDashboardGraficaGrupoRol: (params: FilterMatchParams<DashboardGraficaGrupoRolQuery>) => {
|
|
5075
|
+
data: DashboardGraficaGrupoRolDTO[] | null;
|
|
5076
|
+
error: Error | null;
|
|
5077
|
+
isFetching: boolean;
|
|
5078
|
+
isLoading: boolean;
|
|
5079
|
+
refetch: () => Promise<void>;
|
|
5080
|
+
};
|
|
5081
|
+
|
|
4978
5082
|
/** @description Hook para useFetchById de la entidad dashboard_ruta */
|
|
4979
5083
|
declare const useFetchByIdDashboardRuta: (params: GetByIdParams<DashboardRutaQuery>) => {
|
|
4980
5084
|
data: DashboardRutaDTO | null;
|
|
@@ -4993,16 +5097,18 @@ declare const useFetchListDashboardRuta: (params: QueryParams<DashboardRutaQuery
|
|
|
4993
5097
|
page?: number;
|
|
4994
5098
|
limit?: number;
|
|
4995
5099
|
orderBy?: string;
|
|
5100
|
+
where?: object;
|
|
4996
5101
|
};
|
|
4997
5102
|
refetch: () => Promise<void>;
|
|
4998
5103
|
fetchPage: (page: number) => Promise<void>;
|
|
4999
5104
|
fetchNextPage: () => void;
|
|
5000
5105
|
fetchPreviousPage: () => void;
|
|
5001
5106
|
fetchLimit: (limit: number) => Promise<void>;
|
|
5002
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
5107
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5003
5108
|
page?: number;
|
|
5004
5109
|
limit?: number;
|
|
5005
5110
|
orderBy?: string;
|
|
5111
|
+
where?: object;
|
|
5006
5112
|
}) => Promise<void>;
|
|
5007
5113
|
};
|
|
5008
5114
|
/** @description Hook para useCreate de la entidad dashboard_ruta */
|
|
@@ -5053,16 +5159,18 @@ declare const useFetchListGrafica: (params: QueryParams<GraficaQuery>, config?:
|
|
|
5053
5159
|
page?: number;
|
|
5054
5160
|
limit?: number;
|
|
5055
5161
|
orderBy?: string;
|
|
5162
|
+
where?: object;
|
|
5056
5163
|
};
|
|
5057
5164
|
refetch: () => Promise<void>;
|
|
5058
5165
|
fetchPage: (page: number) => Promise<void>;
|
|
5059
5166
|
fetchNextPage: () => void;
|
|
5060
5167
|
fetchPreviousPage: () => void;
|
|
5061
5168
|
fetchLimit: (limit: number) => Promise<void>;
|
|
5062
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
5169
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5063
5170
|
page?: number;
|
|
5064
5171
|
limit?: number;
|
|
5065
5172
|
orderBy?: string;
|
|
5173
|
+
where?: object;
|
|
5066
5174
|
}) => Promise<void>;
|
|
5067
5175
|
};
|
|
5068
5176
|
/** @description Hook para useCreate de la entidad grafica */
|
|
@@ -5113,16 +5221,18 @@ declare const useFetchListGraficaColor: (params: QueryParams<GraficaColorQuery>,
|
|
|
5113
5221
|
page?: number;
|
|
5114
5222
|
limit?: number;
|
|
5115
5223
|
orderBy?: string;
|
|
5224
|
+
where?: object;
|
|
5116
5225
|
};
|
|
5117
5226
|
refetch: () => Promise<void>;
|
|
5118
5227
|
fetchPage: (page: number) => Promise<void>;
|
|
5119
5228
|
fetchNextPage: () => void;
|
|
5120
5229
|
fetchPreviousPage: () => void;
|
|
5121
5230
|
fetchLimit: (limit: number) => Promise<void>;
|
|
5122
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
5231
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5123
5232
|
page?: number;
|
|
5124
5233
|
limit?: number;
|
|
5125
5234
|
orderBy?: string;
|
|
5235
|
+
where?: object;
|
|
5126
5236
|
}) => Promise<void>;
|
|
5127
5237
|
};
|
|
5128
5238
|
/** @description Hook para useCreate de la entidad grafica_color */
|
|
@@ -5173,16 +5283,18 @@ declare const useFetchListGraficaColorGrupo: (params: QueryParams<GraficaColorGr
|
|
|
5173
5283
|
page?: number;
|
|
5174
5284
|
limit?: number;
|
|
5175
5285
|
orderBy?: string;
|
|
5286
|
+
where?: object;
|
|
5176
5287
|
};
|
|
5177
5288
|
refetch: () => Promise<void>;
|
|
5178
5289
|
fetchPage: (page: number) => Promise<void>;
|
|
5179
5290
|
fetchNextPage: () => void;
|
|
5180
5291
|
fetchPreviousPage: () => void;
|
|
5181
5292
|
fetchLimit: (limit: number) => Promise<void>;
|
|
5182
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
5293
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5183
5294
|
page?: number;
|
|
5184
5295
|
limit?: number;
|
|
5185
5296
|
orderBy?: string;
|
|
5297
|
+
where?: object;
|
|
5186
5298
|
}) => Promise<void>;
|
|
5187
5299
|
};
|
|
5188
5300
|
/** @description Hook para useCreate de la entidad grafica_color_grupo */
|
|
@@ -5233,16 +5345,18 @@ declare const useFetchListGraficaColorGrupoAsignacion: (params: QueryParams<Graf
|
|
|
5233
5345
|
page?: number;
|
|
5234
5346
|
limit?: number;
|
|
5235
5347
|
orderBy?: string;
|
|
5348
|
+
where?: object;
|
|
5236
5349
|
};
|
|
5237
5350
|
refetch: () => Promise<void>;
|
|
5238
5351
|
fetchPage: (page: number) => Promise<void>;
|
|
5239
5352
|
fetchNextPage: () => void;
|
|
5240
5353
|
fetchPreviousPage: () => void;
|
|
5241
5354
|
fetchLimit: (limit: number) => Promise<void>;
|
|
5242
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
5355
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5243
5356
|
page?: number;
|
|
5244
5357
|
limit?: number;
|
|
5245
5358
|
orderBy?: string;
|
|
5359
|
+
where?: object;
|
|
5246
5360
|
}) => Promise<void>;
|
|
5247
5361
|
};
|
|
5248
5362
|
/** @description Hook para useCreate de la entidad grafica_color_grupo_asignacion */
|
|
@@ -5293,16 +5407,18 @@ declare const useFetchListGraficaColorGrupoTipoGrafica: (params: QueryParams<Gra
|
|
|
5293
5407
|
page?: number;
|
|
5294
5408
|
limit?: number;
|
|
5295
5409
|
orderBy?: string;
|
|
5410
|
+
where?: object;
|
|
5296
5411
|
};
|
|
5297
5412
|
refetch: () => Promise<void>;
|
|
5298
5413
|
fetchPage: (page: number) => Promise<void>;
|
|
5299
5414
|
fetchNextPage: () => void;
|
|
5300
5415
|
fetchPreviousPage: () => void;
|
|
5301
5416
|
fetchLimit: (limit: number) => Promise<void>;
|
|
5302
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
5417
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5303
5418
|
page?: number;
|
|
5304
5419
|
limit?: number;
|
|
5305
5420
|
orderBy?: string;
|
|
5421
|
+
where?: object;
|
|
5306
5422
|
}) => Promise<void>;
|
|
5307
5423
|
};
|
|
5308
5424
|
/** @description Hook para useCreate de la entidad grafica_color_grupo_tipo_grafica */
|
|
@@ -5353,16 +5469,18 @@ declare const useFetchListGraficaParametro: (params: QueryParams<GraficaParametr
|
|
|
5353
5469
|
page?: number;
|
|
5354
5470
|
limit?: number;
|
|
5355
5471
|
orderBy?: string;
|
|
5472
|
+
where?: object;
|
|
5356
5473
|
};
|
|
5357
5474
|
refetch: () => Promise<void>;
|
|
5358
5475
|
fetchPage: (page: number) => Promise<void>;
|
|
5359
5476
|
fetchNextPage: () => void;
|
|
5360
5477
|
fetchPreviousPage: () => void;
|
|
5361
5478
|
fetchLimit: (limit: number) => Promise<void>;
|
|
5362
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
5479
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5363
5480
|
page?: number;
|
|
5364
5481
|
limit?: number;
|
|
5365
5482
|
orderBy?: string;
|
|
5483
|
+
where?: object;
|
|
5366
5484
|
}) => Promise<void>;
|
|
5367
5485
|
};
|
|
5368
5486
|
/** @description Hook para useCreate de la entidad grafica_parametro */
|
|
@@ -5413,16 +5531,18 @@ declare const useFetchListGraficaParametroDefecto: (params: QueryParams<GraficaP
|
|
|
5413
5531
|
page?: number;
|
|
5414
5532
|
limit?: number;
|
|
5415
5533
|
orderBy?: string;
|
|
5534
|
+
where?: object;
|
|
5416
5535
|
};
|
|
5417
5536
|
refetch: () => Promise<void>;
|
|
5418
5537
|
fetchPage: (page: number) => Promise<void>;
|
|
5419
5538
|
fetchNextPage: () => void;
|
|
5420
5539
|
fetchPreviousPage: () => void;
|
|
5421
5540
|
fetchLimit: (limit: number) => Promise<void>;
|
|
5422
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
5541
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5423
5542
|
page?: number;
|
|
5424
5543
|
limit?: number;
|
|
5425
5544
|
orderBy?: string;
|
|
5545
|
+
where?: object;
|
|
5426
5546
|
}) => Promise<void>;
|
|
5427
5547
|
};
|
|
5428
5548
|
/** @description Hook para useCreate de la entidad grafica_parametro_defecto */
|
|
@@ -5473,16 +5593,18 @@ declare const useFetchListGraficaParametroTipo: (params: QueryParams<GraficaPara
|
|
|
5473
5593
|
page?: number;
|
|
5474
5594
|
limit?: number;
|
|
5475
5595
|
orderBy?: string;
|
|
5596
|
+
where?: object;
|
|
5476
5597
|
};
|
|
5477
5598
|
refetch: () => Promise<void>;
|
|
5478
5599
|
fetchPage: (page: number) => Promise<void>;
|
|
5479
5600
|
fetchNextPage: () => void;
|
|
5480
5601
|
fetchPreviousPage: () => void;
|
|
5481
5602
|
fetchLimit: (limit: number) => Promise<void>;
|
|
5482
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
5603
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5483
5604
|
page?: number;
|
|
5484
5605
|
limit?: number;
|
|
5485
5606
|
orderBy?: string;
|
|
5607
|
+
where?: object;
|
|
5486
5608
|
}) => Promise<void>;
|
|
5487
5609
|
};
|
|
5488
5610
|
/** @description Hook para useCreate de la entidad grafica_parametro_tipo */
|
|
@@ -5533,16 +5655,18 @@ declare const useFetchListRol: (params: QueryParams<RolQuery>, config?: useFetch
|
|
|
5533
5655
|
page?: number;
|
|
5534
5656
|
limit?: number;
|
|
5535
5657
|
orderBy?: string;
|
|
5658
|
+
where?: object;
|
|
5536
5659
|
};
|
|
5537
5660
|
refetch: () => Promise<void>;
|
|
5538
5661
|
fetchPage: (page: number) => Promise<void>;
|
|
5539
5662
|
fetchNextPage: () => void;
|
|
5540
5663
|
fetchPreviousPage: () => void;
|
|
5541
5664
|
fetchLimit: (limit: number) => Promise<void>;
|
|
5542
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
5665
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5543
5666
|
page?: number;
|
|
5544
5667
|
limit?: number;
|
|
5545
5668
|
orderBy?: string;
|
|
5669
|
+
where?: object;
|
|
5546
5670
|
}) => Promise<void>;
|
|
5547
5671
|
};
|
|
5548
5672
|
/** @description Hook para useCreate de la entidad rol */
|
|
@@ -5593,16 +5717,18 @@ declare const useFetchListRolDashboardRuta: (params: QueryParams<RolDashboardRut
|
|
|
5593
5717
|
page?: number;
|
|
5594
5718
|
limit?: number;
|
|
5595
5719
|
orderBy?: string;
|
|
5720
|
+
where?: object;
|
|
5596
5721
|
};
|
|
5597
5722
|
refetch: () => Promise<void>;
|
|
5598
5723
|
fetchPage: (page: number) => Promise<void>;
|
|
5599
5724
|
fetchNextPage: () => void;
|
|
5600
5725
|
fetchPreviousPage: () => void;
|
|
5601
5726
|
fetchLimit: (limit: number) => Promise<void>;
|
|
5602
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
5727
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5603
5728
|
page?: number;
|
|
5604
5729
|
limit?: number;
|
|
5605
5730
|
orderBy?: string;
|
|
5731
|
+
where?: object;
|
|
5606
5732
|
}) => Promise<void>;
|
|
5607
5733
|
};
|
|
5608
5734
|
/** @description Hook para useCreate de la entidad rol_dashboard_ruta */
|
|
@@ -5653,16 +5779,18 @@ declare const useFetchListTipoGrafica: (params: QueryParams<TipoGraficaQuery>, c
|
|
|
5653
5779
|
page?: number;
|
|
5654
5780
|
limit?: number;
|
|
5655
5781
|
orderBy?: string;
|
|
5782
|
+
where?: object;
|
|
5656
5783
|
};
|
|
5657
5784
|
refetch: () => Promise<void>;
|
|
5658
5785
|
fetchPage: (page: number) => Promise<void>;
|
|
5659
5786
|
fetchNextPage: () => void;
|
|
5660
5787
|
fetchPreviousPage: () => void;
|
|
5661
5788
|
fetchLimit: (limit: number) => Promise<void>;
|
|
5662
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
5789
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5663
5790
|
page?: number;
|
|
5664
5791
|
limit?: number;
|
|
5665
5792
|
orderBy?: string;
|
|
5793
|
+
where?: object;
|
|
5666
5794
|
}) => Promise<void>;
|
|
5667
5795
|
};
|
|
5668
5796
|
/** @description Hook para useCreate de la entidad tipo_grafica */
|
|
@@ -5713,16 +5841,18 @@ declare const useFetchListUsuario: (params: QueryParams<UsuarioQuery>, config?:
|
|
|
5713
5841
|
page?: number;
|
|
5714
5842
|
limit?: number;
|
|
5715
5843
|
orderBy?: string;
|
|
5844
|
+
where?: object;
|
|
5716
5845
|
};
|
|
5717
5846
|
refetch: () => Promise<void>;
|
|
5718
5847
|
fetchPage: (page: number) => Promise<void>;
|
|
5719
5848
|
fetchNextPage: () => void;
|
|
5720
5849
|
fetchPreviousPage: () => void;
|
|
5721
5850
|
fetchLimit: (limit: number) => Promise<void>;
|
|
5722
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
5851
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5723
5852
|
page?: number;
|
|
5724
5853
|
limit?: number;
|
|
5725
5854
|
orderBy?: string;
|
|
5855
|
+
where?: object;
|
|
5726
5856
|
}) => Promise<void>;
|
|
5727
5857
|
};
|
|
5728
5858
|
/** @description Hook para useCreate de la entidad usuario */
|
|
@@ -5773,16 +5903,18 @@ declare const useFetchListUsuarioDashboardAcceso: (params: QueryParams<UsuarioDa
|
|
|
5773
5903
|
page?: number;
|
|
5774
5904
|
limit?: number;
|
|
5775
5905
|
orderBy?: string;
|
|
5906
|
+
where?: object;
|
|
5776
5907
|
};
|
|
5777
5908
|
refetch: () => Promise<void>;
|
|
5778
5909
|
fetchPage: (page: number) => Promise<void>;
|
|
5779
5910
|
fetchNextPage: () => void;
|
|
5780
5911
|
fetchPreviousPage: () => void;
|
|
5781
5912
|
fetchLimit: (limit: number) => Promise<void>;
|
|
5782
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
5913
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5783
5914
|
page?: number;
|
|
5784
5915
|
limit?: number;
|
|
5785
5916
|
orderBy?: string;
|
|
5917
|
+
where?: object;
|
|
5786
5918
|
}) => Promise<void>;
|
|
5787
5919
|
};
|
|
5788
5920
|
/** @description Hook para useCreate de la entidad usuario_dashboard_acceso */
|
|
@@ -5833,16 +5965,18 @@ declare const useFetchListUsuarioRol: (params: QueryParams<UsuarioRolQuery>, con
|
|
|
5833
5965
|
page?: number;
|
|
5834
5966
|
limit?: number;
|
|
5835
5967
|
orderBy?: string;
|
|
5968
|
+
where?: object;
|
|
5836
5969
|
};
|
|
5837
5970
|
refetch: () => Promise<void>;
|
|
5838
5971
|
fetchPage: (page: number) => Promise<void>;
|
|
5839
5972
|
fetchNextPage: () => void;
|
|
5840
5973
|
fetchPreviousPage: () => void;
|
|
5841
5974
|
fetchLimit: (limit: number) => Promise<void>;
|
|
5842
|
-
fetchPagination: ({ page, limit, orderBy }: {
|
|
5975
|
+
fetchPagination: ({ page, limit, orderBy, where }: {
|
|
5843
5976
|
page?: number;
|
|
5844
5977
|
limit?: number;
|
|
5845
5978
|
orderBy?: string;
|
|
5979
|
+
where?: object;
|
|
5846
5980
|
}) => Promise<void>;
|
|
5847
5981
|
};
|
|
5848
5982
|
/** @description Hook para useCreate de la entidad usuario_rol */
|
|
@@ -5875,4 +6009,4 @@ declare const useFilterMatchUsuarioRol: (params: FilterMatchParams<UsuarioRolQue
|
|
|
5875
6009
|
refetch: () => Promise<void>;
|
|
5876
6010
|
};
|
|
5877
6011
|
|
|
5878
|
-
export { APIFactory, ApiClientContext, createAPIAdeudo, createAPICatColor, createAPICatColorGrupo, createAPICatGraficaGrupo, createAPICatRolGrupo, createAPICatTema, createAPIDashboardEstilo, createAPIDashboardGrafica, createAPIDashboardGraficaElemento, createAPIDashboardGraficaElementoDetalle, createAPIDashboardGraficaElementoEstilo, createAPIDashboardGraficaElementoParametro, createAPIDashboardGraficaGrupo, createAPIDashboardGraficaGrupoEstilo, createAPIDashboardRuta, createAPIGrafica, createAPIGraficaColor, createAPIGraficaColorGrupo, createAPIGraficaColorGrupoAsignacion, createAPIGraficaColorGrupoTipoGrafica, createAPIGraficaParametro, createAPIGraficaParametroDefecto, createAPIGraficaParametroTipo, createAPIRol, createAPIRolDashboardRuta, createAPITipoGrafica, createAPIUsuario, createAPIUsuarioDashboardAcceso, createAPIUsuarioRol, useCreateAdeudo, useCreateCatColor, useCreateCatColorGrupo, useCreateCatGraficaGrupo, useCreateCatRolGrupo, useCreateCatTema, useCreateDashboardEstilo, useCreateDashboardGrafica, useCreateDashboardGraficaElemento, useCreateDashboardGraficaElementoDetalle, useCreateDashboardGraficaElementoEstilo, useCreateDashboardGraficaElementoParametro, useCreateDashboardGraficaGrupo, useCreateDashboardGraficaGrupoEstilo, useCreateDashboardRuta, useCreateGrafica, useCreateGraficaColor, useCreateGraficaColorGrupo, useCreateGraficaColorGrupoAsignacion, useCreateGraficaColorGrupoTipoGrafica, useCreateGraficaParametro, useCreateGraficaParametroDefecto, useCreateGraficaParametroTipo, useCreateRol, useCreateRolDashboardRuta, useCreateTipoGrafica, useCreateUsuario, useCreateUsuarioDashboardAcceso, useCreateUsuarioRol, useDeleteAdeudo, useDeleteCatColor, useDeleteCatColorGrupo, useDeleteCatGraficaGrupo, useDeleteCatRolGrupo, useDeleteCatTema, useDeleteDashboardEstilo, useDeleteDashboardGrafica, useDeleteDashboardGraficaElemento, useDeleteDashboardGraficaElementoDetalle, useDeleteDashboardGraficaElementoEstilo, useDeleteDashboardGraficaElementoParametro, useDeleteDashboardGraficaGrupo, useDeleteDashboardGraficaGrupoEstilo, useDeleteDashboardRuta, useDeleteGrafica, useDeleteGraficaColor, useDeleteGraficaColorGrupo, useDeleteGraficaColorGrupoAsignacion, useDeleteGraficaColorGrupoTipoGrafica, useDeleteGraficaParametro, useDeleteGraficaParametroDefecto, useDeleteGraficaParametroTipo, useDeleteRol, useDeleteRolDashboardRuta, useDeleteTipoGrafica, useDeleteUsuario, useDeleteUsuarioDashboardAcceso, useDeleteUsuarioRol, useFetchByIdAdeudo, useFetchByIdCatColor, useFetchByIdCatColorGrupo, useFetchByIdCatGraficaGrupo, useFetchByIdCatRolGrupo, useFetchByIdCatTema, useFetchByIdDashboardEstilo, useFetchByIdDashboardGrafica, useFetchByIdDashboardGraficaElemento, useFetchByIdDashboardGraficaElementoDetalle, useFetchByIdDashboardGraficaElementoEstilo, useFetchByIdDashboardGraficaElementoParametro, useFetchByIdDashboardGraficaGrupo, useFetchByIdDashboardGraficaGrupoEstilo, useFetchByIdDashboardRuta, useFetchByIdGrafica, useFetchByIdGraficaColor, useFetchByIdGraficaColorGrupo, useFetchByIdGraficaColorGrupoAsignacion, useFetchByIdGraficaColorGrupoTipoGrafica, useFetchByIdGraficaParametro, useFetchByIdGraficaParametroDefecto, useFetchByIdGraficaParametroTipo, useFetchByIdRol, useFetchByIdRolDashboardRuta, useFetchByIdTipoGrafica, useFetchByIdUsuario, useFetchByIdUsuarioDashboardAcceso, useFetchByIdUsuarioRol, useFetchListAdeudo, useFetchListCatColor, useFetchListCatColorGrupo, useFetchListCatGraficaGrupo, useFetchListCatRolGrupo, useFetchListCatTema, useFetchListDashboardEstilo, useFetchListDashboardGrafica, useFetchListDashboardGraficaElemento, useFetchListDashboardGraficaElementoDetalle, useFetchListDashboardGraficaElementoEstilo, useFetchListDashboardGraficaElementoParametro, useFetchListDashboardGraficaGrupo, useFetchListDashboardGraficaGrupoEstilo, useFetchListDashboardRuta, useFetchListGrafica, useFetchListGraficaColor, useFetchListGraficaColorGrupo, useFetchListGraficaColorGrupoAsignacion, useFetchListGraficaColorGrupoTipoGrafica, useFetchListGraficaParametro, useFetchListGraficaParametroDefecto, useFetchListGraficaParametroTipo, useFetchListRol, useFetchListRolDashboardRuta, useFetchListTipoGrafica, useFetchListUsuario, useFetchListUsuarioDashboardAcceso, useFetchListUsuarioRol, useFilterMatchAdeudo, useFilterMatchCatColor, useFilterMatchCatColorGrupo, useFilterMatchCatGraficaGrupo, useFilterMatchCatRolGrupo, useFilterMatchCatTema, useFilterMatchDashboardEstilo, useFilterMatchDashboardGrafica, useFilterMatchDashboardGraficaElemento, useFilterMatchDashboardGraficaElementoDetalle, useFilterMatchDashboardGraficaElementoEstilo, useFilterMatchDashboardGraficaElementoParametro, useFilterMatchDashboardGraficaGrupo, useFilterMatchDashboardGraficaGrupoEstilo, useFilterMatchDashboardRuta, useFilterMatchGrafica, useFilterMatchGraficaColor, useFilterMatchGraficaColorGrupo, useFilterMatchGraficaColorGrupoAsignacion, useFilterMatchGraficaColorGrupoTipoGrafica, useFilterMatchGraficaParametro, useFilterMatchGraficaParametroDefecto, useFilterMatchGraficaParametroTipo, useFilterMatchRol, useFilterMatchRolDashboardRuta, useFilterMatchTipoGrafica, useFilterMatchUsuario, useFilterMatchUsuarioDashboardAcceso, useFilterMatchUsuarioRol, useGetTreeDashboardGraficaElemento, useUpdateAdeudo, useUpdateCatColor, useUpdateCatColorGrupo, useUpdateCatGraficaGrupo, useUpdateCatRolGrupo, useUpdateCatTema, useUpdateDashboardEstilo, useUpdateDashboardGrafica, useUpdateDashboardGraficaElemento, useUpdateDashboardGraficaElementoDetalle, useUpdateDashboardGraficaElementoEstilo, useUpdateDashboardGraficaElementoParametro, useUpdateDashboardGraficaGrupo, useUpdateDashboardGraficaGrupoEstilo, useUpdateDashboardRuta, useUpdateGrafica, useUpdateGraficaColor, useUpdateGraficaColorGrupo, useUpdateGraficaColorGrupoAsignacion, useUpdateGraficaColorGrupoTipoGrafica, useUpdateGraficaParametro, useUpdateGraficaParametroDefecto, useUpdateGraficaParametroTipo, useUpdateRol, useUpdateRolDashboardRuta, useUpdateTipoGrafica, useUpdateUsuario, useUpdateUsuarioDashboardAcceso, useUpdateUsuarioRol };
|
|
6012
|
+
export { APIFactory, ApiClientContext, createAPIAdeudo, createAPICatColor, createAPICatColorGrupo, createAPICatGraficaGrupo, createAPICatRolGrupo, createAPICatTema, createAPIDashboardEstilo, createAPIDashboardGrafica, createAPIDashboardGraficaElemento, createAPIDashboardGraficaElementoDetalle, createAPIDashboardGraficaElementoEstilo, createAPIDashboardGraficaElementoParametro, createAPIDashboardGraficaGrupo, createAPIDashboardGraficaGrupoEstilo, createAPIDashboardGraficaGrupoRol, createAPIDashboardRuta, createAPIGrafica, createAPIGraficaColor, createAPIGraficaColorGrupo, createAPIGraficaColorGrupoAsignacion, createAPIGraficaColorGrupoTipoGrafica, createAPIGraficaParametro, createAPIGraficaParametroDefecto, createAPIGraficaParametroTipo, createAPIRol, createAPIRolDashboardRuta, createAPITipoGrafica, createAPIUsuario, createAPIUsuarioDashboardAcceso, createAPIUsuarioRol, useCreateAdeudo, useCreateCatColor, useCreateCatColorGrupo, useCreateCatGraficaGrupo, useCreateCatRolGrupo, useCreateCatTema, useCreateDashboardEstilo, useCreateDashboardGrafica, useCreateDashboardGraficaElemento, useCreateDashboardGraficaElementoDetalle, useCreateDashboardGraficaElementoEstilo, useCreateDashboardGraficaElementoParametro, useCreateDashboardGraficaGrupo, useCreateDashboardGraficaGrupoEstilo, useCreateDashboardGraficaGrupoRol, useCreateDashboardRuta, useCreateGrafica, useCreateGraficaColor, useCreateGraficaColorGrupo, useCreateGraficaColorGrupoAsignacion, useCreateGraficaColorGrupoTipoGrafica, useCreateGraficaParametro, useCreateGraficaParametroDefecto, useCreateGraficaParametroTipo, useCreateRol, useCreateRolDashboardRuta, useCreateTipoGrafica, useCreateUsuario, useCreateUsuarioDashboardAcceso, useCreateUsuarioRol, useDeleteAdeudo, useDeleteCatColor, useDeleteCatColorGrupo, useDeleteCatGraficaGrupo, useDeleteCatRolGrupo, useDeleteCatTema, useDeleteDashboardEstilo, useDeleteDashboardGrafica, useDeleteDashboardGraficaElemento, useDeleteDashboardGraficaElementoDetalle, useDeleteDashboardGraficaElementoEstilo, useDeleteDashboardGraficaElementoParametro, useDeleteDashboardGraficaGrupo, useDeleteDashboardGraficaGrupoEstilo, useDeleteDashboardGraficaGrupoRol, useDeleteDashboardRuta, useDeleteGrafica, useDeleteGraficaColor, useDeleteGraficaColorGrupo, useDeleteGraficaColorGrupoAsignacion, useDeleteGraficaColorGrupoTipoGrafica, useDeleteGraficaParametro, useDeleteGraficaParametroDefecto, useDeleteGraficaParametroTipo, useDeleteRol, useDeleteRolDashboardRuta, useDeleteTipoGrafica, useDeleteUsuario, useDeleteUsuarioDashboardAcceso, useDeleteUsuarioRol, useFetchByIdAdeudo, useFetchByIdCatColor, useFetchByIdCatColorGrupo, useFetchByIdCatGraficaGrupo, useFetchByIdCatRolGrupo, useFetchByIdCatTema, useFetchByIdDashboardEstilo, useFetchByIdDashboardGrafica, useFetchByIdDashboardGraficaElemento, useFetchByIdDashboardGraficaElementoDetalle, useFetchByIdDashboardGraficaElementoEstilo, useFetchByIdDashboardGraficaElementoParametro, useFetchByIdDashboardGraficaGrupo, useFetchByIdDashboardGraficaGrupoEstilo, useFetchByIdDashboardGraficaGrupoRol, useFetchByIdDashboardRuta, useFetchByIdGrafica, useFetchByIdGraficaColor, useFetchByIdGraficaColorGrupo, useFetchByIdGraficaColorGrupoAsignacion, useFetchByIdGraficaColorGrupoTipoGrafica, useFetchByIdGraficaParametro, useFetchByIdGraficaParametroDefecto, useFetchByIdGraficaParametroTipo, useFetchByIdRol, useFetchByIdRolDashboardRuta, useFetchByIdTipoGrafica, useFetchByIdUsuario, useFetchByIdUsuarioDashboardAcceso, useFetchByIdUsuarioRol, useFetchListAdeudo, useFetchListCatColor, useFetchListCatColorGrupo, useFetchListCatGraficaGrupo, useFetchListCatRolGrupo, useFetchListCatTema, useFetchListDashboardEstilo, useFetchListDashboardGrafica, useFetchListDashboardGraficaElemento, useFetchListDashboardGraficaElementoDetalle, useFetchListDashboardGraficaElementoEstilo, useFetchListDashboardGraficaElementoParametro, useFetchListDashboardGraficaGrupo, useFetchListDashboardGraficaGrupoEstilo, useFetchListDashboardGraficaGrupoRol, useFetchListDashboardRuta, useFetchListGrafica, useFetchListGraficaColor, useFetchListGraficaColorGrupo, useFetchListGraficaColorGrupoAsignacion, useFetchListGraficaColorGrupoTipoGrafica, useFetchListGraficaParametro, useFetchListGraficaParametroDefecto, useFetchListGraficaParametroTipo, useFetchListRol, useFetchListRolDashboardRuta, useFetchListTipoGrafica, useFetchListUsuario, useFetchListUsuarioDashboardAcceso, useFetchListUsuarioRol, useFilterMatchAdeudo, useFilterMatchCatColor, useFilterMatchCatColorGrupo, useFilterMatchCatGraficaGrupo, useFilterMatchCatRolGrupo, useFilterMatchCatTema, useFilterMatchDashboardEstilo, useFilterMatchDashboardGrafica, useFilterMatchDashboardGraficaElemento, useFilterMatchDashboardGraficaElementoDetalle, useFilterMatchDashboardGraficaElementoEstilo, useFilterMatchDashboardGraficaElementoParametro, useFilterMatchDashboardGraficaGrupo, useFilterMatchDashboardGraficaGrupoEstilo, useFilterMatchDashboardGraficaGrupoRol, useFilterMatchDashboardRuta, useFilterMatchGrafica, useFilterMatchGraficaColor, useFilterMatchGraficaColorGrupo, useFilterMatchGraficaColorGrupoAsignacion, useFilterMatchGraficaColorGrupoTipoGrafica, useFilterMatchGraficaParametro, useFilterMatchGraficaParametroDefecto, useFilterMatchGraficaParametroTipo, useFilterMatchRol, useFilterMatchRolDashboardRuta, useFilterMatchTipoGrafica, useFilterMatchUsuario, useFilterMatchUsuarioDashboardAcceso, useFilterMatchUsuarioRol, useGetTreeDashboardGraficaElemento, useUpdateAdeudo, useUpdateCatColor, useUpdateCatColorGrupo, useUpdateCatGraficaGrupo, useUpdateCatRolGrupo, useUpdateCatTema, useUpdateDashboardEstilo, useUpdateDashboardGrafica, useUpdateDashboardGraficaElemento, useUpdateDashboardGraficaElementoDetalle, useUpdateDashboardGraficaElementoEstilo, useUpdateDashboardGraficaElementoParametro, useUpdateDashboardGraficaGrupo, useUpdateDashboardGraficaGrupoEstilo, useUpdateDashboardGraficaGrupoRol, useUpdateDashboardRuta, useUpdateGrafica, useUpdateGraficaColor, useUpdateGraficaColorGrupo, useUpdateGraficaColorGrupoAsignacion, useUpdateGraficaColorGrupoTipoGrafica, useUpdateGraficaParametro, useUpdateGraficaParametroDefecto, useUpdateGraficaParametroTipo, useUpdateRol, useUpdateRolDashboardRuta, useUpdateTipoGrafica, useUpdateUsuario, useUpdateUsuarioDashboardAcceso, useUpdateUsuarioRol };
|