@useinsider/guido 3.2.0-beta.caa22bf → 3.2.0-beta.ccaf9f5

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 (79) hide show
  1. package/README.md +0 -92
  2. package/dist/@types/config/schemas.js +94 -150
  3. package/dist/components/Guido.vue.js +1 -1
  4. package/dist/components/Guido.vue2.js +75 -75
  5. package/dist/composables/useCortexBlueprintBridge.js +38 -0
  6. package/dist/composables/useEmailTemplateApplier.js +41 -0
  7. package/dist/composables/useRecommendation.js +26 -46
  8. package/dist/composables/useSave.js +18 -21
  9. package/dist/composables/useStripo.js +16 -14
  10. package/dist/config/compiler/recommendationCompilerRules.js +27 -27
  11. package/dist/config/migrator/index.js +9 -9
  12. package/dist/config/migrator/radioButtonMigrator.js +44 -64
  13. package/dist/config/migrator/recommendationMigrator.js +290 -74
  14. package/dist/enums/displayConditions.js +80 -0
  15. package/dist/enums/extensions/recommendationBlock.js +1 -2
  16. package/dist/extensions/Blocks/RadioButton/template.js +1 -1
  17. package/dist/extensions/Blocks/Recommendation/block.js +32 -35
  18. package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +5 -5
  19. package/dist/extensions/Blocks/Recommendation/controls/main/algorithm.js +24 -25
  20. package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +181 -228
  21. package/dist/extensions/Blocks/Recommendation/services/configService.js +29 -65
  22. package/dist/extensions/Blocks/Recommendation/store/recommendation.js +90 -130
  23. package/dist/extensions/Blocks/Recommendation/templates/grid/migration.js +251 -0
  24. package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +8 -8
  25. package/dist/extensions/Blocks/Recommendation/templates/utils.js +1 -1
  26. package/dist/extensions/Blocks/Recommendation/utils/preserveTextStyles.js +22 -13
  27. package/dist/guido.css +1 -1
  28. package/dist/node_modules/valibot/dist/index.js +235 -450
  29. package/dist/src/@types/config/defaults.d.ts +1 -5
  30. package/dist/src/@types/config/index.d.ts +3 -3
  31. package/dist/src/@types/config/schemas.d.ts +0 -213
  32. package/dist/src/@types/config/types.d.ts +1 -9
  33. package/dist/src/components/wrappers/WpModal.vue.d.ts +1 -1
  34. package/dist/src/composables/useConfig.d.ts +0 -56
  35. package/dist/src/composables/useCortexBlueprintBridge.d.ts +17 -0
  36. package/dist/src/composables/useEmailTemplateApplier.d.ts +21 -0
  37. package/dist/src/composables/useRecommendation.d.ts +1 -10
  38. package/dist/src/config/migrator/index.d.ts +1 -2
  39. package/dist/src/config/migrator/recommendationMigrator.d.ts +1 -13
  40. package/dist/src/enums/displayConditions.d.ts +2 -0
  41. package/dist/src/extensions/Blocks/RadioButton/template.d.ts +1 -1
  42. package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +0 -10
  43. package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +0 -34
  44. package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +1 -1
  45. package/dist/src/extensions/Blocks/Recommendation/utils/preserveTextStyles.d.ts +3 -0
  46. package/dist/src/library.d.ts +1 -1
  47. package/dist/src/stores/config.d.ts +0 -504
  48. package/dist/utils/templatePreparation.js +32 -72
  49. package/package.json +1 -5
  50. package/dist/composables/validators/useCouponBlockValidator.js +0 -24
  51. package/dist/config/migrator/recommendation/compositionMapper.js +0 -98
  52. package/dist/config/migrator/recommendation/extractors.js +0 -27
  53. package/dist/config/migrator/recommendation/htmlBuilder.js +0 -496
  54. package/dist/config/migrator/recommendation/parseLegacyConfig.js +0 -33
  55. package/dist/config/migrator/recommendation/settingsMapper.js +0 -70
  56. package/dist/config/migrator/recommendation/themeMapper.js +0 -93
  57. package/dist/extensions/Blocks/Recommendation/utils/legacyStrategyMap.js +0 -21
  58. package/dist/src/composables/useRecommendation.test.d.ts +0 -1
  59. package/dist/src/composables/validators/useCouponBlockValidator.d.ts +0 -3
  60. package/dist/src/config/migrator/recommendation/compositionMapper.d.ts +0 -2
  61. package/dist/src/config/migrator/recommendation/compositionMapper.test.d.ts +0 -1
  62. package/dist/src/config/migrator/recommendation/extractors.d.ts +0 -7
  63. package/dist/src/config/migrator/recommendation/extractors.test.d.ts +0 -1
  64. package/dist/src/config/migrator/recommendation/htmlBuilder.d.ts +0 -11
  65. package/dist/src/config/migrator/recommendation/parseLegacyConfig.d.ts +0 -15
  66. package/dist/src/config/migrator/recommendation/parseLegacyConfig.test.d.ts +0 -1
  67. package/dist/src/config/migrator/recommendation/settingsMapper.d.ts +0 -7
  68. package/dist/src/config/migrator/recommendation/settingsMapper.test.d.ts +0 -1
  69. package/dist/src/config/migrator/recommendation/themeMapper.d.ts +0 -5
  70. package/dist/src/config/migrator/recommendation/themeMapper.test.d.ts +0 -1
  71. package/dist/src/config/migrator/recommendation/types.d.ts +0 -205
  72. package/dist/src/config/migrator/recommendationMigrator.test.d.ts +0 -1
  73. package/dist/src/extensions/Blocks/Recommendation/controls/main/utils.test.d.ts +0 -1
  74. package/dist/src/extensions/Blocks/Recommendation/services/configService.test.d.ts +0 -1
  75. package/dist/src/extensions/Blocks/Recommendation/utils/legacyStrategyMap.d.ts +0 -21
  76. package/dist/src/extensions/Blocks/Recommendation/utils/legacyStrategyMap.test.d.ts +0 -1
  77. package/dist/src/utils/htmlEscape.d.ts +0 -5
  78. package/dist/src/utils/htmlEscape.test.d.ts +0 -1
  79. package/dist/utils/htmlEscape.js +0 -13
