@win2win/shared 1.0.225 → 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.
package/README.md
ADDED
|
@@ -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>;
|
|
@@ -124,6 +124,10 @@ export declare const TEMPLATES: Readonly<{
|
|
|
124
124
|
readonly label: "Catálogo de productos";
|
|
125
125
|
readonly params: readonly ["title", "text", "background", "custom"];
|
|
126
126
|
};
|
|
127
|
+
readonly "ecommerce-catalog-lite": {
|
|
128
|
+
readonly label: "Catálogo de productos lite";
|
|
129
|
+
readonly params: readonly ["title", "text", "background", "custom"];
|
|
130
|
+
};
|
|
127
131
|
readonly "ecommerce-banner": {
|
|
128
132
|
readonly label: "Banner para Ecommerce";
|
|
129
133
|
readonly params: readonly ["title", "text", "background", "image", "height", "custom", "button"];
|
|
@@ -198,6 +198,10 @@ exports.TEMPLATES = Object.freeze({
|
|
|
198
198
|
label: "Catálogo de productos",
|
|
199
199
|
params: ["title", "text", "background", "custom"],
|
|
200
200
|
},
|
|
201
|
+
"ecommerce-catalog-lite": {
|
|
202
|
+
label: "Catálogo de productos lite",
|
|
203
|
+
params: ["title", "text", "background", "custom"],
|
|
204
|
+
},
|
|
201
205
|
"ecommerce-banner": {
|
|
202
206
|
label: "Banner para Ecommerce",
|
|
203
207
|
params: [
|
|
@@ -253,6 +257,7 @@ Object.freeze(exports.PRODUCT_TEMPLATES_LABELS);
|
|
|
253
257
|
exports.ECOMMERCE_TEMPLATES_LABELS = [
|
|
254
258
|
"ecommerce-finder",
|
|
255
259
|
"ecommerce-catalog",
|
|
260
|
+
"ecommerce-catalog-lite",
|
|
256
261
|
"ecommerce-banner",
|
|
257
262
|
"ecommerce-filters",
|
|
258
263
|
"ecommerce-checkout",
|
package/package.json
CHANGED