@useinsider/guido 3.2.0-beta.e01b42a → 3.2.0-beta.e0e56ef

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.
Files changed (152) hide show
  1. package/README.md +1 -0
  2. package/dist/@types/config/schemas.js +164 -96
  3. package/dist/components/Guido.vue.js +4 -4
  4. package/dist/components/Guido.vue2.js +91 -80
  5. package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue.js +7 -7
  6. package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue2.js +12 -20
  7. package/dist/components/organisms/header/EditorActions.vue.js +2 -2
  8. package/dist/components/organisms/header/EditorActions.vue2.js +51 -36
  9. package/dist/components/organisms/header/RightSlot.vue.js +10 -10
  10. package/dist/components/organisms/header/RightSlot.vue2.js +16 -13
  11. package/dist/components/organisms/onboarding/AMPOnboarding.vue2.js +51 -31
  12. package/dist/components/organisms/onboarding/GenericOnboarding.vue.js +1 -1
  13. package/dist/components/organisms/onboarding/GenericOnboarding.vue2.js +23 -22
  14. package/dist/components/organisms/onboarding/ItemsOnboarding.vue.js +1 -1
  15. package/dist/components/organisms/onboarding/ItemsOnboarding.vue2.js +37 -39
  16. package/dist/components/organisms/onboarding/TextBlockOnboarding.vue.js +3 -3
  17. package/dist/components/organisms/onboarding/TextBlockOnboarding.vue2.js +30 -41
  18. package/dist/components/organisms/onboarding/VersionHistoryOnboarding.vue2.js +15 -14
  19. package/dist/components/organisms/save-as-template/SaveAsTemplateDrawer.vue2.js +18 -17
  20. package/dist/composables/useActionsApi.js +4 -4
  21. package/dist/composables/useFullStoryBridge.js +14 -0
  22. package/dist/composables/useHtmlCompiler.js +23 -21
  23. package/dist/composables/useHtmlValidator.js +40 -38
  24. package/dist/composables/usePreviewMode.js +20 -16
  25. package/dist/composables/useRibbonOffset.js +21 -0
  26. package/dist/composables/useSave.js +23 -15
  27. package/dist/composables/useStripo.js +52 -47
  28. package/dist/composables/validators/useLiquidValidator.js +42 -0
  29. package/dist/config/compiler/liquidCompilerRules.js +15 -0
  30. package/dist/config/compiler/recommendationCompilerRules.js +162 -43
  31. package/dist/config/compiler/unsubscribeCompilerRules.js +48 -45
  32. package/dist/config/compiler/utils/recommendationCompilerUtils.js +52 -46
  33. package/dist/config/migrator/checkboxMigrator.js +5 -3
  34. package/dist/config/migrator/index.js +9 -9
  35. package/dist/config/migrator/radioButtonMigrator.js +14 -12
  36. package/dist/config/migrator/recommendation/compositionMapper.js +98 -0
  37. package/dist/config/migrator/recommendation/extractors.js +27 -0
  38. package/dist/config/migrator/recommendation/htmlBuilder.js +496 -0
  39. package/dist/config/migrator/recommendation/parseLegacyConfig.js +33 -0
  40. package/dist/config/migrator/recommendation/settingsMapper.js +78 -0
  41. package/dist/config/migrator/recommendation/themeMapper.js +93 -0
  42. package/dist/config/migrator/recommendationMigrator.js +74 -290
  43. package/dist/enums/extensions/recommendationBlock.js +16 -12
  44. package/dist/enums/onboarding.js +7 -2
  45. package/dist/enums/recommendation.js +2 -2
  46. package/dist/enums/unsubscribe.js +34 -27
  47. package/dist/extensions/Blocks/CouponBlock/template.js +24 -13
  48. package/dist/extensions/Blocks/Items/controls/price/singlePrice.js +38 -38
  49. package/dist/extensions/Blocks/Items/enums/productEnums.js +19 -7
  50. package/dist/extensions/Blocks/Recommendation/block.js +35 -32
  51. package/dist/extensions/Blocks/Recommendation/constants/controlIds.js +1 -1
  52. package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +5 -5
  53. package/dist/extensions/Blocks/Recommendation/constants/selectors.js +27 -11
  54. package/dist/extensions/Blocks/Recommendation/controls/cardComposition/index.js +185 -172
  55. package/dist/extensions/Blocks/Recommendation/controls/customAttribute/index.js +21 -18
  56. package/dist/extensions/Blocks/Recommendation/controls/customAttribute/textTrim.js +99 -0
  57. package/dist/extensions/Blocks/Recommendation/controls/main/algorithm.js +6 -6
  58. package/dist/extensions/Blocks/Recommendation/controls/main/index.js +3 -1
  59. package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +211 -162
  60. package/dist/extensions/Blocks/Recommendation/controls/name/textTrim.js +27 -57
  61. package/dist/extensions/Blocks/Recommendation/controls/shared/textTrimCssRules.js +14 -0
  62. package/dist/extensions/Blocks/Recommendation/controls/spacing/index.js +31 -31
  63. package/dist/extensions/Blocks/Recommendation/services/configService.js +65 -29
  64. package/dist/extensions/Blocks/Recommendation/settingsPanel.js +18 -17
  65. package/dist/extensions/Blocks/Recommendation/store/recommendation.js +29 -25
  66. package/dist/extensions/Blocks/Recommendation/templates/grid/elementRenderer.js +7 -5
  67. package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +30 -29
  68. package/dist/extensions/Blocks/Recommendation/templates/index.js +7 -7
  69. package/dist/extensions/Blocks/Recommendation/templates/list/elementRenderer.js +3 -1
  70. package/dist/extensions/Blocks/Recommendation/templates/list/template.js +21 -21
  71. package/dist/extensions/Blocks/Recommendation/templates/utils.js +57 -50
  72. package/dist/extensions/Blocks/Recommendation/utils/filterUtil.js +17 -14
  73. package/dist/extensions/Blocks/Recommendation/utils/preserveTextStyles.js +13 -22
  74. package/dist/extensions/Blocks/Unsubscribe/block.js +11 -11
  75. package/dist/extensions/DynamicContent/dynamic-content.js +17 -12
  76. package/dist/guido.css +1 -1
  77. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +258 -235
  78. package/dist/node_modules/valibot/dist/index.js +450 -235
  79. package/dist/package.json.js +1 -1
  80. package/dist/services/recommendationApi.js +15 -15
  81. package/dist/services/stripoApi.js +9 -9
  82. package/dist/services/templateLibraryApi.js +48 -46
  83. package/dist/src/@types/config/defaults.d.ts +5 -1
  84. package/dist/src/@types/config/index.d.ts +3 -3
  85. package/dist/src/@types/config/schemas.d.ts +241 -0
  86. package/dist/src/@types/config/types.d.ts +11 -1
  87. package/dist/src/@types/generic.d.ts +0 -1
  88. package/dist/src/@types/save-as-template.d.ts +1 -0
  89. package/dist/src/components/wrappers/WpModal.vue.d.ts +1 -1
  90. package/dist/src/composables/useActionsApi.d.ts +1 -1
  91. package/dist/src/composables/useConfig.d.ts +68 -0
  92. package/dist/src/composables/useFullStoryBridge.d.ts +11 -0
  93. package/dist/src/composables/useRibbonOffset.d.ts +4 -0
  94. package/dist/src/composables/validators/useLiquidValidator.d.ts +3 -0
  95. package/dist/src/config/compiler/liquidCompilerRules.d.ts +2 -0
  96. package/dist/src/config/compiler/utils/recommendationCompilerUtils.d.ts +1 -1
  97. package/dist/src/config/migrator/index.d.ts +2 -1
  98. package/dist/src/config/migrator/recommendation/compositionMapper.d.ts +2 -0
  99. package/dist/src/config/migrator/recommendation/compositionMapper.test.d.ts +1 -0
  100. package/dist/src/config/migrator/recommendation/extractors.d.ts +7 -0
  101. package/dist/src/config/migrator/recommendation/extractors.test.d.ts +1 -0
  102. package/dist/src/config/migrator/recommendation/htmlBuilder.d.ts +11 -0
  103. package/dist/src/config/migrator/recommendation/parseLegacyConfig.d.ts +15 -0
  104. package/dist/src/config/migrator/recommendation/parseLegacyConfig.test.d.ts +1 -0
  105. package/dist/src/config/migrator/recommendation/settingsMapper.d.ts +7 -0
  106. package/dist/src/config/migrator/recommendation/settingsMapper.test.d.ts +1 -0
  107. package/dist/src/config/migrator/recommendation/themeMapper.d.ts +5 -0
  108. package/dist/src/config/migrator/recommendation/themeMapper.test.d.ts +1 -0
  109. package/dist/src/config/migrator/recommendation/types.d.ts +205 -0
  110. package/dist/src/config/migrator/recommendationMigrator.d.ts +13 -1
  111. package/dist/src/config/migrator/recommendationMigrator.test.d.ts +1 -0
  112. package/dist/src/enums/extensions/recommendationBlock.d.ts +3 -0
  113. package/dist/src/enums/onboarding.d.ts +6 -0
  114. package/dist/src/enums/unsubscribe.d.ts +5 -0
  115. package/dist/src/extensions/Blocks/CouponBlock/template.d.ts +2 -0
  116. package/dist/src/extensions/Blocks/Recommendation/constants/controlIds.d.ts +1 -0
  117. package/dist/src/extensions/Blocks/Recommendation/constants/index.d.ts +1 -1
  118. package/dist/src/extensions/Blocks/Recommendation/constants/selectors.d.ts +5 -0
  119. package/dist/src/extensions/Blocks/Recommendation/controls/cardComposition/index.d.ts +5 -0
  120. package/dist/src/extensions/Blocks/Recommendation/controls/customAttribute/index.d.ts +3 -0
  121. package/dist/src/extensions/Blocks/Recommendation/controls/customAttribute/textTrim.d.ts +35 -0
  122. package/dist/src/extensions/Blocks/Recommendation/controls/main/utils.test.d.ts +1 -0
  123. package/dist/src/extensions/Blocks/Recommendation/controls/name/textTrim.d.ts +3 -20
  124. package/dist/src/extensions/Blocks/Recommendation/controls/shared/textTrimCssRules.d.ts +29 -0
  125. package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +10 -0
  126. package/dist/src/extensions/Blocks/Recommendation/services/configService.test.d.ts +1 -0
  127. package/dist/src/extensions/Blocks/Recommendation/templates/grid/template.d.ts +4 -4
  128. package/dist/src/extensions/Blocks/Recommendation/templates/list/template.d.ts +3 -3
  129. package/dist/src/extensions/Blocks/Recommendation/templates/utils.d.ts +20 -3
  130. package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +1 -1
  131. package/dist/src/extensions/Blocks/Recommendation/utils/preserveTextStyles.d.ts +0 -3
  132. package/dist/src/extensions/Blocks/Recommendation/utils/tagName.d.ts +3 -3
  133. package/dist/src/services/templateLibraryApi.d.ts +1 -1
  134. package/dist/src/stores/config.d.ts +612 -0
  135. package/dist/src/stores/onboarding.d.ts +4 -0
  136. package/dist/src/stores/preview.d.ts +3 -0
  137. package/dist/src/utils/genericUtil.d.ts +1 -1
  138. package/dist/src/utils/htmlCompiler.d.ts +2 -1
  139. package/dist/src/utils/htmlEscape.d.ts +5 -0
  140. package/dist/src/utils/htmlEscape.test.d.ts +1 -0
  141. package/dist/static/styles/base.css.js +7 -2
  142. package/dist/static/styles/components/button.css.js +3 -2
  143. package/dist/static/styles/components/loader.css.js +4 -0
  144. package/dist/stores/onboarding.js +4 -0
  145. package/dist/stores/preview.js +4 -3
  146. package/dist/utils/genericUtil.js +42 -20
  147. package/dist/utils/htmlCompiler.js +48 -41
  148. package/dist/utils/htmlEscape.js +13 -0
  149. package/dist/utils/templatePreparation.js +36 -25
  150. package/dist/utils/tooltipUtils.js +4 -5
  151. package/package.json +8 -4
  152. package/dist/extensions/Blocks/Recommendation/templates/grid/migration.js +0 -251
