@erpp/react-api-cronos-frontend 1.0.12 → 1.0.13
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 +13 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -471,6 +471,18 @@ declare const setupGraficaColorGrupoApi: ({ client }: BuildAPIParams) => {
|
|
|
471
471
|
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
472
472
|
};
|
|
473
473
|
|
|
474
|
+
declare const setupGraficaColorGrupoAsignacionApi: ({ 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
|
+
|
|
474
486
|
declare const setupGraficaFiltroApi: ({ client }: BuildAPIParams) => {
|
|
475
487
|
findByFilterMatch: (data?: {
|
|
476
488
|
filter: string;
|
|
@@ -891,6 +903,7 @@ declare class APIFactory {
|
|
|
891
903
|
grafica_agrupacion: ReturnType<typeof setupGraficaAgrupacionApi>;
|
|
892
904
|
grafica_color: ReturnType<typeof setupGraficaColorApi>;
|
|
893
905
|
grafica_color_grupo: ReturnType<typeof setupGraficaColorGrupoApi>;
|
|
906
|
+
grafica_color_grupo_asignacion: ReturnType<typeof setupGraficaColorGrupoAsignacionApi>;
|
|
894
907
|
grafica_filtro: ReturnType<typeof setupGraficaFiltroApi>;
|
|
895
908
|
grafica_parametro: ReturnType<typeof setupGraficaParametroApi>;
|
|
896
909
|
grafica_parametro_defecto: ReturnType<typeof setupGraficaParametroDefectoApi>;
|
package/dist/index.d.ts
CHANGED
|
@@ -471,6 +471,18 @@ declare const setupGraficaColorGrupoApi: ({ client }: BuildAPIParams) => {
|
|
|
471
471
|
delete: ({ id, config, where }: APISubpathDeleteParams) => Promise<axios.AxiosResponse<any, any>>;
|
|
472
472
|
};
|
|
473
473
|
|
|
474
|
+
declare const setupGraficaColorGrupoAsignacionApi: ({ 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
|
+
|
|
474
486
|
declare const setupGraficaFiltroApi: ({ client }: BuildAPIParams) => {
|
|
475
487
|
findByFilterMatch: (data?: {
|
|
476
488
|
filter: string;
|
|
@@ -891,6 +903,7 @@ declare class APIFactory {
|
|
|
891
903
|
grafica_agrupacion: ReturnType<typeof setupGraficaAgrupacionApi>;
|
|
892
904
|
grafica_color: ReturnType<typeof setupGraficaColorApi>;
|
|
893
905
|
grafica_color_grupo: ReturnType<typeof setupGraficaColorGrupoApi>;
|
|
906
|
+
grafica_color_grupo_asignacion: ReturnType<typeof setupGraficaColorGrupoAsignacionApi>;
|
|
894
907
|
grafica_filtro: ReturnType<typeof setupGraficaFiltroApi>;
|
|
895
908
|
grafica_parametro: ReturnType<typeof setupGraficaParametroApi>;
|
|
896
909
|
grafica_parametro_defecto: ReturnType<typeof setupGraficaParametroDefectoApi>;
|
package/dist/index.js
CHANGED
|
@@ -904,6 +904,14 @@ var setupGraficaColorGrupoApi = ({ client }) => {
|
|
|
904
904
|
return api;
|
|
905
905
|
};
|
|
906
906
|
|
|
907
|
+
// src/components/apis/setupGraficaColorGrupoAsignacionApi.ts
|
|
908
|
+
var setupGraficaColorGrupoAsignacionApi = ({ client }) => {
|
|
909
|
+
const api = client.subpath("/grafica_color_grupo_asignacion", (sub, axios3) => ({
|
|
910
|
+
// Agregar métodos personalizados aquí
|
|
911
|
+
}));
|
|
912
|
+
return api;
|
|
913
|
+
};
|
|
914
|
+
|
|
907
915
|
// src/components/apis/setupGraficaFiltroApi.ts
|
|
908
916
|
var setupGraficaFiltroApi = ({ client }) => {
|
|
909
917
|
const api = client.subpath("/grafica_filtro", (sub, axios3) => ({
|
|
@@ -1202,6 +1210,7 @@ var APIFactory = class {
|
|
|
1202
1210
|
this.grafica_agrupacion = setupGraficaAgrupacionApi({ client });
|
|
1203
1211
|
this.grafica_color = setupGraficaColorApi({ client });
|
|
1204
1212
|
this.grafica_color_grupo = setupGraficaColorGrupoApi({ client });
|
|
1213
|
+
this.grafica_color_grupo_asignacion = setupGraficaColorGrupoAsignacionApi({ client });
|
|
1205
1214
|
this.grafica_filtro = setupGraficaFiltroApi({ client });
|
|
1206
1215
|
this.grafica_parametro = setupGraficaParametroApi({ client });
|
|
1207
1216
|
this.grafica_parametro_defecto = setupGraficaParametroDefectoApi({ client });
|