@win2win/shared 1.0.187 → 1.0.189
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.
|
@@ -14,6 +14,7 @@ export interface LandingRaw {
|
|
|
14
14
|
ESTILOS: LandingStylesRaw[];
|
|
15
15
|
METADATA?: Partial<LandingMetadata> | null;
|
|
16
16
|
PAGINAS?: LandingPageRaw[];
|
|
17
|
+
MAILS: MailRaw[];
|
|
17
18
|
}
|
|
18
19
|
export interface LandingParams {
|
|
19
20
|
logo?: string;
|
|
@@ -27,6 +28,7 @@ export interface LandingParams {
|
|
|
27
28
|
footerText?: string;
|
|
28
29
|
headerLinks?: LandingHeaderLink[];
|
|
29
30
|
description?: string;
|
|
31
|
+
showAccountButton: boolean;
|
|
30
32
|
contact?: {
|
|
31
33
|
phone: string;
|
|
32
34
|
whatsapp: string;
|
|
@@ -132,3 +134,13 @@ export interface LandingSectionRaw {
|
|
|
132
134
|
ESTADO: number;
|
|
133
135
|
FECHA_UPD: Date;
|
|
134
136
|
}
|
|
137
|
+
export interface MailRaw {
|
|
138
|
+
ID_MAIL: Id;
|
|
139
|
+
ID_LANDING: Id;
|
|
140
|
+
COD_EMP_MVX: number;
|
|
141
|
+
TITULO: string;
|
|
142
|
+
ASUNTO: string;
|
|
143
|
+
EMAIL: string;
|
|
144
|
+
CODIGO: string;
|
|
145
|
+
PARAMS_REQUERIDOS: string;
|
|
146
|
+
}
|
package/package.json
CHANGED