@@ -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,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
61
94
  displayConditions: boolean;
62
95
  unsubscribe: boolean;
63
96
  modulesDisabled: boolean;
97
+ liquidSyntax: boolean;
64
98
  };
65
99
  blocks: {
66
100
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -119,6 +153,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
119
153
  productType: 60 | 49 | 97;
120
154
  messageType: 1 | 2;
121
155
  username: string;
156
+ fallbackFont?: {
157
+ name: string;
158
+ family: string;
159
+ } | undefined;
122
160
  };
123
161
  template: {
124
162
  html: string;
@@ -132,8 +170,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
132
170
  value: string;
133
171
  } | undefined;
134
172
  }[];
173
+ customFieldAttributes: string[];
135
174
  selectedUnsubscribePages: number[];
136
175
  forceRecreate: boolean;
176
+ migration: {
177
+ recommendationConfigs: {
178
+ [x: string]: {
179
+ id?: number | undefined;
180
+ decimalCount?: string | number | undefined;
181
+ productIds?: unknown[] | undefined;
182
+ sendProductRequestFlag?: boolean | undefined;
183
+ shuffleProducts?: boolean | undefined;
184
+ filters?: unknown[] | undefined;
185
+ currency?: string | undefined;
186
+ currencySettings?: unknown;
187
+ language?: string | undefined;
188
+ strategy?: string | undefined;
189
+ recommendedProducts?: unknown[] | undefined;
190
+ cardsInRow?: number | undefined;
191
+ mobileRightPadding?: number | undefined;
192
+ mobileLeftPadding?: number | undefined;
193
+ unresponsive?: boolean | undefined;
194
+ orientation?: string | undefined;
195
+ textTrimming?: boolean | undefined;
196
+ blockType?: string | undefined;
197
+ size?: string | number | undefined;
198
+ verticalResponsiveness?: boolean | undefined;
199
+ } & {
200
+ [key: string]: unknown;
201
+ };
202
+ };
203
+ };
137
204
  };
