@mc-hogar/crosslib 1.0.76 → 1.0.78

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.
Files changed (35) hide show
  1. package/README.md +8 -1
  2. package/dist/cjs/modules/Estadisticas/index.js +18 -0
  3. package/dist/cjs/modules/Estadisticas/index.js.map +1 -0
  4. package/dist/cjs/modules/Estadisticas/types/estadisticas.types.js +3 -0
  5. package/dist/cjs/modules/Estadisticas/types/estadisticas.types.js.map +1 -0
  6. package/dist/cjs/modules/PanelVendedor/Impresiones/types/Marco.types.js +3 -0
  7. package/dist/cjs/modules/PanelVendedor/Impresiones/types/Marco.types.js.map +1 -0
  8. package/dist/cjs/modules/PanelVendedor/Impresiones/types/index.js +1 -0
  9. package/dist/cjs/modules/PanelVendedor/Impresiones/types/index.js.map +1 -1
  10. package/dist/cjs/modules/index.js +1 -0
  11. package/dist/cjs/modules/index.js.map +1 -1
  12. package/dist/esm/modules/Estadisticas/index.js +2 -0
  13. package/dist/esm/modules/Estadisticas/index.js.map +1 -0
  14. package/dist/esm/modules/Estadisticas/types/estadisticas.types.js +2 -0
  15. package/dist/esm/modules/Estadisticas/types/estadisticas.types.js.map +1 -0
  16. package/dist/esm/modules/PanelVendedor/Impresiones/types/Marco.types.js +2 -0
  17. package/dist/esm/modules/PanelVendedor/Impresiones/types/Marco.types.js.map +1 -0
  18. package/dist/esm/modules/PanelVendedor/Impresiones/types/index.js +1 -0
  19. package/dist/esm/modules/PanelVendedor/Impresiones/types/index.js.map +1 -1
  20. package/dist/esm/modules/index.js +1 -0
  21. package/dist/esm/modules/index.js.map +1 -1
  22. package/dist/types/modules/Estadisticas/index.d.ts +2 -0
  23. package/dist/types/modules/Estadisticas/index.d.ts.map +1 -0
  24. package/dist/types/modules/Estadisticas/types/estadisticas.types.d.ts +12 -0
  25. package/dist/types/modules/Estadisticas/types/estadisticas.types.d.ts.map +1 -0
  26. package/dist/types/modules/Jerarquias/types/Jerarquias.types.d.ts.map +1 -1
  27. package/dist/types/modules/PanelVendedor/Impresiones/types/ConfiguracionImpresion.types.d.ts +0 -6
  28. package/dist/types/modules/PanelVendedor/Impresiones/types/ConfiguracionImpresion.types.d.ts.map +1 -1
  29. package/dist/types/modules/PanelVendedor/Impresiones/types/Marco.types.d.ts +9 -0
  30. package/dist/types/modules/PanelVendedor/Impresiones/types/Marco.types.d.ts.map +1 -0
  31. package/dist/types/modules/PanelVendedor/Impresiones/types/index.d.ts +1 -0
  32. package/dist/types/modules/PanelVendedor/Impresiones/types/index.d.ts.map +1 -1
  33. package/dist/types/modules/index.d.ts +1 -0
  34. package/dist/types/modules/index.d.ts.map +1 -1
  35. package/package.json +1 -1
package/README.md CHANGED
@@ -4,4 +4,11 @@ Crosslib is an isomorphic TypeScript library that centralizes shared domain mode
4
4
 
5
5
  * Read the [project overview](docs/overview.md) for a high-level explanation and package layout.
6
6
  * Browse the [module catalog](docs/modules.md) to understand what each domain area provides.
7
- * See [development tips](docs/development.md) for building, testing, and linting the library locally.
7
+ * See [development tips](docs/development.md) for building, testing, and linting the library locally.
8
+
9
+ # Si hay problemas al querer subir el paquete a NPM: (npm publish)
10
+ - Verificar si la versión del package.json se cambio (siempre la incrementamos en 1)
11
+ - Verificar que el "Granular Access Token" que emite npm no este expirado.
12
+ - Para volver a generarlo ir a la página de npm y generar el nuevo token asignandole la configuración deseada.
13
+ - Ejecutar el comando: npm config set //registry.npmjs.org/:_authToken "TU_NUEVO_TOKEN_GRANULAR"
14
+ - Asegurarse de estar logeado en npm con npm login.
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./types/estadisticas.types"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/Estadisticas/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA0C"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=estadisticas.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"estadisticas.types.js","sourceRoot":"","sources":["../../../../../src/modules/Estadisticas/types/estadisticas.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=Marco.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Marco.types.js","sourceRoot":"","sources":["../../../../../../src/modules/PanelVendedor/Impresiones/types/Marco.types.ts"],"names":[],"mappings":""}
@@ -17,4 +17,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./Articulo.types"), exports);
18
18
  __exportStar(require("./ConfiguracionImpresion.types"), exports);
