@mc-hogar/crosslib 1.0.76 → 1.0.77
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/README.md +8 -1
- package/dist/cjs/modules/PanelVendedor/Impresiones/types/Marco.types.js +3 -0
- package/dist/cjs/modules/PanelVendedor/Impresiones/types/Marco.types.js.map +1 -0
- package/dist/cjs/modules/PanelVendedor/Impresiones/types/index.js +1 -0
- package/dist/cjs/modules/PanelVendedor/Impresiones/types/index.js.map +1 -1
- package/dist/esm/modules/PanelVendedor/Impresiones/types/Marco.types.js +2 -0
- package/dist/esm/modules/PanelVendedor/Impresiones/types/Marco.types.js.map +1 -0
- package/dist/esm/modules/PanelVendedor/Impresiones/types/index.js +1 -0
- package/dist/esm/modules/PanelVendedor/Impresiones/types/index.js.map +1 -1
- package/dist/types/modules/PanelVendedor/Impresiones/types/ConfiguracionImpresion.types.d.ts +0 -6
- package/dist/types/modules/PanelVendedor/Impresiones/types/ConfiguracionImpresion.types.d.ts.map +1 -1
- package/dist/types/modules/PanelVendedor/Impresiones/types/Marco.types.d.ts +9 -0
- package/dist/types/modules/PanelVendedor/Impresiones/types/Marco.types.d.ts.map +1 -0
- package/dist/types/modules/PanelVendedor/Impresiones/types/index.d.ts +1 -0
- package/dist/types/modules/PanelVendedor/Impresiones/types/index.d.ts.map +1 -1
- 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 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Marco.types.js","sourceRoot":"","sources":["../../../../../../src/modules/PanelVendedor/Impresiones/types/Marco.types.ts"],"names":[],"mappings":""}
|
|
@@ -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"}
|
package/dist/types/modules/PanelVendedor/Impresiones/types/ConfiguracionImpresion.types.d.ts
CHANGED
|
@@ -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
|
*/
|
package/dist/types/modules/PanelVendedor/Impresiones/types/ConfiguracionImpresion.types.d.ts.map
CHANGED
|
@@ -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;
|
|
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 @@
|
|
|
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 +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"}
|