138
205
  editor: {
139
206
  locale: string;
@@ -158,6 +225,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
158
225
  displayConditions: boolean;
159
226
  unsubscribe: boolean;
160
227
  modulesDisabled: boolean;
228
+ liquidSyntax: boolean;
161
229
  };
162
230
  blocks: {
163
231
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -216,6 +284,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
216
284
  productType: 60 | 49 | 97;
217
285
  messageType: 1 | 2;
218
286
  username: string;
287
+ fallbackFont?: {
288
+ name: string;
289
+ family: string;
290
+ } | undefined;
219
291
  };
220
292
  template: {
221
293
  html: string;
@@ -229,8 +301,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
229
301
  value: string;
230
302
  } | undefined;
231
303
  }[];
304
+ customFieldAttributes: string[];
232
305
  selectedUnsubscribePages: number[];
233
306
  forceRecreate: boolean;
307
+ migration: {
308
+ recommendationConfigs: {
309
+ [x: string]: {
310
+ id?: number | undefined;
311
+ decimalCount?: string | number | undefined;
312
+ productIds?: unknown[] | undefined;
313
+ sendProductRequestFlag?: boolean | undefined;
314
+ shuffleProducts?: boolean | undefined;
315
+ filters?: unknown[] | undefined;
316
+ currency?: string | undefined;
317
+ currencySettings?: unknown;
318
+ language?: string | undefined;
319
+ strategy?: string | undefined;
320
+ recommendedProducts?: unknown[] | undefined;
321
+ cardsInRow?: number | undefined;
322
+ mobileRightPadding?: number | undefined;
323
+ mobileLeftPadding?: number | undefined;
324
+ unresponsive?: boolean | undefined;
325
+ orientation?: string | undefined;
326
+ textTrimming?: boolean | undefined;
327
+ blockType?: string | undefined;
328
+ size?: string | number | undefined;
329
+ verticalResponsiveness?: boolean | undefined;
330
+ } & {
331
+ [key: string]: unknown;
332
+ };
333
+ };
334
+ };
234
335
  };
235
336
  editor: {
236
337
  locale: string;
@@ -255,6 +356,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
255
356
  displayConditions: boolean;
256
357
  unsubscribe: boolean;
257
358
  modulesDisabled: boolean;
359
+ liquidSyntax: boolean;
258
360
  };
259
361
  blocks: {
260
362
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -313,6 +415,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
313
415
  productType: 60 | 49 | 97;
314
416
  messageType: 1 | 2;
315
417
  username: string;
418
+ fallbackFont?: {
419
+ name: string;
420
+ family: string;
421
+ } | undefined;
316
422
  };
317
423
  template: {
318
424
  html: string;
@@ -326,8 +432,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
326
432
  value: string;
327
433
  } | undefined;
328
434
  }[];
435
+ customFieldAttributes: string[];
329
436
  selectedUnsubscribePages: number[];
330
437
  forceRecreate: boolean;
438
+ migration: {
439
+ recommendationConfigs: {
440
+ [x: string]: {
441
+ id?: number | undefined;
442
+ decimalCount?: string | number | undefined;
443
+ productIds?: unknown[] | undefined;
444
+ sendProductRequestFlag?: boolean | undefined;
445
+ shuffleProducts?: boolean | undefined;
446
+ filters?: unknown[] | undefined;
447
+ currency?: string | undefined;
448
+ currencySettings?: unknown;
449
+ language?: string | undefined;
450
+ strategy?: string | undefined;
451
+ recommendedProducts?: unknown[] | undefined;
452
+ cardsInRow?: number | undefined;
453
+ mobileRightPadding?: number | undefined;
454
+ mobileLeftPadding?: number | undefined;
455
+ unresponsive?: boolean | undefined;
456
+ orientation?: string | undefined;
457
+ textTrimming?: boolean | undefined;
458
+ blockType?: string | undefined;
459
+ size?: string | number | undefined;
460
+ verticalResponsiveness?: boolean | undefined;
461
+ } & {
462
+ [key: string]: unknown;
463
+ };
464
+ };
465
+ };
331
466
  };
