@win2win/shared 1.0.226 → 1.0.227
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.
|
@@ -21,6 +21,7 @@ export interface LandingRaw {
|
|
|
21
21
|
CUESTIONARIOS?: CuestionarioRaw[];
|
|
22
22
|
ESTILOS?: LandingStylesRaw[];
|
|
23
23
|
MAILS?: MailRaw[];
|
|
24
|
+
REEGIONES?: Partial<RegionRaw>[];
|
|
24
25
|
}
|
|
25
26
|
export interface LandingFooter {
|
|
26
27
|
show: boolean;
|
|
@@ -187,4 +188,13 @@ export interface MailRaw {
|
|
|
187
188
|
CODIGO: string;
|
|
188
189
|
PARAMS_REQUERIDOS: string;
|
|
189
190
|
}
|
|
191
|
+
export interface RegionRaw {
|
|
192
|
+
ID_REGION: Id;
|
|
193
|
+
COD_EMP_MVX: number;
|
|
194
|
+
REGION_NOMBRE: string;
|
|
195
|
+
ID_PAIS: Id;
|
|
196
|
+
ID_DIVISA: Id;
|
|
197
|
+
ESTADO: number;
|
|
198
|
+
FECHA_UPD: string;
|
|
199
|
+
}
|
|
190
200
|
export type Style = Partial<CSSStyleDeclaration>;
|
package/package.json
CHANGED