@@ -42,34 +42,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
42
42
  customFieldAttributes: string[];
43
43
  selectedUnsubscribePages: number[];
44
44
  forceRecreate: boolean;
45
- migration: {
46
- recommendationConfigs: {
47
- [x: string]: {
48
- id?: number | undefined;
49
- decimalCount?: string | number | undefined;
50
- productIds?: unknown[] | undefined;
51
- sendProductRequestFlag?: boolean | undefined;
52
- shuffleProducts?: boolean | undefined;
53
- filters?: unknown[] | undefined;
54
- currency?: string | undefined;
55
- currencySettings?: unknown;
56
- language?: string | undefined;
57
- strategy?: string | undefined;
58
- recommendedProducts?: unknown[] | undefined;
59
- cardsInRow?: number | undefined;
60
- mobileRightPadding?: number | undefined;
61
- mobileLeftPadding?: number | undefined;
62
- unresponsive?: boolean | undefined;
63
- orientation?: string | undefined;
64
- textTrimming?: boolean | undefined;
65
- blockType?: string | undefined;
66
- size?: string | number | undefined;
67
- verticalResponsiveness?: boolean | undefined;
68
- } & {
69
- [key: string]: unknown;
70
- };
71
- };
72
- };
73
45
  };
74
46
  editor: {
75
47
  locale: string;
@@ -173,34 +145,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
173
145
  customFieldAttributes: string[];
174
146
  selectedUnsubscribePages: number[];
175
147
  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
- };
204
148
  };
205
149
  editor: {
206
150
  locale: string;
@@ -304,34 +248,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
304
248
  customFieldAttributes: string[];
305
249
  selectedUnsubscribePages: number[];
306
250
  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
- };
335
251
  };