332
467
  editor: {
333
468
  locale: string;
@@ -352,6 +487,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
352
487
  displayConditions: boolean;
353
488
  unsubscribe: boolean;
354
489
  modulesDisabled: boolean;
490
+ liquidSyntax: boolean;
355
491
  };
356
492
  blocks: {
357
493
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -410,6 +546,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
410
546
  productType: 60 | 49 | 97;
411
547
  messageType: 1 | 2;
412
548
  username: string;
549
+ fallbackFont?: {
550
+ name: string;
551
+ family: string;
552
+ } | undefined;
413
553
  };
414
554
  template: {
415
555
  html: string;
@@ -423,8 +563,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
423
563
  value: string;
424
564
  } | undefined;
425
565
  }[];
566
+ customFieldAttributes: string[];
426
567
  selectedUnsubscribePages: number[];
427
568
  forceRecreate: boolean;
569
+ migration: {
570
+ recommendationConfigs: {
571
+ [x: string]: {
572
+ id?: number | undefined;
573
+ decimalCount?: string | number | undefined;
574
+ productIds?: unknown[] | undefined;
575
+ sendProductRequestFlag?: boolean | undefined;
576
+ shuffleProducts?: boolean | undefined;
577
+ filters?: unknown[] | undefined;
578
+ currency?: string | undefined;
579
+ currencySettings?: unknown;
580
+ language?: string | undefined;
581
+ strategy?: string | undefined;
582
+ recommendedProducts?: unknown[] | undefined;
583
+ cardsInRow?: number | undefined;
584
+ mobileRightPadding?: number | undefined;
585
+ mobileLeftPadding?: number | undefined;
586
+ unresponsive?: boolean | undefined;
587
+ orientation?: string | undefined;
588
+ textTrimming?: boolean | undefined;
589
+ blockType?: string | undefined;
590
+ size?: string | number | undefined;
591
+ verticalResponsiveness?: boolean | undefined;
592
+ } & {
593
+ [key: string]: unknown;
594
+ };
595
+ };
596
+ };
428
597
  };
429
598
  editor: {
430
599
  locale: string;
@@ -449,6 +618,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
449
618
  displayConditions: boolean;
450
619
  unsubscribe: boolean;
451
620
  modulesDisabled: boolean;
621
+ liquidSyntax: boolean;
452
622
  };
453
623
  blocks: {
454
624
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -507,6 +677,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
507
677
  productType: 60 | 49 | 97;
508
678
  messageType: 1 | 2;
509
679
  username: string;
680
+ fallbackFont?: {
681
+ name: string;
682
+ family: string;
683
+ } | undefined;
510
684
  };
511
685
  template: {
512
686
  html: string;
@@ -520,8 +694,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
520
694
  value: string;
521
695
  } | undefined;
522
696
  }[];
697
+ customFieldAttributes: string[];
523
698
  selectedUnsubscribePages: number[];
524
699
  forceRecreate: boolean;
700
+ migration: {
701
+ recommendationConfigs: {
702
+ [x: string]: {
703
+ id?: number | undefined;
704
+ decimalCount?: string | number | undefined;
705
+ productIds?: unknown[] | undefined;
706
+ sendProductRequestFlag?: boolean | undefined;
707
+ shuffleProducts?: boolean | undefined;
708
+ filters?: unknown[] | undefined;
709
+ currency?: string | undefined;
710
+ currencySettings?: unknown;
711
+ language?: string | undefined;
712
+ strategy?: string | undefined;
713
+ recommendedProducts?: unknown[] | undefined;
714
+ cardsInRow?: number | undefined;
715
+ mobileRightPadding?: number | undefined;
716
+ mobileLeftPadding?: number | undefined;
717
+ unresponsive?: boolean | undefined;
718
+ orientation?: string | undefined;
719
+ textTrimming?: boolean | undefined;
720
+ blockType?: string | undefined;
721
+ size?: string | number | undefined;
722
+ verticalResponsiveness?: boolean | undefined;
723
+ } & {
724
+ [key: string]: unknown;
725
+ };
726
+ };
727
+ };
525
728
  };
526
729
  editor: {
527
730
  locale: string;
@@ -546,6 +749,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
546
749
  displayConditions: boolean;
547
750
  unsubscribe: boolean;
548
751
  modulesDisabled: boolean;
752
+ liquidSyntax: boolean;
549
753
  };
550
754
  blocks: {
551
755
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -604,6 +808,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
604
808
  productType: 60 | 49 | 97;
605
809
  messageType: 1 | 2;
606
810
  username: string;
811
+ fallbackFont?: {
812
+ name: string;
813
+ family: string;
814
+ } | undefined;
607
815
  };
608
816
  template: {
609
817
  html: string;
@@ -617,8 +825,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
617
825
  value: string;
618
826
  } | undefined;
619
827
  }[];
828
+ customFieldAttributes: string[];
620
829
  selectedUnsubscribePages: number[];
621
830
  forceRecreate: boolean;
831
+ migration: {
832
+ recommendationConfigs: {
833
+ [x: string]: {
834
+ id?: number | undefined;
835
+ decimalCount?: string | number | undefined;
836
+ productIds?: unknown[] | undefined;
837
+ sendProductRequestFlag?: boolean | undefined;
838
+ shuffleProducts?: boolean | undefined;
839
+ filters?: unknown[] | undefined;
840
+ currency?: string | undefined;
841
+ currencySettings?: unknown;
842
+ language?: string | undefined;
843
+ strategy?: string | undefined;
844
+ recommendedProducts?: unknown[] | undefined;
845
+ cardsInRow?: number | undefined;
846
+ mobileRightPadding?: number | undefined;
847
+ mobileLeftPadding?: number | undefined;
848
+ unresponsive?: boolean | undefined;
849
+ orientation?: string | undefined;
850
+ textTrimming?: boolean | undefined;
851
+ blockType?: string | undefined;
852
+ size?: string | number | undefined;
853
+ verticalResponsiveness?: boolean | undefined;
854
+ } & {
855
+ [key: string]: unknown;
856
+ };
857
+ };
858
+ };
622
859
  };
