@useinsider/guido 3.2.0 → 3.3.0
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 +117 -1
- package/dist/@types/config/schemas.js +153 -95
- package/dist/components/Guido.vue.js +4 -4
- package/dist/components/Guido.vue2.js +90 -88
- package/dist/components/organisms/AutoSaveController.vue.js +17 -0
- package/dist/components/organisms/AutoSaveController.vue2.js +13 -0
- package/dist/components/organisms/header/AutoSaveToggle.vue.js +22 -0
- package/dist/components/organisms/header/AutoSaveToggle.vue2.js +19 -0
- package/dist/components/organisms/header/RightSlot.vue.js +8 -8
- package/dist/components/organisms/header/RightSlot.vue2.js +9 -8
- package/dist/components/organisms/onboarding/AMPOnboarding.vue2.js +51 -31
- package/dist/components/organisms/onboarding/GenericOnboarding.vue.js +1 -1
- package/dist/components/organisms/onboarding/GenericOnboarding.vue2.js +23 -22
- package/dist/components/organisms/onboarding/ItemsOnboarding.vue.js +1 -1
- package/dist/components/organisms/onboarding/ItemsOnboarding.vue2.js +37 -39
- package/dist/components/organisms/onboarding/TextBlockOnboarding.vue.js +3 -3
- package/dist/components/organisms/onboarding/TextBlockOnboarding.vue2.js +30 -41
- package/dist/components/organisms/onboarding/VersionHistoryOnboarding.vue2.js +15 -14
- package/dist/composables/useActionsApi.js +4 -4
- package/dist/composables/useAutoSave.js +71 -0
- package/dist/composables/useFullStoryBridge.js +14 -0
- package/dist/composables/useRecommendation.js +46 -26
- package/dist/composables/useRibbonOffset.js +21 -0
- package/dist/composables/useSave.js +19 -16
- package/dist/composables/useStripo.js +40 -40
- package/dist/composables/validators/useCouponBlockValidator.js +24 -0
- package/dist/config/compiler/recommendationCompilerRules.js +79 -74
- package/dist/config/compiler/unsubscribeCompilerRules.js +40 -37
- package/dist/config/compiler/utils/recommendationCompilerUtils.js +107 -71
- package/dist/config/migrator/index.js +9 -9
- package/dist/config/migrator/radioButtonMigrator.js +64 -44
- 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 +496 -0
- package/dist/config/migrator/recommendation/parseLegacyConfig.js +33 -0
- package/dist/config/migrator/recommendation/settingsMapper.js +70 -0
- package/dist/config/migrator/recommendation/themeMapper.js +93 -0
- package/dist/config/migrator/recommendationMigrator.js +74 -290
- package/dist/enums/extensions/recommendationBlock.js +2 -1
- package/dist/enums/onboarding.js +7 -2
- package/dist/enums/unsubscribe.js +34 -27
- package/dist/extensions/Blocks/Items/controls/price/singlePrice.js +38 -38
- package/dist/extensions/Blocks/Items/enums/productEnums.js +19 -7
- package/dist/extensions/Blocks/RadioButton/template.js +1 -1
- package/dist/extensions/Blocks/Recommendation/block.js +35 -32
- package/dist/extensions/Blocks/Recommendation/constants/controlIds.js +1 -1
- package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +5 -5
- package/dist/extensions/Blocks/Recommendation/controls/customAttribute/index.js +21 -18
- package/dist/extensions/Blocks/Recommendation/controls/customAttribute/textTrim.js +99 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/algorithm.js +27 -26
- package/dist/extensions/Blocks/Recommendation/controls/main/index.js +3 -1
- package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +228 -181
- package/dist/extensions/Blocks/Recommendation/controls/name/textTrim.js +27 -57
- package/dist/extensions/Blocks/Recommendation/controls/shared/textTrimCssRules.js +14 -0
- package/dist/extensions/Blocks/Recommendation/services/configService.js +65 -29
- package/dist/extensions/Blocks/Recommendation/settingsPanel.js +18 -17
- package/dist/extensions/Blocks/Recommendation/store/recommendation.js +123 -79
- package/dist/extensions/Blocks/Recommendation/templates/grid/elementRenderer.js +19 -10
- package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +8 -8
- package/dist/extensions/Blocks/Recommendation/templates/list/elementRenderer.js +25 -15
- package/dist/extensions/Blocks/Recommendation/templates/list/template.js +11 -11
- package/dist/extensions/Blocks/Recommendation/templates/utils.js +1 -1
- package/dist/extensions/Blocks/Recommendation/utils/filterUtil.js +17 -14
- package/dist/extensions/Blocks/Recommendation/utils/legacyStrategyMap.js +21 -0
- package/dist/extensions/Blocks/Recommendation/utils/preserveTextStyles.js +13 -22
- package/dist/extensions/Blocks/Unsubscribe/block.js +11 -11
- package/dist/guido.css +1 -1
- package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +393 -264
- package/dist/node_modules/valibot/dist/index.js +450 -235
- package/dist/package.json.js +1 -1
- package/dist/services/templateLibraryApi.js +5 -4
- 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 +217 -0
- 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/AutoSaveController.vue.d.ts +2 -0
- package/dist/src/components/organisms/header/AutoSaveToggle.vue.d.ts +2 -0
- 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/useActionsApi.d.ts +1 -1
- package/dist/src/composables/useAutoSave.d.ts +3 -0
- package/dist/src/composables/useConfig.d.ts +58 -0
- package/dist/src/composables/useFullStoryBridge.d.ts +11 -0
- package/dist/src/composables/useRecommendation.d.ts +10 -1
- package/dist/src/composables/useRecommendation.test.d.ts +1 -0
- package/dist/src/composables/useRibbonOffset.d.ts +4 -0
- package/dist/src/composables/useSave.d.ts +1 -1
- package/dist/src/composables/validators/useCouponBlockValidator.d.ts +3 -0
- 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/extractors.test.d.ts +1 -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/enums/onboarding.d.ts +6 -0
- package/dist/src/enums/unsubscribe.d.ts +5 -0
- package/dist/src/extensions/Blocks/RadioButton/template.d.ts +1 -1
- package/dist/src/extensions/Blocks/Recommendation/constants/controlIds.d.ts +1 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/customAttribute/index.d.ts +3 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/customAttribute/textTrim.d.ts +35 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/utils.test.d.ts +1 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/name/textTrim.d.ts +3 -20
- package/dist/src/extensions/Blocks/Recommendation/controls/shared/textTrimCssRules.d.ts +29 -0
- package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +10 -0
- package/dist/src/extensions/Blocks/Recommendation/services/configService.test.d.ts +1 -0
- package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +34 -0
- package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +1 -1
- package/dist/src/extensions/Blocks/Recommendation/utils/legacyStrategyMap.d.ts +21 -0
- package/dist/src/extensions/Blocks/Recommendation/utils/legacyStrategyMap.test.d.ts +1 -0
- package/dist/src/extensions/Blocks/Recommendation/utils/preserveTextStyles.d.ts +0 -3
- package/dist/src/library.d.ts +1 -1
- package/dist/src/stores/autosave.d.ts +12 -0
- package/dist/src/stores/config.d.ts +522 -0
- package/dist/src/stores/editor.d.ts +23 -0
- package/dist/src/stores/onboarding.d.ts +4 -0
- package/dist/src/utils/htmlEscape.d.ts +5 -0
- package/dist/src/utils/htmlEscape.test.d.ts +1 -0
- package/dist/src/utils/timeUtil.d.ts +8 -0
- package/dist/static/styles/components/button.css.js +16 -9
- package/dist/static/styles/components/loader.css.js +4 -0
- package/dist/static/styles/components/narrow-panel.css.js +52 -0
- package/dist/stores/autosave.js +17 -0
- package/dist/stores/editor.js +3 -1
- package/dist/stores/onboarding.js +4 -0
- package/dist/utils/htmlEscape.js +13 -0
- package/dist/utils/pairProductVariables.js +89 -88
- package/dist/utils/templatePreparation.js +72 -32
- package/dist/utils/timeUtil.js +19 -0
- package/package.json +7 -3
- package/dist/enums/displayConditions.js +0 -80
- package/dist/extensions/Blocks/Recommendation/templates/grid/migration.js +0 -251
- package/dist/src/enums/displayConditions.d.ts +0 -2
|
@@ -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,6 +95,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
67
95
|
unsubscribe: boolean;
|
|
68
96
|
modulesDisabled: boolean;
|
|
69
97
|
liquidSyntax: boolean;
|
|
98
|
+
autosave: boolean;
|
|
70
99
|
};
|
|
71
100
|
blocks: {
|
|
72
101
|
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")[];
|
|
@@ -145,6 +174,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
145
174
|
customFieldAttributes: string[];
|
|
146
175
|
selectedUnsubscribePages: number[];
|
|
147
176
|
forceRecreate: boolean;
|
|
177
|
+
migration: {
|
|
178
|
+
recommendationConfigs: {
|
|
179
|
+
[x: string]: {
|
|
180
|
+
id?: number | undefined;
|
|
181
|
+
decimalCount?: string | number | undefined;
|
|
182
|
+
productIds?: unknown[] | undefined;
|
|
183
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
184
|
+
shuffleProducts?: boolean | undefined;
|
|
185
|
+
filters?: unknown[] | undefined;
|
|
186
|
+
currency?: string | undefined;
|
|
187
|
+
currencySettings?: unknown;
|
|
188
|
+
language?: string | undefined;
|
|
189
|
+
strategy?: string | undefined;
|
|
190
|
+
recommendedProducts?: unknown[] | undefined;
|
|
191
|
+
cardsInRow?: number | undefined;
|
|
192
|
+
mobileRightPadding?: number | undefined;
|
|
193
|
+
mobileLeftPadding?: number | undefined;
|
|
194
|
+
unresponsive?: boolean | undefined;
|
|
195
|
+
orientation?: string | undefined;
|
|
196
|
+
textTrimming?: boolean | undefined;
|
|
197
|
+
blockType?: string | undefined;
|
|
198
|
+
size?: string | number | undefined;
|
|
199
|
+
verticalResponsiveness?: boolean | undefined;
|
|
200
|
+
} & {
|
|
201
|
+
[key: string]: unknown;
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
};
|
|
148
205
|
};
|
|
149
206
|
editor: {
|
|
150
207
|
locale: string;
|
|
@@ -170,6 +227,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
170
227
|
unsubscribe: boolean;
|
|
171
228
|
modulesDisabled: boolean;
|
|
172
229
|
liquidSyntax: boolean;
|
|
230
|
+
autosave: boolean;
|
|
173
231
|
};
|
|
174
232
|
blocks: {
|
|
175
233
|
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")[];
|
|
@@ -248,6 +306,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
248
306
|
customFieldAttributes: string[];
|
|
249
307
|
selectedUnsubscribePages: number[];
|
|
250
308
|
forceRecreate: boolean;
|
|
309
|
+
migration: {
|
|
310
|
+
recommendationConfigs: {
|
|
311
|
+
[x: string]: {
|
|
312
|
+
id?: number | undefined;
|
|
313
|
+
decimalCount?: string | number | undefined;
|
|
314
|
+
productIds?: unknown[] | undefined;
|
|
315
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
316
|
+
shuffleProducts?: boolean | undefined;
|
|
317
|
+
filters?: unknown[] | undefined;
|
|
318
|
+
currency?: string | undefined;
|
|
319
|
+
currencySettings?: unknown;
|
|
320
|
+
language?: string | undefined;
|
|
321
|
+
strategy?: string | undefined;
|
|
322
|
+
recommendedProducts?: unknown[] | undefined;
|
|
323
|
+
cardsInRow?: number | undefined;
|
|
324
|
+
mobileRightPadding?: number | undefined;
|
|
325
|
+
mobileLeftPadding?: number | undefined;
|
|
326
|
+
unresponsive?: boolean | undefined;
|
|
327
|
+
orientation?: string | undefined;
|
|
328
|
+
textTrimming?: boolean | undefined;
|
|
329
|
+
blockType?: string | undefined;
|
|
330
|
+
size?: string | number | undefined;
|
|
331
|
+
verticalResponsiveness?: boolean | undefined;
|
|
332
|
+
} & {
|
|
333
|
+
[key: string]: unknown;
|
|
334
|
+
};
|
|
335
|
+
};
|
|
336
|
+
};
|
|
251
337
|
};
|
|
252
338
|
editor: {
|
|
253
339
|
locale: string;
|
|
@@ -273,6 +359,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
273
359
|
unsubscribe: boolean;
|
|
274
360
|
modulesDisabled: boolean;
|
|
275
361
|
liquidSyntax: boolean;
|
|
362
|
+
autosave: boolean;
|
|
276
363
|
};
|
|
277
364
|
blocks: {
|
|
278
365
|
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")[];
|
|
@@ -351,6 +438,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
351
438
|
customFieldAttributes: string[];
|
|
352
439
|
selectedUnsubscribePages: number[];
|
|
353
440
|
forceRecreate: boolean;
|
|
441
|
+
migration: {
|
|
442
|
+
recommendationConfigs: {
|
|
443
|
+
[x: string]: {
|
|
444
|
+
id?: number | undefined;
|
|
445
|
+
decimalCount?: string | number | undefined;
|
|
446
|
+
productIds?: unknown[] | undefined;
|
|
447
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
448
|
+
shuffleProducts?: boolean | undefined;
|
|
449
|
+
filters?: unknown[] | undefined;
|
|
450
|
+
currency?: string | undefined;
|
|
451
|
+
currencySettings?: unknown;
|
|
452
|
+
language?: string | undefined;
|
|
453
|
+
strategy?: string | undefined;
|
|
454
|
+
recommendedProducts?: unknown[] | undefined;
|
|
455
|
+
cardsInRow?: number | undefined;
|
|
456
|
+
mobileRightPadding?: number | undefined;
|
|
457
|
+
mobileLeftPadding?: number | undefined;
|
|
458
|
+
unresponsive?: boolean | undefined;
|
|
459
|
+
orientation?: string | undefined;
|
|
460
|
+
textTrimming?: boolean | undefined;
|
|
461
|
+
blockType?: string | undefined;
|
|
462
|
+
size?: string | number | undefined;
|
|
463
|
+
verticalResponsiveness?: boolean | undefined;
|
|
464
|
+
} & {
|
|
465
|
+
[key: string]: unknown;
|
|
466
|
+
};
|
|
467
|
+
};
|
|
468
|
+
};
|
|
354
469
|
};
|
|
355
470
|
editor: {
|
|
356
471
|
locale: string;
|
|
@@ -376,6 +491,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
376
491
|
unsubscribe: boolean;
|
|
377
492
|
modulesDisabled: boolean;
|
|
378
493
|
liquidSyntax: boolean;
|
|
494
|
+
autosave: boolean;
|
|
379
495
|
};
|
|
380
496
|
blocks: {
|
|
381
497
|
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")[];
|
|
@@ -454,6 +570,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
454
570
|
customFieldAttributes: string[];
|
|
455
571
|
selectedUnsubscribePages: number[];
|
|
456
572
|
forceRecreate: boolean;
|
|
573
|
+
migration: {
|
|
574
|
+
recommendationConfigs: {
|
|
575
|
+
[x: string]: {
|
|
576
|
+
id?: number | undefined;
|
|
577
|
+
decimalCount?: string | number | undefined;
|
|
578
|
+
productIds?: unknown[] | undefined;
|
|
579
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
580
|
+
shuffleProducts?: boolean | undefined;
|
|
581
|
+
filters?: unknown[] | undefined;
|
|
582
|
+
currency?: string | undefined;
|
|
583
|
+
currencySettings?: unknown;
|
|
584
|
+
language?: string | undefined;
|
|
585
|
+
strategy?: string | undefined;
|
|
586
|
+
recommendedProducts?: unknown[] | undefined;
|
|
587
|
+
cardsInRow?: number | undefined;
|
|
588
|
+
mobileRightPadding?: number | undefined;
|
|
589
|
+
mobileLeftPadding?: number | undefined;
|
|
590
|
+
unresponsive?: boolean | undefined;
|
|
591
|
+
orientation?: string | undefined;
|
|
592
|
+
textTrimming?: boolean | undefined;
|
|
593
|
+
blockType?: string | undefined;
|
|
594
|
+
size?: string | number | undefined;
|
|
595
|
+
verticalResponsiveness?: boolean | undefined;
|
|
596
|
+
} & {
|
|
597
|
+
[key: string]: unknown;
|
|
598
|
+
};
|
|
599
|
+
};
|
|
600
|
+
};
|
|
457
601
|
};
|
|
458
602
|
editor: {
|
|
459
603
|
locale: string;
|
|
@@ -479,6 +623,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
479
623
|
unsubscribe: boolean;
|
|
480
624
|
modulesDisabled: boolean;
|
|
481
625
|
liquidSyntax: boolean;
|
|
626
|
+
autosave: boolean;
|
|
482
627
|
};
|
|
483
628
|
blocks: {
|
|
484
629
|
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")[];
|
|
@@ -557,6 +702,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
557
702
|
customFieldAttributes: string[];
|
|
558
703
|
selectedUnsubscribePages: number[];
|
|
559
704
|
forceRecreate: boolean;
|
|
705
|
+
migration: {
|
|
706
|
+
recommendationConfigs: {
|
|
707
|
+
[x: string]: {
|
|
708
|
+
id?: number | undefined;
|
|
709
|
+
decimalCount?: string | number | undefined;
|
|
710
|
+
productIds?: unknown[] | undefined;
|
|
711
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
712
|
+
shuffleProducts?: boolean | undefined;
|
|
713
|
+
filters?: unknown[] | undefined;
|
|
714
|
+
currency?: string | undefined;
|
|
715
|
+
currencySettings?: unknown;
|
|
716
|
+
language?: string | undefined;
|
|
717
|
+
strategy?: string | undefined;
|
|
718
|
+
recommendedProducts?: unknown[] | undefined;
|
|
719
|
+
cardsInRow?: number | undefined;
|
|
720
|
+
mobileRightPadding?: number | undefined;
|
|
721
|
+
mobileLeftPadding?: number | undefined;
|
|
722
|
+
unresponsive?: boolean | undefined;
|
|
723
|
+
orientation?: string | undefined;
|
|
724
|
+
textTrimming?: boolean | undefined;
|
|
725
|
+
blockType?: string | undefined;
|
|
726
|
+
size?: string | number | undefined;
|
|
727
|
+
verticalResponsiveness?: boolean | undefined;
|
|
728
|
+
} & {
|
|
729
|
+
[key: string]: unknown;
|
|
730
|
+
};
|
|
731
|
+
};
|
|
732
|
+
};
|
|
560
733
|
};
|
|
561
734
|
editor: {
|
|
562
735
|
locale: string;
|
|
@@ -582,6 +755,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
582
755
|
unsubscribe: boolean;
|
|
583
756
|
modulesDisabled: boolean;
|
|
584
757
|
liquidSyntax: boolean;
|
|
758
|
+
autosave: boolean;
|
|
585
759
|
};
|
|
586
760
|
blocks: {
|
|
587
761
|
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")[];
|
|
@@ -660,6 +834,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
660
834
|
customFieldAttributes: string[];
|
|
661
835
|
selectedUnsubscribePages: number[];
|
|
662
836
|
forceRecreate: boolean;
|
|
837
|
+
migration: {
|
|
838
|
+
recommendationConfigs: {
|
|
839
|
+
[x: string]: {
|
|
840
|
+
id?: number | undefined;
|
|
841
|
+
decimalCount?: string | number | undefined;
|
|
842
|
+
productIds?: unknown[] | undefined;
|
|
843
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
844
|
+
shuffleProducts?: boolean | undefined;
|
|
845
|
+
filters?: unknown[] | undefined;
|
|
846
|
+
currency?: string | undefined;
|
|
847
|
+
currencySettings?: unknown;
|
|
848
|
+
language?: string | undefined;
|
|
849
|
+
strategy?: string | undefined;
|
|
850
|
+
recommendedProducts?: unknown[] | undefined;
|
|
851
|
+
cardsInRow?: number | undefined;
|
|
852
|
+
mobileRightPadding?: number | undefined;
|
|
853
|
+
mobileLeftPadding?: number | undefined;
|
|
854
|
+
unresponsive?: boolean | undefined;
|
|
855
|
+
orientation?: string | undefined;
|
|
856
|
+
textTrimming?: boolean | undefined;
|
|
857
|
+
blockType?: string | undefined;
|
|
858
|
+
size?: string | number | undefined;
|
|
859
|
+
verticalResponsiveness?: boolean | undefined;
|
|
860
|
+
} & {
|
|
861
|
+
[key: string]: unknown;
|
|
862
|
+
};
|
|
863
|
+
};
|
|
864
|
+
};
|
|
663
865
|
};
|
|
664
866
|
editor: {
|
|
665
867
|
locale: string;
|
|
@@ -685,6 +887,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
685
887
|
unsubscribe: boolean;
|
|
686
888
|
modulesDisabled: boolean;
|
|
687
889
|
liquidSyntax: boolean;
|
|
890
|
+
autosave: boolean;
|
|
688
891
|
};
|
|
689
892
|
blocks: {
|
|
690
893
|
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")[];
|
|
@@ -763,6 +966,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
763
966
|
customFieldAttributes: string[];
|
|
764
967
|
selectedUnsubscribePages: number[];
|
|
765
968
|
forceRecreate: boolean;
|
|
969
|
+
migration: {
|
|
970
|
+
recommendationConfigs: {
|
|
971
|
+
[x: string]: {
|
|
972
|
+
id?: number | undefined;
|
|
973
|
+
decimalCount?: string | number | undefined;
|
|
974
|
+
productIds?: unknown[] | undefined;
|
|
975
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
976
|
+
shuffleProducts?: boolean | undefined;
|
|
977
|
+
filters?: unknown[] | undefined;
|
|
978
|
+
currency?: string | undefined;
|
|
979
|
+
currencySettings?: unknown;
|
|
980
|
+
language?: string | undefined;
|
|
981
|
+
strategy?: string | undefined;
|
|
982
|
+
recommendedProducts?: unknown[] | undefined;
|
|
983
|
+
cardsInRow?: number | undefined;
|
|
984
|
+
mobileRightPadding?: number | undefined;
|
|
985
|
+
mobileLeftPadding?: number | undefined;
|
|
986
|
+
unresponsive?: boolean | undefined;
|
|
987
|
+
orientation?: string | undefined;
|
|
988
|
+
textTrimming?: boolean | undefined;
|
|
989
|
+
blockType?: string | undefined;
|
|
990
|
+
size?: string | number | undefined;
|
|
991
|
+
verticalResponsiveness?: boolean | undefined;
|
|
992
|
+
} & {
|
|
993
|
+
[key: string]: unknown;
|
|
994
|
+
};
|
|
995
|
+
};
|
|
996
|
+
};
|
|
766
997
|
};
|
|
767
998
|
editor: {
|
|
768
999
|
locale: string;
|
|
@@ -788,6 +1019,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
788
1019
|
unsubscribe: boolean;
|
|
789
1020
|
modulesDisabled: boolean;
|
|
790
1021
|
liquidSyntax: boolean;
|
|
1022
|
+
autosave: boolean;
|
|
791
1023
|
};
|
|
792
1024
|
blocks: {
|
|
793
1025
|
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")[];
|
|
@@ -866,6 +1098,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
866
1098
|
customFieldAttributes: string[];
|
|
867
1099
|
selectedUnsubscribePages: number[];
|
|
868
1100
|
forceRecreate: boolean;
|
|
1101
|
+
migration: {
|
|
1102
|
+
recommendationConfigs: {
|
|
1103
|
+
[x: string]: {
|
|
1104
|
+
id?: number | undefined;
|
|
1105
|
+
decimalCount?: string | number | undefined;
|
|
1106
|
+
productIds?: unknown[] | undefined;
|
|
1107
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
1108
|
+
shuffleProducts?: boolean | undefined;
|
|
1109
|
+
filters?: unknown[] | undefined;
|
|
1110
|
+
currency?: string | undefined;
|
|
1111
|
+
currencySettings?: unknown;
|
|
1112
|
+
language?: string | undefined;
|
|
1113
|
+
strategy?: string | undefined;
|
|
1114
|
+
recommendedProducts?: unknown[] | undefined;
|
|
1115
|
+
cardsInRow?: number | undefined;
|
|
1116
|
+
mobileRightPadding?: number | undefined;
|
|
1117
|
+
mobileLeftPadding?: number | undefined;
|
|
1118
|
+
unresponsive?: boolean | undefined;
|
|
1119
|
+
orientation?: string | undefined;
|
|
1120
|
+
textTrimming?: boolean | undefined;
|
|
1121
|
+
blockType?: string | undefined;
|
|
1122
|
+
size?: string | number | undefined;
|
|
1123
|
+
verticalResponsiveness?: boolean | undefined;
|
|
1124
|
+
} & {
|
|
1125
|
+
[key: string]: unknown;
|
|
1126
|
+
};
|
|
1127
|
+
};
|
|
1128
|
+
};
|
|
869
1129
|
};
|
|
870
1130
|
editor: {
|
|
871
1131
|
locale: string;
|
|
@@ -891,6 +1151,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
891
1151
|
unsubscribe: boolean;
|
|
892
1152
|
modulesDisabled: boolean;
|
|
893
1153
|
liquidSyntax: boolean;
|
|
1154
|
+
autosave: boolean;
|
|
894
1155
|
};
|
|
895
1156
|
blocks: {
|
|
896
1157
|
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")[];
|
|
@@ -969,6 +1230,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
969
1230
|
customFieldAttributes: string[];
|
|
970
1231
|
selectedUnsubscribePages: number[];
|
|
971
1232
|
forceRecreate: boolean;
|
|
1233
|
+
migration: {
|
|
1234
|
+
recommendationConfigs: {
|
|
1235
|
+
[x: string]: {
|
|
1236
|
+
id?: number | undefined;
|
|
1237
|
+
decimalCount?: string | number | undefined;
|
|
1238
|
+
productIds?: unknown[] | undefined;
|
|
1239
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
1240
|
+
shuffleProducts?: boolean | undefined;
|
|
1241
|
+
filters?: unknown[] | undefined;
|
|
1242
|
+
currency?: string | undefined;
|
|
1243
|
+
currencySettings?: unknown;
|
|
1244
|
+
language?: string | undefined;
|
|
1245
|
+
strategy?: string | undefined;
|
|
1246
|
+
recommendedProducts?: unknown[] | undefined;
|
|
1247
|
+
cardsInRow?: number | undefined;
|
|
1248
|
+
mobileRightPadding?: number | undefined;
|
|
1249
|
+
mobileLeftPadding?: number | undefined;
|
|
1250
|
+
unresponsive?: boolean | undefined;
|
|
1251
|
+
orientation?: string | undefined;
|
|
1252
|
+
textTrimming?: boolean | undefined;
|
|
1253
|
+
blockType?: string | undefined;
|
|
1254
|
+
size?: string | number | undefined;
|
|
1255
|
+
verticalResponsiveness?: boolean | undefined;
|
|
1256
|
+
} & {
|
|
1257
|
+
[key: string]: unknown;
|
|
1258
|
+
};
|
|
1259
|
+
};
|
|
1260
|
+
};
|
|
972
1261
|
};
|
|
973
1262
|
editor: {
|
|
974
1263
|
locale: string;
|
|
@@ -994,6 +1283,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
994
1283
|
unsubscribe: boolean;
|
|
995
1284
|
modulesDisabled: boolean;
|
|
996
1285
|
liquidSyntax: boolean;
|
|
1286
|
+
autosave: boolean;
|
|
997
1287
|
};
|
|
998
1288
|
blocks: {
|
|
999
1289
|
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")[];
|
|
@@ -1072,6 +1362,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1072
1362
|
customFieldAttributes: string[];
|
|
1073
1363
|
selectedUnsubscribePages: number[];
|
|
1074
1364
|
forceRecreate: boolean;
|
|
1365
|
+
migration: {
|
|
1366
|
+
recommendationConfigs: {
|
|
1367
|
+
[x: string]: {
|
|
1368
|
+
id?: number | undefined;
|
|
1369
|
+
decimalCount?: string | number | undefined;
|
|
1370
|
+
productIds?: unknown[] | undefined;
|
|
1371
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
1372
|
+
shuffleProducts?: boolean | undefined;
|
|
1373
|
+
filters?: unknown[] | undefined;
|
|
1374
|
+
currency?: string | undefined;
|
|
1375
|
+
currencySettings?: unknown;
|
|
1376
|
+
language?: string | undefined;
|
|
1377
|
+
strategy?: string | undefined;
|
|
1378
|
+
recommendedProducts?: unknown[] | undefined;
|
|
1379
|
+
cardsInRow?: number | undefined;
|
|
1380
|
+
mobileRightPadding?: number | undefined;
|
|
1381
|
+
mobileLeftPadding?: number | undefined;
|
|
1382
|
+
unresponsive?: boolean | undefined;
|
|
1383
|
+
orientation?: string | undefined;
|
|
1384
|
+
textTrimming?: boolean | undefined;
|
|
1385
|
+
blockType?: string | undefined;
|
|
1386
|
+
size?: string | number | undefined;
|
|
1387
|
+
verticalResponsiveness?: boolean | undefined;
|
|
1388
|
+
} & {
|
|
1389
|
+
[key: string]: unknown;
|
|
1390
|
+
};
|
|
1391
|
+
};
|
|
1392
|
+
};
|
|
1075
1393
|
};
|
|
1076
1394
|
editor: {
|
|
1077
1395
|
locale: string;
|
|
@@ -1097,6 +1415,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1097
1415
|
unsubscribe: boolean;
|
|
1098
1416
|
modulesDisabled: boolean;
|
|
1099
1417
|
liquidSyntax: boolean;
|
|
1418
|
+
autosave: boolean;
|
|
1100
1419
|
};
|
|
1101
1420
|
blocks: {
|
|
1102
1421
|
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")[];
|
|
@@ -1175,6 +1494,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1175
1494
|
customFieldAttributes: string[];
|
|
1176
1495
|
selectedUnsubscribePages: number[];
|
|
1177
1496
|
forceRecreate: boolean;
|
|
1497
|
+
migration: {
|
|
1498
|
+
recommendationConfigs: {
|
|
1499
|
+
[x: string]: {
|
|
1500
|
+
id?: number | undefined;
|
|
1501
|
+
decimalCount?: string | number | undefined;
|
|
1502
|
+
productIds?: unknown[] | undefined;
|
|
1503
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
1504
|
+
shuffleProducts?: boolean | undefined;
|
|
1505
|
+
filters?: unknown[] | undefined;
|
|
1506
|
+
currency?: string | undefined;
|
|
1507
|
+
currencySettings?: unknown;
|
|
1508
|
+
language?: string | undefined;
|
|
1509
|
+
strategy?: string | undefined;
|
|
1510
|
+
recommendedProducts?: unknown[] | undefined;
|
|
1511
|
+
cardsInRow?: number | undefined;
|
|
1512
|
+
mobileRightPadding?: number | undefined;
|
|
1513
|
+
mobileLeftPadding?: number | undefined;
|
|
1514
|
+
unresponsive?: boolean | undefined;
|
|
1515
|
+
orientation?: string | undefined;
|
|
1516
|
+
textTrimming?: boolean | undefined;
|
|
1517
|
+
blockType?: string | undefined;
|
|
1518
|
+
size?: string | number | undefined;
|
|
1519
|
+
verticalResponsiveness?: boolean | undefined;
|
|
1520
|
+
} & {
|
|
1521
|
+
[key: string]: unknown;
|
|
1522
|
+
};
|
|
1523
|
+
};
|
|
1524
|
+
};
|
|
1178
1525
|
};
|
|
1179
1526
|
editor: {
|
|
1180
1527
|
locale: string;
|
|
@@ -1200,6 +1547,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1200
1547
|
unsubscribe: boolean;
|
|
1201
1548
|
modulesDisabled: boolean;
|
|
1202
1549
|
liquidSyntax: boolean;
|
|
1550
|
+
autosave: boolean;
|
|
1203
1551
|
};
|
|
1204
1552
|
blocks: {
|
|
1205
1553
|
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")[];
|
|
@@ -1278,6 +1626,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1278
1626
|
customFieldAttributes: string[];
|
|
1279
1627
|
selectedUnsubscribePages: number[];
|
|
1280
1628
|
forceRecreate: boolean;
|
|
1629
|
+
migration: {
|
|
1630
|
+
recommendationConfigs: {
|
|
1631
|
+
[x: string]: {
|
|
1632
|
+
id?: number | undefined;
|
|
1633
|
+
decimalCount?: string | number | undefined;
|
|
1634
|
+
productIds?: unknown[] | undefined;
|
|
1635
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
1636
|
+
shuffleProducts?: boolean | undefined;
|
|
1637
|
+
filters?: unknown[] | undefined;
|
|
1638
|
+
currency?: string | undefined;
|
|
1639
|
+
currencySettings?: unknown;
|
|
1640
|
+
language?: string | undefined;
|
|
1641
|
+
strategy?: string | undefined;
|
|
1642
|
+
recommendedProducts?: unknown[] | undefined;
|
|
1643
|
+
cardsInRow?: number | undefined;
|
|
1644
|
+
mobileRightPadding?: number | undefined;
|
|
1645
|
+
mobileLeftPadding?: number | undefined;
|
|
1646
|
+
unresponsive?: boolean | undefined;
|
|
1647
|
+
orientation?: string | undefined;
|
|
1648
|
+
textTrimming?: boolean | undefined;
|
|
1649
|
+
blockType?: string | undefined;
|
|
1650
|
+
size?: string | number | undefined;
|
|
1651
|
+
verticalResponsiveness?: boolean | undefined;
|
|
1652
|
+
} & {
|
|
1653
|
+
[key: string]: unknown;
|
|
1654
|
+
};
|
|
1655
|
+
};
|
|
1656
|
+
};
|
|
1281
1657
|
};
|
|
1282
1658
|
editor: {
|
|
1283
1659
|
locale: string;
|
|
@@ -1303,6 +1679,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1303
1679
|
unsubscribe: boolean;
|
|
1304
1680
|
modulesDisabled: boolean;
|
|
1305
1681
|
liquidSyntax: boolean;
|
|
1682
|
+
autosave: boolean;
|
|
1306
1683
|
};
|
|
1307
1684
|
blocks: {
|
|
1308
1685
|
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")[];
|
|
@@ -1381,6 +1758,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1381
1758
|
customFieldAttributes: string[];
|
|
1382
1759
|
selectedUnsubscribePages: number[];
|
|
1383
1760
|
forceRecreate: boolean;
|
|
1761
|
+
migration: {
|
|
1762
|
+
recommendationConfigs: {
|
|
1763
|
+
[x: string]: {
|
|
1764
|
+
id?: number | undefined;
|
|
1765
|
+
decimalCount?: string | number | undefined;
|
|
1766
|
+
productIds?: unknown[] | undefined;
|
|
1767
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
1768
|
+
shuffleProducts?: boolean | undefined;
|
|
1769
|
+
filters?: unknown[] | undefined;
|
|
1770
|
+
currency?: string | undefined;
|
|
1771
|
+
currencySettings?: unknown;
|
|
1772
|
+
language?: string | undefined;
|
|
1773
|
+
strategy?: string | undefined;
|
|
1774
|
+
recommendedProducts?: unknown[] | undefined;
|
|
1775
|
+
cardsInRow?: number | undefined;
|
|
1776
|
+
mobileRightPadding?: number | undefined;
|
|
1777
|
+
mobileLeftPadding?: number | undefined;
|
|
1778
|
+
unresponsive?: boolean | undefined;
|
|
1779
|
+
orientation?: string | undefined;
|
|
1780
|
+
textTrimming?: boolean | undefined;
|
|
1781
|
+
blockType?: string | undefined;
|
|
1782
|
+
size?: string | number | undefined;
|
|
1783
|
+
verticalResponsiveness?: boolean | undefined;
|
|
1784
|
+
} & {
|
|
1785
|
+
[key: string]: unknown;
|
|
1786
|
+
};
|
|
1787
|
+
};
|
|
1788
|
+
};
|
|
1384
1789
|
};
|
|
1385
1790
|
editor: {
|
|
1386
1791
|
locale: string;
|
|
@@ -1406,6 +1811,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1406
1811
|
unsubscribe: boolean;
|
|
1407
1812
|
modulesDisabled: boolean;
|
|
1408
1813
|
liquidSyntax: boolean;
|
|
1814
|
+
autosave: boolean;
|
|
1409
1815
|
};
|
|
1410
1816
|
blocks: {
|
|
1411
1817
|
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")[];
|
|
@@ -1484,6 +1890,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1484
1890
|
customFieldAttributes: string[];
|
|
1485
1891
|
selectedUnsubscribePages: number[];
|
|
1486
1892
|
forceRecreate: boolean;
|
|
1893
|
+
migration: {
|
|
1894
|
+
recommendationConfigs: {
|
|
1895
|
+
[x: string]: {
|
|
1896
|
+
id?: number | undefined;
|
|
1897
|
+
decimalCount?: string | number | undefined;
|
|
1898
|
+
productIds?: unknown[] | undefined;
|
|
1899
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
1900
|
+
shuffleProducts?: boolean | undefined;
|
|
1901
|
+
filters?: unknown[] | undefined;
|
|
1902
|
+
currency?: string | undefined;
|
|
1903
|
+
currencySettings?: unknown;
|
|
1904
|
+
language?: string | undefined;
|
|
1905
|
+
strategy?: string | undefined;
|
|
1906
|
+
recommendedProducts?: unknown[] | undefined;
|
|
1907
|
+
cardsInRow?: number | undefined;
|
|
1908
|
+
mobileRightPadding?: number | undefined;
|
|
1909
|
+
mobileLeftPadding?: number | undefined;
|
|
1910
|
+
unresponsive?: boolean | undefined;
|
|
1911
|
+
orientation?: string | undefined;
|
|
1912
|
+
textTrimming?: boolean | undefined;
|
|
1913
|
+
blockType?: string | undefined;
|
|
1914
|
+
size?: string | number | undefined;
|
|
1915
|
+
verticalResponsiveness?: boolean | undefined;
|
|
1916
|
+
} & {
|
|
1917
|
+
[key: string]: unknown;
|
|
1918
|
+
};
|
|
1919
|
+
};
|
|
1920
|
+
};
|
|
1487
1921
|
};
|
|
1488
1922
|
editor: {
|
|
1489
1923
|
locale: string;
|
|
@@ -1509,6 +1943,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1509
1943
|
unsubscribe: boolean;
|
|
1510
1944
|
modulesDisabled: boolean;
|
|
1511
1945
|
liquidSyntax: boolean;
|
|
1946
|
+
autosave: boolean;
|
|
1512
1947
|
};
|
|
1513
1948
|
blocks: {
|
|
1514
1949
|
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")[];
|
|
@@ -1587,6 +2022,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1587
2022
|
customFieldAttributes: string[];
|
|
1588
2023
|
selectedUnsubscribePages: number[];
|
|
1589
2024
|
forceRecreate: boolean;
|
|
2025
|
+
migration: {
|
|
2026
|
+
recommendationConfigs: {
|
|
2027
|
+
[x: string]: {
|
|
2028
|
+
id?: number | undefined;
|
|
2029
|
+
decimalCount?: string | number | undefined;
|
|
2030
|
+
productIds?: unknown[] | undefined;
|
|
2031
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
2032
|
+
shuffleProducts?: boolean | undefined;
|
|
2033
|
+
filters?: unknown[] | undefined;
|
|
2034
|
+
currency?: string | undefined;
|
|
2035
|
+
currencySettings?: unknown;
|
|
2036
|
+
language?: string | undefined;
|
|
2037
|
+
strategy?: string | undefined;
|
|
2038
|
+
recommendedProducts?: unknown[] | undefined;
|
|
2039
|
+
cardsInRow?: number | undefined;
|
|
2040
|
+
mobileRightPadding?: number | undefined;
|
|
2041
|
+
mobileLeftPadding?: number | undefined;
|
|
2042
|
+
unresponsive?: boolean | undefined;
|
|
2043
|
+
orientation?: string | undefined;
|
|
2044
|
+
textTrimming?: boolean | undefined;
|
|
2045
|
+
blockType?: string | undefined;
|
|
2046
|
+
size?: string | number | undefined;
|
|
2047
|
+
verticalResponsiveness?: boolean | undefined;
|
|
2048
|
+
} & {
|
|
2049
|
+
[key: string]: unknown;
|
|
2050
|
+
};
|
|
2051
|
+
};
|
|
2052
|
+
};
|
|
1590
2053
|
};
|
|
1591
2054
|
editor: {
|
|
1592
2055
|
locale: string;
|
|
@@ -1612,6 +2075,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1612
2075
|
unsubscribe: boolean;
|
|
1613
2076
|
modulesDisabled: boolean;
|
|
1614
2077
|
liquidSyntax: boolean;
|
|
2078
|
+
autosave: boolean;
|
|
1615
2079
|
};
|
|
1616
2080
|
blocks: {
|
|
1617
2081
|
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")[];
|
|
@@ -1690,6 +2154,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1690
2154
|
customFieldAttributes: string[];
|
|
1691
2155
|
selectedUnsubscribePages: number[];
|
|
1692
2156
|
forceRecreate: boolean;
|
|
2157
|
+
migration: {
|
|
2158
|
+
recommendationConfigs: {
|
|
2159
|
+
[x: string]: {
|
|
2160
|
+
id?: number | undefined;
|
|
2161
|
+
decimalCount?: string | number | undefined;
|
|
2162
|
+
productIds?: unknown[] | undefined;
|
|
2163
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
2164
|
+
shuffleProducts?: boolean | undefined;
|
|
2165
|
+
filters?: unknown[] | undefined;
|
|
2166
|
+
currency?: string | undefined;
|
|
2167
|
+
currencySettings?: unknown;
|
|
2168
|
+
language?: string | undefined;
|
|
2169
|
+
strategy?: string | undefined;
|
|
2170
|
+
recommendedProducts?: unknown[] | undefined;
|
|
2171
|
+
cardsInRow?: number | undefined;
|
|
2172
|
+
mobileRightPadding?: number | undefined;
|
|
2173
|
+
mobileLeftPadding?: number | undefined;
|
|
2174
|
+
unresponsive?: boolean | undefined;
|
|
2175
|
+
orientation?: string | undefined;
|
|
2176
|
+
textTrimming?: boolean | undefined;
|
|
2177
|
+
blockType?: string | undefined;
|
|
2178
|
+
size?: string | number | undefined;
|
|
2179
|
+
verticalResponsiveness?: boolean | undefined;
|
|
2180
|
+
} & {
|
|
2181
|
+
[key: string]: unknown;
|
|
2182
|
+
};
|
|
2183
|
+
};
|
|
2184
|
+
};
|
|
1693
2185
|
};
|
|
1694
2186
|
editor: {
|
|
1695
2187
|
locale: string;
|
|
@@ -1715,6 +2207,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1715
2207
|
unsubscribe: boolean;
|
|
1716
2208
|
modulesDisabled: boolean;
|
|
1717
2209
|
liquidSyntax: boolean;
|
|
2210
|
+
autosave: boolean;
|
|
1718
2211
|
};
|
|
1719
2212
|
blocks: {
|
|
1720
2213
|
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")[];
|
|
@@ -1793,6 +2286,34 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1793
2286
|
customFieldAttributes: string[];
|
|
1794
2287
|
selectedUnsubscribePages: number[];
|
|
1795
2288
|
forceRecreate: boolean;
|
|
2289
|
+
migration: {
|
|
2290
|
+
recommendationConfigs: {
|
|
2291
|
+
[x: string]: {
|
|
2292
|
+
id?: number | undefined;
|
|
2293
|
+
decimalCount?: string | number | undefined;
|
|
2294
|
+
productIds?: unknown[] | undefined;
|
|
2295
|
+
sendProductRequestFlag?: boolean | undefined;
|
|
2296
|
+
shuffleProducts?: boolean | undefined;
|
|
2297
|
+
filters?: unknown[] | undefined;
|
|
2298
|
+
currency?: string | undefined;
|
|
2299
|
+
currencySettings?: unknown;
|
|
2300
|
+
language?: string | undefined;
|
|
2301
|
+
strategy?: string | undefined;
|
|
2302
|
+
recommendedProducts?: unknown[] | undefined;
|
|
2303
|
+
cardsInRow?: number | undefined;
|
|
2304
|
+
mobileRightPadding?: number | undefined;
|
|
2305
|
+
mobileLeftPadding?: number | undefined;
|
|
2306
|
+
unresponsive?: boolean | undefined;
|
|
2307
|
+
orientation?: string | undefined;
|
|
2308
|
+
textTrimming?: boolean | undefined;
|
|
2309
|
+
blockType?: string | undefined;
|
|
2310
|
+
size?: string | number | undefined;
|
|
2311
|
+
verticalResponsiveness?: boolean | undefined;
|
|
2312
|
+
} & {
|
|
2313
|
+
[key: string]: unknown;
|
|
2314
|
+
};
|
|
2315
|
+
};
|
|
2316
|
+
};
|
|
1796
2317
|
};
|
|
1797
2318
|
editor: {
|
|
1798
2319
|
locale: string;
|
|
@@ -1818,6 +2339,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1818
2339
|
unsubscribe: boolean;
|
|
1819
2340
|
modulesDisabled: boolean;
|
|
1820
2341
|
liquidSyntax: boolean;
|
|
2342
|
+
autosave: boolean;
|
|
1821
2343
|
};
|
|
1822
2344
|
blocks: {
|
|
1823
2345
|
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")[];
|