@useinsider/guido 3.2.0-beta.8e8f902 → 3.2.0-beta.8f147c3
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 +1 -25
- package/dist/@types/config/schemas.js +163 -109
- package/dist/components/Guido.vue.js +4 -4
- package/dist/components/Guido.vue2.js +77 -77
- package/dist/components/organisms/header/RightSlot.vue.js +8 -8
- package/dist/components/organisms/header/RightSlot.vue2.js +8 -9
- package/dist/composables/useSave.js +15 -15
- package/dist/config/migrator/index.js +9 -9
- package/dist/config/migrator/recommendation/compositionMapper.js +98 -0
- package/dist/config/migrator/recommendation/extractors.js +27 -0
- package/dist/config/migrator/recommendation/htmlBuilder.js +486 -0
- package/dist/config/migrator/recommendation/parseLegacyConfig.js +33 -0
- package/dist/config/migrator/recommendation/settingsMapper.js +78 -0
- package/dist/config/migrator/recommendation/themeMapper.js +93 -0
- package/dist/config/migrator/recommendationMigrator.js +60 -290
- package/dist/enums/extensions/recommendationBlock.js +2 -1
- package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +5 -5
- package/dist/extensions/Blocks/Recommendation/services/configService.js +65 -29
- package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +8 -8
- package/dist/extensions/Blocks/Recommendation/templates/utils.js +1 -1
- package/dist/extensions/Blocks/Recommendation/utils/preserveTextStyles.js +13 -22
- package/dist/guido.css +1 -1
- package/dist/node_modules/valibot/dist/index.js +450 -235
- package/dist/services/templateLibraryApi.js +4 -5
- package/dist/src/@types/config/defaults.d.ts +5 -1
- package/dist/src/@types/config/index.d.ts +3 -3
- package/dist/src/@types/config/schemas.d.ts +213 -4
- package/dist/src/@types/config/types.d.ts +9 -1
- package/dist/src/components/Guido.vue.d.ts +1 -1
- package/dist/src/components/organisms/header/EditorActions.vue.d.ts +1 -1
- package/dist/src/components/organisms/header/HeaderWrapper.vue.d.ts +1 -1
- package/dist/src/components/organisms/header/RightSlot.vue.d.ts +1 -1
- package/dist/src/components/wrappers/WpModal.vue.d.ts +1 -1
- package/dist/src/composables/useConfig.d.ts +56 -2
- package/dist/src/composables/useSave.d.ts +1 -1
- package/dist/src/config/migrator/index.d.ts +2 -1
- package/dist/src/config/migrator/recommendation/compositionMapper.d.ts +2 -0
- package/dist/src/config/migrator/recommendation/compositionMapper.test.d.ts +1 -0
- package/dist/src/config/migrator/recommendation/extractors.d.ts +7 -0
- package/dist/src/config/migrator/recommendation/htmlBuilder.d.ts +11 -0
- package/dist/src/config/migrator/recommendation/parseLegacyConfig.d.ts +15 -0
- package/dist/src/config/migrator/recommendation/parseLegacyConfig.test.d.ts +1 -0
- package/dist/src/config/migrator/recommendation/settingsMapper.d.ts +7 -0
- package/dist/src/config/migrator/recommendation/settingsMapper.test.d.ts +1 -0
- package/dist/src/config/migrator/recommendation/themeMapper.d.ts +5 -0
- package/dist/src/config/migrator/recommendation/themeMapper.test.d.ts +1 -0
- package/dist/src/config/migrator/recommendation/types.d.ts +205 -0
- package/dist/src/config/migrator/recommendationMigrator.d.ts +13 -1
- package/dist/src/config/migrator/recommendationMigrator.test.d.ts +1 -0
- package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +10 -0
- package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +1 -1
- package/dist/src/extensions/Blocks/Recommendation/utils/preserveTextStyles.d.ts +0 -3
- package/dist/src/stores/config.d.ts +504 -18
- package/dist/src/stores/editor.d.ts +0 -23
- package/dist/src/utils/htmlEscape.d.ts +5 -0
- package/dist/stores/editor.js +1 -3
- package/dist/utils/htmlEscape.js +13 -0
- package/dist/utils/pairProductVariables.js +88 -89
- package/package.json +5 -1
- package/dist/components/organisms/AutoSaveController.vue.js +0 -17
- package/dist/components/organisms/AutoSaveController.vue2.js +0 -13
- package/dist/components/organisms/header/AutoSaveToggle.vue.js +0 -22
- package/dist/components/organisms/header/AutoSaveToggle.vue2.js +0 -19
- package/dist/composables/useAutoSave.js +0 -71
- package/dist/extensions/Blocks/Recommendation/templates/grid/migration.js +0 -251
- package/dist/src/components/organisms/AutoSaveController.vue.d.ts +0 -2
- package/dist/src/components/organisms/header/AutoSaveToggle.vue.d.ts +0 -2
- package/dist/src/composables/useAutoSave.d.ts +0 -3
- package/dist/src/stores/autosave.d.ts +0 -12
- package/dist/src/utils/timeUtil.d.ts +0 -8
- package/dist/stores/autosave.js +0 -17
- package/dist/utils/timeUtil.js +0 -19
|
@@ -42,6 +42,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
42
42
|
customFieldAttributes: string[];
|
|
43
43
|
selectedUnsubscribePages: number[];
|
|
44
44
|
forceRecreate: boolean;
|
|
45
|
+
migration: {
|
|
46
|
+
recommendationConfigs: {
|
|
47
|
+
[x: string]: {
|
|
48
|
+
id?: number | undefined;
|
|
49
|
+
decimalCount?: string | number | undefined;
|
|
50
|
+
productIds?: unknown[] | undefined;
|
|
51
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
52
|
+
shuffleProducts?: boolean | undefined;
|
|
53
|
+
filters?: unknown[] | undefined;
|
|
54
|
+
currency?: string | undefined;
|
|
55
|
+
currencySettings?: unknown;
|
|
56
|
+
language?: string | undefined;
|
|
57
|
+
strategy?: string | undefined;
|
|
58
|
+
recommendedProducts?: unknown[] | undefined;
|
|
59
|
+
cardsInRow?: number | undefined;
|
|
60
|
+
mobileRightPadding?: number | undefined;
|
|
61
|
+
mobileLeftPadding?: number | undefined;
|
|
62
|
+
unresponsive?: boolean | undefined;
|
|
63
|
+
orientation?: string | undefined;
|
|
64
|
+
textTrimming?: boolean | undefined;
|
|
65
|
+
blockType?: string | undefined;
|
|
66
|
+
size?: string | number | undefined;
|
|
67
|
+
verticalResponsiveness?: boolean | undefined;
|
|
68
|
+
} & {
|
|
69
|
+
[key: string]: unknown;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
};
|
|
45
73
|
};
|
|
46
74
|
editor: {
|
|
47
75
|
locale: string;
|
|
@@ -67,7 +95,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
67
95
|
unsubscribe: boolean;
|
|
68
96
|
modulesDisabled: boolean;
|
|
69
97
|
liquidSyntax: boolean;
|
|
70
|
-
autosave: boolean;
|
|
71
98
|
};
|
|
72
99
|
blocks: {
|
|
73
100
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -146,6 +173,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
146
173
|
customFieldAttributes: string[];
|
|
147
174
|
selectedUnsubscribePages: number[];
|
|
148
175
|
forceRecreate: boolean;
|
|
176
|
+
migration: {
|
|
177
|
+
recommendationConfigs: {
|
|
178
|
+
[x: string]: {
|
|
179
|
+
id?: number | undefined;
|
|
180
|
+
decimalCount?: string | number | undefined;
|
|
181
|
+
productIds?: unknown[] | undefined;
|
|
182
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
183
|
+
shuffleProducts?: boolean | undefined;
|
|
184
|
+
filters?: unknown[] | undefined;
|
|
185
|
+
currency?: string | undefined;
|
|
186
|
+
currencySettings?: unknown;
|
|
187
|
+
language?: string | undefined;
|
|
188
|
+
strategy?: string | undefined;
|
|
189
|
+
recommendedProducts?: unknown[] | undefined;
|
|
190
|
+
cardsInRow?: number | undefined;
|
|
191
|
+
mobileRightPadding?: number | undefined;
|
|
192
|
+
mobileLeftPadding?: number | undefined;
|
|
193
|
+
unresponsive?: boolean | undefined;
|
|
194
|
+
orientation?: string | undefined;
|
|
195
|
+
textTrimming?: boolean | undefined;
|
|
196
|
+
blockType?: string | undefined;
|
|
197
|
+
size?: string | number | undefined;
|
|
198
|
+
verticalResponsiveness?: boolean | undefined;
|
|
199
|
+
} & {
|
|
200
|
+
[key: string]: unknown;
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
};
|
|
149
204
|
};
|
|
150
205
|
editor: {
|
|
151
206
|
locale: string;
|
|
@@ -171,7 +226,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
171
226
|
unsubscribe: boolean;
|
|
172
227
|
modulesDisabled: boolean;
|
|
173
228
|
liquidSyntax: boolean;
|
|
174
|
-
autosave: boolean;
|
|
175
229
|
};
|
|
176
230
|
blocks: {
|
|
177
231
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -250,6 +304,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
250
304
|
customFieldAttributes: string[];
|
|
251
305
|
selectedUnsubscribePages: number[];
|
|
252
306
|
forceRecreate: boolean;
|
|
307
|
+
migration: {
|
|
308
|
+
recommendationConfigs: {
|
|
309
|
+
[x: string]: {
|
|
310
|
+
id?: number | undefined;
|
|
311
|
+
decimalCount?: string | number | undefined;
|
|
312
|
+
productIds?: unknown[] | undefined;
|
|
313
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
314
|
+
shuffleProducts?: boolean | undefined;
|
|
315
|
+
filters?: unknown[] | undefined;
|
|
316
|
+
currency?: string | undefined;
|
|
317
|
+
currencySettings?: unknown;
|
|
318
|
+
language?: string | undefined;
|
|
319
|
+
strategy?: string | undefined;
|
|
320
|
+
recommendedProducts?: unknown[] | undefined;
|
|
321
|
+
cardsInRow?: number | undefined;
|
|
322
|
+
mobileRightPadding?: number | undefined;
|
|
323
|
+
mobileLeftPadding?: number | undefined;
|
|
324
|
+
unresponsive?: boolean | undefined;
|
|
325
|
+
orientation?: string | undefined;
|
|
326
|
+
textTrimming?: boolean | undefined;
|
|
327
|
+
blockType?: string | undefined;
|
|
328
|
+
size?: string | number | undefined;
|
|
329
|
+
verticalResponsiveness?: boolean | undefined;
|
|
330
|
+
} & {
|
|
331
|
+
[key: string]: unknown;
|
|
332
|
+
};
|
|
333
|
+
};
|
|
334
|
+
};
|
|
253
335
|
};
|
|
254
336
|
editor: {
|
|
255
337
|
locale: string;
|
|
@@ -275,7 +357,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
275
357
|
unsubscribe: boolean;
|
|
276
358
|
modulesDisabled: boolean;
|
|
277
359
|
liquidSyntax: boolean;
|
|
278
|
-
autosave: boolean;
|
|
279
360
|
};
|
|
280
361
|
blocks: {
|
|
281
362
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -354,6 +435,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
354
435
|
customFieldAttributes: string[];
|
|
355
436
|
selectedUnsubscribePages: number[];
|
|
356
437
|
forceRecreate: boolean;
|
|
438
|
+
migration: {
|
|
439
|
+
recommendationConfigs: {
|
|
440
|
+
[x: string]: {
|
|
441
|
+
id?: number | undefined;
|
|
442
|
+
decimalCount?: string | number | undefined;
|
|
443
|
+
productIds?: unknown[] | undefined;
|
|
444
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
445
|
+
shuffleProducts?: boolean | undefined;
|
|
446
|
+
filters?: unknown[] | undefined;
|
|
447
|
+
currency?: string | undefined;
|
|
448
|
+
currencySettings?: unknown;
|
|
449
|
+
language?: string | undefined;
|
|
450
|
+
strategy?: string | undefined;
|
|
451
|
+
recommendedProducts?: unknown[] | undefined;
|
|
452
|
+
cardsInRow?: number | undefined;
|
|
453
|
+
mobileRightPadding?: number | undefined;
|
|
454
|
+
mobileLeftPadding?: number | undefined;
|
|
455
|
+
unresponsive?: boolean | undefined;
|
|
456
|
+
orientation?: string | undefined;
|
|
457
|
+
textTrimming?: boolean | undefined;
|
|
458
|
+
blockType?: string | undefined;
|
|
459
|
+
size?: string | number | undefined;
|
|
460
|
+
verticalResponsiveness?: boolean | undefined;
|
|
461
|
+
} & {
|
|
462
|
+
[key: string]: unknown;
|
|
463
|
+
};
|
|
464
|
+
};
|
|
465
|
+
};
|
|
357
466
|
};
|
|
358
467
|
editor: {
|
|
359
468
|
locale: string;
|
|
@@ -379,7 +488,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
379
488
|
unsubscribe: boolean;
|
|
380
489
|
modulesDisabled: boolean;
|
|
381
490
|
liquidSyntax: boolean;
|
|
382
|
-
autosave: boolean;
|
|
383
491
|
};
|
|
384
492
|
blocks: {
|
|
385
493
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -458,6 +566,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
458
566
|
customFieldAttributes: string[];
|
|
459
567
|
selectedUnsubscribePages: number[];
|
|
460
568
|
forceRecreate: boolean;
|
|
569
|
+
migration: {
|
|
570
|
+
recommendationConfigs: {
|
|
571
|
+
[x: string]: {
|
|
572
|
+
id?: number | undefined;
|
|
573
|
+
decimalCount?: string | number | undefined;
|
|
574
|
+
productIds?: unknown[] | undefined;
|
|
575
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
576
|
+
shuffleProducts?: boolean | undefined;
|
|
577
|
+
filters?: unknown[] | undefined;
|
|
578
|
+
currency?: string | undefined;
|
|
579
|
+
currencySettings?: unknown;
|
|
580
|
+
language?: string | undefined;
|
|
581
|
+
strategy?: string | undefined;
|
|
582
|
+
recommendedProducts?: unknown[] | undefined;
|
|
583
|
+
cardsInRow?: number | undefined;
|
|
584
|
+
mobileRightPadding?: number | undefined;
|
|
585
|
+
mobileLeftPadding?: number | undefined;
|
|
586
|
+
unresponsive?: boolean | undefined;
|
|
587
|
+
orientation?: string | undefined;
|
|
588
|
+
textTrimming?: boolean | undefined;
|
|
589
|
+
blockType?: string | undefined;
|
|
590
|
+
size?: string | number | undefined;
|
|
591
|
+
verticalResponsiveness?: boolean | undefined;
|
|
592
|
+
} & {
|
|
593
|
+
[key: string]: unknown;
|
|
594
|
+
};
|
|
595
|
+
};
|
|
596
|
+
};
|
|
461
597
|
};
|
|
462
598
|
editor: {
|
|
463
599
|
locale: string;
|
|
@@ -483,7 +619,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
483
619
|
unsubscribe: boolean;
|
|
484
620
|
modulesDisabled: boolean;
|
|
485
621
|
liquidSyntax: boolean;
|
|
486
|
-
autosave: boolean;
|
|
487
622
|
};
|
|
488
623
|
blocks: {
|
|
489
624
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -562,6 +697,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
562
697
|
customFieldAttributes: string[];
|
|
563
698
|
selectedUnsubscribePages: number[];
|
|
564
699
|
forceRecreate: boolean;
|
|
700
|
+
migration: {
|
|
701
|
+
recommendationConfigs: {
|
|
702
|
+
[x: string]: {
|
|
703
|
+
id?: number | undefined;
|
|
704
|
+
decimalCount?: string | number | undefined;
|
|
705
|
+
productIds?: unknown[] | undefined;
|
|
706
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
707
|
+
shuffleProducts?: boolean | undefined;
|
|
708
|
+
filters?: unknown[] | undefined;
|
|
709
|
+
currency?: string | undefined;
|
|
710
|
+
currencySettings?: unknown;
|
|
711
|
+
language?: string | undefined;
|
|
712
|
+
strategy?: string | undefined;
|
|
713
|
+
recommendedProducts?: unknown[] | undefined;
|
|
714
|
+
cardsInRow?: number | undefined;
|
|
715
|
+
mobileRightPadding?: number | undefined;
|
|
716
|
+
mobileLeftPadding?: number | undefined;
|
|
717
|
+
unresponsive?: boolean | undefined;
|
|
718
|
+
orientation?: string | undefined;
|
|
719
|
+
textTrimming?: boolean | undefined;
|
|
720
|
+
blockType?: string | undefined;
|
|
721
|
+
size?: string | number | undefined;
|
|
722
|
+
verticalResponsiveness?: boolean | undefined;
|
|
723
|
+
} & {
|
|
724
|
+
[key: string]: unknown;
|
|
725
|
+
};
|
|
726
|
+
};
|
|
727
|
+
};
|
|
565
728
|
};
|
|
566
729
|
editor: {
|
|
567
730
|
locale: string;
|
|
@@ -587,7 +750,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
587
750
|
unsubscribe: boolean;
|
|
588
751
|
modulesDisabled: boolean;
|
|
589
752
|
liquidSyntax: boolean;
|
|
590
|
-
autosave: boolean;
|
|
591
753
|
};
|
|
592
754
|
blocks: {
|
|
593
755
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -666,6 +828,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
666
828
|
customFieldAttributes: string[];
|
|
667
829
|
selectedUnsubscribePages: number[];
|
|
668
830
|
forceRecreate: boolean;
|
|
831
|
+
migration: {
|
|
832
|
+
recommendationConfigs: {
|
|
833
|
+
[x: string]: {
|
|
834
|
+
id?: number | undefined;
|
|
835
|
+
decimalCount?: string | number | undefined;
|
|
836
|
+
productIds?: unknown[] | undefined;
|
|
837
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
838
|
+
shuffleProducts?: boolean | undefined;
|
|
839
|
+
filters?: unknown[] | undefined;
|
|
840
|
+
currency?: string | undefined;
|
|
841
|
+
currencySettings?: unknown;
|
|
842
|
+
language?: string | undefined;
|
|
843
|
+
strategy?: string | undefined;
|
|
844
|
+
recommendedProducts?: unknown[] | undefined;
|
|
845
|
+
cardsInRow?: number | undefined;
|
|
846
|
+
mobileRightPadding?: number | undefined;
|
|
847
|
+
mobileLeftPadding?: number | undefined;
|
|
848
|
+
unresponsive?: boolean | undefined;
|
|
849
|
+
orientation?: string | undefined;
|
|
850
|
+
textTrimming?: boolean | undefined;
|
|
851
|
+
blockType?: string | undefined;
|
|
852
|
+
size?: string | number | undefined;
|
|
853
|
+
verticalResponsiveness?: boolean | undefined;
|
|
854
|
+
} & {
|
|
855
|
+
[key: string]: unknown;
|
|
856
|
+
};
|
|
857
|
+
};
|
|
858
|
+
};
|
|
669
859
|
};
|
|
670
860
|
editor: {
|
|
671
861
|
locale: string;
|
|
@@ -691,7 +881,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
691
881
|
unsubscribe: boolean;
|
|
692
882
|
modulesDisabled: boolean;
|
|
693
883
|
liquidSyntax: boolean;
|
|
694
|
-
autosave: boolean;
|
|
695
884
|
};
|
|
696
885
|
blocks: {
|
|
697
886
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -770,6 +959,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
770
959
|
customFieldAttributes: string[];
|
|
771
960
|
selectedUnsubscribePages: number[];
|
|
772
961
|
forceRecreate: boolean;
|
|
962
|
+
migration: {
|
|
963
|
+
recommendationConfigs: {
|
|
964
|
+
[x: string]: {
|
|
965
|
+
id?: number | undefined;
|
|
966
|
+
decimalCount?: string | number | undefined;
|
|
967
|
+
productIds?: unknown[] | undefined;
|
|
968
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
969
|
+
shuffleProducts?: boolean | undefined;
|
|
970
|
+
filters?: unknown[] | undefined;
|
|
971
|
+
currency?: string | undefined;
|
|
972
|
+
currencySettings?: unknown;
|
|
973
|
+
language?: string | undefined;
|
|
974
|
+
strategy?: string | undefined;
|
|
975
|
+
recommendedProducts?: unknown[] | undefined;
|
|
976
|
+
cardsInRow?: number | undefined;
|
|
977
|
+
mobileRightPadding?: number | undefined;
|
|
978
|
+
mobileLeftPadding?: number | undefined;
|
|
979
|
+
unresponsive?: boolean | undefined;
|
|
980
|
+
orientation?: string | undefined;
|
|
981
|
+
textTrimming?: boolean | undefined;
|
|
982
|
+
blockType?: string | undefined;
|
|
983
|
+
size?: string | number | undefined;
|
|
984
|
+
verticalResponsiveness?: boolean | undefined;
|
|
985
|
+
} & {
|
|
986
|
+
[key: string]: unknown;
|
|
987
|
+
};
|
|
988
|
+
};
|
|
989
|
+
};
|
|
773
990
|
};
|
|
774
991
|
editor: {
|
|
775
992
|
locale: string;
|
|
@@ -795,7 +1012,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
795
1012
|
unsubscribe: boolean;
|
|
796
1013
|
modulesDisabled: boolean;
|
|
797
1014
|
liquidSyntax: boolean;
|
|
798
|
-
autosave: boolean;
|
|
799
1015
|
};
|
|
800
1016
|
blocks: {
|
|
801
1017
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -874,6 +1090,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
874
1090
|
customFieldAttributes: string[];
|
|
875
1091
|
selectedUnsubscribePages: number[];
|
|
876
1092
|
forceRecreate: boolean;
|
|
1093
|
+
migration: {
|
|
1094
|
+
recommendationConfigs: {
|
|
1095
|
+
[x: string]: {
|
|
1096
|
+
id?: number | undefined;
|
|
1097
|
+
decimalCount?: string | number | undefined;
|
|
1098
|
+
productIds?: unknown[] | undefined;
|
|
1099
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
1100
|
+
shuffleProducts?: boolean | undefined;
|
|
1101
|
+
filters?: unknown[] | undefined;
|
|
1102
|
+
currency?: string | undefined;
|
|
1103
|
+
currencySettings?: unknown;
|
|
1104
|
+
language?: string | undefined;
|
|
1105
|
+
strategy?: string | undefined;
|
|
1106
|
+
recommendedProducts?: unknown[] | undefined;
|
|
1107
|
+
cardsInRow?: number | undefined;
|
|
1108
|
+
mobileRightPadding?: number | undefined;
|
|
1109
|
+
mobileLeftPadding?: number | undefined;
|
|
1110
|
+
unresponsive?: boolean | undefined;
|
|
1111
|
+
orientation?: string | undefined;
|
|
1112
|
+
textTrimming?: boolean | undefined;
|
|
1113
|
+
blockType?: string | undefined;
|
|
1114
|
+
size?: string | number | undefined;
|
|
1115
|
+
verticalResponsiveness?: boolean | undefined;
|
|
1116
|
+
} & {
|
|
1117
|
+
[key: string]: unknown;
|
|
1118
|
+
};
|
|
1119
|
+
};
|
|
1120
|
+
};
|
|
877
1121
|
};
|
|
878
1122
|
editor: {
|
|
879
1123
|
locale: string;
|
|
@@ -899,7 +1143,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
899
1143
|
unsubscribe: boolean;
|
|
900
1144
|
modulesDisabled: boolean;
|
|
901
1145
|
liquidSyntax: boolean;
|
|
902
|
-
autosave: boolean;
|
|
903
1146
|
};
|
|
904
1147
|
blocks: {
|
|
905
1148
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -978,6 +1221,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
978
1221
|
customFieldAttributes: string[];
|
|
979
1222
|
selectedUnsubscribePages: number[];
|
|
980
1223
|
forceRecreate: boolean;
|
|
1224
|
+
migration: {
|
|
1225
|
+
recommendationConfigs: {
|
|
1226
|
+
[x: string]: {
|
|
1227
|
+
id?: number | undefined;
|
|
1228
|
+
decimalCount?: string | number | undefined;
|
|
1229
|
+
productIds?: unknown[] | undefined;
|
|
1230
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
1231
|
+
shuffleProducts?: boolean | undefined;
|
|
1232
|
+
filters?: unknown[] | undefined;
|
|
1233
|
+
currency?: string | undefined;
|
|
1234
|
+
currencySettings?: unknown;
|
|
1235
|
+
language?: string | undefined;
|
|
1236
|
+
strategy?: string | undefined;
|
|
1237
|
+
recommendedProducts?: unknown[] | undefined;
|
|
1238
|
+
cardsInRow?: number | undefined;
|
|
1239
|
+
mobileRightPadding?: number | undefined;
|
|
1240
|
+
mobileLeftPadding?: number | undefined;
|
|
1241
|
+
unresponsive?: boolean | undefined;
|
|
1242
|
+
orientation?: string | undefined;
|
|
1243
|
+
textTrimming?: boolean | undefined;
|
|
1244
|
+
blockType?: string | undefined;
|
|
1245
|
+
size?: string | number | undefined;
|
|
1246
|
+
verticalResponsiveness?: boolean | undefined;
|
|
1247
|
+
} & {
|
|
1248
|
+
[key: string]: unknown;
|
|
1249
|
+
};
|
|
1250
|
+
};
|
|
1251
|
+
};
|
|
981
1252
|
};
|
|
982
1253
|
editor: {
|
|
983
1254
|
locale: string;
|
|
@@ -1003,7 +1274,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1003
1274
|
unsubscribe: boolean;
|
|
1004
1275
|
modulesDisabled: boolean;
|
|
1005
1276
|
liquidSyntax: boolean;
|
|
1006
|
-
autosave: boolean;
|
|
1007
1277
|
};
|
|
1008
1278
|
blocks: {
|
|
1009
1279
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -1082,6 +1352,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1082
1352
|
customFieldAttributes: string[];
|
|
1083
1353
|
selectedUnsubscribePages: number[];
|
|
1084
1354
|
forceRecreate: boolean;
|
|
1355
|
+
migration: {
|
|
1356
|
+
recommendationConfigs: {
|
|
1357
|
+
[x: string]: {
|
|
1358
|
+
id?: number | undefined;
|
|
1359
|
+
decimalCount?: string | number | undefined;
|
|
1360
|
+
productIds?: unknown[] | undefined;
|
|
1361
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
1362
|
+
shuffleProducts?: boolean | undefined;
|
|
1363
|
+
filters?: unknown[] | undefined;
|
|
1364
|
+
currency?: string | undefined;
|
|
1365
|
+
currencySettings?: unknown;
|
|
1366
|
+
language?: string | undefined;
|
|
1367
|
+
strategy?: string | undefined;
|
|
1368
|
+
recommendedProducts?: unknown[] | undefined;
|
|
1369
|
+
cardsInRow?: number | undefined;
|
|
1370
|
+
mobileRightPadding?: number | undefined;
|
|
1371
|
+
mobileLeftPadding?: number | undefined;
|
|
1372
|
+
unresponsive?: boolean | undefined;
|
|
1373
|
+
orientation?: string | undefined;
|
|
1374
|
+
textTrimming?: boolean | undefined;
|
|
1375
|
+
blockType?: string | undefined;
|
|
1376
|
+
size?: string | number | undefined;
|
|
1377
|
+
verticalResponsiveness?: boolean | undefined;
|
|
1378
|
+
} & {
|
|
1379
|
+
[key: string]: unknown;
|
|
1380
|
+
};
|
|
1381
|
+
};
|
|
1382
|
+
};
|
|
1085
1383
|
};
|
|
1086
1384
|
editor: {
|
|
1087
1385
|
locale: string;
|
|
@@ -1107,7 +1405,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1107
1405
|
unsubscribe: boolean;
|
|
1108
1406
|
modulesDisabled: boolean;
|
|
1109
1407
|
liquidSyntax: boolean;
|
|
1110
|
-
autosave: boolean;
|
|
1111
1408
|
};
|
|
1112
1409
|
blocks: {
|
|
1113
1410
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -1186,6 +1483,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1186
1483
|
customFieldAttributes: string[];
|
|
1187
1484
|
selectedUnsubscribePages: number[];
|
|
1188
1485
|
forceRecreate: boolean;
|
|
1486
|
+
migration: {
|
|
1487
|
+
recommendationConfigs: {
|
|
1488
|
+
[x: string]: {
|
|
1489
|
+
id?: number | undefined;
|
|
1490
|
+
decimalCount?: string | number | undefined;
|
|
1491
|
+
productIds?: unknown[] | undefined;
|
|
1492
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
1493
|
+
shuffleProducts?: boolean | undefined;
|
|
1494
|
+
filters?: unknown[] | undefined;
|
|
1495
|
+
currency?: string | undefined;
|
|
1496
|
+
currencySettings?: unknown;
|
|
1497
|
+
language?: string | undefined;
|
|
1498
|
+
strategy?: string | undefined;
|
|
1499
|
+
recommendedProducts?: unknown[] | undefined;
|
|
1500
|
+
cardsInRow?: number | undefined;
|
|
1501
|
+
mobileRightPadding?: number | undefined;
|
|
1502
|
+
mobileLeftPadding?: number | undefined;
|
|
1503
|
+
unresponsive?: boolean | undefined;
|
|
1504
|
+
orientation?: string | undefined;
|
|
1505
|
+
textTrimming?: boolean | undefined;
|
|
1506
|
+
blockType?: string | undefined;
|
|
1507
|
+
size?: string | number | undefined;
|
|
1508
|
+
verticalResponsiveness?: boolean | undefined;
|
|
1509
|
+
} & {
|
|
1510
|
+
[key: string]: unknown;
|
|
1511
|
+
};
|
|
1512
|
+
};
|
|
1513
|
+
};
|
|
1189
1514
|
};
|
|
1190
1515
|
editor: {
|
|
1191
1516
|
locale: string;
|
|
@@ -1211,7 +1536,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1211
1536
|
unsubscribe: boolean;
|
|
1212
1537
|
modulesDisabled: boolean;
|
|
1213
1538
|
liquidSyntax: boolean;
|
|
1214
|
-
autosave: boolean;
|
|
1215
1539
|
};
|
|
1216
1540
|
blocks: {
|
|
1217
1541
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -1290,6 +1614,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1290
1614
|
customFieldAttributes: string[];
|
|
1291
1615
|
selectedUnsubscribePages: number[];
|
|
1292
1616
|
forceRecreate: boolean;
|
|
1617
|
+
migration: {
|
|
1618
|
+
recommendationConfigs: {
|
|
1619
|
+
[x: string]: {
|
|
1620
|
+
id?: number | undefined;
|
|
1621
|
+
decimalCount?: string | number | undefined;
|
|
1622
|
+
productIds?: unknown[] | undefined;
|
|
1623
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
1624
|
+
shuffleProducts?: boolean | undefined;
|
|
1625
|
+
filters?: unknown[] | undefined;
|
|
1626
|
+
currency?: string | undefined;
|
|
1627
|
+
currencySettings?: unknown;
|
|
1628
|
+
language?: string | undefined;
|
|
1629
|
+
strategy?: string | undefined;
|
|
1630
|
+
recommendedProducts?: unknown[] | undefined;
|
|
1631
|
+
cardsInRow?: number | undefined;
|
|
1632
|
+
mobileRightPadding?: number | undefined;
|
|
1633
|
+
mobileLeftPadding?: number | undefined;
|
|
1634
|
+
unresponsive?: boolean | undefined;
|
|
1635
|
+
orientation?: string | undefined;
|
|
1636
|
+
textTrimming?: boolean | undefined;
|
|
1637
|
+
blockType?: string | undefined;
|
|
1638
|
+
size?: string | number | undefined;
|
|
1639
|
+
verticalResponsiveness?: boolean | undefined;
|
|
1640
|
+
} & {
|
|
1641
|
+
[key: string]: unknown;
|
|
1642
|
+
};
|
|
1643
|
+
};
|
|
1644
|
+
};
|
|
1293
1645
|
};
|
|
1294
1646
|
editor: {
|
|
1295
1647
|
locale: string;
|
|
@@ -1315,7 +1667,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1315
1667
|
unsubscribe: boolean;
|
|
1316
1668
|
modulesDisabled: boolean;
|
|
1317
1669
|
liquidSyntax: boolean;
|
|
1318
|
-
autosave: boolean;
|
|
1319
1670
|
};
|
|
1320
1671
|
blocks: {
|
|
1321
1672
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -1394,6 +1745,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1394
1745
|
customFieldAttributes: string[];
|
|
1395
1746
|
selectedUnsubscribePages: number[];
|
|
1396
1747
|
forceRecreate: boolean;
|
|
1748
|
+
migration: {
|
|
1749
|
+
recommendationConfigs: {
|
|
1750
|
+
[x: string]: {
|
|
1751
|
+
id?: number | undefined;
|
|
1752
|
+
decimalCount?: string | number | undefined;
|
|
1753
|
+
productIds?: unknown[] | undefined;
|
|
1754
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
1755
|
+
shuffleProducts?: boolean | undefined;
|
|
1756
|
+
filters?: unknown[] | undefined;
|
|
1757
|
+
currency?: string | undefined;
|
|
1758
|
+
currencySettings?: unknown;
|
|
1759
|
+
language?: string | undefined;
|
|
1760
|
+
strategy?: string | undefined;
|
|
1761
|
+
recommendedProducts?: unknown[] | undefined;
|
|
1762
|
+
cardsInRow?: number | undefined;
|
|
1763
|
+
mobileRightPadding?: number | undefined;
|
|
1764
|
+
mobileLeftPadding?: number | undefined;
|
|
1765
|
+
unresponsive?: boolean | undefined;
|
|
1766
|
+
orientation?: string | undefined;
|
|
1767
|
+
textTrimming?: boolean | undefined;
|
|
1768
|
+
blockType?: string | undefined;
|
|
1769
|
+
size?: string | number | undefined;
|
|
1770
|
+
verticalResponsiveness?: boolean | undefined;
|
|
1771
|
+
} & {
|
|
1772
|
+
[key: string]: unknown;
|
|
1773
|
+
};
|
|
1774
|
+
};
|
|
1775
|
+
};
|
|
1397
1776
|
};
|
|
1398
1777
|
editor: {
|
|
1399
1778
|
locale: string;
|
|
@@ -1419,7 +1798,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1419
1798
|
unsubscribe: boolean;
|
|
1420
1799
|
modulesDisabled: boolean;
|
|
1421
1800
|
liquidSyntax: boolean;
|
|
1422
|
-
autosave: boolean;
|
|
1423
1801
|
};
|
|
1424
1802
|
blocks: {
|
|
1425
1803
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -1498,6 +1876,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1498
1876
|
customFieldAttributes: string[];
|
|
1499
1877
|
selectedUnsubscribePages: number[];
|
|
1500
1878
|
forceRecreate: boolean;
|
|
1879
|
+
migration: {
|
|
1880
|
+
recommendationConfigs: {
|
|
1881
|
+
[x: string]: {
|
|
1882
|
+
id?: number | undefined;
|
|
1883
|
+
decimalCount?: string | number | undefined;
|
|
1884
|
+
productIds?: unknown[] | undefined;
|
|
1885
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
1886
|
+
shuffleProducts?: boolean | undefined;
|
|
1887
|
+
filters?: unknown[] | undefined;
|
|
1888
|
+
currency?: string | undefined;
|
|
1889
|
+
currencySettings?: unknown;
|
|
1890
|
+
language?: string | undefined;
|
|
1891
|
+
strategy?: string | undefined;
|
|
1892
|
+
recommendedProducts?: unknown[] | undefined;
|
|
1893
|
+
cardsInRow?: number | undefined;
|
|
1894
|
+
mobileRightPadding?: number | undefined;
|
|
1895
|
+
mobileLeftPadding?: number | undefined;
|
|
1896
|
+
unresponsive?: boolean | undefined;
|
|
1897
|
+
orientation?: string | undefined;
|
|
1898
|
+
textTrimming?: boolean | undefined;
|
|
1899
|
+
blockType?: string | undefined;
|
|
1900
|
+
size?: string | number | undefined;
|
|
1901
|
+
verticalResponsiveness?: boolean | undefined;
|
|
1902
|
+
} & {
|
|
1903
|
+
[key: string]: unknown;
|
|
1904
|
+
};
|
|
1905
|
+
};
|
|
1906
|
+
};
|
|
1501
1907
|
};
|
|
1502
1908
|
editor: {
|
|
1503
1909
|
locale: string;
|
|
@@ -1523,7 +1929,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1523
1929
|
unsubscribe: boolean;
|
|
1524
1930
|
modulesDisabled: boolean;
|
|
1525
1931
|
liquidSyntax: boolean;
|
|
1526
|
-
autosave: boolean;
|
|
1527
1932
|
};
|
|
1528
1933
|
blocks: {
|
|
1529
1934
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -1602,6 +2007,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1602
2007
|
customFieldAttributes: string[];
|
|
1603
2008
|
selectedUnsubscribePages: number[];
|
|
1604
2009
|
forceRecreate: boolean;
|
|
2010
|
+
migration: {
|
|
2011
|
+
recommendationConfigs: {
|
|
2012
|
+
[x: string]: {
|
|
2013
|
+
id?: number | undefined;
|
|
2014
|
+
decimalCount?: string | number | undefined;
|
|
2015
|
+
productIds?: unknown[] | undefined;
|
|
2016
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
2017
|
+
shuffleProducts?: boolean | undefined;
|
|
2018
|
+
filters?: unknown[] | undefined;
|
|
2019
|
+
currency?: string | undefined;
|
|
2020
|
+
currencySettings?: unknown;
|
|
2021
|
+
language?: string | undefined;
|
|
2022
|
+
strategy?: string | undefined;
|
|
2023
|
+
recommendedProducts?: unknown[] | undefined;
|
|
2024
|
+
cardsInRow?: number | undefined;
|
|
2025
|
+
mobileRightPadding?: number | undefined;
|
|
2026
|
+
mobileLeftPadding?: number | undefined;
|
|
2027
|
+
unresponsive?: boolean | undefined;
|
|
2028
|
+
orientation?: string | undefined;
|
|
2029
|
+
textTrimming?: boolean | undefined;
|
|
2030
|
+
blockType?: string | undefined;
|
|
2031
|
+
size?: string | number | undefined;
|
|
2032
|
+
verticalResponsiveness?: boolean | undefined;
|
|
2033
|
+
} & {
|
|
2034
|
+
[key: string]: unknown;
|
|
2035
|
+
};
|
|
2036
|
+
};
|
|
2037
|
+
};
|
|
1605
2038
|
};
|
|
1606
2039
|
editor: {
|
|
1607
2040
|
locale: string;
|
|
@@ -1627,7 +2060,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1627
2060
|
unsubscribe: boolean;
|
|
1628
2061
|
modulesDisabled: boolean;
|
|
1629
2062
|
liquidSyntax: boolean;
|
|
1630
|
-
autosave: boolean;
|
|
1631
2063
|
};
|
|
1632
2064
|
blocks: {
|
|
1633
2065
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -1706,6 +2138,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1706
2138
|
customFieldAttributes: string[];
|
|
1707
2139
|
selectedUnsubscribePages: number[];
|
|
1708
2140
|
forceRecreate: boolean;
|
|
2141
|
+
migration: {
|
|
2142
|
+
recommendationConfigs: {
|
|
2143
|
+
[x: string]: {
|
|
2144
|
+
id?: number | undefined;
|
|
2145
|
+
decimalCount?: string | number | undefined;
|
|
2146
|
+
productIds?: unknown[] | undefined;
|
|
2147
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
2148
|
+
shuffleProducts?: boolean | undefined;
|
|
2149
|
+
filters?: unknown[] | undefined;
|
|
2150
|
+
currency?: string | undefined;
|
|
2151
|
+
currencySettings?: unknown;
|
|
2152
|
+
language?: string | undefined;
|
|
2153
|
+
strategy?: string | undefined;
|
|
2154
|
+
recommendedProducts?: unknown[] | undefined;
|
|
2155
|
+
cardsInRow?: number | undefined;
|
|
2156
|
+
mobileRightPadding?: number | undefined;
|
|
2157
|
+
mobileLeftPadding?: number | undefined;
|
|
2158
|
+
unresponsive?: boolean | undefined;
|
|
2159
|
+
orientation?: string | undefined;
|
|
2160
|
+
textTrimming?: boolean | undefined;
|
|
2161
|
+
blockType?: string | undefined;
|
|
2162
|
+
size?: string | number | undefined;
|
|
2163
|
+
verticalResponsiveness?: boolean | undefined;
|
|
2164
|
+
} & {
|
|
2165
|
+
[key: string]: unknown;
|
|
2166
|
+
};
|
|
2167
|
+
};
|
|
2168
|
+
};
|
|
1709
2169
|
};
|
|
1710
2170
|
editor: {
|
|
1711
2171
|
locale: string;
|
|
@@ -1731,7 +2191,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1731
2191
|
unsubscribe: boolean;
|
|
1732
2192
|
modulesDisabled: boolean;
|
|
1733
2193
|
liquidSyntax: boolean;
|
|
1734
|
-
autosave: boolean;
|
|
1735
2194
|
};
|
|
1736
2195
|
blocks: {
|
|
1737
2196
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|
|
@@ -1810,6 +2269,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1810
2269
|
customFieldAttributes: string[];
|
|
1811
2270
|
selectedUnsubscribePages: number[];
|
|
1812
2271
|
forceRecreate: boolean;
|
|
2272
|
+
migration: {
|
|
2273
|
+
recommendationConfigs: {
|
|
2274
|
+
[x: string]: {
|
|
2275
|
+
id?: number | undefined;
|
|
2276
|
+
decimalCount?: string | number | undefined;
|
|
2277
|
+
productIds?: unknown[] | undefined;
|
|
2278
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
2279
|
+
shuffleProducts?: boolean | undefined;
|
|
2280
|
+
filters?: unknown[] | undefined;
|
|
2281
|
+
currency?: string | undefined;
|
|
2282
|
+
currencySettings?: unknown;
|
|
2283
|
+
language?: string | undefined;
|
|
2284
|
+
strategy?: string | undefined;
|
|
2285
|
+
recommendedProducts?: unknown[] | undefined;
|
|
2286
|
+
cardsInRow?: number | undefined;
|
|
2287
|
+
mobileRightPadding?: number | undefined;
|
|
2288
|
+
mobileLeftPadding?: number | undefined;
|
|
2289
|
+
unresponsive?: boolean | undefined;
|
|
2290
|
+
orientation?: string | undefined;
|
|
2291
|
+
textTrimming?: boolean | undefined;
|
|
2292
|
+
blockType?: string | undefined;
|
|
2293
|
+
size?: string | number | undefined;
|
|
2294
|
+
verticalResponsiveness?: boolean | undefined;
|
|
2295
|
+
} & {
|
|
2296
|
+
[key: string]: unknown;
|
|
2297
|
+
};
|
|
2298
|
+
};
|
|
2299
|
+
};
|
|
1813
2300
|
};
|
|
1814
2301
|
editor: {
|
|
1815
2302
|
locale: string;
|
|
@@ -1835,7 +2322,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1835
2322
|
unsubscribe: boolean;
|
|
1836
2323
|
modulesDisabled: boolean;
|
|
1837
2324
|
liquidSyntax: boolean;
|
|
1838
|
-
autosave: boolean;
|
|
1839
2325
|
};
|
|
1840
2326
|
blocks: {
|
|
1841
2327
|
excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
|