623
860
  editor: {
624
861
  locale: string;
@@ -643,6 +880,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
643
880
  displayConditions: boolean;
644
881
  unsubscribe: boolean;
645
882
  modulesDisabled: boolean;
883
+ liquidSyntax: boolean;
646
884
  };
647
885
  blocks: {
648
886
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -701,6 +939,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
701
939
  productType: 60 | 49 | 97;
702
940
  messageType: 1 | 2;
703
941
  username: string;
942
+ fallbackFont?: {
943
+ name: string;
944
+ family: string;
945
+ } | undefined;
704
946
  };
705
947
  template: {
706
948
  html: string;
@@ -714,8 +956,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
714
956
  value: string;
715
957
  } | undefined;
716
958
  }[];
959
+ customFieldAttributes: string[];
717
960
  selectedUnsubscribePages: number[];
718
961
  forceRecreate: boolean;
962
+ migration: {
963
+ recommendationConfigs: {
964
+ [x: string]: {
965
+ id?: number | undefined;
966
+ decimalCount?: string | number | undefined;
967
+ productIds?: unknown[] | undefined;
968
+ sendProductRequestFlag?: boolean | undefined;
969
+ shuffleProducts?: boolean | undefined;
970
+ filters?: unknown[] | undefined;
971
+ currency?: string | undefined;
972
+ currencySettings?: unknown;
973
+ language?: string | undefined;
974
+ strategy?: string | undefined;
975
+ recommendedProducts?: unknown[] | undefined;
976
+ cardsInRow?: number | undefined;
977
+ mobileRightPadding?: number | undefined;
978
+ mobileLeftPadding?: number | undefined;
979
+ unresponsive?: boolean | undefined;
980
+ orientation?: string | undefined;
981
+ textTrimming?: boolean | undefined;
982
+ blockType?: string | undefined;
983
+ size?: string | number | undefined;
984
+ verticalResponsiveness?: boolean | undefined;
985
+ } & {
986
+ [key: string]: unknown;
987
+ };
988
+ };
989
+ };
719
990
  };
720
991
  editor: {
721
992
  locale: string;
@@ -740,6 +1011,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
740
1011
  displayConditions: boolean;
741
1012
  unsubscribe: boolean;
742
1013
  modulesDisabled: boolean;
1014
+ liquidSyntax: boolean;
743
1015
  };
744
1016
  blocks: {
745
1017
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -798,6 +1070,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
798
1070
  productType: 60 | 49 | 97;
799
1071
  messageType: 1 | 2;
800
1072
  username: string;
1073
+ fallbackFont?: {
1074
+ name: string;
1075
+ family: string;
1076
+ } | undefined;
801
1077
  };
802
1078
  template: {
803
1079
  html: string;
@@ -811,8 +1087,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
811
1087
  value: string;
812
1088
  } | undefined;
813
1089
  }[];
1090
+ customFieldAttributes: string[];
814
1091
  selectedUnsubscribePages: number[];
815
1092
  forceRecreate: boolean;
1093
+ migration: {
1094
+ recommendationConfigs: {
1095
+ [x: string]: {
1096
+ id?: number | undefined;
1097
+ decimalCount?: string | number | undefined;
1098
+ productIds?: unknown[] | undefined;
1099
+ sendProductRequestFlag?: boolean | undefined;
1100
+ shuffleProducts?: boolean | undefined;
1101
+ filters?: unknown[] | undefined;
1102
+ currency?: string | undefined;
1103
+ currencySettings?: unknown;
1104
+ language?: string | undefined;
1105
+ strategy?: string | undefined;
1106
+ recommendedProducts?: unknown[] | undefined;
1107
+ cardsInRow?: number | undefined;
1108
+ mobileRightPadding?: number | undefined;
1109
+ mobileLeftPadding?: number | undefined;
1110
+ unresponsive?: boolean | undefined;
1111
+ orientation?: string | undefined;
1112
+ textTrimming?: boolean | undefined;
1113
+ blockType?: string | undefined;
1114
+ size?: string | number | undefined;
1115
+ verticalResponsiveness?: boolean | undefined;
1116
+ } & {
1117
+ [key: string]: unknown;
1118
+ };
1119
+ };
1120
+ };
816
1121
  };
817
1122
  editor: {
818
1123
  locale: string;
@@ -837,6 +1142,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
837
1142
  displayConditions: boolean;
838
1143
  unsubscribe: boolean;
839
1144
  modulesDisabled: boolean;
1145
+ liquidSyntax: boolean;
840
1146
  };
841
1147
  blocks: {
842
1148
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -895,6 +1201,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
895
1201
  productType: 60 | 49 | 97;
896
1202
  messageType: 1 | 2;
897
1203
  username: string;
1204
+ fallbackFont?: {
1205
+ name: string;
1206
+ family: string;
1207
+ } | undefined;
898
1208
  };
899
1209
  template: {
900
1210
  html: string;
@@ -908,8 +1218,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
908
1218
  value: string;
909
1219
  } | undefined;
910
1220
  }[];
1221
+ customFieldAttributes: string[];
911
1222
  selectedUnsubscribePages: number[];
912
1223
  forceRecreate: boolean;
1224
+ migration: {
1225
+ recommendationConfigs: {
1226
+ [x: string]: {
1227
+ id?: number | undefined;
1228
+ decimalCount?: string | number | undefined;
1229
+ productIds?: unknown[] | undefined;
1230
+ sendProductRequestFlag?: boolean | undefined;
1231
+ shuffleProducts?: boolean | undefined;
1232
+ filters?: unknown[] | undefined;
1233
+ currency?: string | undefined;
1234
+ currencySettings?: unknown;
1235
+ language?: string | undefined;
1236
+ strategy?: string | undefined;
1237
+ recommendedProducts?: unknown[] | undefined;
1238
+ cardsInRow?: number | undefined;
1239
+ mobileRightPadding?: number | undefined;
1240
+ mobileLeftPadding?: number | undefined;
1241
+ unresponsive?: boolean | undefined;
1242
+ orientation?: string | undefined;
1243
+ textTrimming?: boolean | undefined;
1244
+ blockType?: string | undefined;
1245
+ size?: string | number | undefined;
1246
+ verticalResponsiveness?: boolean | undefined;
1247
+ } & {
1248
+ [key: string]: unknown;
1249
+ };
1250
+ };
1251
+ };
913
1252
  };
