@win2win/shared 1.0.215 → 1.0.216
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.
|
@@ -155,6 +155,7 @@ export interface LandingPageRaw {
|
|
|
155
155
|
FECHA_UPD: Date | string;
|
|
156
156
|
SECCIONES: LandingSectionRaw[];
|
|
157
157
|
}
|
|
158
|
+
export type Spacing = [string, string, string, string];
|
|
158
159
|
export interface LandingSectionRaw {
|
|
159
160
|
ID_LANDING_SECTIONS: Id;
|
|
160
161
|
ID_LANDING: Id;
|
|
@@ -164,6 +165,9 @@ export interface LandingSectionRaw {
|
|
|
164
165
|
POSICION: number;
|
|
165
166
|
TEMPLATE: string;
|
|
166
167
|
ESTADO: number;
|
|
168
|
+
MARGINS: Spacing | null;
|
|
169
|
+
PADDINGS: Spacing | null;
|
|
170
|
+
CUSTOM: JsonObject | null;
|
|
167
171
|
FECHA_UPD: Date;
|
|
168
172
|
}
|
|
169
173
|
export interface MailRaw {
|
package/package.json
CHANGED