@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
package/dist/enums/garantia.d.ts
CHANGED
package/dist/enums/garantia.js
CHANGED
|
@@ -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