914
1253
  editor: {
915
1254
  locale: string;
@@ -934,6 +1273,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
934
1273
  displayConditions: boolean;
935
1274
  unsubscribe: boolean;
936
1275
  modulesDisabled: boolean;
1276
+ liquidSyntax: boolean;
937
1277
  };
938
1278
  blocks: {
939
1279
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -992,6 +1332,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
992
1332
  productType: 60 | 49 | 97;
993
1333
  messageType: 1 | 2;
994
1334
  username: string;
1335
+ fallbackFont?: {
1336
+ name: string;
1337
+ family: string;
1338
+ } | undefined;
995
1339
  };
996
1340
  template: {
997
1341
  html: string;
@@ -1005,8 +1349,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1005
1349
  value: string;
1006
1350
  } | undefined;
1007
1351
  }[];
1352
+ customFieldAttributes: string[];
1008
1353
  selectedUnsubscribePages: number[];
1009
1354
  forceRecreate: boolean;
1355
+ migration: {
1356
+ recommendationConfigs: {
1357
+ [x: string]: {
1358
+ id?: number | undefined;
1359
+ decimalCount?: string | number | undefined;
1360
+ productIds?: unknown[] | undefined;
1361
+ sendProductRequestFlag?: boolean | undefined;
1362
+ shuffleProducts?: boolean | undefined;
1363
+ filters?: unknown[] | undefined;
1364
+ currency?: string | undefined;
1365
+ currencySettings?: unknown;
1366
+ language?: string | undefined;
1367
+ strategy?: string | undefined;
1368
+ recommendedProducts?: unknown[] | undefined;
1369
+ cardsInRow?: number | undefined;
1370
+ mobileRightPadding?: number | undefined;
1371
+ mobileLeftPadding?: number | undefined;
1372
+ unresponsive?: boolean | undefined;
1373
+ orientation?: string | undefined;
1374
+ textTrimming?: boolean | undefined;
1375
+ blockType?: string | undefined;
1376
+ size?: string | number | undefined;
1377
+ verticalResponsiveness?: boolean | undefined;
1378
+ } & {
1379
+ [key: string]: unknown;
1380
+ };
1381
+ };
1382
+ };
1010
1383
  };
1011
1384
  editor: {
1012
1385
  locale: string;
@@ -1031,6 +1404,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1031
1404
  displayConditions: boolean;
1032
1405
  unsubscribe: boolean;
1033
1406
  modulesDisabled: boolean;
1407
+ liquidSyntax: boolean;
1034
1408
  };
1035
1409
  blocks: {
1036
1410
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -1089,6 +1463,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1089
1463
  productType: 60 | 49 | 97;
1090
1464
  messageType: 1 | 2;
1091
1465
  username: string;
1466
+ fallbackFont?: {
1467
+ name: string;
1468
+ family: string;
1469
+ } | undefined;
1092
1470
  };
1093
1471
  template: {
1094
1472
  html: string;
@@ -1102,8 +1480,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1102
1480
  value: string;
1103
1481
  } | undefined;
1104
1482
  }[];
1483
+ customFieldAttributes: string[];
1105
1484
  selectedUnsubscribePages: number[];
1106
1485
  forceRecreate: boolean;
1486
+ migration: {
1487
+ recommendationConfigs: {
1488
+ [x: string]: {
1489
+ id?: number | undefined;
1490
+ decimalCount?: string | number | undefined;
1491
+ productIds?: unknown[] | undefined;
1492
+ sendProductRequestFlag?: boolean | undefined;
1493
+ shuffleProducts?: boolean | undefined;
1494
+ filters?: unknown[] | undefined;
1495
+ currency?: string | undefined;
1496
+ currencySettings?: unknown;
1497
+ language?: string | undefined;
1498
+ strategy?: string | undefined;
1499
+ recommendedProducts?: unknown[] | undefined;
1500
+ cardsInRow?: number | undefined;
1501
+ mobileRightPadding?: number | undefined;
1502
+ mobileLeftPadding?: number | undefined;
1503
+ unresponsive?: boolean | undefined;
1504
+ orientation?: string | undefined;
1505
+ textTrimming?: boolean | undefined;
1506
+ blockType?: string | undefined;
1507
+ size?: string | number | undefined;
1508
+ verticalResponsiveness?: boolean | undefined;
1509
+ } & {
1510
+ [key: string]: unknown;
1511
+ };
1512
+ };
1513
+ };
1107
1514
  };
1108
1515
  editor: {
1109
1516
  locale: string;
@@ -1128,6 +1535,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1128
1535
  displayConditions: boolean;
1129
1536
  unsubscribe: boolean;
1130
1537
  modulesDisabled: boolean;
1538
+ liquidSyntax: boolean;
1131
1539
  };
1132
1540
  blocks: {
1133
1541
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -1186,6 +1594,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1186
1594
  productType: 60 | 49 | 97;
1187
1595
  messageType: 1 | 2;
1188
1596
  username: string;
1597
+ fallbackFont?: {
1598
+ name: string;
1599
+ family: string;
1600
+ } | undefined;
1189
1601
  };
1190
1602
  template: {
1191
1603
  html: string;
@@ -1199,8 +1611,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1199
1611
  value: string;
1200
1612
  } | undefined;
1201
1613
  }[];
1614
+ customFieldAttributes: string[];
1202
1615
  selectedUnsubscribePages: number[];
1203
1616
  forceRecreate: boolean;
1617
+ migration: {
1618
+ recommendationConfigs: {
1619
+ [x: string]: {
1620
+ id?: number | undefined;
1621
+ decimalCount?: string | number | undefined;
1622
+ productIds?: unknown[] | undefined;
1623
+ sendProductRequestFlag?: boolean | undefined;
1624
+ shuffleProducts?: boolean | undefined;
1625
+ filters?: unknown[] | undefined;
1626
+ currency?: string | undefined;
1627
+ currencySettings?: unknown;
1628
+ language?: string | undefined;
1629
+ strategy?: string | undefined;
1630
+ recommendedProducts?: unknown[] | undefined;
1631
+ cardsInRow?: number | undefined;
1632
+ mobileRightPadding?: number | undefined;
1633
+ mobileLeftPadding?: number | undefined;
1634
+ unresponsive?: boolean | undefined;
1635
+ orientation?: string | undefined;
1636
+ textTrimming?: boolean | undefined;
1637
+ blockType?: string | undefined;
1638
+ size?: string | number | undefined;
1639
+ verticalResponsiveness?: boolean | undefined;
1640
+ } & {
1641
+ [key: string]: unknown;
1642
+ };
1643
+ };
1644
+ };
1204
1645
  };
