@win2win/shared 1.0.227 → 1.0.229
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/interfaces/landings/landing.d.ts +14 -1
- package/package.json +1 -1
- package/README.md +0 -11
|
@@ -21,7 +21,7 @@ export interface LandingRaw {
|
|
|
21
21
|
CUESTIONARIOS?: CuestionarioRaw[];
|
|
22
22
|
ESTILOS?: LandingStylesRaw[];
|
|
23
23
|
MAILS?: MailRaw[];
|
|
24
|
-
|
|
24
|
+
REGIONES?: Partial<RegionRaw>[];
|
|
25
25
|
}
|
|
26
26
|
export interface LandingFooter {
|
|
27
27
|
show: boolean;
|
|
@@ -188,6 +188,18 @@ export interface MailRaw {
|
|
|
188
188
|
CODIGO: string;
|
|
189
189
|
PARAMS_REQUERIDOS: string;
|
|
190
190
|
}
|
|
191
|
+
export interface PaisesRaw {
|
|
192
|
+
ID_PAIS: number;
|
|
193
|
+
CODIGO: string;
|
|
194
|
+
NOMBRE: string;
|
|
195
|
+
ID_DIVISA: number;
|
|
196
|
+
NUM_USU: number;
|
|
197
|
+
ESTADO: number;
|
|
198
|
+
TITULO_ZONA: string;
|
|
199
|
+
COD_TEL: string;
|
|
200
|
+
FECHA_UPD: Date;
|
|
201
|
+
FECHA_CREATED: Date;
|
|
202
|
+
}
|
|
191
203
|
export interface RegionRaw {
|
|
192
204
|
ID_REGION: Id;
|
|
193
205
|
COD_EMP_MVX: number;
|
|
@@ -196,5 +208,6 @@ export interface RegionRaw {
|
|
|
196
208
|
ID_DIVISA: Id;
|
|
197
209
|
ESTADO: number;
|
|
198
210
|
FECHA_UPD: string;
|
|
211
|
+
PAIS: PaisesRaw;
|
|
199
212
|
}
|
|
200
213
|
export type Style = Partial<CSSStyleDeclaration>;
|
package/package.json
CHANGED