@flexbe/sdk 0.2.16 → 0.2.17
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.
|
@@ -266,7 +266,6 @@ export interface PageWidget {
|
|
|
266
266
|
export interface PageABTest {
|
|
267
267
|
a: string;
|
|
268
268
|
b: string;
|
|
269
|
-
current: 'a' | 'b';
|
|
270
269
|
is_active: number;
|
|
271
270
|
id: number;
|
|
272
271
|
}
|
|
@@ -286,10 +285,12 @@ export interface PageContent {
|
|
|
286
285
|
elements: PageElement[];
|
|
287
286
|
widgets: PageWidget[];
|
|
288
287
|
codes: string[];
|
|
289
|
-
|
|
290
|
-
|
|
288
|
+
settings: {
|
|
289
|
+
background?: PageBackground;
|
|
290
|
+
textStyles?: TextStyleItem[];
|
|
291
|
+
responsive?: string | boolean;
|
|
292
|
+
} | null;
|
|
291
293
|
abtests: PageABTest[];
|
|
292
|
-
responsive: string | boolean;
|
|
293
294
|
assets: {
|
|
294
295
|
images: number[];
|
|
295
296
|
files: string[];
|