1205
1646
  editor: {
1206
1647
  locale: string;
@@ -1225,6 +1666,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1225
1666
  displayConditions: boolean;
1226
1667
  unsubscribe: boolean;
1227
1668
  modulesDisabled: boolean;
1669
+ liquidSyntax: boolean;
1228
1670
  };
1229
1671
  blocks: {
1230
1672
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -1283,6 +1725,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1283
1725
  productType: 60 | 49 | 97;
1284
1726
  messageType: 1 | 2;
1285
1727
  username: string;
1728
+ fallbackFont?: {
1729
+ name: string;
1730
+ family: string;
1731
+ } | undefined;
1286
1732
  };
1287
1733
  template: {
1288
1734
  html: string;
@@ -1296,8 +1742,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1296
1742
  value: string;
1297
1743
  } | undefined;
1298
1744
  }[];
1745
+ customFieldAttributes: string[];
1299
1746
  selectedUnsubscribePages: number[];
1300
1747
  forceRecreate: boolean;
1748
+ migration: {
1749
+ recommendationConfigs: {
1750
+ [x: string]: {
1751
+ id?: number | undefined;
1752
+ decimalCount?: string | number | undefined;
1753
+ productIds?: unknown[] | undefined;
1754
+ sendProductRequestFlag?: boolean | undefined;
1755
+ shuffleProducts?: boolean | undefined;
1756
+ filters?: unknown[] | undefined;
1757
+ currency?: string | undefined;
1758
+ currencySettings?: unknown;
1759
+ language?: string | undefined;
1760
+ strategy?: string | undefined;
1761
+ recommendedProducts?: unknown[] | undefined;
1762
+ cardsInRow?: number | undefined;
1763
+ mobileRightPadding?: number | undefined;
1764
+ mobileLeftPadding?: number | undefined;
1765
+ unresponsive?: boolean | undefined;
1766
+ orientation?: string | undefined;
1767
+ textTrimming?: boolean | undefined;
1768
+ blockType?: string | undefined;
1769
+ size?: string | number | undefined;
1770
+ verticalResponsiveness?: boolean | undefined;
1771
+ } & {
1772
+ [key: string]: unknown;
1773
+ };
1774
+ };
1775
+ };
1301
1776
  };
1302
1777
  editor: {
1303
1778
  locale: string;
@@ -1322,6 +1797,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1322
1797
  displayConditions: boolean;
1323
1798
  unsubscribe: boolean;
1324
1799
  modulesDisabled: boolean;
1800
+ liquidSyntax: boolean;
1325
1801
  };
1326
1802
  blocks: {
1327
1803
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -1380,6 +1856,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1380
1856
  productType: 60 | 49 | 97;
1381
1857
  messageType: 1 | 2;
1382
1858
  username: string;
1859
+ fallbackFont?: {
1860
+ name: string;
1861
+ family: string;
1862
+ } | undefined;
1383
1863
  };
1384
1864
  template: {
1385
1865
  html: string;
@@ -1393,8 +1873,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1393
1873
  value: string;
1394
1874
  } | undefined;
1395
1875
  }[];
1876
+ customFieldAttributes: string[];
1396
1877
  selectedUnsubscribePages: number[];
1397
1878
  forceRecreate: boolean;
1879
+ migration: {
1880
+ recommendationConfigs: {
1881
+ [x: string]: {
1882
+ id?: number | undefined;
1883
+ decimalCount?: string | number | undefined;
1884
+ productIds?: unknown[] | undefined;
1885
+ sendProductRequestFlag?: boolean | undefined;
1886
+ shuffleProducts?: boolean | undefined;
1887
+ filters?: unknown[] | undefined;
1888
+ currency?: string | undefined;
1889
+ currencySettings?: unknown;
1890
+ language?: string | undefined;
1891
+ strategy?: string | undefined;
1892
+ recommendedProducts?: unknown[] | undefined;
1893
+ cardsInRow?: number | undefined;
1894
+ mobileRightPadding?: number | undefined;
1895
+ mobileLeftPadding?: number | undefined;
1896
+ unresponsive?: boolean | undefined;
1897
+ orientation?: string | undefined;
1898
+ textTrimming?: boolean | undefined;
1899
+ blockType?: string | undefined;
1900
+ size?: string | number | undefined;
1901
+ verticalResponsiveness?: boolean | undefined;
1902
+ } & {
1903
+ [key: string]: unknown;
1904
+ };
1905
+ };
1906
+ };
1398
1907
  };
1399
1908
  editor: {
1400
1909
  locale: string;
@@ -1419,6 +1928,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1419
1928
  displayConditions: boolean;
1420
1929
  unsubscribe: boolean;
1421
1930
  modulesDisabled: boolean;
1931
+ liquidSyntax: boolean;
1422
1932
  };
1423
1933
  blocks: {
1424
1934
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -1477,6 +1987,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1477
1987
  productType: 60 | 49 | 97;
1478
1988
  messageType: 1 | 2;
1479
1989
  username: string;
1990
+ fallbackFont?: {
1991
+ name: string;
1992
+ family: string;
1993
+ } | undefined;
1480
1994
  };
1481
1995
  template: {
1482
1996
  html: string;
@@ -1490,8 +2004,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1490
2004
  value: string;
1491
2005
  } | undefined;
1492
2006
  }[];
2007
+ customFieldAttributes: string[];
1493
2008
  selectedUnsubscribePages: number[];
1494
2009
  forceRecreate: boolean;
