@win2win/shared 1.0.188 → 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;
|
|
@@ -133,3 +134,13 @@ export interface LandingSectionRaw {
|
|
|
133
134
|
ESTADO: number;
|
|
134
135
|
FECHA_UPD: Date;
|
|
135
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