@win2win/shared 1.0.15 → 1.0.17

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.
@@ -1,4 +1,7 @@
1
1
  export * from './captacion';
2
2
  export * from './garantia';
3
3
  export * from './liquidacion';
4
+ export * from './notificacion';
5
+ export * from './pedido';
4
6
  export * from './producto';
7
+ export * from './shared';
@@ -17,4 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./captacion"), exports);
18
18
  __exportStar(require("./garantia"), exports);
19
19
  __exportStar(require("./liquidacion"), exports);
20
+ __exportStar(require("./notificacion"), exports);
21
+ __exportStar(require("./pedido"), exports);
20
22
  __exportStar(require("./producto"), exports);
23
+ __exportStar(require("./shared"), exports);
@@ -0,0 +1,7 @@
1
+ export declare enum TipoNotificacion {
2
+ NUEVO = "1",// NEW
3
+ DOCUMENTOS = "2",// DOCUMENTS
4
+ REALIZADO = "3",// SUCCESS
5
+ INCIDENTES = "4",// INCIDENTS
6
+ CANCELACION = "5"
7
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TipoNotificacion = void 0;
4
+ var TipoNotificacion;
5
+ (function (TipoNotificacion) {
6
+ TipoNotificacion["NUEVO"] = "1";
7
+ TipoNotificacion["DOCUMENTOS"] = "2";
8
+ TipoNotificacion["REALIZADO"] = "3";
9
+ TipoNotificacion["INCIDENTES"] = "4";
10
+ TipoNotificacion["CANCELACION"] = "5";
11
+ })(TipoNotificacion || (exports.TipoNotificacion = TipoNotificacion = {}));
@@ -0,0 +1,11 @@
1
+ export declare enum EstadoPedido {
2
+ PENDIENTE = 1,
3
+ REVISAR_DOC = 2,
4
+ LLAMAR = 3,
5
+ FINALIZADO = 4,
6
+ CANCELADO = 5,
7
+ LIQUIDADO = 6,
8
+ INCIDENCIA = 7,
9
+ TRAMITADO = 8,
10
+ PENDIENTE_ASIGNAR = 9
11
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EstadoPedido = void 0;
4
+ var EstadoPedido;
5
+ (function (EstadoPedido) {
6
+ EstadoPedido[EstadoPedido["PENDIENTE"] = 1] = "PENDIENTE";
7
+ EstadoPedido[EstadoPedido["REVISAR_DOC"] = 2] = "REVISAR_DOC";
8
+ EstadoPedido[EstadoPedido["LLAMAR"] = 3] = "LLAMAR";
9
+ EstadoPedido[EstadoPedido["FINALIZADO"] = 4] = "FINALIZADO";
10
+ EstadoPedido[EstadoPedido["CANCELADO"] = 5] = "CANCELADO";
11
+ EstadoPedido[EstadoPedido["LIQUIDADO"] = 6] = "LIQUIDADO";
12
+ EstadoPedido[EstadoPedido["INCIDENCIA"] = 7] = "INCIDENCIA";
13
+ EstadoPedido[EstadoPedido["TRAMITADO"] = 8] = "TRAMITADO";
14
+ EstadoPedido[EstadoPedido["PENDIENTE_ASIGNAR"] = 9] = "PENDIENTE_ASIGNAR";
15
+ })(EstadoPedido || (exports.EstadoPedido = EstadoPedido = {}));
@@ -0,0 +1,4 @@
1
+ export declare enum EstadoBase {
2
+ INACTIVO = 0,
3
+ ACTIVO = 1
4
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EstadoBase = void 0;
4
+ var EstadoBase;
5
+ (function (EstadoBase) {
6
+ EstadoBase[EstadoBase["INACTIVO"] = 0] = "INACTIVO";
7
+ EstadoBase[EstadoBase["ACTIVO"] = 1] = "ACTIVO";
8
+ })(EstadoBase || (exports.EstadoBase = EstadoBase = {}));
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@win2win/shared",
3
- "version": "1.0.15",
3
+ "version": "1.0.17",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
8
8
  "build": "tsc",
9
- "deploy": "tsc && npm publish --access public"
9
+ "deploy": "rm -rf dist && tsc && npm publish --access public"
10
10
  },
11
11
  "keywords": [],
12
12
  "author": "win2win",