@win2win/shared 1.0.229 → 1.0.232

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
+
@@ -2,5 +2,6 @@ export declare enum TipoGarantia {
2
2
  INMUEBLE = "Propiedad inmobiliaria",
3
3
  VEHICULO = "Veh\u00EDculo",
4
4
  AVAL_PERSONAL = "Aval personal",
5
+ BANCARIA = "Bancaria",
5
6
  OTROS = "Otros"
6
7
  }
@@ -6,5 +6,6 @@ var TipoGarantia;
6
6
  TipoGarantia["INMUEBLE"] = "Propiedad inmobiliaria";
7
7
  TipoGarantia["VEHICULO"] = "Veh\u00EDculo";
8
8
  TipoGarantia["AVAL_PERSONAL"] = "Aval personal";
9
+ TipoGarantia["BANCARIA"] = "Bancaria";
9
10
  TipoGarantia["OTROS"] = "Otros";
10
11
  })(TipoGarantia || (exports.TipoGarantia = TipoGarantia = {}));
@@ -1,6 +1,12 @@
1
1
  import { GamaPropControlCode } from "../props";
2
2
  import { GamaRaw } from "../raw_entities";
3
3
  import { Id, JsonObject } from "../shared";
4
+ export interface LandingRegionRaw {
5
+ ID_REGION: Id;
6
+ ID_LANDING: Id;
7
+ REGION: Partial<RegionRaw>;
8
+ LANDING: Partial<LandingRaw>;
9
+ }
4
10
  export interface LandingRaw {
5
11
  ID_LANDING: Id;
6
12
  TITULO: string;
@@ -18,6 +24,7 @@ export interface LandingRaw {
18
24
  FECHA_UPD?: string;
19
25
  GAMA?: GamaRaw[];
20
26
  PAGINAS?: LandingPageRaw[];
27
+ LANDING_REGIONES?: LandingRegionRaw[];
21
28
  CUESTIONARIOS?: CuestionarioRaw[];
22
29
  ESTILOS?: LandingStylesRaw[];
23
30
  MAILS?: MailRaw[];
@@ -159,6 +166,7 @@ export interface LandingPageRaw {
159
166
  CUSTOM_CONFIG: JsonObject;
160
167
  FECHA_UPD: Date | string;
161
168
  SECCIONES: LandingSectionRaw[];
169
+ ID_REGION: Id;
162
170
  }
163
171
  export type Spacing = [string, string, string, string];
164
172
  export interface LandingSectionRaw {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@win2win/shared",
3
- "version": "1.0.229",
3
+ "version": "1.0.232",
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",