@win2win/shared 1.0.12 → 1.0.14

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.
@@ -0,0 +1,17 @@
1
+ export declare enum TipoCaptacion {
2
+ CLIENTES = "1",
3
+ PROVEEDORES = "2",
4
+ USUARIOS = "3",
5
+ PRODUCTOS = "4",
6
+ PEDIDOS = "5"
7
+ }
8
+ export declare enum EstadoCaptacion {
9
+ EN_ESTUDIO = "1",
10
+ PRE_APROBADA = "2",
11
+ APROBADA = "3",// informacion y documentos validados
12
+ EN_NEGOCIACION = "4",// TIE generado
13
+ NEGOCIACION_FINALIZADA = "5",// TIE aprobado
14
+ CONFIRMADA = "6",// confirmada por el solicitante
15
+ FINALIZADA = "7",// finalizada por admin
16
+ CANCELADA = "0"
17
+ }
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EstadoCaptacion = exports.TipoCaptacion = void 0;
4
+ var TipoCaptacion;
5
+ (function (TipoCaptacion) {
6
+ TipoCaptacion["CLIENTES"] = "1";
7
+ TipoCaptacion["PROVEEDORES"] = "2";
8
+ TipoCaptacion["USUARIOS"] = "3";
9
+ TipoCaptacion["PRODUCTOS"] = "4";
10
+ TipoCaptacion["PEDIDOS"] = "5";
11
+ })(TipoCaptacion || (exports.TipoCaptacion = TipoCaptacion = {}));
12
+ var EstadoCaptacion;
13
+ (function (EstadoCaptacion) {
14
+ EstadoCaptacion["EN_ESTUDIO"] = "1";
15
+ EstadoCaptacion["PRE_APROBADA"] = "2";
16
+ EstadoCaptacion["APROBADA"] = "3";
17
+ EstadoCaptacion["EN_NEGOCIACION"] = "4";
18
+ EstadoCaptacion["NEGOCIACION_FINALIZADA"] = "5";
19
+ EstadoCaptacion["CONFIRMADA"] = "6";
20
+ EstadoCaptacion["FINALIZADA"] = "7";
21
+ EstadoCaptacion["CANCELADA"] = "0";
22
+ })(EstadoCaptacion || (exports.EstadoCaptacion = EstadoCaptacion = {}));
@@ -0,0 +1,6 @@
1
+ export declare enum TipoGarantia {
2
+ INMUEBLE = "Propiedad inmobiliaria",
3
+ VEHICULO = "Veh\u00EDculo",
4
+ AVAL_PERSONAL = "Aval personal",
5
+ OTROS = "Otros"
6
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TipoGarantia = void 0;
4
+ var TipoGarantia;
5
+ (function (TipoGarantia) {
6
+ TipoGarantia["INMUEBLE"] = "Propiedad inmobiliaria";
7
+ TipoGarantia["VEHICULO"] = "Veh\u00EDculo";
8
+ TipoGarantia["AVAL_PERSONAL"] = "Aval personal";
9
+ TipoGarantia["OTROS"] = "Otros";
10
+ })(TipoGarantia || (exports.TipoGarantia = TipoGarantia = {}));
@@ -0,0 +1,4 @@
1
+ export * from './captacion';
2
+ export * from './garantia';
3
+ export * from './liquidacion';
4
+ export * from './producto';
@@ -0,0 +1,20 @@
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("./captacion"), exports);
18
+ __exportStar(require("./garantia"), exports);
19
+ __exportStar(require("./liquidacion"), exports);
20
+ __exportStar(require("./producto"), exports);
@@ -0,0 +1,7 @@
1
+ export declare enum EstadoLiquidacion {
2
+ EN_PREVISION = 1,
3
+ CONFIRMACION_PENDIENTE = 2,
4
+ CONFIRMADA = 3,
5
+ PAGADA = 4,
6
+ CON_RECLAMOS = 5
7
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EstadoLiquidacion = void 0;
4
+ var EstadoLiquidacion;
5
+ (function (EstadoLiquidacion) {
6
+ EstadoLiquidacion[EstadoLiquidacion["EN_PREVISION"] = 1] = "EN_PREVISION";
7
+ EstadoLiquidacion[EstadoLiquidacion["CONFIRMACION_PENDIENTE"] = 2] = "CONFIRMACION_PENDIENTE";
8
+ EstadoLiquidacion[EstadoLiquidacion["CONFIRMADA"] = 3] = "CONFIRMADA";
9
+ EstadoLiquidacion[EstadoLiquidacion["PAGADA"] = 4] = "PAGADA";
10
+ EstadoLiquidacion[EstadoLiquidacion["CON_RECLAMOS"] = 5] = "CON_RECLAMOS";
11
+ })(EstadoLiquidacion || (exports.EstadoLiquidacion = EstadoLiquidacion = {}));
@@ -0,0 +1,12 @@
1
+ export declare enum EstadoProducto {
2
+ DESHABILITADO = "0",
3
+ INACTIVO = "1",
4
+ ACTIVADO = "2",
5
+ PUBLICO = "3"
6
+ }
7
+ export declare enum TipoProducto {
8
+ ARTICULO = "1",
9
+ SERVICIO_CONTRATO = "2",
10
+ MEMBRESIA = "3",
11
+ OFERTA_EMPLEO = "4"
12
+ }
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TipoProducto = exports.EstadoProducto = void 0;
4
+ var EstadoProducto;
5
+ (function (EstadoProducto) {
6
+ EstadoProducto["DESHABILITADO"] = "0";
7
+ EstadoProducto["INACTIVO"] = "1";
8
+ EstadoProducto["ACTIVADO"] = "2";
9
+ EstadoProducto["PUBLICO"] = "3";
10
+ })(EstadoProducto || (exports.EstadoProducto = EstadoProducto = {}));
11
+ var TipoProducto;
12
+ (function (TipoProducto) {
13
+ TipoProducto["ARTICULO"] = "1";
14
+ TipoProducto["SERVICIO_CONTRATO"] = "2";
15
+ TipoProducto["MEMBRESIA"] = "3";
16
+ TipoProducto["OFERTA_EMPLEO"] = "4";
17
+ })(TipoProducto || (exports.TipoProducto = TipoProducto = {}));
package/dist/index.d.ts CHANGED
@@ -1 +1,2 @@
1
+ export * from './enums';
1
2
  export * from './interfaces';
package/dist/index.js CHANGED
@@ -14,4 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./enums"), exports);
17
18
  __exportStar(require("./interfaces"), exports);
@@ -26,6 +26,7 @@ interface ItemLiquidable {
26
26
  }
27
27
  interface ItemLiquidableUsuarioLite {
28
28
  ID_USUARIO: Id;
29
+ COD_USU_MVX: string;
29
30
  CONTACTO: {
30
31
  NOMBRE: string;
31
32
  APELLIDO: null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@win2win/shared",
3
- "version": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",