@useinsider/guido 3.1.1 → 3.2.0-beta.080341b
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 -0
- package/dist/@types/config/schemas.js +166 -96
- package/dist/components/Guido.vue.js +4 -4
- package/dist/components/Guido.vue2.js +92 -80
- package/dist/components/organisms/AutoSaveController.vue.js +17 -0
- package/dist/components/organisms/AutoSaveController.vue2.js +13 -0
- package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue.js +7 -7
- package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue2.js +12 -20
- 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/EditorActions.vue.js +2 -2
- package/dist/components/organisms/header/EditorActions.vue2.js +51 -36
- package/dist/components/organisms/header/RightSlot.vue.js +11 -11
- package/dist/components/organisms/header/RightSlot.vue2.js +17 -13
- 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/components/organisms/save-as-template/SaveAsTemplateDrawer.vue2.js +18 -17
- package/dist/composables/useActionsApi.js +4 -4
- package/dist/composables/useAutoSave.js +71 -0
- package/dist/composables/useFullStoryBridge.js +14 -0
- package/dist/composables/useHtmlCompiler.js +23 -21
- package/dist/composables/useHtmlValidator.js +40 -38
- package/dist/composables/usePreviewMode.js +20 -16
- package/dist/composables/useRecommendation.js +46 -26
- package/dist/composables/useRibbonOffset.js +21 -0
- package/dist/composables/useSave.js +26 -15
- package/dist/composables/useStripo.js +48 -45
- package/dist/composables/validators/useCouponBlockValidator.js +24 -0
- package/dist/composables/validators/useLiquidValidator.js +42 -0
- package/dist/config/compiler/liquidCompilerRules.js +15 -0
- package/dist/config/compiler/recommendationCompilerRules.js +162 -43
- package/dist/config/compiler/unsubscribeCompilerRules.js +48 -45
- package/dist/config/compiler/utils/recommendationCompilerUtils.js +110 -71
- package/dist/config/i18n/en/tooltips.json.js +2 -1
- package/dist/config/migrator/checkboxMigrator.js +5 -3
- package/dist/config/migrator/index.js +9 -9
- package/dist/config/migrator/radioButtonMigrator.js +66 -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 +16 -12
- package/dist/enums/onboarding.js +7 -2
- package/dist/enums/recommendation.js +2 -2
- package/dist/enums/unsubscribe.js +34 -27
- package/dist/extensions/Blocks/CouponBlock/template.js +24 -13
- 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 +60 -50
- 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/constants/selectors.js +27 -11
- package/dist/extensions/Blocks/Recommendation/controls/cardComposition/index.js +185 -172
- 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 +211 -162
- 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/controls/spacing/index.js +75 -73
- package/dist/extensions/Blocks/Recommendation/services/configService.js +76 -33
- 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 +24 -13
- package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +30 -29
- package/dist/extensions/Blocks/Recommendation/templates/index.js +7 -7
- package/dist/extensions/Blocks/Recommendation/templates/list/elementRenderer.js +27 -15
- package/dist/extensions/Blocks/Recommendation/templates/list/template.js +21 -21
- package/dist/extensions/Blocks/Recommendation/templates/utils.js +57 -50
- 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/Recommendation/utils/tagName.js +6 -6
- package/dist/extensions/Blocks/Unsubscribe/block.js +11 -11
- package/dist/extensions/Blocks/Unsubscribe/settingsPanel.js +16 -17
- package/dist/extensions/DynamicContent/dynamic-content.js +17 -12
- 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/recommendationApi.js +15 -15
- package/dist/services/stripoApi.js +9 -9
- package/dist/services/templateLibraryApi.js +49 -46
- 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 +245 -0
- package/dist/src/@types/config/types.d.ts +11 -1
- package/dist/src/@types/generic.d.ts +0 -1
- package/dist/src/@types/save-as-template.d.ts +1 -0
- 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 +70 -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/composables/validators/useLiquidValidator.d.ts +3 -0
- package/dist/src/config/compiler/liquidCompilerRules.d.ts +2 -0
- package/dist/src/config/compiler/utils/recommendationCompilerUtils.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/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/extensions/recommendationBlock.d.ts +3 -0
- package/dist/src/enums/onboarding.d.ts +6 -0
- package/dist/src/enums/unsubscribe.d.ts +5 -0
- package/dist/src/extensions/Blocks/CouponBlock/template.d.ts +2 -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/constants/index.d.ts +1 -1
- package/dist/src/extensions/Blocks/Recommendation/constants/selectors.d.ts +5 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/cardComposition/index.d.ts +5 -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 +21 -3
- 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/templates/grid/template.d.ts +4 -4
- package/dist/src/extensions/Blocks/Recommendation/templates/list/template.d.ts +3 -3
- package/dist/src/extensions/Blocks/Recommendation/templates/utils.d.ts +20 -3
- 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/services/templateLibraryApi.d.ts +1 -1
- package/dist/src/stores/autosave.d.ts +12 -0
- package/dist/src/stores/config.d.ts +630 -0
- package/dist/src/stores/editor.d.ts +23 -0
- package/dist/src/stores/onboarding.d.ts +4 -0
- package/dist/src/stores/preview.d.ts +3 -0
- package/dist/src/utils/genericUtil.d.ts +1 -1
- package/dist/src/utils/htmlCompiler.d.ts +2 -1
- 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/base.css.js +7 -2
- 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/stores/preview.js +4 -3
- package/dist/utils/genericUtil.js +42 -20
- package/dist/utils/htmlCompiler.js +48 -41
- package/dist/utils/htmlEscape.js +13 -0
- package/dist/utils/pairProductVariables.js +89 -88
- package/dist/utils/templatePreparation.js +75 -24
- package/dist/utils/timeUtil.js +19 -0
- package/dist/utils/tooltipUtils.js +4 -5
- package/package.json +8 -4
- 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
|
@@ -22,6 +22,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
22
22
|
productType: 60 | 49 | 97;
|
|
23
23
|
messageType: 1 | 2;
|
|
24
24
|
username: string;
|
|
25
|
+
fallbackFont?: {
|
|
26
|
+
name: string;
|
|
27
|
+
family: string;
|
|
28
|
+
} | undefined;
|
|
25
29
|
};
|
|
26
30
|
template: {
|
|
27
31
|
html: string;
|
|
@@ -35,8 +39,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
35
39
|
value: string;
|
|
36
40
|
} | undefined;
|
|
37
41
|
}[];
|
|
42
|
+
customFieldAttributes: string[];
|
|
38
43
|
selectedUnsubscribePages: number[];
|
|
39
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
|
+
};
|
|
40
73
|
};
|
|
41
74
|
editor: {
|
|
42
75
|
locale: string;
|
|
@@ -61,6 +94,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
61
94
|
displayConditions: boolean;
|
|
62
95
|
unsubscribe: boolean;
|
|
63
96
|
modulesDisabled: boolean;
|
|
97
|
+
liquidSyntax: boolean;
|
|
98
|
+
autosave: boolean;
|
|
64
99
|
};
|
|
65
100
|
blocks: {
|
|
66
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")[];
|
|
@@ -119,6 +154,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
119
154
|
productType: 60 | 49 | 97;
|
|
120
155
|
messageType: 1 | 2;
|
|
121
156
|
username: string;
|
|
157
|
+
fallbackFont?: {
|
|
158
|
+
name: string;
|
|
159
|
+
family: string;
|
|
160
|
+
} | undefined;
|
|
122
161
|
};
|
|
123
162
|
template: {
|
|
124
163
|
html: string;
|
|
@@ -132,8 +171,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
132
171
|
value: string;
|
|
133
172
|
} | undefined;
|
|
134
173
|
}[];
|
|
174
|
+
customFieldAttributes: string[];
|
|
135
175
|
selectedUnsubscribePages: number[];
|
|
136
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
|
+
};
|
|
137
205
|
};
|
|
138
206
|
editor: {
|
|
139
207
|
locale: string;
|
|
@@ -158,6 +226,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
158
226
|
displayConditions: boolean;
|
|
159
227
|
unsubscribe: boolean;
|
|
160
228
|
modulesDisabled: boolean;
|
|
229
|
+
liquidSyntax: boolean;
|
|
230
|
+
autosave: boolean;
|
|
161
231
|
};
|
|
162
232
|
blocks: {
|
|
163
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")[];
|
|
@@ -216,6 +286,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
216
286
|
productType: 60 | 49 | 97;
|
|
217
287
|
messageType: 1 | 2;
|
|
218
288
|
username: string;
|
|
289
|
+
fallbackFont?: {
|
|
290
|
+
name: string;
|
|
291
|
+
family: string;
|
|
292
|
+
} | undefined;
|
|
219
293
|
};
|
|
220
294
|
template: {
|
|
221
295
|
html: string;
|
|
@@ -229,8 +303,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
229
303
|
value: string;
|
|
230
304
|
} | undefined;
|
|
231
305
|
}[];
|
|
306
|
+
customFieldAttributes: string[];
|
|
232
307
|
selectedUnsubscribePages: number[];
|
|
233
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
|
+
};
|
|
234
337
|
};
|
|
235
338
|
editor: {
|
|
236
339
|
locale: string;
|
|
@@ -255,6 +358,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
255
358
|
displayConditions: boolean;
|
|
256
359
|
unsubscribe: boolean;
|
|
257
360
|
modulesDisabled: boolean;
|
|
361
|
+
liquidSyntax: boolean;
|
|
362
|
+
autosave: boolean;
|
|
258
363
|
};
|
|
259
364
|
blocks: {
|
|
260
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")[];
|
|
@@ -313,6 +418,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
313
418
|
productType: 60 | 49 | 97;
|
|
314
419
|
messageType: 1 | 2;
|
|
315
420
|
username: string;
|
|
421
|
+
fallbackFont?: {
|
|
422
|
+
name: string;
|
|
423
|
+
family: string;
|
|
424
|
+
} | undefined;
|
|
316
425
|
};
|
|
317
426
|
template: {
|
|
318
427
|
html: string;
|
|
@@ -326,8 +435,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
326
435
|
value: string;
|
|
327
436
|
} | undefined;
|
|
328
437
|
}[];
|
|
438
|
+
customFieldAttributes: string[];
|
|
329
439
|
selectedUnsubscribePages: number[];
|
|
330
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
|
+
};
|
|
331
469
|
};
|
|
332
470
|
editor: {
|
|
333
471
|
locale: string;
|
|
@@ -352,6 +490,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
352
490
|
displayConditions: boolean;
|
|
353
491
|
unsubscribe: boolean;
|
|
354
492
|
modulesDisabled: boolean;
|
|
493
|
+
liquidSyntax: boolean;
|
|
494
|
+
autosave: boolean;
|
|
355
495
|
};
|
|
356
496
|
blocks: {
|
|
357
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")[];
|
|
@@ -410,6 +550,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
410
550
|
productType: 60 | 49 | 97;
|
|
411
551
|
messageType: 1 | 2;
|
|
412
552
|
username: string;
|
|
553
|
+
fallbackFont?: {
|
|
554
|
+
name: string;
|
|
555
|
+
family: string;
|
|
556
|
+
} | undefined;
|
|
413
557
|
};
|
|
414
558
|
template: {
|
|
415
559
|
html: string;
|
|
@@ -423,8 +567,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
423
567
|
value: string;
|
|
424
568
|
} | undefined;
|
|
425
569
|
}[];
|
|
570
|
+
customFieldAttributes: string[];
|
|
426
571
|
selectedUnsubscribePages: number[];
|
|
427
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
|
+
};
|
|
428
601
|
};
|
|
429
602
|
editor: {
|
|
430
603
|
locale: string;
|
|
@@ -449,6 +622,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
449
622
|
displayConditions: boolean;
|
|
450
623
|
unsubscribe: boolean;
|
|
451
624
|
modulesDisabled: boolean;
|
|
625
|
+
liquidSyntax: boolean;
|
|
626
|
+
autosave: boolean;
|
|
452
627
|
};
|
|
453
628
|
blocks: {
|
|
454
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")[];
|
|
@@ -507,6 +682,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
507
682
|
productType: 60 | 49 | 97;
|
|
508
683
|
messageType: 1 | 2;
|
|
509
684
|
username: string;
|
|
685
|
+
fallbackFont?: {
|
|
686
|
+
name: string;
|
|
687
|
+
family: string;
|
|
688
|
+
} | undefined;
|
|
510
689
|
};
|
|
511
690
|
template: {
|
|
512
691
|
html: string;
|
|
@@ -520,8 +699,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
520
699
|
value: string;
|
|
521
700
|
} | undefined;
|
|
522
701
|
}[];
|
|
702
|
+
customFieldAttributes: string[];
|
|
523
703
|
selectedUnsubscribePages: number[];
|
|
524
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
|
+
};
|
|
525
733
|
};
|
|
526
734
|
editor: {
|
|
527
735
|
locale: string;
|
|
@@ -546,6 +754,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
546
754
|
displayConditions: boolean;
|
|
547
755
|
unsubscribe: boolean;
|
|
548
756
|
modulesDisabled: boolean;
|
|
757
|
+
liquidSyntax: boolean;
|
|
758
|
+
autosave: boolean;
|
|
549
759
|
};
|
|
550
760
|
blocks: {
|
|
551
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")[];
|
|
@@ -604,6 +814,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
604
814
|
productType: 60 | 49 | 97;
|
|
605
815
|
messageType: 1 | 2;
|
|
606
816
|
username: string;
|
|
817
|
+
fallbackFont?: {
|
|
818
|
+
name: string;
|
|
819
|
+
family: string;
|
|
820
|
+
} | undefined;
|
|
607
821
|
};
|
|
608
822
|
template: {
|
|
609
823
|
html: string;
|
|
@@ -617,8 +831,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
617
831
|
value: string;
|
|
618
832
|
} | undefined;
|
|
619
833
|
}[];
|
|
834
|
+
customFieldAttributes: string[];
|
|
620
835
|
selectedUnsubscribePages: number[];
|
|
621
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
|
+
};
|
|
622
865
|
};
|
|
623
866
|
editor: {
|
|
624
867
|
locale: string;
|
|
@@ -643,6 +886,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
643
886
|
displayConditions: boolean;
|
|
644
887
|
unsubscribe: boolean;
|
|
645
888
|
modulesDisabled: boolean;
|
|
889
|
+
liquidSyntax: boolean;
|
|
890
|
+
autosave: boolean;
|
|
646
891
|
};
|
|
647
892
|
blocks: {
|
|
648
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")[];
|
|
@@ -701,6 +946,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
701
946
|
productType: 60 | 49 | 97;
|
|
702
947
|
messageType: 1 | 2;
|
|
703
948
|
username: string;
|
|
949
|
+
fallbackFont?: {
|
|
950
|
+
name: string;
|
|
951
|
+
family: string;
|
|
952
|
+
} | undefined;
|
|
704
953
|
};
|
|
705
954
|
template: {
|
|
706
955
|
html: string;
|
|
@@ -714,8 +963,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
714
963
|
value: string;
|
|
715
964
|
} | undefined;
|
|
716
965
|
}[];
|
|
966
|
+
customFieldAttributes: string[];
|
|
717
967
|
selectedUnsubscribePages: number[];
|
|
718
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
|
+
};
|
|
719
997
|
};
|
|
720
998
|
editor: {
|
|
721
999
|
locale: string;
|
|
@@ -740,6 +1018,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
740
1018
|
displayConditions: boolean;
|
|
741
1019
|
unsubscribe: boolean;
|
|
742
1020
|
modulesDisabled: boolean;
|
|
1021
|
+
liquidSyntax: boolean;
|
|
1022
|
+
autosave: boolean;
|
|
743
1023
|
};
|
|
744
1024
|
blocks: {
|
|
745
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")[];
|
|
@@ -798,6 +1078,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
798
1078
|
productType: 60 | 49 | 97;
|
|
799
1079
|
messageType: 1 | 2;
|
|
800
1080
|
username: string;
|
|
1081
|
+
fallbackFont?: {
|
|
1082
|
+
name: string;
|
|
1083
|
+
family: string;
|
|
1084
|
+
} | undefined;
|
|
801
1085
|
};
|
|
802
1086
|
template: {
|
|
803
1087
|
html: string;
|
|
@@ -811,8 +1095,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
811
1095
|
value: string;
|
|
812
1096
|
} | undefined;
|
|
813
1097
|
}[];
|
|
1098
|
+
customFieldAttributes: string[];
|
|
814
1099
|
selectedUnsubscribePages: number[];
|
|
815
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
|
+
};
|
|
816
1129
|
};
|
|
817
1130
|
editor: {
|
|
818
1131
|
locale: string;
|
|
@@ -837,6 +1150,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
837
1150
|
displayConditions: boolean;
|
|
838
1151
|
unsubscribe: boolean;
|
|
839
1152
|
modulesDisabled: boolean;
|
|
1153
|
+
liquidSyntax: boolean;
|
|
1154
|
+
autosave: boolean;
|
|
840
1155
|
};
|
|
841
1156
|
blocks: {
|
|
842
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")[];
|
|
@@ -895,6 +1210,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
895
1210
|
productType: 60 | 49 | 97;
|
|
896
1211
|
messageType: 1 | 2;
|
|
897
1212
|
username: string;
|
|
1213
|
+
fallbackFont?: {
|
|
1214
|
+
name: string;
|
|
1215
|
+
family: string;
|
|
1216
|
+
} | undefined;
|
|
898
1217
|
};
|
|
899
1218
|
template: {
|
|
900
1219
|
html: string;
|
|
@@ -908,8 +1227,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
908
1227
|
value: string;
|
|
909
1228
|
} | undefined;
|
|
910
1229
|
}[];
|
|
1230
|
+
customFieldAttributes: string[];
|
|
911
1231
|
selectedUnsubscribePages: number[];
|
|
912
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
|
+
};
|
|
913
1261
|
};
|
|
914
1262
|
editor: {
|
|
915
1263
|
locale: string;
|
|
@@ -934,6 +1282,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
934
1282
|
displayConditions: boolean;
|
|
935
1283
|
unsubscribe: boolean;
|
|
936
1284
|
modulesDisabled: boolean;
|
|
1285
|
+
liquidSyntax: boolean;
|
|
1286
|
+
autosave: boolean;
|
|
937
1287
|
};
|
|
938
1288
|
blocks: {
|
|
939
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")[];
|
|
@@ -992,6 +1342,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
992
1342
|
productType: 60 | 49 | 97;
|
|
993
1343
|
messageType: 1 | 2;
|
|
994
1344
|
username: string;
|
|
1345
|
+
fallbackFont?: {
|
|
1346
|
+
name: string;
|
|
1347
|
+
family: string;
|
|
1348
|
+
} | undefined;
|
|
995
1349
|
};
|
|
996
1350
|
template: {
|
|
997
1351
|
html: string;
|
|
@@ -1005,8 +1359,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1005
1359
|
value: string;
|
|
1006
1360
|
} | undefined;
|
|
1007
1361
|
}[];
|
|
1362
|
+
customFieldAttributes: string[];
|
|
1008
1363
|
selectedUnsubscribePages: number[];
|
|
1009
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
|
+
};
|
|
1010
1393
|
};
|
|
1011
1394
|
editor: {
|
|
1012
1395
|
locale: string;
|
|
@@ -1031,6 +1414,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1031
1414
|
displayConditions: boolean;
|
|
1032
1415
|
unsubscribe: boolean;
|
|
1033
1416
|
modulesDisabled: boolean;
|
|
1417
|
+
liquidSyntax: boolean;
|
|
1418
|
+
autosave: boolean;
|
|
1034
1419
|
};
|
|
1035
1420
|
blocks: {
|
|
1036
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")[];
|
|
@@ -1089,6 +1474,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1089
1474
|
productType: 60 | 49 | 97;
|
|
1090
1475
|
messageType: 1 | 2;
|
|
1091
1476
|
username: string;
|
|
1477
|
+
fallbackFont?: {
|
|
1478
|
+
name: string;
|
|
1479
|
+
family: string;
|
|
1480
|
+
} | undefined;
|
|
1092
1481
|
};
|
|
1093
1482
|
template: {
|
|
1094
1483
|
html: string;
|
|
@@ -1102,8 +1491,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1102
1491
|
value: string;
|
|
1103
1492
|
} | undefined;
|
|
1104
1493
|
}[];
|
|
1494
|
+
customFieldAttributes: string[];
|
|
1105
1495
|
selectedUnsubscribePages: number[];
|
|
1106
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
|
+
};
|
|
1107
1525
|
};
|
|
1108
1526
|
editor: {
|
|
1109
1527
|
locale: string;
|
|
@@ -1128,6 +1546,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1128
1546
|
displayConditions: boolean;
|
|
1129
1547
|
unsubscribe: boolean;
|
|
1130
1548
|
modulesDisabled: boolean;
|
|
1549
|
+
liquidSyntax: boolean;
|
|
1550
|
+
autosave: boolean;
|
|
1131
1551
|
};
|
|
1132
1552
|
blocks: {
|
|
1133
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")[];
|
|
@@ -1186,6 +1606,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1186
1606
|
productType: 60 | 49 | 97;
|
|
1187
1607
|
messageType: 1 | 2;
|
|
1188
1608
|
username: string;
|
|
1609
|
+
fallbackFont?: {
|
|
1610
|
+
name: string;
|
|
1611
|
+
family: string;
|
|
1612
|
+
} | undefined;
|
|
1189
1613
|
};
|
|
1190
1614
|
template: {
|
|
1191
1615
|
html: string;
|
|
@@ -1199,8 +1623,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1199
1623
|
value: string;
|
|
1200
1624
|
} | undefined;
|
|
1201
1625
|
}[];
|
|
1626
|
+
customFieldAttributes: string[];
|
|
1202
1627
|
selectedUnsubscribePages: number[];
|
|
1203
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
|
+
};
|
|
1204
1657
|
};
|
|
1205
1658
|
editor: {
|
|
1206
1659
|
locale: string;
|
|
@@ -1225,6 +1678,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1225
1678
|
displayConditions: boolean;
|
|
1226
1679
|
unsubscribe: boolean;
|
|
1227
1680
|
modulesDisabled: boolean;
|
|
1681
|
+
liquidSyntax: boolean;
|
|
1682
|
+
autosave: boolean;
|
|
1228
1683
|
};
|
|
1229
1684
|
blocks: {
|
|
1230
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")[];
|
|
@@ -1283,6 +1738,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1283
1738
|
productType: 60 | 49 | 97;
|
|
1284
1739
|
messageType: 1 | 2;
|
|
1285
1740
|
username: string;
|
|
1741
|
+
fallbackFont?: {
|
|
1742
|
+
name: string;
|
|
1743
|
+
family: string;
|
|
1744
|
+
} | undefined;
|
|
1286
1745
|
};
|
|
1287
1746
|
template: {
|
|
1288
1747
|
html: string;
|
|
@@ -1296,8 +1755,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1296
1755
|
value: string;
|
|
1297
1756
|
} | undefined;
|
|
1298
1757
|
}[];
|
|
1758
|
+
customFieldAttributes: string[];
|
|
1299
1759
|
selectedUnsubscribePages: number[];
|
|
1300
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
|
+
};
|
|
1301
1789
|
};
|
|
1302
1790
|
editor: {
|
|
1303
1791
|
locale: string;
|
|
@@ -1322,6 +1810,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1322
1810
|
displayConditions: boolean;
|
|
1323
1811
|
unsubscribe: boolean;
|
|
1324
1812
|
modulesDisabled: boolean;
|
|
1813
|
+
liquidSyntax: boolean;
|
|
1814
|
+
autosave: boolean;
|
|
1325
1815
|
};
|
|
1326
1816
|
blocks: {
|
|
1327
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")[];
|
|
@@ -1380,6 +1870,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1380
1870
|
productType: 60 | 49 | 97;
|
|
1381
1871
|
messageType: 1 | 2;
|
|
1382
1872
|
username: string;
|
|
1873
|
+
fallbackFont?: {
|
|
1874
|
+
name: string;
|
|
1875
|
+
family: string;
|
|
1876
|
+
} | undefined;
|
|
1383
1877
|
};
|
|
1384
1878
|
template: {
|
|
1385
1879
|
html: string;
|
|
@@ -1393,8 +1887,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1393
1887
|
value: string;
|
|
1394
1888
|
} | undefined;
|
|
1395
1889
|
}[];
|
|
1890
|
+
customFieldAttributes: string[];
|
|
1396
1891
|
selectedUnsubscribePages: number[];
|
|
1397
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
|
+
};
|
|
1398
1921
|
};
|
|
1399
1922
|
editor: {
|
|
1400
1923
|
locale: string;
|
|
@@ -1419,6 +1942,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1419
1942
|
displayConditions: boolean;
|
|
1420
1943
|
unsubscribe: boolean;
|
|
1421
1944
|
modulesDisabled: boolean;
|
|
1945
|
+
liquidSyntax: boolean;
|
|
1946
|
+
autosave: boolean;
|
|
1422
1947
|
};
|
|
1423
1948
|
blocks: {
|
|
1424
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")[];
|
|
@@ -1477,6 +2002,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1477
2002
|
productType: 60 | 49 | 97;
|
|
1478
2003
|
messageType: 1 | 2;
|
|
1479
2004
|
username: string;
|
|
2005
|
+
fallbackFont?: {
|
|
2006
|
+
name: string;
|
|
2007
|
+
family: string;
|
|
2008
|
+
} | undefined;
|
|
1480
2009
|
};
|
|
1481
2010
|
template: {
|
|
1482
2011
|
html: string;
|
|
@@ -1490,8 +2019,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1490
2019
|
value: string;
|
|
1491
2020
|
} | undefined;
|
|
1492
2021
|
}[];
|
|
2022
|
+
customFieldAttributes: string[];
|
|
1493
2023
|
selectedUnsubscribePages: number[];
|
|
1494
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
|
+
};
|
|
1495
2053
|
};
|
|
1496
2054
|
editor: {
|
|
1497
2055
|
locale: string;
|
|
@@ -1516,6 +2074,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1516
2074
|
displayConditions: boolean;
|
|
1517
2075
|
unsubscribe: boolean;
|
|
1518
2076
|
modulesDisabled: boolean;
|
|
2077
|
+
liquidSyntax: boolean;
|
|
2078
|
+
autosave: boolean;
|
|
1519
2079
|
};
|
|
1520
2080
|
blocks: {
|
|
1521
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")[];
|
|
@@ -1574,6 +2134,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1574
2134
|
productType: 60 | 49 | 97;
|
|
1575
2135
|
messageType: 1 | 2;
|
|
1576
2136
|
username: string;
|
|
2137
|
+
fallbackFont?: {
|
|
2138
|
+
name: string;
|
|
2139
|
+
family: string;
|
|
2140
|
+
} | undefined;
|
|
1577
2141
|
};
|
|
1578
2142
|
template: {
|
|
1579
2143
|
html: string;
|
|
@@ -1587,8 +2151,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1587
2151
|
value: string;
|
|
1588
2152
|
} | undefined;
|
|
1589
2153
|
}[];
|
|
2154
|
+
customFieldAttributes: string[];
|
|
1590
2155
|
selectedUnsubscribePages: number[];
|
|
1591
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
|
+
};
|
|
1592
2185
|
};
|
|
1593
2186
|
editor: {
|
|
1594
2187
|
locale: string;
|
|
@@ -1613,6 +2206,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1613
2206
|
displayConditions: boolean;
|
|
1614
2207
|
unsubscribe: boolean;
|
|
1615
2208
|
modulesDisabled: boolean;
|
|
2209
|
+
liquidSyntax: boolean;
|
|
2210
|
+
autosave: boolean;
|
|
1616
2211
|
};
|
|
1617
2212
|
blocks: {
|
|
1618
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")[];
|
|
@@ -1671,6 +2266,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1671
2266
|
productType: 60 | 49 | 97;
|
|
1672
2267
|
messageType: 1 | 2;
|
|
1673
2268
|
username: string;
|
|
2269
|
+
fallbackFont?: {
|
|
2270
|
+
name: string;
|
|
2271
|
+
family: string;
|
|
2272
|
+
} | undefined;
|
|
1674
2273
|
};
|
|
1675
2274
|
template: {
|
|
1676
2275
|
html: string;
|
|
@@ -1684,8 +2283,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1684
2283
|
value: string;
|
|
1685
2284
|
} | undefined;
|
|
1686
2285
|
}[];
|
|
2286
|
+
customFieldAttributes: string[];
|
|
1687
2287
|
selectedUnsubscribePages: number[];
|
|
1688
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
|
+
};
|
|
1689
2317
|
};
|
|
1690
2318
|
editor: {
|
|
1691
2319
|
locale: string;
|
|
@@ -1710,6 +2338,8 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
|
|
|
1710
2338
|
displayConditions: boolean;
|
|
1711
2339
|
unsubscribe: boolean;
|
|
1712
2340
|
modulesDisabled: boolean;
|
|
2341
|
+
liquidSyntax: boolean;
|
|
2342
|
+
autosave: boolean;
|
|
1713
2343
|
};
|
|
1714
2344
|
blocks: {
|
|
1715
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")[];
|