@win2win/shared 1.0.253 → 1.0.255

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
+
@@ -116,6 +116,7 @@ export interface LandingMetadata {
116
116
  title: string;
117
117
  body: string;
118
118
  };
119
+ routes_aliases: JsonObject;
119
120
  }
120
121
  export interface LandingStylesRaw {
121
122
  ID_LANDING: Id;
@@ -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.253",
3
+ "version": "1.0.255",
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",