@win2win/shared 1.0.254 → 1.0.256

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.
@@ -18,5 +18,6 @@ export declare enum EstadoCaptacion {
18
18
  CONFIRMADA = "6",// confirmada por el solicitante
19
19
  FINALIZADA = "7",// finalizada por admin
20
20
  INCIDENCIA = "8",
21
- LLAMADA_PENDIENTE = "9"
21
+ LLAMADA_PENDIENTE = "9",
22
+ IMPAGO = "10"
22
23
  }
@@ -24,4 +24,5 @@ var EstadoCaptacion;
24
24
  EstadoCaptacion["FINALIZADA"] = "7";
25
25
  EstadoCaptacion["INCIDENCIA"] = "8";
26
26
  EstadoCaptacion["LLAMADA_PENDIENTE"] = "9";
27
+ EstadoCaptacion["IMPAGO"] = "10";
27
28
  })(EstadoCaptacion || (exports.EstadoCaptacion = EstadoCaptacion = {}));
@@ -40,3 +40,9 @@ export interface CaptacionRaw {
40
40
  R_GAMA: Partial<GamaRaw> | null;
41
41
  R_PRODUCTO: Partial<ProductoRaw> | null;
42
42
  }
43
+ export interface ValidacionCliente {
44
+ response: JsonObject;
45
+ timestamp: number;
46
+ phone?: string;
47
+ [key: string]: any;
48
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@win2win/shared",
3
- "version": "1.0.254",
3
+ "version": "1.0.256",
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",