@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.mjs
CHANGED
|
@@ -394,6 +394,14 @@ var setupGraficaColorGrupoApi = ({ client }) => {
|
|
|
394
394
|
return api;
|
|
395
395
|
};
|
|
396
396
|
|
|
397
|
+
// src/components/apis/setupGraficaColorGrupoAsignacionApi.ts
|
|
398
|
+
var setupGraficaColorGrupoAsignacionApi = ({ client }) => {
|
|
399
|
+
const api = client.subpath("/grafica_color_grupo_asignacion", (sub, axios3) => ({
|
|
400
|
+
// Agregar métodos personalizados aquí
|
|
401
|
+
}));
|
|
402
|
+
return api;
|
|
403
|
+
};
|
|
404
|
+
|
|
397
405
|
// src/components/apis/setupGraficaFiltroApi.ts
|
|
398
406
|
var setupGraficaFiltroApi = ({ client }) => {
|
|
399
407
|
const api = client.subpath("/grafica_filtro", (sub, axios3) => ({
|
|
@@ -692,6 +700,7 @@ var APIFactory = class {
|
|
|
692
700
|
this.grafica_agrupacion = setupGraficaAgrupacionApi({ client });
|
|
693
701
|
this.grafica_color = setupGraficaColorApi({ client });
|
|
694
702
|
this.grafica_color_grupo = setupGraficaColorGrupoApi({ client });
|
|
703
|
+
this.grafica_color_grupo_asignacion = setupGraficaColorGrupoAsignacionApi({ client });
|
|
695
704
|
this.grafica_filtro = setupGraficaFiltroApi({ client });
|
|
696
705
|
this.grafica_parametro = setupGraficaParametroApi({ client });
|
|
697
706
|
this.grafica_parametro_defecto = setupGraficaParametroDefectoApi({ client });
|