@win2win/shared 1.0.13 → 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.
- package/dist/enums/captacion.d.ts +17 -0
- package/dist/enums/captacion.js +22 -0
- package/dist/enums/garantia.d.ts +6 -0
- package/dist/enums/garantia.js +10 -0
- package/dist/enums/index.d.ts +4 -0
- package/dist/enums/index.js +20 -0
- package/dist/enums/liquidacion.d.ts +7 -0
- package/dist/enums/liquidacion.js +11 -0
- package/dist/enums/producto.d.ts +12 -0
- package/dist/enums/producto.js +17 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -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,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,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,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,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
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);
|