336
252
  editor: {
337
253
  locale: string;
@@ -435,34 +351,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
435
351
  customFieldAttributes: string[];
436
352
  selectedUnsubscribePages: number[];
437
353
  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
- };
466
354
  };
467
355
  editor: {
468
356
  locale: string;
@@ -566,34 +454,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
566
454
  customFieldAttributes: string[];
567
455
  selectedUnsubscribePages: number[];
568
456
  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
- };
597
457
  };
598
458
  editor: {
599
459
  locale: string;
@@ -697,34 +557,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
697
557
  customFieldAttributes: string[];
698
558
  selectedUnsubscribePages: number[];
699
559
  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
- };
728
560
  };
729
561
  editor: {
730
562
  locale: string;
@@ -828,34 +660,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
828
660
  customFieldAttributes: string[];
829
661
  selectedUnsubscribePages: number[];
830
662
  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
- };
859
663
  };
860
664
  editor: {
861
665
  locale: string;
@@ -959,34 +763,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
959
763
  customFieldAttributes: string[];
960
764
  selectedUnsubscribePages: number[];
961
765
  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
- };
990
766
  };
991
767
  editor: {
992
768
  locale: string;
@@ -1090,34 +866,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1090
866
  customFieldAttributes: string[];
1091
867
  selectedUnsubscribePages: number[];
1092
868
  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
- };
1121
869
  };
1122
870
  editor: {
1123
871
  locale: string;
@@ -1221,34 +969,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1221
969
  customFieldAttributes: string[];
1222
970
  selectedUnsubscribePages: number[];
1223
971
  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
- };
1252
972
  };
1253
973
  editor: {
1254
974
  locale: string;
@@ -1352,34 +1072,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1352
1072
  customFieldAttributes: string[];
1353
1073
  selectedUnsubscribePages: number[];
1354
1074
  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
- };
1383
1075
  };
1384
1076
  editor: {
1385
1077
  locale: string;
@@ -1483,34 +1175,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1483
1175
  customFieldAttributes: string[];
1484
1176
  selectedUnsubscribePages: number[];
1485
1177
  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
- };
1514
1178
  };
1515
1179
  editor: {
1516
1180
  locale: string;
@@ -1614,34 +1278,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1614
1278
  customFieldAttributes: string[];
1615
1279
  selectedUnsubscribePages: number[];
1616
1280
  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
- };
1645
1281
  };
1646
1282
  editor: {
1647
1283
  locale: string;
@@ -1745,34 +1381,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1745
1381
  customFieldAttributes: string[];
1746
1382
  selectedUnsubscribePages: number[];
1747
1383
  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
- };
1776
1384
  };
1777
1385
  editor: {
1778
1386
  locale: string;
@@ -1876,34 +1484,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
1876
1484
  customFieldAttributes: string[];
1877
1485
  selectedUnsubscribePages: number[];
1878
1486
  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
- };
1907
1487
  };
1908
1488
  editor: {
1909
1489
  locale: string;
@@ -2007,34 +1587,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
2007
1587
  customFieldAttributes: string[];
2008
1588
  selectedUnsubscribePages: number[];
2009
1589
  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
- };
2038
1590
  };
2039
1591
  editor: {
2040
1592
  locale: string;
@@ -2138,34 +1690,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
2138
1690
  customFieldAttributes: string[];
2139
1691
  selectedUnsubscribePages: number[];
2140
1692
  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
- };
2169
1693
  };
2170
1694
  editor: {
2171
1695
  locale: string;
@@ -2269,34 +1793,6 @@ export declare const useConfigStore: import("pinia").StoreDefinition<"guido-conf
2269
1793
  customFieldAttributes: string[];
2270
1794
  selectedUnsubscribePages: number[];
2271
1795
  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
- };
2300
1796
  };
2301
1797
  editor: {
2302
1798
  locale: string;