2010
+ migration: {
2011
+ recommendationConfigs: {
2012
+ [x: string]: {
2013
+ id?: number | undefined;
2014
+ decimalCount?: string | number | undefined;
2015
+ productIds?: unknown[] | undefined;
2016
+ sendProductRequestFlag?: boolean | undefined;
2017
+ shuffleProducts?: boolean | undefined;
2018
+ filters?: unknown[] | undefined;
2019
+ currency?: string | undefined;
2020
+ currencySettings?: unknown;
2021
+ language?: string | undefined;
2022
+ strategy?: string | undefined;
2023
+ recommendedProducts?: unknown[] | undefined;
2024
+ cardsInRow?: number | undefined;
2025
+ mobileRightPadding?: number | undefined;
2026
+ mobileLeftPadding?: number | undefined;
2027
+ unresponsive?: boolean | undefined;
2028
+ orientation?: string | undefined;
2029
+ textTrimming?: boolean | undefined;
2030
+ blockType?: string | undefined;
2031
+ size?: string | number | undefined;
2032
+ verticalResponsiveness?: boolean | undefined;
2033
+ } & {
2034
+ [key: string]: unknown;
2035
+ };
2036
+ };
2037
+ };
1495
2038
  };
1496
2039
  editor: {
1497
2040
  locale: string;
@@ -1516,6 +2059,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1516
2059
  displayConditions: boolean;
1517
2060
  unsubscribe: boolean;
1518
2061
  modulesDisabled: boolean;
2062
+ liquidSyntax: boolean;
1519
2063
  };
1520
2064
  blocks: {
1521
2065
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -1574,6 +2118,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1574
2118
  productType: 60 | 49 | 97;
1575
2119
  messageType: 1 | 2;
1576
2120
  username: string;
2121
+ fallbackFont?: {
2122
+ name: string;
2123
+ family: string;
2124
+ } | undefined;
1577
2125
  };
1578
2126
  template: {
1579
2127
  html: string;
@@ -1587,8 +2135,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1587
2135
  value: string;
1588
2136
  } | undefined;
1589
2137
  }[];
2138
+ customFieldAttributes: string[];
1590
2139
  selectedUnsubscribePages: number[];
1591
2140
  forceRecreate: boolean;
2141
+ migration: {
2142
+ recommendationConfigs: {
2143
+ [x: string]: {
2144
+ id?: number | undefined;
2145
+ decimalCount?: string | number | undefined;
2146
+ productIds?: unknown[] | undefined;
2147
+ sendProductRequestFlag?: boolean | undefined;
2148
+ shuffleProducts?: boolean | undefined;
2149
+ filters?: unknown[] | undefined;
2150
+ currency?: string | undefined;
2151
+ currencySettings?: unknown;
2152
+ language?: string | undefined;
2153
+ strategy?: string | undefined;
2154
+ recommendedProducts?: unknown[] | undefined;
2155
+ cardsInRow?: number | undefined;
2156
+ mobileRightPadding?: number | undefined;
2157
+ mobileLeftPadding?: number | undefined;
2158
+ unresponsive?: boolean | undefined;
2159
+ orientation?: string | undefined;
2160
+ textTrimming?: boolean | undefined;
2161
+ blockType?: string | undefined;
2162
+ size?: string | number | undefined;
2163
+ verticalResponsiveness?: boolean | undefined;
2164
+ } & {
2165
+ [key: string]: unknown;
2166
+ };
2167
+ };
2168
+ };
1592
2169
  };
1593
2170
  editor: {
1594
2171
  locale: string;
@@ -1613,6 +2190,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1613
2190
  displayConditions: boolean;
1614
2191
  unsubscribe: boolean;
1615
2192
  modulesDisabled: boolean;
2193
+ liquidSyntax: boolean;
1616
2194
  };
1617
2195
  blocks: {
1618
2196
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];
@@ -1671,6 +2249,10 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1671
2249
  productType: 60 | 49 | 97;
1672
2250
  messageType: 1 | 2;
1673
2251
  username: string;
2252
+ fallbackFont?: {
2253
+ name: string;
2254
+ family: string;
2255
+ } | undefined;
1674
2256
  };
1675
2257
  template: {
1676
2258
  html: string;
@@ -1684,8 +2266,37 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1684
2266
  value: string;
1685
2267
  } | undefined;
1686
2268
  }[];
2269
+ customFieldAttributes: string[];
1687
2270
  selectedUnsubscribePages: number[];
1688
2271
  forceRecreate: boolean;
2272
+ migration: {
2273
+ recommendationConfigs: {
2274
+ [x: string]: {
2275
+ id?: number | undefined;
2276
+ decimalCount?: string | number | undefined;
2277
+ productIds?: unknown[] | undefined;
2278
+ sendProductRequestFlag?: boolean | undefined;
2279
+ shuffleProducts?: boolean | undefined;
2280
+ filters?: unknown[] | undefined;
2281
+ currency?: string | undefined;
2282
+ currencySettings?: unknown;
2283
+ language?: string | undefined;
2284
+ strategy?: string | undefined;
2285
+ recommendedProducts?: unknown[] | undefined;
2286
+ cardsInRow?: number | undefined;
2287
+ mobileRightPadding?: number | undefined;
2288
+ mobileLeftPadding?: number | undefined;
2289
+ unresponsive?: boolean | undefined;
2290
+ orientation?: string | undefined;
2291
+ textTrimming?: boolean | undefined;
2292
+ blockType?: string | undefined;
2293
+ size?: string | number | undefined;
2294
+ verticalResponsiveness?: boolean | undefined;
2295
+ } & {
2296
+ [key: string]: unknown;
2297
+ };
2298
+ };
2299
+ };
1689
2300
  };
1690
2301
  editor: {
1691
2302
  locale: string;
@@ -1710,6 +2321,7 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1710
2321
  displayConditions: boolean;
1711
2322
  unsubscribe: boolean;
1712
2323
  modulesDisabled: boolean;
2324
+ liquidSyntax: boolean;
1713
2325
  };
1714
2326
  blocks: {
1715
2327
  excludeDefaults: ("amp-accordion" | "amp-carousel" | "amp-form-controls" | "banner-block" | "button-block" | "html-block" | "image-block" | "menu-block" | "social-block" | "spacer-block" | "text-block" | "timer-block" | "video-block")[];