@win2win/shared 1.0.297 → 1.0.298

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 ADDED
@@ -0,0 +1,11 @@
1
+ # README #
2
+ version 1.0.1
3
+
4
+ ### Como hacer deploy del repo
5
+
6
+ * Correr el comando
7
+ `npm run deploy`
8
+
9
+ * [Enlace al repo](https://www.npmjs.com/package/@win2win/shared)
10
+
11
+
@@ -2,7 +2,8 @@ export declare enum EstadoProducto {
2
2
  DESHABILITADO = "0",
3
3
  INACTIVO = "1",
4
4
  ACTIVADO = "2",
5
- PUBLICO = "3"
5
+ PUBLICO = "3",
6
+ GENERANDO = "4"
6
7
  }
7
8
  export declare enum TipoProducto {
8
9
  ARTICULO = "1",
@@ -7,6 +7,7 @@ var EstadoProducto;
7
7
  EstadoProducto["INACTIVO"] = "1";
8
8
  EstadoProducto["ACTIVADO"] = "2";
9
9
  EstadoProducto["PUBLICO"] = "3";
10
+ EstadoProducto["GENERANDO"] = "4";
10
11
  })(EstadoProducto || (exports.EstadoProducto = EstadoProducto = {}));
11
12
  var TipoProducto;
12
13
  (function (TipoProducto) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@win2win/shared",
3
- "version": "1.0.297",
3
+ "version": "1.0.298",
4
4
  "description": "Tipos, interfaces, funciones, constantes, clases y enums compartidos por todos los proyectos de Win2Win",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",