@win2win/shared 1.0.228 → 1.0.230
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 -0
- package/package.json +1 -1
- package/README.md +0 -11
|
@@ -159,6 +159,7 @@ export interface LandingPageRaw {
|
|
|
159
159
|
CUSTOM_CONFIG: JsonObject;
|
|
160
160
|
FECHA_UPD: Date | string;
|
|
161
161
|
SECCIONES: LandingSectionRaw[];
|
|
162
|
+
ID_REGION: Id;
|
|
162
163
|
}
|
|
163
164
|
export type Spacing = [string, string, string, string];
|
|
164
165
|
export interface LandingSectionRaw {
|
|
@@ -188,6 +189,18 @@ export interface MailRaw {
|
|
|
188
189
|
CODIGO: string;
|
|
189
190
|
PARAMS_REQUERIDOS: string;
|
|
190
191
|
}
|
|
192
|
+
export interface PaisesRaw {
|
|
193
|
+
ID_PAIS: number;
|
|
194
|
+
CODIGO: string;
|
|
195
|
+
NOMBRE: string;
|
|
196
|
+
ID_DIVISA: number;
|
|
197
|
+
NUM_USU: number;
|
|
198
|
+
ESTADO: number;
|
|
199
|
+
TITULO_ZONA: string;
|
|
200
|
+
COD_TEL: string;
|
|
201
|
+
FECHA_UPD: Date;
|
|
202
|
+
FECHA_CREATED: Date;
|
|
203
|
+
}
|
|
191
204
|
export interface RegionRaw {
|
|
192
205
|
ID_REGION: Id;
|
|
193
206
|
COD_EMP_MVX: number;
|
|
@@ -196,5 +209,6 @@ export interface RegionRaw {
|
|
|
196
209
|
ID_DIVISA: Id;
|
|
197
210
|
ESTADO: number;
|
|
198
211
|
FECHA_UPD: string;
|
|
212
|
+
PAIS: PaisesRaw;
|
|
199
213
|
}
|
|
200
214
|
export type Style = Partial<CSSStyleDeclaration>;
|
package/package.json
CHANGED