19
19
  __exportStar(require("./TipoPlantilla.types"), exports);
20
+ __exportStar(require("./Marco.types"), exports);
20
21
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/modules/PanelVendedor/Impresiones/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAgC;AAChC,iEAA8C;AAC9C,wDAAqC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/modules/PanelVendedor/Impresiones/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAgC;AAChC,iEAA8C;AAC9C,wDAAqC;AACrC,gDAA6B"}
@@ -23,4 +23,5 @@ __exportStar(require("./Storefront"), exports);
23
23
  __exportStar(require("./Etiquetas"), exports);
24
24
  __exportStar(require("./Usuarios"), exports);
25
25
  __exportStar(require("./Aikon"), exports);
26
+ __exportStar(require("./Estadisticas"), exports);
26
27
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/modules/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA2B;AAC3B,6CAA0B;AAC1B,4CAAyB;AACzB,yCAAsB;AACtB,iDAA8B;AAC9B,+CAA4B;AAC5B,8CAA2B;AAC3B,6CAA0B;AAC1B,0CAAuB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/modules/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA2B;AAC3B,6CAA0B;AAC1B,4CAAyB;AACzB,yCAAsB;AACtB,iDAA8B;AAC9B,+CAA4B;AAC5B,8CAA2B;AAC3B,6CAA0B;AAC1B,0CAAuB;AACvB,iDAA8B"}
@@ -0,0 +1,2 @@
1
+ export * from './types/estadisticas.types';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/Estadisticas/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAA"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=estadisticas.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"estadisticas.types.js","sourceRoot":"","sources":["../../../../../src/modules/Estadisticas/types/estadisticas.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=Marco.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Marco.types.js","sourceRoot":"","sources":["../../../../../../src/modules/PanelVendedor/Impresiones/types/Marco.types.ts"],"names":[],"mappings":""}
@@ -1,4 +1,5 @@
1
1
  export * from './Articulo.types';
2
2
  export * from './ConfiguracionImpresion.types';
3
3
  export * from './TipoPlantilla.types';
4
+ export * from './Marco.types';
4
5
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/modules/PanelVendedor/Impresiones/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAA;AAChC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,uBAAuB,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/modules/PanelVendedor/Impresiones/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAA;AAChC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,uBAAuB,CAAA;AACrC,cAAc,eAAe,CAAA"}
@@ -7,4 +7,5 @@ export * from './Storefront';
7
7
  export * from './Etiquetas';
8
8
  export * from './Usuarios';
9
9
  export * from './Aikon';
