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