10
+ export * from './Estadisticas';
10
11
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/modules/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,QAAQ,CAAA;AACtB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,aAAa,CAAA;AAC3B,cAAc,YAAY,CAAA;AAC1B,cAAc,SAAS,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/modules/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,QAAQ,CAAA;AACtB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,aAAa,CAAA;AAC3B,cAAc,YAAY,CAAA;AAC1B,cAAc,SAAS,CAAA;AACvB,cAAc,gBAAgB,CAAA"}
@@ -0,0 +1,2 @@
1
+ export * from './types/estadisticas.types';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/modules/Estadisticas/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAA"}
@@ -0,0 +1,12 @@
1
+ export interface ComparacionArticuloParaVerificarDiferenciasEstado {
2
+ aik_ar_codigo: string;
3
+ aik_ar_descri: string;
4
+ esa_codigo_web: string;
5
+ esa_codigo_api_aikon: string;
6
+ stock_total_web: number;
7
+ stock_total_api_aikon: number;
8
+ fecha_modificacion_web: string | null;
9
+ fecha_modificacion_api_aikon: string | null;
10
+ api_aikon_listado_articulo_no_habilitado: boolean;
11
+ }
12
+ //# sourceMappingURL=estadisticas.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"estadisticas.types.d.ts","sourceRoot":"","sources":["../../../../../src/modules/Estadisticas/types/estadisticas.types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,iDAAiD;IAC9D,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,eAAe,EAAE,MAAM,CAAC;IACxB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,sBAAsB,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC,4BAA4B,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5C,wCAAwC,EAAE,OAAO,CAAC;CACrD"}
@@ -1 +1 @@
1
- {"version":3,"file":"Jerarquias.types.d.ts","sourceRoot":"","sources":["../../../../../src/modules/Jerarquias/types/Jerarquias.types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,UAAU;IACvB,cAAc,EAAE,MAAM,CAAA;IACtB,cAAc,EAAE,MAAM,CAAA;CACzB;AACD,MAAM,WAAW,MAAM;IACnB,cAAc,EAAE,MAAM,CAAA;IACtB,cAAc,EAAE,MAAM,CAAA;CACzB;AACD,MAAM,WAAW,QAAQ;IACrB,aAAa,EAAE,MAAM,CAAA;IACrB,aAAa,EAAE,MAAM,CAAA;IACrB,YAAY,EAAE,MAAM,CAAA;IACpB,WAAW,EAAE,MAAM,CAAA;CACtB;AACD,MAAM,MAAM,YAAY,GAAG,QAAQ,CAAA;AAEnC,MAAM,WAAW,eAAe;IAC5B,SAAS,EAAE,MAAM,CAAA;IACjB,cAAc,EAAE,MAAM,CAAA;IACtB,cAAc,EAAE,MAAM,CAAA;CACzB;AACD,MAAM,WAAW,aAAa;IAC1B,QAAQ,EAAE,MAAM,CAAA;IAChB,aAAa,EAAE,MAAM,CAAA;IACrB,cAAc,EAAE,MAAM,CAAA;CACzB;AAID,MAAM,WAAW,6BAA8B,SAAQ,eAAe;IAClE,kBAAkB,EAAE,MAAM,CAAA;CAC7B;AAED,MAAM,WAAW,iCAAkC,SAAQ,UAAU;IACjE,eAAe,EAAE,6BAA6B,EAAE,CAAA;CACnD;AAED,MAAM,WAAW,6BAA8B,SAAQ,aAAa;IAChE,aAAa,EAAE,QAAQ,CAAA;CAC1B;AAED,MAAM,WAAW,2BAA4B,SAAQ,MAAM;IACvD,aAAa,EAAE,6BAA6B,EAAE,CAAA;CACjD"}
1
+ {"version":3,"file":"Jerarquias.types.d.ts","sourceRoot":"","sources":["../../../../../src/modules/Jerarquias/types/Jerarquias.types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,UAAU;IACvB,cAAc,EAAE,MAAM,CAAA;IACtB,cAAc,EAAE,MAAM,CAAA;CACzB;AACD,MAAM,WAAW,MAAM;IACnB,cAAc,EAAE,MAAM,CAAA;IACtB,cAAc,EAAE,MAAM,CAAA;CACzB;AACD,MAAM,WAAW,QAAQ;IACrB,aAAa,EAAE,MAAM,CAAA;IACrB,aAAa,EAAE,MAAM,CAAA;IACrB,YAAY,EAAE,MAAM,CAAA;IACpB,WAAW,EAAE,MAAM,CAAA;CACtB;AAED,MAAM,MAAM,YAAY,GAAG,QAAQ,CAAA;AAEnC,MAAM,WAAW,eAAe;IAC5B,SAAS,EAAE,MAAM,CAAA;IACjB,cAAc,EAAE,MAAM,CAAA;IACtB,cAAc,EAAE,MAAM,CAAA;CACzB;AACD,MAAM,WAAW,aAAa;IAC1B,QAAQ,EAAE,MAAM,CAAA;IAChB,aAAa,EAAE,MAAM,CAAA;IACrB,cAAc,EAAE,MAAM,CAAA;CACzB;AAGD,MAAM,WAAW,6BAA8B,SAAQ,eAAe;IAClE,kBAAkB,EAAE,MAAM,CAAA;CAC7B;AAED,MAAM,WAAW,iCAAkC,SAAQ,UAAU;IACjE,eAAe,EAAE,6BAA6B,EAAE,CAAA;CACnD;AAED,MAAM,WAAW,6BAA8B,SAAQ,aAAa;IAChE,aAAa,EAAE,QAAQ,CAAA;CAC1B;AAGD,MAAM,WAAW,2BAA4B,SAAQ,MAAM;IACvD,aAAa,EAAE,6BAA6B,EAAE,CAAA;CACjD"}
@@ -3,12 +3,6 @@ import { ArticuloImpresion, ArticuloConPlanSeleccionado } from './Articulo.types
3
3
  /**
4
4
  * Marco decorativo opcional para la impresión
5
5
  */
6
- export interface Marco {
7
- id: string;
8
- nombre: string;
9
- imagen_url: string;
10
- thumbnail_url: string;
11
- }
12
6
  /**
13
7
  * Configuración base para generar una impresión
14
8
  */
@@ -1 +1 @@
1
- {"version":3,"file":"ConfiguracionImpresion.types.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/PanelVendedor/Impresiones/types/ConfiguracionImpresion.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAE,iBAAiB,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAElF;;GAEG;AACH,MAAM,WAAW,KAAK;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACzC,cAAc,EAAE,iBAAiB,CAAC;IAClC,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,uBAAwB,SAAQ,0BAA0B;IACzE,cAAc,EAAE,iBAAiB,CAAC,WAAW,CAAC;IAC9C,QAAQ,EAAE,iBAAiB,CAAC;CAC7B;AAED;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,0BAA0B;IACtE,cAAc,EAAE,iBAAiB,CAAC,QAAQ,CAAC;IAC3C,SAAS,EAAE,iBAAiB,EAAE,CAAC;CAChC;AAED;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,0BAA0B;IACvE,cAAc,EAAE,iBAAiB,CAAC,SAAS,CAAC;IAC5C,SAAS,EAAE,2BAA2B,EAAE,CAAC;CAC1C;AAED;;GAEG;AACH,MAAM,WAAW,iCAAkC,SAAQ,0BAA0B;IACnF,cAAc,EAAE,iBAAiB,CAAC,qBAAqB,CAAC;IACxD,SAAS,EAAE,iBAAiB,EAAE,CAAC;CAChC;AAED;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAC9B,uBAAuB,GACvB,oBAAoB,GACpB,qBAAqB,GACrB,iCAAiC,CAAC;AAEtC;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,eAAe,EAAE,MAAM,CAAC;IACxB,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,QAAQ,CAAC,EAAE,iBAAiB,CAAC;CAC9B;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,aAAa,EAAE,sBAAsB,CAAC;CACvC;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB"}
1
+ {"version":3,"file":"ConfiguracionImpresion.types.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/PanelVendedor/Impresiones/types/ConfiguracionImpresion.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAE,iBAAiB,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAElF;;GAEG;AAQH;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACzC,cAAc,EAAE,iBAAiB,CAAC;IAClC,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,uBAAwB,SAAQ,0BAA0B;IACzE,cAAc,EAAE,iBAAiB,CAAC,WAAW,CAAC;IAC9C,QAAQ,EAAE,iBAAiB,CAAC;CAC7B;AAED;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,0BAA0B;IACtE,cAAc,EAAE,iBAAiB,CAAC,QAAQ,CAAC;IAC3C,SAAS,EAAE,iBAAiB,EAAE,CAAC;CAChC;AAED;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,0BAA0B;IACvE,cAAc,EAAE,iBAAiB,CAAC,SAAS,CAAC;IAC5C,SAAS,EAAE,2BAA2B,EAAE,CAAC;CAC1C;AAED;;GAEG;AACH,MAAM,WAAW,iCAAkC,SAAQ,0BAA0B;IACnF,cAAc,EAAE,iBAAiB,CAAC,qBAAqB,CAAC;IACxD,SAAS,EAAE,iBAAiB,EAAE,CAAC;CAChC;AAED;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAC9B,uBAAuB,GACvB,oBAAoB,GACpB,qBAAqB,GACrB,iCAAiC,CAAC;AAEtC;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,eAAe,EAAE,MAAM,CAAC;IACxB,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,QAAQ,CAAC,EAAE,iBAAiB,CAAC;CAC9B;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,aAAa,EAAE,sBAAsB,CAAC;CACvC;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB"}
@@ -0,0 +1,9 @@
1
+ export interface Marco {
2
+ nombre: string;
3
+ comentarios: string | null;
4
+ imgKey: string | null;
5
+ created_at: string;
6
+ updated_at: string;
7
+ id: number;
8
+ }
9
+ //# sourceMappingURL=Marco.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Marco.types.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/PanelVendedor/Impresiones/types/Marco.types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,KAAK;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,EAAE,EAAE,MAAM,CAAC;CACd"}
@@ -1,4 +1,5 @@
1
1
  export * from './Articulo.types';
2
2
  export * from './ConfiguracionImpresion.types';
3
3
  export * from './TipoPlantilla.types';
4
+ export * from './Marco.types';
4
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/PanelVendedor/Impresiones/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAA;AAChC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,uBAAuB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/PanelVendedor/Impresiones/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAA;AAChC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,uBAAuB,CAAA;AACrC,cAAc,eAAe,CAAA"}
@@ -7,4 +7,5 @@ export * from './Storefront';
7
7
  export * from './Etiquetas';
8
8
  export * from './Usuarios';
9
9
  export * from './Aikon';
10
+ export * from './Estadisticas';
10
11
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/modules/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,QAAQ,CAAA;AACtB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,aAAa,CAAA;AAC3B,cAAc,YAAY,CAAA;AAC1B,cAAc,SAAS,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/modules/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,QAAQ,CAAA;AACtB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,aAAa,CAAA;AAC3B,cAAc,YAAY,CAAA;AAC1B,cAAc,SAAS,CAAA;AACvB,cAAc,gBAAgB,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mc-hogar/crosslib",
3
- "version": "1.0.76",
3
+ "version": "1.0.78",
4
4
  "description": "Cross-platform TypeScript library",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",