@lightspeed/crane-api 2.4.0-rc.0 → 2.4.1-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -314,6 +314,96 @@ declare const DescriptorSchema: z.ZodObject<{
314
314
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
315
315
  }, z.core.$strict>, z.ZodObject<{
316
316
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
317
+ }, z.core.$strict>, z.ZodObject<{
318
+ type: z.ZodLiteral<"DECK">;
319
+ cards: z.ZodArray<z.ZodObject<{
320
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
321
+ type: z.ZodLiteral<"INPUTBOX">;
322
+ text: z.ZodString;
323
+ }, z.core.$strict>, z.ZodObject<{
324
+ type: z.ZodLiteral<"TEXTAREA">;
325
+ text: z.ZodString;
326
+ }, z.core.$strict>, z.ZodObject<{
327
+ type: z.ZodLiteral<"BUTTON">;
328
+ title: z.ZodString;
329
+ buttonType: z.ZodEnum<{
330
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
331
+ HYPER_LINK: "HYPER_LINK";
332
+ MAIL_LINK: "MAIL_LINK";
333
+ TEL_LINK: "TEL_LINK";
334
+ GO_TO_STORE: "GO_TO_STORE";
335
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
336
+ GO_TO_PAGE: "GO_TO_PAGE";
337
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
338
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
339
+ }>;
340
+ link: z.ZodOptional<z.ZodString>;
341
+ linkTarget: z.ZodOptional<z.ZodString>;
342
+ email: z.ZodOptional<z.ZodString>;
343
+ phone: z.ZodOptional<z.ZodString>;
344
+ tileId: z.ZodOptional<z.ZodString>;
345
+ categoryId: z.ZodOptional<z.ZodNumber>;
346
+ }, z.core.$strict>, z.ZodObject<{
347
+ type: z.ZodLiteral<"IMAGE">;
348
+ imageData: z.ZodObject<{
349
+ set: z.ZodObject<{
350
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
351
+ url: z.ZodString;
352
+ width: z.ZodOptional<z.ZodInt>;
353
+ height: z.ZodOptional<z.ZodInt>;
354
+ }, z.core.$strict>>;
355
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
356
+ url: z.ZodString;
357
+ width: z.ZodOptional<z.ZodInt>;
358
+ height: z.ZodOptional<z.ZodInt>;
359
+ }, z.core.$strict>>;
360
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
361
+ url: z.ZodString;
362
+ width: z.ZodOptional<z.ZodInt>;
363
+ height: z.ZodOptional<z.ZodInt>;
364
+ }, z.core.$strict>>;
365
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
366
+ url: z.ZodString;
367
+ width: z.ZodOptional<z.ZodInt>;
368
+ height: z.ZodOptional<z.ZodInt>;
369
+ }, z.core.$strict>>;
370
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
371
+ url: z.ZodString;
372
+ width: z.ZodOptional<z.ZodInt>;
373
+ height: z.ZodOptional<z.ZodInt>;
374
+ }, z.core.$strict>>;
375
+ }, z.core.$strict>;
376
+ borderInfo: z.ZodOptional<z.ZodObject<{
377
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
378
+ color: z.ZodOptional<z.ZodObject<{
379
+ r: z.ZodNumber;
380
+ g: z.ZodNumber;
381
+ b: z.ZodNumber;
382
+ a: z.ZodNumber;
383
+ }, z.core.$strict>>;
384
+ }, z.core.$strict>>;
385
+ }, z.core.$strict>;
386
+ }, z.core.$strict>, z.ZodObject<{
387
+ type: z.ZodLiteral<"TOGGLE">;
388
+ enabled: z.ZodBoolean;
389
+ }, z.core.$strict>, z.ZodObject<{
390
+ type: z.ZodLiteral<"SELECTBOX">;
391
+ value: z.ZodString;
392
+ }, z.core.$strict>, z.ZodObject<{
393
+ type: z.ZodLiteral<"DIVIDER">;
394
+ }, z.core.$strict>, z.ZodObject<{
395
+ type: z.ZodLiteral<"INFO">;
396
+ text: z.ZodOptional<z.ZodString>;
397
+ button: z.ZodOptional<z.ZodObject<{
398
+ title: z.ZodOptional<z.ZodString>;
399
+ link: z.ZodOptional<z.ZodString>;
400
+ }, z.core.$strict>>;
401
+ }, z.core.$strict>, z.ZodObject<{
402
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
403
+ }, z.core.$strict>, z.ZodObject<{
404
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
405
+ }, z.core.$strict>], "type">>;
406
+ }, z.core.$strict>>;
317
407
  }, z.core.$strict>], "type">>;
318
408
  }, z.core.$strict>>;
319
409
  }, z.core.$strict>, z.ZodObject<{
@@ -817,6 +907,96 @@ declare const CollectionDescriptorSchema: z.ZodObject<{
817
907
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
818
908
  }, z.core.$strict>, z.ZodObject<{
819
909
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
910
+ }, z.core.$strict>, z.ZodObject<{
911
+ type: z.ZodLiteral<"DECK">;
912
+ cards: z.ZodArray<z.ZodObject<{
913
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
914
+ type: z.ZodLiteral<"INPUTBOX">;
915
+ text: z.ZodString;
916
+ }, z.core.$strict>, z.ZodObject<{
917
+ type: z.ZodLiteral<"TEXTAREA">;
918
+ text: z.ZodString;
919
+ }, z.core.$strict>, z.ZodObject<{
920
+ type: z.ZodLiteral<"BUTTON">;
921
+ title: z.ZodString;
922
+ buttonType: z.ZodEnum<{
923
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
924
+ HYPER_LINK: "HYPER_LINK";
925
+ MAIL_LINK: "MAIL_LINK";
926
+ TEL_LINK: "TEL_LINK";
927
+ GO_TO_STORE: "GO_TO_STORE";
928
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
929
+ GO_TO_PAGE: "GO_TO_PAGE";
930
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
931
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
932
+ }>;
933
+ link: z.ZodOptional<z.ZodString>;
934
+ linkTarget: z.ZodOptional<z.ZodString>;
935
+ email: z.ZodOptional<z.ZodString>;
936
+ phone: z.ZodOptional<z.ZodString>;
937
+ tileId: z.ZodOptional<z.ZodString>;
938
+ categoryId: z.ZodOptional<z.ZodNumber>;
939
+ }, z.core.$strict>, z.ZodObject<{
940
+ type: z.ZodLiteral<"IMAGE">;
941
+ imageData: z.ZodObject<{
942
+ set: z.ZodObject<{
943
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
944
+ url: z.ZodString;
945
+ width: z.ZodOptional<z.ZodInt>;
946
+ height: z.ZodOptional<z.ZodInt>;
947
+ }, z.core.$strict>>;
948
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
949
+ url: z.ZodString;
950
+ width: z.ZodOptional<z.ZodInt>;
951
+ height: z.ZodOptional<z.ZodInt>;
952
+ }, z.core.$strict>>;
953
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
954
+ url: z.ZodString;
955
+ width: z.ZodOptional<z.ZodInt>;
956
+ height: z.ZodOptional<z.ZodInt>;
957
+ }, z.core.$strict>>;
958
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
959
+ url: z.ZodString;
960
+ width: z.ZodOptional<z.ZodInt>;
961
+ height: z.ZodOptional<z.ZodInt>;
962
+ }, z.core.$strict>>;
963
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
964
+ url: z.ZodString;
965
+ width: z.ZodOptional<z.ZodInt>;
966
+ height: z.ZodOptional<z.ZodInt>;
967
+ }, z.core.$strict>>;
968
+ }, z.core.$strict>;
969
+ borderInfo: z.ZodOptional<z.ZodObject<{
970
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
971
+ color: z.ZodOptional<z.ZodObject<{
972
+ r: z.ZodNumber;
973
+ g: z.ZodNumber;
974
+ b: z.ZodNumber;
975
+ a: z.ZodNumber;
976
+ }, z.core.$strict>>;
977
+ }, z.core.$strict>>;
978
+ }, z.core.$strict>;
979
+ }, z.core.$strict>, z.ZodObject<{
980
+ type: z.ZodLiteral<"TOGGLE">;
981
+ enabled: z.ZodBoolean;
982
+ }, z.core.$strict>, z.ZodObject<{
983
+ type: z.ZodLiteral<"SELECTBOX">;
984
+ value: z.ZodString;
985
+ }, z.core.$strict>, z.ZodObject<{
986
+ type: z.ZodLiteral<"DIVIDER">;
987
+ }, z.core.$strict>, z.ZodObject<{
988
+ type: z.ZodLiteral<"INFO">;
989
+ text: z.ZodOptional<z.ZodString>;
990
+ button: z.ZodOptional<z.ZodObject<{
991
+ title: z.ZodOptional<z.ZodString>;
992
+ link: z.ZodOptional<z.ZodString>;
993
+ }, z.core.$strict>>;
994
+ }, z.core.$strict>, z.ZodObject<{
995
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
996
+ }, z.core.$strict>, z.ZodObject<{
997
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
998
+ }, z.core.$strict>], "type">>;
999
+ }, z.core.$strict>>;
820
1000
  }, z.core.$strict>], "type">>;
821
1001
  }, z.core.$strict>>;
822
1002
  }, z.core.$strict>, z.ZodObject<{
@@ -1351,7 +1531,7 @@ interface CategorySelectorContent {
1351
1531
  hasCategories: boolean;
1352
1532
  /** Array of selected category IDs */
1353
1533
  categoryIds: Array<number>;
1354
- /** `true` if selector data exists */
1534
+ /** `true` if there are categories to render */
1355
1535
  hasContent: boolean;
1356
1536
  }
1357
1537
 
@@ -2151,7 +2331,7 @@ interface ProductSelectorContent {
2151
2331
  categories: CategoryListComponentItem[];
2152
2332
  /** Selected category ID (when using category selection) */
2153
2333
  categoryId?: number;
2154
- /** `true` if selector data exists */
2334
+ /** `true` if there are products to render */
2155
2335
  hasContent: boolean;
2156
2336
  }
2157
2337
 
@@ -2575,7 +2755,92 @@ type LogoContentEditorDefaults = z.infer<typeof LogoContentEditorDefaultsSchema>
2575
2755
  type ProductSelectorContentEditorDefaults = z.infer<typeof ProductSelectorContentEditorDefaultsSchema>;
2576
2756
  type CategorySelectorContentEditorDefaults = z.infer<typeof CategorySelectorContentEditorDefaultsSchema>;
2577
2757
 
2578
- declare const DeckShowcaseContentEditorDefaultsSchema: z.ZodObject<{
2758
+ declare const ContentEditorDefaultsWithNestedDeckSchemaUnion: z.ZodDiscriminatedUnion<[z.ZodObject<{
2759
+ type: z.ZodLiteral<"INPUTBOX">;
2760
+ text: z.ZodString;
2761
+ }, z.core.$strict>, z.ZodObject<{
2762
+ type: z.ZodLiteral<"TEXTAREA">;
2763
+ text: z.ZodString;
2764
+ }, z.core.$strict>, z.ZodObject<{
2765
+ type: z.ZodLiteral<"BUTTON">;
2766
+ title: z.ZodString;
2767
+ buttonType: z.ZodEnum<{
2768
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
2769
+ HYPER_LINK: "HYPER_LINK";
2770
+ MAIL_LINK: "MAIL_LINK";
2771
+ TEL_LINK: "TEL_LINK";
2772
+ GO_TO_STORE: "GO_TO_STORE";
2773
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
2774
+ GO_TO_PAGE: "GO_TO_PAGE";
2775
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
2776
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
2777
+ }>;
2778
+ link: z.ZodOptional<z.ZodString>;
2779
+ linkTarget: z.ZodOptional<z.ZodString>;
2780
+ email: z.ZodOptional<z.ZodString>;
2781
+ phone: z.ZodOptional<z.ZodString>;
2782
+ tileId: z.ZodOptional<z.ZodString>;
2783
+ categoryId: z.ZodOptional<z.ZodNumber>;
2784
+ }, z.core.$strict>, z.ZodObject<{
2785
+ type: z.ZodLiteral<"IMAGE">;
2786
+ imageData: z.ZodObject<{
2787
+ set: z.ZodObject<{
2788
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
2789
+ url: z.ZodString;
2790
+ width: z.ZodOptional<z.ZodInt>;
2791
+ height: z.ZodOptional<z.ZodInt>;
2792
+ }, z.core.$strict>>;
2793
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
2794
+ url: z.ZodString;
2795
+ width: z.ZodOptional<z.ZodInt>;
2796
+ height: z.ZodOptional<z.ZodInt>;
2797
+ }, z.core.$strict>>;
2798
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
2799
+ url: z.ZodString;
2800
+ width: z.ZodOptional<z.ZodInt>;
2801
+ height: z.ZodOptional<z.ZodInt>;
2802
+ }, z.core.$strict>>;
2803
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
2804
+ url: z.ZodString;
2805
+ width: z.ZodOptional<z.ZodInt>;
2806
+ height: z.ZodOptional<z.ZodInt>;
2807
+ }, z.core.$strict>>;
2808
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
2809
+ url: z.ZodString;
2810
+ width: z.ZodOptional<z.ZodInt>;
2811
+ height: z.ZodOptional<z.ZodInt>;
2812
+ }, z.core.$strict>>;
2813
+ }, z.core.$strict>;
2814
+ borderInfo: z.ZodOptional<z.ZodObject<{
2815
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
2816
+ color: z.ZodOptional<z.ZodObject<{
2817
+ r: z.ZodNumber;
2818
+ g: z.ZodNumber;
2819
+ b: z.ZodNumber;
2820
+ a: z.ZodNumber;
2821
+ }, z.core.$strict>>;
2822
+ }, z.core.$strict>>;
2823
+ }, z.core.$strict>;
2824
+ }, z.core.$strict>, z.ZodObject<{
2825
+ type: z.ZodLiteral<"TOGGLE">;
2826
+ enabled: z.ZodBoolean;
2827
+ }, z.core.$strict>, z.ZodObject<{
2828
+ type: z.ZodLiteral<"SELECTBOX">;
2829
+ value: z.ZodString;
2830
+ }, z.core.$strict>, z.ZodObject<{
2831
+ type: z.ZodLiteral<"DIVIDER">;
2832
+ }, z.core.$strict>, z.ZodObject<{
2833
+ type: z.ZodLiteral<"INFO">;
2834
+ text: z.ZodOptional<z.ZodString>;
2835
+ button: z.ZodOptional<z.ZodObject<{
2836
+ title: z.ZodOptional<z.ZodString>;
2837
+ link: z.ZodOptional<z.ZodString>;
2838
+ }, z.core.$strict>>;
2839
+ }, z.core.$strict>, z.ZodObject<{
2840
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
2841
+ }, z.core.$strict>, z.ZodObject<{
2842
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
2843
+ }, z.core.$strict>, z.ZodObject<{
2579
2844
  type: z.ZodLiteral<"DECK">;
2580
2845
  cards: z.ZodArray<z.ZodObject<{
2581
2846
  settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
@@ -2665,54 +2930,235 @@ declare const DeckShowcaseContentEditorDefaultsSchema: z.ZodObject<{
2665
2930
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
2666
2931
  }, z.core.$strict>], "type">>;
2667
2932
  }, z.core.$strict>>;
2668
- }, z.core.$strict>;
2669
- declare const DeckContentEditorSchema: z.ZodObject<{
2933
+ }, z.core.$strict>], "type">;
2934
+ declare const DeckShowcaseContentEditorDefaultsSchema: z.ZodObject<{
2670
2935
  type: z.ZodLiteral<"DECK">;
2671
- label: z.ZodString;
2672
- addButtonLabel: z.ZodString;
2673
- maxCards: z.ZodInt;
2674
- cards: z.ZodObject<{
2675
- defaultCardContent: z.ZodObject<{
2676
- label: z.ZodString;
2677
- settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
2678
- type: z.ZodLiteral<"INPUTBOX">;
2679
- label: z.ZodString;
2680
- placeholder: z.ZodString;
2681
- defaults: z.ZodOptional<z.ZodObject<{
2682
- type: z.ZodLiteral<"INPUTBOX">;
2683
- text: z.ZodString;
2684
- }, z.core.$strict>>;
2685
- }, z.core.$strict>, z.ZodObject<{
2686
- type: z.ZodLiteral<"TEXTAREA">;
2687
- label: z.ZodString;
2688
- placeholder: z.ZodString;
2689
- defaults: z.ZodOptional<z.ZodObject<{
2690
- type: z.ZodLiteral<"TEXTAREA">;
2691
- text: z.ZodString;
2692
- }, z.core.$strict>>;
2693
- }, z.core.$strict>, z.ZodObject<{
2694
- type: z.ZodLiteral<"BUTTON">;
2695
- label: z.ZodString;
2696
- defaults: z.ZodOptional<z.ZodObject<{
2697
- type: z.ZodLiteral<"BUTTON">;
2698
- title: z.ZodString;
2699
- buttonType: z.ZodEnum<{
2700
- SCROLL_TO_TILE: "SCROLL_TO_TILE";
2701
- HYPER_LINK: "HYPER_LINK";
2702
- MAIL_LINK: "MAIL_LINK";
2703
- TEL_LINK: "TEL_LINK";
2704
- GO_TO_STORE: "GO_TO_STORE";
2705
- GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
2706
- GO_TO_PAGE: "GO_TO_PAGE";
2707
- GO_TO_CATEGORY: "GO_TO_CATEGORY";
2708
- GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
2709
- }>;
2710
- link: z.ZodOptional<z.ZodString>;
2711
- linkTarget: z.ZodOptional<z.ZodString>;
2712
- email: z.ZodOptional<z.ZodString>;
2713
- phone: z.ZodOptional<z.ZodString>;
2714
- tileId: z.ZodOptional<z.ZodString>;
2715
- categoryId: z.ZodOptional<z.ZodNumber>;
2936
+ cards: z.ZodArray<z.ZodObject<{
2937
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
2938
+ type: z.ZodLiteral<"INPUTBOX">;
2939
+ text: z.ZodString;
2940
+ }, z.core.$strict>, z.ZodObject<{
2941
+ type: z.ZodLiteral<"TEXTAREA">;
2942
+ text: z.ZodString;
2943
+ }, z.core.$strict>, z.ZodObject<{
2944
+ type: z.ZodLiteral<"BUTTON">;
2945
+ title: z.ZodString;
2946
+ buttonType: z.ZodEnum<{
2947
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
2948
+ HYPER_LINK: "HYPER_LINK";
2949
+ MAIL_LINK: "MAIL_LINK";
2950
+ TEL_LINK: "TEL_LINK";
2951
+ GO_TO_STORE: "GO_TO_STORE";
2952
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
2953
+ GO_TO_PAGE: "GO_TO_PAGE";
2954
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
2955
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
2956
+ }>;
2957
+ link: z.ZodOptional<z.ZodString>;
2958
+ linkTarget: z.ZodOptional<z.ZodString>;
2959
+ email: z.ZodOptional<z.ZodString>;
2960
+ phone: z.ZodOptional<z.ZodString>;
2961
+ tileId: z.ZodOptional<z.ZodString>;
2962
+ categoryId: z.ZodOptional<z.ZodNumber>;
2963
+ }, z.core.$strict>, z.ZodObject<{
2964
+ type: z.ZodLiteral<"IMAGE">;
2965
+ imageData: z.ZodObject<{
2966
+ set: z.ZodObject<{
2967
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
2968
+ url: z.ZodString;
2969
+ width: z.ZodOptional<z.ZodInt>;
2970
+ height: z.ZodOptional<z.ZodInt>;
2971
+ }, z.core.$strict>>;
2972
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
2973
+ url: z.ZodString;
2974
+ width: z.ZodOptional<z.ZodInt>;
2975
+ height: z.ZodOptional<z.ZodInt>;
2976
+ }, z.core.$strict>>;
2977
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
2978
+ url: z.ZodString;
2979
+ width: z.ZodOptional<z.ZodInt>;
2980
+ height: z.ZodOptional<z.ZodInt>;
2981
+ }, z.core.$strict>>;
2982
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
2983
+ url: z.ZodString;
2984
+ width: z.ZodOptional<z.ZodInt>;
2985
+ height: z.ZodOptional<z.ZodInt>;
2986
+ }, z.core.$strict>>;
2987
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
2988
+ url: z.ZodString;
2989
+ width: z.ZodOptional<z.ZodInt>;
2990
+ height: z.ZodOptional<z.ZodInt>;
2991
+ }, z.core.$strict>>;
2992
+ }, z.core.$strict>;
2993
+ borderInfo: z.ZodOptional<z.ZodObject<{
2994
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
2995
+ color: z.ZodOptional<z.ZodObject<{
2996
+ r: z.ZodNumber;
2997
+ g: z.ZodNumber;
2998
+ b: z.ZodNumber;
2999
+ a: z.ZodNumber;
3000
+ }, z.core.$strict>>;
3001
+ }, z.core.$strict>>;
3002
+ }, z.core.$strict>;
3003
+ }, z.core.$strict>, z.ZodObject<{
3004
+ type: z.ZodLiteral<"TOGGLE">;
3005
+ enabled: z.ZodBoolean;
3006
+ }, z.core.$strict>, z.ZodObject<{
3007
+ type: z.ZodLiteral<"SELECTBOX">;
3008
+ value: z.ZodString;
3009
+ }, z.core.$strict>, z.ZodObject<{
3010
+ type: z.ZodLiteral<"DIVIDER">;
3011
+ }, z.core.$strict>, z.ZodObject<{
3012
+ type: z.ZodLiteral<"INFO">;
3013
+ text: z.ZodOptional<z.ZodString>;
3014
+ button: z.ZodOptional<z.ZodObject<{
3015
+ title: z.ZodOptional<z.ZodString>;
3016
+ link: z.ZodOptional<z.ZodString>;
3017
+ }, z.core.$strict>>;
3018
+ }, z.core.$strict>, z.ZodObject<{
3019
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
3020
+ }, z.core.$strict>, z.ZodObject<{
3021
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
3022
+ }, z.core.$strict>, z.ZodObject<{
3023
+ type: z.ZodLiteral<"DECK">;
3024
+ cards: z.ZodArray<z.ZodObject<{
3025
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
3026
+ type: z.ZodLiteral<"INPUTBOX">;
3027
+ text: z.ZodString;
3028
+ }, z.core.$strict>, z.ZodObject<{
3029
+ type: z.ZodLiteral<"TEXTAREA">;
3030
+ text: z.ZodString;
3031
+ }, z.core.$strict>, z.ZodObject<{
3032
+ type: z.ZodLiteral<"BUTTON">;
3033
+ title: z.ZodString;
3034
+ buttonType: z.ZodEnum<{
3035
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
3036
+ HYPER_LINK: "HYPER_LINK";
3037
+ MAIL_LINK: "MAIL_LINK";
3038
+ TEL_LINK: "TEL_LINK";
3039
+ GO_TO_STORE: "GO_TO_STORE";
3040
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
3041
+ GO_TO_PAGE: "GO_TO_PAGE";
3042
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
3043
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
3044
+ }>;
3045
+ link: z.ZodOptional<z.ZodString>;
3046
+ linkTarget: z.ZodOptional<z.ZodString>;
3047
+ email: z.ZodOptional<z.ZodString>;
3048
+ phone: z.ZodOptional<z.ZodString>;
3049
+ tileId: z.ZodOptional<z.ZodString>;
3050
+ categoryId: z.ZodOptional<z.ZodNumber>;
3051
+ }, z.core.$strict>, z.ZodObject<{
3052
+ type: z.ZodLiteral<"IMAGE">;
3053
+ imageData: z.ZodObject<{
3054
+ set: z.ZodObject<{
3055
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
3056
+ url: z.ZodString;
3057
+ width: z.ZodOptional<z.ZodInt>;
3058
+ height: z.ZodOptional<z.ZodInt>;
3059
+ }, z.core.$strict>>;
3060
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
3061
+ url: z.ZodString;
3062
+ width: z.ZodOptional<z.ZodInt>;
3063
+ height: z.ZodOptional<z.ZodInt>;
3064
+ }, z.core.$strict>>;
3065
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
3066
+ url: z.ZodString;
3067
+ width: z.ZodOptional<z.ZodInt>;
3068
+ height: z.ZodOptional<z.ZodInt>;
3069
+ }, z.core.$strict>>;
3070
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
3071
+ url: z.ZodString;
3072
+ width: z.ZodOptional<z.ZodInt>;
3073
+ height: z.ZodOptional<z.ZodInt>;
3074
+ }, z.core.$strict>>;
3075
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
3076
+ url: z.ZodString;
3077
+ width: z.ZodOptional<z.ZodInt>;
3078
+ height: z.ZodOptional<z.ZodInt>;
3079
+ }, z.core.$strict>>;
3080
+ }, z.core.$strict>;
3081
+ borderInfo: z.ZodOptional<z.ZodObject<{
3082
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
3083
+ color: z.ZodOptional<z.ZodObject<{
3084
+ r: z.ZodNumber;
3085
+ g: z.ZodNumber;
3086
+ b: z.ZodNumber;
3087
+ a: z.ZodNumber;
3088
+ }, z.core.$strict>>;
3089
+ }, z.core.$strict>>;
3090
+ }, z.core.$strict>;
3091
+ }, z.core.$strict>, z.ZodObject<{
3092
+ type: z.ZodLiteral<"TOGGLE">;
3093
+ enabled: z.ZodBoolean;
3094
+ }, z.core.$strict>, z.ZodObject<{
3095
+ type: z.ZodLiteral<"SELECTBOX">;
3096
+ value: z.ZodString;
3097
+ }, z.core.$strict>, z.ZodObject<{
3098
+ type: z.ZodLiteral<"DIVIDER">;
3099
+ }, z.core.$strict>, z.ZodObject<{
3100
+ type: z.ZodLiteral<"INFO">;
3101
+ text: z.ZodOptional<z.ZodString>;
3102
+ button: z.ZodOptional<z.ZodObject<{
3103
+ title: z.ZodOptional<z.ZodString>;
3104
+ link: z.ZodOptional<z.ZodString>;
3105
+ }, z.core.$strict>>;
3106
+ }, z.core.$strict>, z.ZodObject<{
3107
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
3108
+ }, z.core.$strict>, z.ZodObject<{
3109
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
3110
+ }, z.core.$strict>], "type">>;
3111
+ }, z.core.$strict>>;
3112
+ }, z.core.$strict>], "type">>;
3113
+ }, z.core.$strict>>;
3114
+ }, z.core.$strict>;
3115
+ declare const DeckContentEditorSchema: z.ZodObject<{
3116
+ type: z.ZodLiteral<"DECK">;
3117
+ label: z.ZodString;
3118
+ addButtonLabel: z.ZodString;
3119
+ maxCards: z.ZodInt;
3120
+ cards: z.ZodObject<{
3121
+ defaultCardContent: z.ZodObject<{
3122
+ label: z.ZodString;
3123
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
3124
+ type: z.ZodLiteral<"INPUTBOX">;
3125
+ label: z.ZodString;
3126
+ placeholder: z.ZodString;
3127
+ defaults: z.ZodOptional<z.ZodObject<{
3128
+ type: z.ZodLiteral<"INPUTBOX">;
3129
+ text: z.ZodString;
3130
+ }, z.core.$strict>>;
3131
+ }, z.core.$strict>, z.ZodObject<{
3132
+ type: z.ZodLiteral<"TEXTAREA">;
3133
+ label: z.ZodString;
3134
+ placeholder: z.ZodString;
3135
+ defaults: z.ZodOptional<z.ZodObject<{
3136
+ type: z.ZodLiteral<"TEXTAREA">;
3137
+ text: z.ZodString;
3138
+ }, z.core.$strict>>;
3139
+ }, z.core.$strict>, z.ZodObject<{
3140
+ type: z.ZodLiteral<"BUTTON">;
3141
+ label: z.ZodString;
3142
+ defaults: z.ZodOptional<z.ZodObject<{
3143
+ type: z.ZodLiteral<"BUTTON">;
3144
+ title: z.ZodString;
3145
+ buttonType: z.ZodEnum<{
3146
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
3147
+ HYPER_LINK: "HYPER_LINK";
3148
+ MAIL_LINK: "MAIL_LINK";
3149
+ TEL_LINK: "TEL_LINK";
3150
+ GO_TO_STORE: "GO_TO_STORE";
3151
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
3152
+ GO_TO_PAGE: "GO_TO_PAGE";
3153
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
3154
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
3155
+ }>;
3156
+ link: z.ZodOptional<z.ZodString>;
3157
+ linkTarget: z.ZodOptional<z.ZodString>;
3158
+ email: z.ZodOptional<z.ZodString>;
3159
+ phone: z.ZodOptional<z.ZodString>;
3160
+ tileId: z.ZodOptional<z.ZodString>;
3161
+ categoryId: z.ZodOptional<z.ZodNumber>;
2716
3162
  }, z.core.$strict>>;
2717
3163
  }, z.core.$strict>, z.ZodObject<{
2718
3164
  type: z.ZodLiteral<"IMAGE">;
@@ -4392,36 +4838,126 @@ declare const ShowcaseContentEditorDefaultsSchema: z.ZodDiscriminatedUnion<[z.Zo
4392
4838
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
4393
4839
  }, z.core.$strict>, z.ZodObject<{
4394
4840
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
4395
- }, z.core.$strict>], "type">>;
4396
- }, z.core.$strict>>;
4397
- }, z.core.$strict>, z.ZodObject<{
4398
- type: z.ZodLiteral<"PRODUCT_SELECTOR">;
4399
- }, z.core.$strict>, z.ZodObject<{
4400
- type: z.ZodLiteral<"CATEGORY_SELECTOR">;
4401
- }, z.core.$strict>], "type">;
4402
- declare const DesignEditorDefaultsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
4403
- type: z.ZodLiteral<"TEXT">;
4404
- font: z.ZodOptional<z.ZodString>;
4405
- size: z.ZodOptional<z.ZodCustom<number | GlobalTextSizeValue, number | GlobalTextSizeValue>>;
4406
- bold: z.ZodOptional<z.ZodBoolean>;
4407
- italic: z.ZodOptional<z.ZodBoolean>;
4408
- color: z.ZodOptional<z.ZodCustom<string, string>>;
4409
- visible: z.ZodOptional<z.ZodBoolean>;
4410
- }, z.core.$strict>, z.ZodObject<{
4411
- type: z.ZodLiteral<"BUTTON">;
4412
- appearance: z.ZodOptional<z.ZodEnum<{
4413
- TEXT: "TEXT";
4414
- SOLID: "SOLID";
4415
- OUTLINE: "OUTLINE";
4416
- }>>;
4417
- size: z.ZodOptional<z.ZodEnum<{
4418
- SMALL: "SMALL";
4419
- MEDIUM: "MEDIUM";
4420
- LARGE: "LARGE";
4421
- }>>;
4422
- shape: z.ZodOptional<z.ZodEnum<{
4423
- ROUND_CORNER: "ROUND_CORNER";
4424
- RECTANGLE: "RECTANGLE";
4841
+ }, z.core.$strict>, z.ZodObject<{
4842
+ type: z.ZodLiteral<"DECK">;
4843
+ cards: z.ZodArray<z.ZodObject<{
4844
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
4845
+ type: z.ZodLiteral<"INPUTBOX">;
4846
+ text: z.ZodString;
4847
+ }, z.core.$strict>, z.ZodObject<{
4848
+ type: z.ZodLiteral<"TEXTAREA">;
4849
+ text: z.ZodString;
4850
+ }, z.core.$strict>, z.ZodObject<{
4851
+ type: z.ZodLiteral<"BUTTON">;
4852
+ title: z.ZodString;
4853
+ buttonType: z.ZodEnum<{
4854
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
4855
+ HYPER_LINK: "HYPER_LINK";
4856
+ MAIL_LINK: "MAIL_LINK";
4857
+ TEL_LINK: "TEL_LINK";
4858
+ GO_TO_STORE: "GO_TO_STORE";
4859
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
4860
+ GO_TO_PAGE: "GO_TO_PAGE";
4861
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
4862
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
4863
+ }>;
4864
+ link: z.ZodOptional<z.ZodString>;
4865
+ linkTarget: z.ZodOptional<z.ZodString>;
4866
+ email: z.ZodOptional<z.ZodString>;
4867
+ phone: z.ZodOptional<z.ZodString>;
4868
+ tileId: z.ZodOptional<z.ZodString>;
4869
+ categoryId: z.ZodOptional<z.ZodNumber>;
4870
+ }, z.core.$strict>, z.ZodObject<{
4871
+ type: z.ZodLiteral<"IMAGE">;
4872
+ imageData: z.ZodObject<{
4873
+ set: z.ZodObject<{
4874
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
4875
+ url: z.ZodString;
4876
+ width: z.ZodOptional<z.ZodInt>;
4877
+ height: z.ZodOptional<z.ZodInt>;
4878
+ }, z.core.$strict>>;
4879
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
4880
+ url: z.ZodString;
4881
+ width: z.ZodOptional<z.ZodInt>;
4882
+ height: z.ZodOptional<z.ZodInt>;
4883
+ }, z.core.$strict>>;
4884
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
4885
+ url: z.ZodString;
4886
+ width: z.ZodOptional<z.ZodInt>;
4887
+ height: z.ZodOptional<z.ZodInt>;
4888
+ }, z.core.$strict>>;
4889
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
4890
+ url: z.ZodString;
4891
+ width: z.ZodOptional<z.ZodInt>;
4892
+ height: z.ZodOptional<z.ZodInt>;
4893
+ }, z.core.$strict>>;
4894
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
4895
+ url: z.ZodString;
4896
+ width: z.ZodOptional<z.ZodInt>;
4897
+ height: z.ZodOptional<z.ZodInt>;
4898
+ }, z.core.$strict>>;
4899
+ }, z.core.$strict>;
4900
+ borderInfo: z.ZodOptional<z.ZodObject<{
4901
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
4902
+ color: z.ZodOptional<z.ZodObject<{
4903
+ r: z.ZodNumber;
4904
+ g: z.ZodNumber;
4905
+ b: z.ZodNumber;
4906
+ a: z.ZodNumber;
4907
+ }, z.core.$strict>>;
4908
+ }, z.core.$strict>>;
4909
+ }, z.core.$strict>;
4910
+ }, z.core.$strict>, z.ZodObject<{
4911
+ type: z.ZodLiteral<"TOGGLE">;
4912
+ enabled: z.ZodBoolean;
4913
+ }, z.core.$strict>, z.ZodObject<{
4914
+ type: z.ZodLiteral<"SELECTBOX">;
4915
+ value: z.ZodString;
4916
+ }, z.core.$strict>, z.ZodObject<{
4917
+ type: z.ZodLiteral<"DIVIDER">;
4918
+ }, z.core.$strict>, z.ZodObject<{
4919
+ type: z.ZodLiteral<"INFO">;
4920
+ text: z.ZodOptional<z.ZodString>;
4921
+ button: z.ZodOptional<z.ZodObject<{
4922
+ title: z.ZodOptional<z.ZodString>;
4923
+ link: z.ZodOptional<z.ZodString>;
4924
+ }, z.core.$strict>>;
4925
+ }, z.core.$strict>, z.ZodObject<{
4926
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
4927
+ }, z.core.$strict>, z.ZodObject<{
4928
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
4929
+ }, z.core.$strict>], "type">>;
4930
+ }, z.core.$strict>>;
4931
+ }, z.core.$strict>], "type">>;
4932
+ }, z.core.$strict>>;
4933
+ }, z.core.$strict>, z.ZodObject<{
4934
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
4935
+ }, z.core.$strict>, z.ZodObject<{
4936
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
4937
+ }, z.core.$strict>], "type">;
4938
+ declare const DesignEditorDefaultsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
4939
+ type: z.ZodLiteral<"TEXT">;
4940
+ font: z.ZodOptional<z.ZodString>;
4941
+ size: z.ZodOptional<z.ZodCustom<number | GlobalTextSizeValue, number | GlobalTextSizeValue>>;
4942
+ bold: z.ZodOptional<z.ZodBoolean>;
4943
+ italic: z.ZodOptional<z.ZodBoolean>;
4944
+ color: z.ZodOptional<z.ZodCustom<string, string>>;
4945
+ visible: z.ZodOptional<z.ZodBoolean>;
4946
+ }, z.core.$strict>, z.ZodObject<{
4947
+ type: z.ZodLiteral<"BUTTON">;
4948
+ appearance: z.ZodOptional<z.ZodEnum<{
4949
+ TEXT: "TEXT";
4950
+ SOLID: "SOLID";
4951
+ OUTLINE: "OUTLINE";
4952
+ }>>;
4953
+ size: z.ZodOptional<z.ZodEnum<{
4954
+ SMALL: "SMALL";
4955
+ MEDIUM: "MEDIUM";
4956
+ LARGE: "LARGE";
4957
+ }>>;
4958
+ shape: z.ZodOptional<z.ZodEnum<{
4959
+ ROUND_CORNER: "ROUND_CORNER";
4960
+ RECTANGLE: "RECTANGLE";
4425
4961
  PILL: "PILL";
4426
4962
  }>>;
4427
4963
  font: z.ZodOptional<z.ZodString>;
@@ -4586,6 +5122,7 @@ type CategorySelectorContentEditor = z.infer<typeof CategorySelectorContentEdito
4586
5122
  type ContentEditor = z.infer<typeof ContentEditorSchema>;
4587
5123
  type ContentSettings = z.infer<typeof ContentSettingsSchema>;
4588
5124
  type ContentEditorDefaults = z.infer<typeof ShowcaseContentEditorDefaultsSchema>;
5125
+ type ContentEditorDefaultsWithNestedDeckUnion = z.infer<typeof ContentEditorDefaultsWithNestedDeckSchemaUnion>;
4589
5126
 
4590
5127
  type MandatoryContentSettings = {
4591
5128
  menu: NavigationMenuContentEditor;
@@ -8070,6 +8607,96 @@ declare const ManifestSchema: z.ZodObject<{
8070
8607
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
8071
8608
  }, z.core.$strict>, z.ZodObject<{
8072
8609
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
8610
+ }, z.core.$strict>, z.ZodObject<{
8611
+ type: z.ZodLiteral<"DECK">;
8612
+ cards: z.ZodArray<z.ZodObject<{
8613
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
8614
+ type: z.ZodLiteral<"INPUTBOX">;
8615
+ text: z.ZodString;
8616
+ }, z.core.$strict>, z.ZodObject<{
8617
+ type: z.ZodLiteral<"TEXTAREA">;
8618
+ text: z.ZodString;
8619
+ }, z.core.$strict>, z.ZodObject<{
8620
+ type: z.ZodLiteral<"BUTTON">;
8621
+ title: z.ZodString;
8622
+ buttonType: z.ZodEnum<{
8623
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
8624
+ HYPER_LINK: "HYPER_LINK";
8625
+ MAIL_LINK: "MAIL_LINK";
8626
+ TEL_LINK: "TEL_LINK";
8627
+ GO_TO_STORE: "GO_TO_STORE";
8628
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
8629
+ GO_TO_PAGE: "GO_TO_PAGE";
8630
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
8631
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
8632
+ }>;
8633
+ link: z.ZodOptional<z.ZodString>;
8634
+ linkTarget: z.ZodOptional<z.ZodString>;
8635
+ email: z.ZodOptional<z.ZodString>;
8636
+ phone: z.ZodOptional<z.ZodString>;
8637
+ tileId: z.ZodOptional<z.ZodString>;
8638
+ categoryId: z.ZodOptional<z.ZodNumber>;
8639
+ }, z.core.$strict>, z.ZodObject<{
8640
+ type: z.ZodLiteral<"IMAGE">;
8641
+ imageData: z.ZodObject<{
8642
+ set: z.ZodObject<{
8643
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
8644
+ url: z.ZodString;
8645
+ width: z.ZodOptional<z.ZodInt>;
8646
+ height: z.ZodOptional<z.ZodInt>;
8647
+ }, z.core.$strict>>;
8648
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
8649
+ url: z.ZodString;
8650
+ width: z.ZodOptional<z.ZodInt>;
8651
+ height: z.ZodOptional<z.ZodInt>;
8652
+ }, z.core.$strict>>;
8653
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
8654
+ url: z.ZodString;
8655
+ width: z.ZodOptional<z.ZodInt>;
8656
+ height: z.ZodOptional<z.ZodInt>;
8657
+ }, z.core.$strict>>;
8658
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
8659
+ url: z.ZodString;
8660
+ width: z.ZodOptional<z.ZodInt>;
8661
+ height: z.ZodOptional<z.ZodInt>;
8662
+ }, z.core.$strict>>;
8663
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
8664
+ url: z.ZodString;
8665
+ width: z.ZodOptional<z.ZodInt>;
8666
+ height: z.ZodOptional<z.ZodInt>;
8667
+ }, z.core.$strict>>;
8668
+ }, z.core.$strict>;
8669
+ borderInfo: z.ZodOptional<z.ZodObject<{
8670
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
8671
+ color: z.ZodOptional<z.ZodObject<{
8672
+ r: z.ZodNumber;
8673
+ g: z.ZodNumber;
8674
+ b: z.ZodNumber;
8675
+ a: z.ZodNumber;
8676
+ }, z.core.$strict>>;
8677
+ }, z.core.$strict>>;
8678
+ }, z.core.$strict>;
8679
+ }, z.core.$strict>, z.ZodObject<{
8680
+ type: z.ZodLiteral<"TOGGLE">;
8681
+ enabled: z.ZodBoolean;
8682
+ }, z.core.$strict>, z.ZodObject<{
8683
+ type: z.ZodLiteral<"SELECTBOX">;
8684
+ value: z.ZodString;
8685
+ }, z.core.$strict>, z.ZodObject<{
8686
+ type: z.ZodLiteral<"DIVIDER">;
8687
+ }, z.core.$strict>, z.ZodObject<{
8688
+ type: z.ZodLiteral<"INFO">;
8689
+ text: z.ZodOptional<z.ZodString>;
8690
+ button: z.ZodOptional<z.ZodObject<{
8691
+ title: z.ZodOptional<z.ZodString>;
8692
+ link: z.ZodOptional<z.ZodString>;
8693
+ }, z.core.$strict>>;
8694
+ }, z.core.$strict>, z.ZodObject<{
8695
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
8696
+ }, z.core.$strict>, z.ZodObject<{
8697
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
8698
+ }, z.core.$strict>], "type">>;
8699
+ }, z.core.$strict>>;
8073
8700
  }, z.core.$strict>], "type">>;
8074
8701
  }, z.core.$strict>>;
8075
8702
  }, z.core.$strict>, z.ZodObject<{
@@ -8575,6 +9202,62 @@ declare const ManifestSchema: z.ZodObject<{
8575
9202
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
8576
9203
  }, z.core.$strict>, z.ZodObject<{
8577
9204
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
9205
+ }, z.core.$strict>, z.ZodObject<{
9206
+ type: z.ZodLiteral<"DECK">;
9207
+ cards: z.ZodArray<z.ZodObject<{
9208
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
9209
+ type: z.ZodLiteral<"INPUTBOX">;
9210
+ text: z.ZodString;
9211
+ }, z.core.$strict>, z.ZodObject<{
9212
+ type: z.ZodLiteral<"TEXTAREA">;
9213
+ text: z.ZodString;
9214
+ }, z.core.$strict>, z.ZodObject<{
9215
+ type: z.ZodLiteral<"BUTTON">;
9216
+ title: z.ZodString;
9217
+ buttonType: z.ZodEnum<{
9218
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
9219
+ HYPER_LINK: "HYPER_LINK";
9220
+ MAIL_LINK: "MAIL_LINK";
9221
+ TEL_LINK: "TEL_LINK";
9222
+ GO_TO_STORE: "GO_TO_STORE";
9223
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
9224
+ GO_TO_PAGE: "GO_TO_PAGE";
9225
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
9226
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
9227
+ }>;
9228
+ link: z.ZodOptional<z.ZodString>;
9229
+ linkTarget: z.ZodOptional<z.ZodString>;
9230
+ email: z.ZodOptional<z.ZodString>;
9231
+ phone: z.ZodOptional<z.ZodString>;
9232
+ tileId: z.ZodOptional<z.ZodString>;
9233
+ categoryId: z.ZodOptional<z.ZodNumber>;
9234
+ }, z.core.$strict>, z.ZodObject<{
9235
+ type: z.ZodLiteral<"IMAGE">;
9236
+ imageData: z.ZodObject<{
9237
+ set: z.ZodObject</*elided*/ any, z.core.$strict>;
9238
+ borderInfo: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
9239
+ }, z.core.$strict>;
9240
+ }, z.core.$strict>, z.ZodObject<{
9241
+ type: z.ZodLiteral<"TOGGLE">;
9242
+ enabled: z.ZodBoolean;
9243
+ }, z.core.$strict>, z.ZodObject<{
9244
+ type: z.ZodLiteral<"SELECTBOX">;
9245
+ value: z.ZodString;
9246
+ }, z.core.$strict>, z.ZodObject<{
9247
+ type: z.ZodLiteral<"DIVIDER">;
9248
+ }, z.core.$strict>, z.ZodObject<{
9249
+ type: z.ZodLiteral<"INFO">;
9250
+ text: z.ZodOptional<z.ZodString>;
9251
+ button: z.ZodOptional<z.ZodObject<{
9252
+ title: z.ZodOptional<z.ZodString>;
9253
+ link: z.ZodOptional<z.ZodString>;
9254
+ }, z.core.$strict>>;
9255
+ }, z.core.$strict>, z.ZodObject<{
9256
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
9257
+ }, z.core.$strict>, z.ZodObject<{
9258
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
9259
+ }, z.core.$strict>], "type">>;
9260
+ }, z.core.$strict>>;
8578
9261
  }, z.core.$strict>], "type">>;
8579
9262
  }, z.core.$strict>>;
8580
9263
  }, z.core.$strict>, z.ZodObject<{
@@ -9022,9 +9705,65 @@ declare const ManifestSchema: z.ZodObject<{
9022
9705
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
9023
9706
  }, z.core.$strict>, z.ZodObject<{
9024
9707
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
9025
- }, z.core.$strict>], "type">>;
9026
- }, z.core.$strict>>;
9027
- }, z.core.$strict>, z.ZodObject<{
9708
+ }, z.core.$strict>, z.ZodObject<{
9709
+ type: z.ZodLiteral<"DECK">;
9710
+ cards: z.ZodArray<z.ZodObject<{
9711
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
9712
+ type: z.ZodLiteral<"INPUTBOX">;
9713
+ text: z.ZodString;
9714
+ }, z.core.$strict>, z.ZodObject<{
9715
+ type: z.ZodLiteral<"TEXTAREA">;
9716
+ text: z.ZodString;
9717
+ }, z.core.$strict>, z.ZodObject<{
9718
+ type: z.ZodLiteral<"BUTTON">;
9719
+ title: z.ZodString;
9720
+ buttonType: z.ZodEnum<{
9721
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
9722
+ HYPER_LINK: "HYPER_LINK";
9723
+ MAIL_LINK: "MAIL_LINK";
9724
+ TEL_LINK: "TEL_LINK";
9725
+ GO_TO_STORE: "GO_TO_STORE";
9726
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
9727
+ GO_TO_PAGE: "GO_TO_PAGE";
9728
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
9729
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
9730
+ }>;
9731
+ link: z.ZodOptional<z.ZodString>;
9732
+ linkTarget: z.ZodOptional<z.ZodString>;
9733
+ email: z.ZodOptional<z.ZodString>;
9734
+ phone: z.ZodOptional<z.ZodString>;
9735
+ tileId: z.ZodOptional<z.ZodString>;
9736
+ categoryId: z.ZodOptional<z.ZodNumber>;
9737
+ }, z.core.$strict>, z.ZodObject<{
9738
+ type: z.ZodLiteral<"IMAGE">;
9739
+ imageData: z.ZodObject<{
9740
+ set: z.ZodObject</*elided*/ any, z.core.$strict>;
9741
+ borderInfo: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
9742
+ }, z.core.$strict>;
9743
+ }, z.core.$strict>, z.ZodObject<{
9744
+ type: z.ZodLiteral<"TOGGLE">;
9745
+ enabled: z.ZodBoolean;
9746
+ }, z.core.$strict>, z.ZodObject<{
9747
+ type: z.ZodLiteral<"SELECTBOX">;
9748
+ value: z.ZodString;
9749
+ }, z.core.$strict>, z.ZodObject<{
9750
+ type: z.ZodLiteral<"DIVIDER">;
9751
+ }, z.core.$strict>, z.ZodObject<{
9752
+ type: z.ZodLiteral<"INFO">;
9753
+ text: z.ZodOptional<z.ZodString>;
9754
+ button: z.ZodOptional<z.ZodObject<{
9755
+ title: z.ZodOptional<z.ZodString>;
9756
+ link: z.ZodOptional<z.ZodString>;
9757
+ }, z.core.$strict>>;
9758
+ }, z.core.$strict>, z.ZodObject<{
9759
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
9760
+ }, z.core.$strict>, z.ZodObject<{
9761
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
9762
+ }, z.core.$strict>], "type">>;
9763
+ }, z.core.$strict>>;
9764
+ }, z.core.$strict>], "type">>;
9765
+ }, z.core.$strict>>;
9766
+ }, z.core.$strict>, z.ZodObject<{
9028
9767
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
9029
9768
  }, z.core.$strict>, z.ZodObject<{
9030
9769
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
@@ -9474,6 +10213,71 @@ declare const ManifestSchema: z.ZodObject<{
9474
10213
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
9475
10214
  }, z.core.$strict>, z.ZodObject<{
9476
10215
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
10216
+ }, z.core.$strict>, z.ZodObject<{
10217
+ type: z.ZodLiteral<"DECK">;
10218
+ cards: z.ZodArray<z.ZodObject<{
10219
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
10220
+ type: z.ZodLiteral<"INPUTBOX">;
10221
+ text: z.ZodString;
10222
+ }, z.core.$strict>, z.ZodObject<{
10223
+ type: z.ZodLiteral<"TEXTAREA">;
10224
+ text: z.ZodString;
10225
+ }, z.core.$strict>, z.ZodObject<{
10226
+ type: z.ZodLiteral<"BUTTON">;
10227
+ title: z.ZodString;
10228
+ buttonType: z.ZodEnum<{
10229
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
10230
+ HYPER_LINK: "HYPER_LINK";
10231
+ MAIL_LINK: "MAIL_LINK";
10232
+ TEL_LINK: "TEL_LINK";
10233
+ GO_TO_STORE: "GO_TO_STORE";
10234
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
10235
+ GO_TO_PAGE: "GO_TO_PAGE";
10236
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
10237
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
10238
+ }>;
10239
+ link: z.ZodOptional<z.ZodString>;
10240
+ linkTarget: z.ZodOptional<z.ZodString>;
10241
+ email: z.ZodOptional<z.ZodString>;
10242
+ phone: z.ZodOptional<z.ZodString>;
10243
+ tileId: z.ZodOptional<z.ZodString>;
10244
+ categoryId: z.ZodOptional<z.ZodNumber>;
10245
+ }, z.core.$strict>, z.ZodObject<{
10246
+ type: z.ZodLiteral<"IMAGE">;
10247
+ imageData: z.ZodObject<{
10248
+ set: z.ZodObject<{
10249
+ ORIGINAL: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
10250
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
10251
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
10252
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
10253
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
10254
+ }, z.core.$strict>;
10255
+ borderInfo: z.ZodOptional<z.ZodObject<{
10256
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
10257
+ color: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
10258
+ }, z.core.$strict>>;
10259
+ }, z.core.$strict>;
10260
+ }, z.core.$strict>, z.ZodObject<{
10261
+ type: z.ZodLiteral<"TOGGLE">;
10262
+ enabled: z.ZodBoolean;
10263
+ }, z.core.$strict>, z.ZodObject<{
10264
+ type: z.ZodLiteral<"SELECTBOX">;
10265
+ value: z.ZodString;
10266
+ }, z.core.$strict>, z.ZodObject<{
10267
+ type: z.ZodLiteral<"DIVIDER">;
10268
+ }, z.core.$strict>, z.ZodObject<{
10269
+ type: z.ZodLiteral<"INFO">;
10270
+ text: z.ZodOptional<z.ZodString>;
10271
+ button: z.ZodOptional<z.ZodObject<{
10272
+ title: z.ZodOptional<z.ZodString>;
10273
+ link: z.ZodOptional<z.ZodString>;
10274
+ }, z.core.$strict>>;
10275
+ }, z.core.$strict>, z.ZodObject<{
10276
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
10277
+ }, z.core.$strict>, z.ZodObject<{
10278
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
10279
+ }, z.core.$strict>], "type">>;
10280
+ }, z.core.$strict>>;
9477
10281
  }, z.core.$strict>], "type">>;
9478
10282
  }, z.core.$strict>>;
9479
10283
  }, z.core.$strict>, z.ZodObject<{
@@ -11055,6 +11859,71 @@ declare const ManifestSchema: z.ZodObject<{
11055
11859
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
11056
11860
  }, z.core.$strict>, z.ZodObject<{
11057
11861
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
11862
+ }, z.core.$strict>, z.ZodObject<{
11863
+ type: z.ZodLiteral<"DECK">;
11864
+ cards: z.ZodArray<z.ZodObject<{
11865
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
11866
+ type: z.ZodLiteral<"INPUTBOX">;
11867
+ text: z.ZodString;
11868
+ }, z.core.$strict>, z.ZodObject<{
11869
+ type: z.ZodLiteral<"TEXTAREA">;
11870
+ text: z.ZodString;
11871
+ }, z.core.$strict>, z.ZodObject<{
11872
+ type: z.ZodLiteral<"BUTTON">;
11873
+ title: z.ZodString;
11874
+ buttonType: z.ZodEnum<{
11875
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
11876
+ HYPER_LINK: "HYPER_LINK";
11877
+ MAIL_LINK: "MAIL_LINK";
11878
+ TEL_LINK: "TEL_LINK";
11879
+ GO_TO_STORE: "GO_TO_STORE";
11880
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
11881
+ GO_TO_PAGE: "GO_TO_PAGE";
11882
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
11883
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
11884
+ }>;
11885
+ link: z.ZodOptional<z.ZodString>;
11886
+ linkTarget: z.ZodOptional<z.ZodString>;
11887
+ email: z.ZodOptional<z.ZodString>;
11888
+ phone: z.ZodOptional<z.ZodString>;
11889
+ tileId: z.ZodOptional<z.ZodString>;
11890
+ categoryId: z.ZodOptional<z.ZodNumber>;
11891
+ }, z.core.$strict>, z.ZodObject<{
11892
+ type: z.ZodLiteral<"IMAGE">;
11893
+ imageData: z.ZodObject<{
11894
+ set: z.ZodObject<{
11895
+ ORIGINAL: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
11896
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
11897
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
11898
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
11899
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
11900
+ }, z.core.$strict>;
11901
+ borderInfo: z.ZodOptional<z.ZodObject<{
11902
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
11903
+ color: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
11904
+ }, z.core.$strict>>;
11905
+ }, z.core.$strict>;
11906
+ }, z.core.$strict>, z.ZodObject<{
11907
+ type: z.ZodLiteral<"TOGGLE">;
11908
+ enabled: z.ZodBoolean;
11909
+ }, z.core.$strict>, z.ZodObject<{
11910
+ type: z.ZodLiteral<"SELECTBOX">;
11911
+ value: z.ZodString;
11912
+ }, z.core.$strict>, z.ZodObject<{
11913
+ type: z.ZodLiteral<"DIVIDER">;
11914
+ }, z.core.$strict>, z.ZodObject<{
11915
+ type: z.ZodLiteral<"INFO">;
11916
+ text: z.ZodOptional<z.ZodString>;
11917
+ button: z.ZodOptional<z.ZodObject<{
11918
+ title: z.ZodOptional<z.ZodString>;
11919
+ link: z.ZodOptional<z.ZodString>;
11920
+ }, z.core.$strict>>;
11921
+ }, z.core.$strict>, z.ZodObject<{
11922
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
11923
+ }, z.core.$strict>, z.ZodObject<{
11924
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
11925
+ }, z.core.$strict>], "type">>;
11926
+ }, z.core.$strict>>;
11058
11927
  }, z.core.$strict>], "type">>;
11059
11928
  }, z.core.$strict>>;
11060
11929
  }, z.core.$strict>, z.ZodObject<{
@@ -11541,6 +12410,96 @@ declare const CustomSectionSchema: z.ZodObject<{
11541
12410
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
11542
12411
  }, z.core.$strict>, z.ZodObject<{
11543
12412
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
12413
+ }, z.core.$strict>, z.ZodObject<{
12414
+ type: z.ZodLiteral<"DECK">;
12415
+ cards: z.ZodArray<z.ZodObject<{
12416
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
12417
+ type: z.ZodLiteral<"INPUTBOX">;
12418
+ text: z.ZodString;
12419
+ }, z.core.$strict>, z.ZodObject<{
12420
+ type: z.ZodLiteral<"TEXTAREA">;
12421
+ text: z.ZodString;
12422
+ }, z.core.$strict>, z.ZodObject<{
12423
+ type: z.ZodLiteral<"BUTTON">;
12424
+ title: z.ZodString;
12425
+ buttonType: z.ZodEnum<{
12426
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
12427
+ HYPER_LINK: "HYPER_LINK";
12428
+ MAIL_LINK: "MAIL_LINK";
12429
+ TEL_LINK: "TEL_LINK";
12430
+ GO_TO_STORE: "GO_TO_STORE";
12431
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
12432
+ GO_TO_PAGE: "GO_TO_PAGE";
12433
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
12434
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
12435
+ }>;
12436
+ link: z.ZodOptional<z.ZodString>;
12437
+ linkTarget: z.ZodOptional<z.ZodString>;
12438
+ email: z.ZodOptional<z.ZodString>;
12439
+ phone: z.ZodOptional<z.ZodString>;
12440
+ tileId: z.ZodOptional<z.ZodString>;
12441
+ categoryId: z.ZodOptional<z.ZodNumber>;
12442
+ }, z.core.$strict>, z.ZodObject<{
12443
+ type: z.ZodLiteral<"IMAGE">;
12444
+ imageData: z.ZodObject<{
12445
+ set: z.ZodObject<{
12446
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
12447
+ url: z.ZodString;
12448
+ width: z.ZodOptional<z.ZodInt>;
12449
+ height: z.ZodOptional<z.ZodInt>;
12450
+ }, z.core.$strict>>;
12451
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
12452
+ url: z.ZodString;
12453
+ width: z.ZodOptional<z.ZodInt>;
12454
+ height: z.ZodOptional<z.ZodInt>;
12455
+ }, z.core.$strict>>;
12456
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
12457
+ url: z.ZodString;
12458
+ width: z.ZodOptional<z.ZodInt>;
12459
+ height: z.ZodOptional<z.ZodInt>;
12460
+ }, z.core.$strict>>;
12461
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
12462
+ url: z.ZodString;
12463
+ width: z.ZodOptional<z.ZodInt>;
12464
+ height: z.ZodOptional<z.ZodInt>;
12465
+ }, z.core.$strict>>;
12466
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
12467
+ url: z.ZodString;
12468
+ width: z.ZodOptional<z.ZodInt>;
12469
+ height: z.ZodOptional<z.ZodInt>;
12470
+ }, z.core.$strict>>;
12471
+ }, z.core.$strict>;
12472
+ borderInfo: z.ZodOptional<z.ZodObject<{
12473
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
12474
+ color: z.ZodOptional<z.ZodObject<{
12475
+ r: z.ZodNumber;
12476
+ g: z.ZodNumber;
12477
+ b: z.ZodNumber;
12478
+ a: z.ZodNumber;
12479
+ }, z.core.$strict>>;
12480
+ }, z.core.$strict>>;
12481
+ }, z.core.$strict>;
12482
+ }, z.core.$strict>, z.ZodObject<{
12483
+ type: z.ZodLiteral<"TOGGLE">;
12484
+ enabled: z.ZodBoolean;
12485
+ }, z.core.$strict>, z.ZodObject<{
12486
+ type: z.ZodLiteral<"SELECTBOX">;
12487
+ value: z.ZodString;
12488
+ }, z.core.$strict>, z.ZodObject<{
12489
+ type: z.ZodLiteral<"DIVIDER">;
12490
+ }, z.core.$strict>, z.ZodObject<{
12491
+ type: z.ZodLiteral<"INFO">;
12492
+ text: z.ZodOptional<z.ZodString>;
12493
+ button: z.ZodOptional<z.ZodObject<{
12494
+ title: z.ZodOptional<z.ZodString>;
12495
+ link: z.ZodOptional<z.ZodString>;
12496
+ }, z.core.$strict>>;
12497
+ }, z.core.$strict>, z.ZodObject<{
12498
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
12499
+ }, z.core.$strict>, z.ZodObject<{
12500
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
12501
+ }, z.core.$strict>], "type">>;
12502
+ }, z.core.$strict>>;
11544
12503
  }, z.core.$strict>], "type">>;
11545
12504
  }, z.core.$strict>>;
11546
12505
  }, z.core.$strict>, z.ZodObject<{
@@ -11992,44 +12951,134 @@ declare const SectionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
11992
12951
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
11993
12952
  }, z.core.$strict>, z.ZodObject<{
11994
12953
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
11995
- }, z.core.$strict>], "type">>;
11996
- }, z.core.$strict>>;
11997
- }, z.core.$strict>, z.ZodObject<{
11998
- type: z.ZodLiteral<"PRODUCT_SELECTOR">;
11999
- }, z.core.$strict>, z.ZodObject<{
12000
- type: z.ZodLiteral<"CATEGORY_SELECTOR">;
12001
- }, z.core.$strict>], "type">>>;
12002
- design: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
12003
- type: z.ZodLiteral<"TEXT">;
12004
- font: z.ZodOptional<z.ZodString>;
12005
- size: z.ZodOptional<z.ZodCustom<number | GlobalTextSizeValue, number | GlobalTextSizeValue>>;
12006
- bold: z.ZodOptional<z.ZodBoolean>;
12007
- italic: z.ZodOptional<z.ZodBoolean>;
12008
- color: z.ZodOptional<z.ZodCustom<string, string>>;
12009
- visible: z.ZodOptional<z.ZodBoolean>;
12010
- }, z.core.$strict>, z.ZodObject<{
12011
- type: z.ZodLiteral<"BUTTON">;
12012
- appearance: z.ZodOptional<z.ZodEnum<{
12013
- TEXT: "TEXT";
12014
- SOLID: "SOLID";
12015
- OUTLINE: "OUTLINE";
12016
- }>>;
12017
- size: z.ZodOptional<z.ZodEnum<{
12018
- SMALL: "SMALL";
12019
- MEDIUM: "MEDIUM";
12020
- LARGE: "LARGE";
12021
- }>>;
12022
- shape: z.ZodOptional<z.ZodEnum<{
12023
- ROUND_CORNER: "ROUND_CORNER";
12024
- RECTANGLE: "RECTANGLE";
12025
- PILL: "PILL";
12026
- }>>;
12027
- font: z.ZodOptional<z.ZodString>;
12028
- color: z.ZodOptional<z.ZodCustom<string, string>>;
12029
- visible: z.ZodOptional<z.ZodBoolean>;
12030
- }, z.core.$strict>, z.ZodObject<{
12031
- type: z.ZodLiteral<"IMAGE">;
12032
- overlay: z.ZodOptional<z.ZodEnum<{
12954
+ }, z.core.$strict>, z.ZodObject<{
12955
+ type: z.ZodLiteral<"DECK">;
12956
+ cards: z.ZodArray<z.ZodObject<{
12957
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
12958
+ type: z.ZodLiteral<"INPUTBOX">;
12959
+ text: z.ZodString;
12960
+ }, z.core.$strict>, z.ZodObject<{
12961
+ type: z.ZodLiteral<"TEXTAREA">;
12962
+ text: z.ZodString;
12963
+ }, z.core.$strict>, z.ZodObject<{
12964
+ type: z.ZodLiteral<"BUTTON">;
12965
+ title: z.ZodString;
12966
+ buttonType: z.ZodEnum<{
12967
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
12968
+ HYPER_LINK: "HYPER_LINK";
12969
+ MAIL_LINK: "MAIL_LINK";
12970
+ TEL_LINK: "TEL_LINK";
12971
+ GO_TO_STORE: "GO_TO_STORE";
12972
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
12973
+ GO_TO_PAGE: "GO_TO_PAGE";
12974
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
12975
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
12976
+ }>;
12977
+ link: z.ZodOptional<z.ZodString>;
12978
+ linkTarget: z.ZodOptional<z.ZodString>;
12979
+ email: z.ZodOptional<z.ZodString>;
12980
+ phone: z.ZodOptional<z.ZodString>;
12981
+ tileId: z.ZodOptional<z.ZodString>;
12982
+ categoryId: z.ZodOptional<z.ZodNumber>;
12983
+ }, z.core.$strict>, z.ZodObject<{
12984
+ type: z.ZodLiteral<"IMAGE">;
12985
+ imageData: z.ZodObject<{
12986
+ set: z.ZodObject<{
12987
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
12988
+ url: z.ZodString;
12989
+ width: z.ZodOptional<z.ZodInt>;
12990
+ height: z.ZodOptional<z.ZodInt>;
12991
+ }, z.core.$strict>>;
12992
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
12993
+ url: z.ZodString;
12994
+ width: z.ZodOptional<z.ZodInt>;
12995
+ height: z.ZodOptional<z.ZodInt>;
12996
+ }, z.core.$strict>>;
12997
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
12998
+ url: z.ZodString;
12999
+ width: z.ZodOptional<z.ZodInt>;
13000
+ height: z.ZodOptional<z.ZodInt>;
13001
+ }, z.core.$strict>>;
13002
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
13003
+ url: z.ZodString;
13004
+ width: z.ZodOptional<z.ZodInt>;
13005
+ height: z.ZodOptional<z.ZodInt>;
13006
+ }, z.core.$strict>>;
13007
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
13008
+ url: z.ZodString;
13009
+ width: z.ZodOptional<z.ZodInt>;
13010
+ height: z.ZodOptional<z.ZodInt>;
13011
+ }, z.core.$strict>>;
13012
+ }, z.core.$strict>;
13013
+ borderInfo: z.ZodOptional<z.ZodObject<{
13014
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
13015
+ color: z.ZodOptional<z.ZodObject<{
13016
+ r: z.ZodNumber;
13017
+ g: z.ZodNumber;
13018
+ b: z.ZodNumber;
13019
+ a: z.ZodNumber;
13020
+ }, z.core.$strict>>;
13021
+ }, z.core.$strict>>;
13022
+ }, z.core.$strict>;
13023
+ }, z.core.$strict>, z.ZodObject<{
13024
+ type: z.ZodLiteral<"TOGGLE">;
13025
+ enabled: z.ZodBoolean;
13026
+ }, z.core.$strict>, z.ZodObject<{
13027
+ type: z.ZodLiteral<"SELECTBOX">;
13028
+ value: z.ZodString;
13029
+ }, z.core.$strict>, z.ZodObject<{
13030
+ type: z.ZodLiteral<"DIVIDER">;
13031
+ }, z.core.$strict>, z.ZodObject<{
13032
+ type: z.ZodLiteral<"INFO">;
13033
+ text: z.ZodOptional<z.ZodString>;
13034
+ button: z.ZodOptional<z.ZodObject<{
13035
+ title: z.ZodOptional<z.ZodString>;
13036
+ link: z.ZodOptional<z.ZodString>;
13037
+ }, z.core.$strict>>;
13038
+ }, z.core.$strict>, z.ZodObject<{
13039
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
13040
+ }, z.core.$strict>, z.ZodObject<{
13041
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
13042
+ }, z.core.$strict>], "type">>;
13043
+ }, z.core.$strict>>;
13044
+ }, z.core.$strict>], "type">>;
13045
+ }, z.core.$strict>>;
13046
+ }, z.core.$strict>, z.ZodObject<{
13047
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
13048
+ }, z.core.$strict>, z.ZodObject<{
13049
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
13050
+ }, z.core.$strict>], "type">>>;
13051
+ design: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
13052
+ type: z.ZodLiteral<"TEXT">;
13053
+ font: z.ZodOptional<z.ZodString>;
13054
+ size: z.ZodOptional<z.ZodCustom<number | GlobalTextSizeValue, number | GlobalTextSizeValue>>;
13055
+ bold: z.ZodOptional<z.ZodBoolean>;
13056
+ italic: z.ZodOptional<z.ZodBoolean>;
13057
+ color: z.ZodOptional<z.ZodCustom<string, string>>;
13058
+ visible: z.ZodOptional<z.ZodBoolean>;
13059
+ }, z.core.$strict>, z.ZodObject<{
13060
+ type: z.ZodLiteral<"BUTTON">;
13061
+ appearance: z.ZodOptional<z.ZodEnum<{
13062
+ TEXT: "TEXT";
13063
+ SOLID: "SOLID";
13064
+ OUTLINE: "OUTLINE";
13065
+ }>>;
13066
+ size: z.ZodOptional<z.ZodEnum<{
13067
+ SMALL: "SMALL";
13068
+ MEDIUM: "MEDIUM";
13069
+ LARGE: "LARGE";
13070
+ }>>;
13071
+ shape: z.ZodOptional<z.ZodEnum<{
13072
+ ROUND_CORNER: "ROUND_CORNER";
13073
+ RECTANGLE: "RECTANGLE";
13074
+ PILL: "PILL";
13075
+ }>>;
13076
+ font: z.ZodOptional<z.ZodString>;
13077
+ color: z.ZodOptional<z.ZodCustom<string, string>>;
13078
+ visible: z.ZodOptional<z.ZodBoolean>;
13079
+ }, z.core.$strict>, z.ZodObject<{
13080
+ type: z.ZodLiteral<"IMAGE">;
13081
+ overlay: z.ZodOptional<z.ZodEnum<{
12033
13082
  COLOR: "COLOR";
12034
13083
  GRADIENT: "GRADIENT";
12035
13084
  NONE: "NONE";
@@ -12446,6 +13495,96 @@ declare const TemplatePageSchema: z.ZodObject<{
12446
13495
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
12447
13496
  }, z.core.$strict>, z.ZodObject<{
12448
13497
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
13498
+ }, z.core.$strict>, z.ZodObject<{
13499
+ type: z.ZodLiteral<"DECK">;
13500
+ cards: z.ZodArray<z.ZodObject<{
13501
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
13502
+ type: z.ZodLiteral<"INPUTBOX">;
13503
+ text: z.ZodString;
13504
+ }, z.core.$strict>, z.ZodObject<{
13505
+ type: z.ZodLiteral<"TEXTAREA">;
13506
+ text: z.ZodString;
13507
+ }, z.core.$strict>, z.ZodObject<{
13508
+ type: z.ZodLiteral<"BUTTON">;
13509
+ title: z.ZodString;
13510
+ buttonType: z.ZodEnum<{
13511
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
13512
+ HYPER_LINK: "HYPER_LINK";
13513
+ MAIL_LINK: "MAIL_LINK";
13514
+ TEL_LINK: "TEL_LINK";
13515
+ GO_TO_STORE: "GO_TO_STORE";
13516
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
13517
+ GO_TO_PAGE: "GO_TO_PAGE";
13518
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
13519
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
13520
+ }>;
13521
+ link: z.ZodOptional<z.ZodString>;
13522
+ linkTarget: z.ZodOptional<z.ZodString>;
13523
+ email: z.ZodOptional<z.ZodString>;
13524
+ phone: z.ZodOptional<z.ZodString>;
13525
+ tileId: z.ZodOptional<z.ZodString>;
13526
+ categoryId: z.ZodOptional<z.ZodNumber>;
13527
+ }, z.core.$strict>, z.ZodObject<{
13528
+ type: z.ZodLiteral<"IMAGE">;
13529
+ imageData: z.ZodObject<{
13530
+ set: z.ZodObject<{
13531
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
13532
+ url: z.ZodString;
13533
+ width: z.ZodOptional<z.ZodInt>;
13534
+ height: z.ZodOptional<z.ZodInt>;
13535
+ }, z.core.$strict>>;
13536
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
13537
+ url: z.ZodString;
13538
+ width: z.ZodOptional<z.ZodInt>;
13539
+ height: z.ZodOptional<z.ZodInt>;
13540
+ }, z.core.$strict>>;
13541
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
13542
+ url: z.ZodString;
13543
+ width: z.ZodOptional<z.ZodInt>;
13544
+ height: z.ZodOptional<z.ZodInt>;
13545
+ }, z.core.$strict>>;
13546
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
13547
+ url: z.ZodString;
13548
+ width: z.ZodOptional<z.ZodInt>;
13549
+ height: z.ZodOptional<z.ZodInt>;
13550
+ }, z.core.$strict>>;
13551
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
13552
+ url: z.ZodString;
13553
+ width: z.ZodOptional<z.ZodInt>;
13554
+ height: z.ZodOptional<z.ZodInt>;
13555
+ }, z.core.$strict>>;
13556
+ }, z.core.$strict>;
13557
+ borderInfo: z.ZodOptional<z.ZodObject<{
13558
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
13559
+ color: z.ZodOptional<z.ZodObject<{
13560
+ r: z.ZodNumber;
13561
+ g: z.ZodNumber;
13562
+ b: z.ZodNumber;
13563
+ a: z.ZodNumber;
13564
+ }, z.core.$strict>>;
13565
+ }, z.core.$strict>>;
13566
+ }, z.core.$strict>;
13567
+ }, z.core.$strict>, z.ZodObject<{
13568
+ type: z.ZodLiteral<"TOGGLE">;
13569
+ enabled: z.ZodBoolean;
13570
+ }, z.core.$strict>, z.ZodObject<{
13571
+ type: z.ZodLiteral<"SELECTBOX">;
13572
+ value: z.ZodString;
13573
+ }, z.core.$strict>, z.ZodObject<{
13574
+ type: z.ZodLiteral<"DIVIDER">;
13575
+ }, z.core.$strict>, z.ZodObject<{
13576
+ type: z.ZodLiteral<"INFO">;
13577
+ text: z.ZodOptional<z.ZodString>;
13578
+ button: z.ZodOptional<z.ZodObject<{
13579
+ title: z.ZodOptional<z.ZodString>;
13580
+ link: z.ZodOptional<z.ZodString>;
13581
+ }, z.core.$strict>>;
13582
+ }, z.core.$strict>, z.ZodObject<{
13583
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
13584
+ }, z.core.$strict>, z.ZodObject<{
13585
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
13586
+ }, z.core.$strict>], "type">>;
13587
+ }, z.core.$strict>>;
12449
13588
  }, z.core.$strict>], "type">>;
12450
13589
  }, z.core.$strict>>;
12451
13590
  }, z.core.$strict>, z.ZodObject<{
@@ -12901,6 +14040,96 @@ declare const TemplatePageNamedSchema: z.ZodObject<{
12901
14040
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
12902
14041
  }, z.core.$strict>, z.ZodObject<{
12903
14042
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
14043
+ }, z.core.$strict>, z.ZodObject<{
14044
+ type: z.ZodLiteral<"DECK">;
14045
+ cards: z.ZodArray<z.ZodObject<{
14046
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
14047
+ type: z.ZodLiteral<"INPUTBOX">;
14048
+ text: z.ZodString;
14049
+ }, z.core.$strict>, z.ZodObject<{
14050
+ type: z.ZodLiteral<"TEXTAREA">;
14051
+ text: z.ZodString;
14052
+ }, z.core.$strict>, z.ZodObject<{
14053
+ type: z.ZodLiteral<"BUTTON">;
14054
+ title: z.ZodString;
14055
+ buttonType: z.ZodEnum<{
14056
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
14057
+ HYPER_LINK: "HYPER_LINK";
14058
+ MAIL_LINK: "MAIL_LINK";
14059
+ TEL_LINK: "TEL_LINK";
14060
+ GO_TO_STORE: "GO_TO_STORE";
14061
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
14062
+ GO_TO_PAGE: "GO_TO_PAGE";
14063
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
14064
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
14065
+ }>;
14066
+ link: z.ZodOptional<z.ZodString>;
14067
+ linkTarget: z.ZodOptional<z.ZodString>;
14068
+ email: z.ZodOptional<z.ZodString>;
14069
+ phone: z.ZodOptional<z.ZodString>;
14070
+ tileId: z.ZodOptional<z.ZodString>;
14071
+ categoryId: z.ZodOptional<z.ZodNumber>;
14072
+ }, z.core.$strict>, z.ZodObject<{
14073
+ type: z.ZodLiteral<"IMAGE">;
14074
+ imageData: z.ZodObject<{
14075
+ set: z.ZodObject<{
14076
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
14077
+ url: z.ZodString;
14078
+ width: z.ZodOptional<z.ZodInt>;
14079
+ height: z.ZodOptional<z.ZodInt>;
14080
+ }, z.core.$strict>>;
14081
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
14082
+ url: z.ZodString;
14083
+ width: z.ZodOptional<z.ZodInt>;
14084
+ height: z.ZodOptional<z.ZodInt>;
14085
+ }, z.core.$strict>>;
14086
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
14087
+ url: z.ZodString;
14088
+ width: z.ZodOptional<z.ZodInt>;
14089
+ height: z.ZodOptional<z.ZodInt>;
14090
+ }, z.core.$strict>>;
14091
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
14092
+ url: z.ZodString;
14093
+ width: z.ZodOptional<z.ZodInt>;
14094
+ height: z.ZodOptional<z.ZodInt>;
14095
+ }, z.core.$strict>>;
14096
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
14097
+ url: z.ZodString;
14098
+ width: z.ZodOptional<z.ZodInt>;
14099
+ height: z.ZodOptional<z.ZodInt>;
14100
+ }, z.core.$strict>>;
14101
+ }, z.core.$strict>;
14102
+ borderInfo: z.ZodOptional<z.ZodObject<{
14103
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
14104
+ color: z.ZodOptional<z.ZodObject<{
14105
+ r: z.ZodNumber;
14106
+ g: z.ZodNumber;
14107
+ b: z.ZodNumber;
14108
+ a: z.ZodNumber;
14109
+ }, z.core.$strict>>;
14110
+ }, z.core.$strict>>;
14111
+ }, z.core.$strict>;
14112
+ }, z.core.$strict>, z.ZodObject<{
14113
+ type: z.ZodLiteral<"TOGGLE">;
14114
+ enabled: z.ZodBoolean;
14115
+ }, z.core.$strict>, z.ZodObject<{
14116
+ type: z.ZodLiteral<"SELECTBOX">;
14117
+ value: z.ZodString;
14118
+ }, z.core.$strict>, z.ZodObject<{
14119
+ type: z.ZodLiteral<"DIVIDER">;
14120
+ }, z.core.$strict>, z.ZodObject<{
14121
+ type: z.ZodLiteral<"INFO">;
14122
+ text: z.ZodOptional<z.ZodString>;
14123
+ button: z.ZodOptional<z.ZodObject<{
14124
+ title: z.ZodOptional<z.ZodString>;
14125
+ link: z.ZodOptional<z.ZodString>;
14126
+ }, z.core.$strict>>;
14127
+ }, z.core.$strict>, z.ZodObject<{
14128
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
14129
+ }, z.core.$strict>, z.ZodObject<{
14130
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
14131
+ }, z.core.$strict>], "type">>;
14132
+ }, z.core.$strict>>;
12904
14133
  }, z.core.$strict>], "type">>;
12905
14134
  }, z.core.$strict>>;
12906
14135
  }, z.core.$strict>, z.ZodObject<{
@@ -13416,6 +14645,96 @@ declare const TemplateConfigurationSectionSchema: z.ZodDiscriminatedUnion<[z.Zod
13416
14645
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
13417
14646
  }, z.core.$strict>, z.ZodObject<{
13418
14647
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
14648
+ }, z.core.$strict>, z.ZodObject<{
14649
+ type: z.ZodLiteral<"DECK">;
14650
+ cards: z.ZodArray<z.ZodObject<{
14651
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
14652
+ type: z.ZodLiteral<"INPUTBOX">;
14653
+ text: z.ZodString;
14654
+ }, z.core.$strict>, z.ZodObject<{
14655
+ type: z.ZodLiteral<"TEXTAREA">;
14656
+ text: z.ZodString;
14657
+ }, z.core.$strict>, z.ZodObject<{
14658
+ type: z.ZodLiteral<"BUTTON">;
14659
+ title: z.ZodString;
14660
+ buttonType: z.ZodEnum<{
14661
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
14662
+ HYPER_LINK: "HYPER_LINK";
14663
+ MAIL_LINK: "MAIL_LINK";
14664
+ TEL_LINK: "TEL_LINK";
14665
+ GO_TO_STORE: "GO_TO_STORE";
14666
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
14667
+ GO_TO_PAGE: "GO_TO_PAGE";
14668
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
14669
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
14670
+ }>;
14671
+ link: z.ZodOptional<z.ZodString>;
14672
+ linkTarget: z.ZodOptional<z.ZodString>;
14673
+ email: z.ZodOptional<z.ZodString>;
14674
+ phone: z.ZodOptional<z.ZodString>;
14675
+ tileId: z.ZodOptional<z.ZodString>;
14676
+ categoryId: z.ZodOptional<z.ZodNumber>;
14677
+ }, z.core.$strict>, z.ZodObject<{
14678
+ type: z.ZodLiteral<"IMAGE">;
14679
+ imageData: z.ZodObject<{
14680
+ set: z.ZodObject<{
14681
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
14682
+ url: z.ZodString;
14683
+ width: z.ZodOptional<z.ZodInt>;
14684
+ height: z.ZodOptional<z.ZodInt>;
14685
+ }, z.core.$strict>>;
14686
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
14687
+ url: z.ZodString;
14688
+ width: z.ZodOptional<z.ZodInt>;
14689
+ height: z.ZodOptional<z.ZodInt>;
14690
+ }, z.core.$strict>>;
14691
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
14692
+ url: z.ZodString;
14693
+ width: z.ZodOptional<z.ZodInt>;
14694
+ height: z.ZodOptional<z.ZodInt>;
14695
+ }, z.core.$strict>>;
14696
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
14697
+ url: z.ZodString;
14698
+ width: z.ZodOptional<z.ZodInt>;
14699
+ height: z.ZodOptional<z.ZodInt>;
14700
+ }, z.core.$strict>>;
14701
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
14702
+ url: z.ZodString;
14703
+ width: z.ZodOptional<z.ZodInt>;
14704
+ height: z.ZodOptional<z.ZodInt>;
14705
+ }, z.core.$strict>>;
14706
+ }, z.core.$strict>;
14707
+ borderInfo: z.ZodOptional<z.ZodObject<{
14708
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
14709
+ color: z.ZodOptional<z.ZodObject<{
14710
+ r: z.ZodNumber;
14711
+ g: z.ZodNumber;
14712
+ b: z.ZodNumber;
14713
+ a: z.ZodNumber;
14714
+ }, z.core.$strict>>;
14715
+ }, z.core.$strict>>;
14716
+ }, z.core.$strict>;
14717
+ }, z.core.$strict>, z.ZodObject<{
14718
+ type: z.ZodLiteral<"TOGGLE">;
14719
+ enabled: z.ZodBoolean;
14720
+ }, z.core.$strict>, z.ZodObject<{
14721
+ type: z.ZodLiteral<"SELECTBOX">;
14722
+ value: z.ZodString;
14723
+ }, z.core.$strict>, z.ZodObject<{
14724
+ type: z.ZodLiteral<"DIVIDER">;
14725
+ }, z.core.$strict>, z.ZodObject<{
14726
+ type: z.ZodLiteral<"INFO">;
14727
+ text: z.ZodOptional<z.ZodString>;
14728
+ button: z.ZodOptional<z.ZodObject<{
14729
+ title: z.ZodOptional<z.ZodString>;
14730
+ link: z.ZodOptional<z.ZodString>;
14731
+ }, z.core.$strict>>;
14732
+ }, z.core.$strict>, z.ZodObject<{
14733
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
14734
+ }, z.core.$strict>, z.ZodObject<{
14735
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
14736
+ }, z.core.$strict>], "type">>;
14737
+ }, z.core.$strict>>;
13419
14738
  }, z.core.$strict>], "type">>;
13420
14739
  }, z.core.$strict>>;
13421
14740
  }, z.core.$strict>, z.ZodObject<{
@@ -13899,27 +15218,117 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
13899
15218
  b: z.ZodNumber;
13900
15219
  a: z.ZodNumber;
13901
15220
  }, z.core.$strict>>;
13902
- }, z.core.$strict>>;
13903
- }, z.core.$strict>;
13904
- }, z.core.$strict>, z.ZodObject<{
13905
- type: z.ZodLiteral<"TOGGLE">;
13906
- enabled: z.ZodBoolean;
13907
- }, z.core.$strict>, z.ZodObject<{
13908
- type: z.ZodLiteral<"SELECTBOX">;
13909
- value: z.ZodString;
13910
- }, z.core.$strict>, z.ZodObject<{
13911
- type: z.ZodLiteral<"DIVIDER">;
13912
- }, z.core.$strict>, z.ZodObject<{
13913
- type: z.ZodLiteral<"INFO">;
13914
- text: z.ZodOptional<z.ZodString>;
13915
- button: z.ZodOptional<z.ZodObject<{
13916
- title: z.ZodOptional<z.ZodString>;
13917
- link: z.ZodOptional<z.ZodString>;
15221
+ }, z.core.$strict>>;
15222
+ }, z.core.$strict>;
15223
+ }, z.core.$strict>, z.ZodObject<{
15224
+ type: z.ZodLiteral<"TOGGLE">;
15225
+ enabled: z.ZodBoolean;
15226
+ }, z.core.$strict>, z.ZodObject<{
15227
+ type: z.ZodLiteral<"SELECTBOX">;
15228
+ value: z.ZodString;
15229
+ }, z.core.$strict>, z.ZodObject<{
15230
+ type: z.ZodLiteral<"DIVIDER">;
15231
+ }, z.core.$strict>, z.ZodObject<{
15232
+ type: z.ZodLiteral<"INFO">;
15233
+ text: z.ZodOptional<z.ZodString>;
15234
+ button: z.ZodOptional<z.ZodObject<{
15235
+ title: z.ZodOptional<z.ZodString>;
15236
+ link: z.ZodOptional<z.ZodString>;
15237
+ }, z.core.$strict>>;
15238
+ }, z.core.$strict>, z.ZodObject<{
15239
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
15240
+ }, z.core.$strict>, z.ZodObject<{
15241
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
15242
+ }, z.core.$strict>, z.ZodObject<{
15243
+ type: z.ZodLiteral<"DECK">;
15244
+ cards: z.ZodArray<z.ZodObject<{
15245
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
15246
+ type: z.ZodLiteral<"INPUTBOX">;
15247
+ text: z.ZodString;
15248
+ }, z.core.$strict>, z.ZodObject<{
15249
+ type: z.ZodLiteral<"TEXTAREA">;
15250
+ text: z.ZodString;
15251
+ }, z.core.$strict>, z.ZodObject<{
15252
+ type: z.ZodLiteral<"BUTTON">;
15253
+ title: z.ZodString;
15254
+ buttonType: z.ZodEnum<{
15255
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
15256
+ HYPER_LINK: "HYPER_LINK";
15257
+ MAIL_LINK: "MAIL_LINK";
15258
+ TEL_LINK: "TEL_LINK";
15259
+ GO_TO_STORE: "GO_TO_STORE";
15260
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
15261
+ GO_TO_PAGE: "GO_TO_PAGE";
15262
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
15263
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
15264
+ }>;
15265
+ link: z.ZodOptional<z.ZodString>;
15266
+ linkTarget: z.ZodOptional<z.ZodString>;
15267
+ email: z.ZodOptional<z.ZodString>;
15268
+ phone: z.ZodOptional<z.ZodString>;
15269
+ tileId: z.ZodOptional<z.ZodString>;
15270
+ categoryId: z.ZodOptional<z.ZodNumber>;
15271
+ }, z.core.$strict>, z.ZodObject<{
15272
+ type: z.ZodLiteral<"IMAGE">;
15273
+ imageData: z.ZodObject<{
15274
+ set: z.ZodObject<{
15275
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
15276
+ url: z.ZodString;
15277
+ width: z.ZodOptional<z.ZodInt>;
15278
+ height: z.ZodOptional<z.ZodInt>;
15279
+ }, z.core.$strict>>;
15280
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
15281
+ url: z.ZodString;
15282
+ width: z.ZodOptional<z.ZodInt>;
15283
+ height: z.ZodOptional<z.ZodInt>;
15284
+ }, z.core.$strict>>;
15285
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
15286
+ url: z.ZodString;
15287
+ width: z.ZodOptional<z.ZodInt>;
15288
+ height: z.ZodOptional<z.ZodInt>;
15289
+ }, z.core.$strict>>;
15290
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
15291
+ url: z.ZodString;
15292
+ width: z.ZodOptional<z.ZodInt>;
15293
+ height: z.ZodOptional<z.ZodInt>;
15294
+ }, z.core.$strict>>;
15295
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
15296
+ url: z.ZodString;
15297
+ width: z.ZodOptional<z.ZodInt>;
15298
+ height: z.ZodOptional<z.ZodInt>;
15299
+ }, z.core.$strict>>;
15300
+ }, z.core.$strict>;
15301
+ borderInfo: z.ZodOptional<z.ZodObject<{
15302
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
15303
+ color: z.ZodOptional<z.ZodObject<{
15304
+ r: z.ZodNumber;
15305
+ g: z.ZodNumber;
15306
+ b: z.ZodNumber;
15307
+ a: z.ZodNumber;
15308
+ }, z.core.$strict>>;
15309
+ }, z.core.$strict>>;
15310
+ }, z.core.$strict>;
15311
+ }, z.core.$strict>, z.ZodObject<{
15312
+ type: z.ZodLiteral<"TOGGLE">;
15313
+ enabled: z.ZodBoolean;
15314
+ }, z.core.$strict>, z.ZodObject<{
15315
+ type: z.ZodLiteral<"SELECTBOX">;
15316
+ value: z.ZodString;
15317
+ }, z.core.$strict>, z.ZodObject<{
15318
+ type: z.ZodLiteral<"DIVIDER">;
15319
+ }, z.core.$strict>, z.ZodObject<{
15320
+ type: z.ZodLiteral<"INFO">;
15321
+ text: z.ZodOptional<z.ZodString>;
15322
+ button: z.ZodOptional<z.ZodObject<{
15323
+ title: z.ZodOptional<z.ZodString>;
15324
+ link: z.ZodOptional<z.ZodString>;
15325
+ }, z.core.$strict>>;
15326
+ }, z.core.$strict>, z.ZodObject<{
15327
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
15328
+ }, z.core.$strict>, z.ZodObject<{
15329
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
15330
+ }, z.core.$strict>], "type">>;
13918
15331
  }, z.core.$strict>>;
13919
- }, z.core.$strict>, z.ZodObject<{
13920
- type: z.ZodLiteral<"PRODUCT_SELECTOR">;
13921
- }, z.core.$strict>, z.ZodObject<{
13922
- type: z.ZodLiteral<"CATEGORY_SELECTOR">;
13923
15332
  }, z.core.$strict>], "type">>;
13924
15333
  }, z.core.$strict>>;
13925
15334
  }, z.core.$strict>, z.ZodObject<{
@@ -14367,6 +15776,96 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
14367
15776
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
14368
15777
  }, z.core.$strict>, z.ZodObject<{
14369
15778
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
15779
+ }, z.core.$strict>, z.ZodObject<{
15780
+ type: z.ZodLiteral<"DECK">;
15781
+ cards: z.ZodArray<z.ZodObject<{
15782
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
15783
+ type: z.ZodLiteral<"INPUTBOX">;
15784
+ text: z.ZodString;
15785
+ }, z.core.$strict>, z.ZodObject<{
15786
+ type: z.ZodLiteral<"TEXTAREA">;
15787
+ text: z.ZodString;
15788
+ }, z.core.$strict>, z.ZodObject<{
15789
+ type: z.ZodLiteral<"BUTTON">;
15790
+ title: z.ZodString;
15791
+ buttonType: z.ZodEnum<{
15792
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
15793
+ HYPER_LINK: "HYPER_LINK";
15794
+ MAIL_LINK: "MAIL_LINK";
15795
+ TEL_LINK: "TEL_LINK";
15796
+ GO_TO_STORE: "GO_TO_STORE";
15797
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
15798
+ GO_TO_PAGE: "GO_TO_PAGE";
15799
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
15800
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
15801
+ }>;
15802
+ link: z.ZodOptional<z.ZodString>;
15803
+ linkTarget: z.ZodOptional<z.ZodString>;
15804
+ email: z.ZodOptional<z.ZodString>;
15805
+ phone: z.ZodOptional<z.ZodString>;
15806
+ tileId: z.ZodOptional<z.ZodString>;
15807
+ categoryId: z.ZodOptional<z.ZodNumber>;
15808
+ }, z.core.$strict>, z.ZodObject<{
15809
+ type: z.ZodLiteral<"IMAGE">;
15810
+ imageData: z.ZodObject<{
15811
+ set: z.ZodObject<{
15812
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
15813
+ url: z.ZodString;
15814
+ width: z.ZodOptional<z.ZodInt>;
15815
+ height: z.ZodOptional<z.ZodInt>;
15816
+ }, z.core.$strict>>;
15817
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
15818
+ url: z.ZodString;
15819
+ width: z.ZodOptional<z.ZodInt>;
15820
+ height: z.ZodOptional<z.ZodInt>;
15821
+ }, z.core.$strict>>;
15822
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
15823
+ url: z.ZodString;
15824
+ width: z.ZodOptional<z.ZodInt>;
15825
+ height: z.ZodOptional<z.ZodInt>;
15826
+ }, z.core.$strict>>;
15827
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
15828
+ url: z.ZodString;
15829
+ width: z.ZodOptional<z.ZodInt>;
15830
+ height: z.ZodOptional<z.ZodInt>;
15831
+ }, z.core.$strict>>;
15832
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
15833
+ url: z.ZodString;
15834
+ width: z.ZodOptional<z.ZodInt>;
15835
+ height: z.ZodOptional<z.ZodInt>;
15836
+ }, z.core.$strict>>;
15837
+ }, z.core.$strict>;
15838
+ borderInfo: z.ZodOptional<z.ZodObject<{
15839
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
15840
+ color: z.ZodOptional<z.ZodObject<{
15841
+ r: z.ZodNumber;
15842
+ g: z.ZodNumber;
15843
+ b: z.ZodNumber;
15844
+ a: z.ZodNumber;
15845
+ }, z.core.$strict>>;
15846
+ }, z.core.$strict>>;
15847
+ }, z.core.$strict>;
15848
+ }, z.core.$strict>, z.ZodObject<{
15849
+ type: z.ZodLiteral<"TOGGLE">;
15850
+ enabled: z.ZodBoolean;
15851
+ }, z.core.$strict>, z.ZodObject<{
15852
+ type: z.ZodLiteral<"SELECTBOX">;
15853
+ value: z.ZodString;
15854
+ }, z.core.$strict>, z.ZodObject<{
15855
+ type: z.ZodLiteral<"DIVIDER">;
15856
+ }, z.core.$strict>, z.ZodObject<{
15857
+ type: z.ZodLiteral<"INFO">;
15858
+ text: z.ZodOptional<z.ZodString>;
15859
+ button: z.ZodOptional<z.ZodObject<{
15860
+ title: z.ZodOptional<z.ZodString>;
15861
+ link: z.ZodOptional<z.ZodString>;
15862
+ }, z.core.$strict>>;
15863
+ }, z.core.$strict>, z.ZodObject<{
15864
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
15865
+ }, z.core.$strict>, z.ZodObject<{
15866
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
15867
+ }, z.core.$strict>], "type">>;
15868
+ }, z.core.$strict>>;
14370
15869
  }, z.core.$strict>], "type">>;
14371
15870
  }, z.core.$strict>>;
14372
15871
  }, z.core.$strict>, z.ZodObject<{
@@ -14878,6 +16377,71 @@ declare const TemplateSchema: z.ZodObject<{
14878
16377
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
14879
16378
  }, z.core.$strict>, z.ZodObject<{
14880
16379
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
16380
+ }, z.core.$strict>, z.ZodObject<{
16381
+ type: z.ZodLiteral<"DECK">;
16382
+ cards: z.ZodArray<z.ZodObject<{
16383
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
16384
+ type: z.ZodLiteral<"INPUTBOX">;
16385
+ text: z.ZodString;
16386
+ }, z.core.$strict>, z.ZodObject<{
16387
+ type: z.ZodLiteral<"TEXTAREA">;
16388
+ text: z.ZodString;
16389
+ }, z.core.$strict>, z.ZodObject<{
16390
+ type: z.ZodLiteral<"BUTTON">;
16391
+ title: z.ZodString;
16392
+ buttonType: z.ZodEnum<{
16393
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
16394
+ HYPER_LINK: "HYPER_LINK";
16395
+ MAIL_LINK: "MAIL_LINK";
16396
+ TEL_LINK: "TEL_LINK";
16397
+ GO_TO_STORE: "GO_TO_STORE";
16398
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
16399
+ GO_TO_PAGE: "GO_TO_PAGE";
16400
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
16401
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
16402
+ }>;
16403
+ link: z.ZodOptional<z.ZodString>;
16404
+ linkTarget: z.ZodOptional<z.ZodString>;
16405
+ email: z.ZodOptional<z.ZodString>;
16406
+ phone: z.ZodOptional<z.ZodString>;
16407
+ tileId: z.ZodOptional<z.ZodString>;
16408
+ categoryId: z.ZodOptional<z.ZodNumber>;
16409
+ }, z.core.$strict>, z.ZodObject<{
16410
+ type: z.ZodLiteral<"IMAGE">;
16411
+ imageData: z.ZodObject<{
16412
+ set: z.ZodObject<{
16413
+ ORIGINAL: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16414
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16415
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16416
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16417
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16418
+ }, z.core.$strict>;
16419
+ borderInfo: z.ZodOptional<z.ZodObject<{
16420
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
16421
+ color: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16422
+ }, z.core.$strict>>;
16423
+ }, z.core.$strict>;
16424
+ }, z.core.$strict>, z.ZodObject<{
16425
+ type: z.ZodLiteral<"TOGGLE">;
16426
+ enabled: z.ZodBoolean;
16427
+ }, z.core.$strict>, z.ZodObject<{
16428
+ type: z.ZodLiteral<"SELECTBOX">;
16429
+ value: z.ZodString;
16430
+ }, z.core.$strict>, z.ZodObject<{
16431
+ type: z.ZodLiteral<"DIVIDER">;
16432
+ }, z.core.$strict>, z.ZodObject<{
16433
+ type: z.ZodLiteral<"INFO">;
16434
+ text: z.ZodOptional<z.ZodString>;
16435
+ button: z.ZodOptional<z.ZodObject<{
16436
+ title: z.ZodOptional<z.ZodString>;
16437
+ link: z.ZodOptional<z.ZodString>;
16438
+ }, z.core.$strict>>;
16439
+ }, z.core.$strict>, z.ZodObject<{
16440
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
16441
+ }, z.core.$strict>, z.ZodObject<{
16442
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
16443
+ }, z.core.$strict>], "type">>;
16444
+ }, z.core.$strict>>;
14881
16445
  }, z.core.$strict>], "type">>;
14882
16446
  }, z.core.$strict>>;
14883
16447
  }, z.core.$strict>, z.ZodObject<{
@@ -15325,6 +16889,71 @@ declare const TemplateSchema: z.ZodObject<{
15325
16889
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
15326
16890
  }, z.core.$strict>, z.ZodObject<{
15327
16891
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
16892
+ }, z.core.$strict>, z.ZodObject<{
16893
+ type: z.ZodLiteral<"DECK">;
16894
+ cards: z.ZodArray<z.ZodObject<{
16895
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
16896
+ type: z.ZodLiteral<"INPUTBOX">;
16897
+ text: z.ZodString;
16898
+ }, z.core.$strict>, z.ZodObject<{
16899
+ type: z.ZodLiteral<"TEXTAREA">;
16900
+ text: z.ZodString;
16901
+ }, z.core.$strict>, z.ZodObject<{
16902
+ type: z.ZodLiteral<"BUTTON">;
16903
+ title: z.ZodString;
16904
+ buttonType: z.ZodEnum<{
16905
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
16906
+ HYPER_LINK: "HYPER_LINK";
16907
+ MAIL_LINK: "MAIL_LINK";
16908
+ TEL_LINK: "TEL_LINK";
16909
+ GO_TO_STORE: "GO_TO_STORE";
16910
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
16911
+ GO_TO_PAGE: "GO_TO_PAGE";
16912
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
16913
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
16914
+ }>;
16915
+ link: z.ZodOptional<z.ZodString>;
16916
+ linkTarget: z.ZodOptional<z.ZodString>;
16917
+ email: z.ZodOptional<z.ZodString>;
16918
+ phone: z.ZodOptional<z.ZodString>;
16919
+ tileId: z.ZodOptional<z.ZodString>;
16920
+ categoryId: z.ZodOptional<z.ZodNumber>;
16921
+ }, z.core.$strict>, z.ZodObject<{
16922
+ type: z.ZodLiteral<"IMAGE">;
16923
+ imageData: z.ZodObject<{
16924
+ set: z.ZodObject<{
16925
+ ORIGINAL: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16926
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16927
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16928
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16929
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16930
+ }, z.core.$strict>;
16931
+ borderInfo: z.ZodOptional<z.ZodObject<{
16932
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
16933
+ color: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16934
+ }, z.core.$strict>>;
16935
+ }, z.core.$strict>;
16936
+ }, z.core.$strict>, z.ZodObject<{
16937
+ type: z.ZodLiteral<"TOGGLE">;
16938
+ enabled: z.ZodBoolean;
16939
+ }, z.core.$strict>, z.ZodObject<{
16940
+ type: z.ZodLiteral<"SELECTBOX">;
16941
+ value: z.ZodString;
16942
+ }, z.core.$strict>, z.ZodObject<{
16943
+ type: z.ZodLiteral<"DIVIDER">;
16944
+ }, z.core.$strict>, z.ZodObject<{
16945
+ type: z.ZodLiteral<"INFO">;
16946
+ text: z.ZodOptional<z.ZodString>;
16947
+ button: z.ZodOptional<z.ZodObject<{
16948
+ title: z.ZodOptional<z.ZodString>;
16949
+ link: z.ZodOptional<z.ZodString>;
16950
+ }, z.core.$strict>>;
16951
+ }, z.core.$strict>, z.ZodObject<{
16952
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
16953
+ }, z.core.$strict>, z.ZodObject<{
16954
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
16955
+ }, z.core.$strict>], "type">>;
16956
+ }, z.core.$strict>>;
15328
16957
  }, z.core.$strict>], "type">>;
15329
16958
  }, z.core.$strict>>;
15330
16959
  }, z.core.$strict>, z.ZodObject<{
@@ -15777,6 +17406,96 @@ declare const TemplateSchema: z.ZodObject<{
15777
17406
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
15778
17407
  }, z.core.$strict>, z.ZodObject<{
15779
17408
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
17409
+ }, z.core.$strict>, z.ZodObject<{
17410
+ type: z.ZodLiteral<"DECK">;
17411
+ cards: z.ZodArray<z.ZodObject<{
17412
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
17413
+ type: z.ZodLiteral<"INPUTBOX">;
17414
+ text: z.ZodString;
17415
+ }, z.core.$strict>, z.ZodObject<{
17416
+ type: z.ZodLiteral<"TEXTAREA">;
17417
+ text: z.ZodString;
17418
+ }, z.core.$strict>, z.ZodObject<{
17419
+ type: z.ZodLiteral<"BUTTON">;
17420
+ title: z.ZodString;
17421
+ buttonType: z.ZodEnum<{
17422
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
17423
+ HYPER_LINK: "HYPER_LINK";
17424
+ MAIL_LINK: "MAIL_LINK";
17425
+ TEL_LINK: "TEL_LINK";
17426
+ GO_TO_STORE: "GO_TO_STORE";
17427
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
17428
+ GO_TO_PAGE: "GO_TO_PAGE";
17429
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
17430
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
17431
+ }>;
17432
+ link: z.ZodOptional<z.ZodString>;
17433
+ linkTarget: z.ZodOptional<z.ZodString>;
17434
+ email: z.ZodOptional<z.ZodString>;
17435
+ phone: z.ZodOptional<z.ZodString>;
17436
+ tileId: z.ZodOptional<z.ZodString>;
17437
+ categoryId: z.ZodOptional<z.ZodNumber>;
17438
+ }, z.core.$strict>, z.ZodObject<{
17439
+ type: z.ZodLiteral<"IMAGE">;
17440
+ imageData: z.ZodObject<{
17441
+ set: z.ZodObject<{
17442
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
17443
+ url: z.ZodString;
17444
+ width: z.ZodOptional<z.ZodInt>;
17445
+ height: z.ZodOptional<z.ZodInt>;
17446
+ }, z.core.$strict>>;
17447
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
17448
+ url: z.ZodString;
17449
+ width: z.ZodOptional<z.ZodInt>;
17450
+ height: z.ZodOptional<z.ZodInt>;
17451
+ }, z.core.$strict>>;
17452
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
17453
+ url: z.ZodString;
17454
+ width: z.ZodOptional<z.ZodInt>;
17455
+ height: z.ZodOptional<z.ZodInt>;
17456
+ }, z.core.$strict>>;
17457
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
17458
+ url: z.ZodString;
17459
+ width: z.ZodOptional<z.ZodInt>;
17460
+ height: z.ZodOptional<z.ZodInt>;
17461
+ }, z.core.$strict>>;
17462
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
17463
+ url: z.ZodString;
17464
+ width: z.ZodOptional<z.ZodInt>;
17465
+ height: z.ZodOptional<z.ZodInt>;
17466
+ }, z.core.$strict>>;
17467
+ }, z.core.$strict>;
17468
+ borderInfo: z.ZodOptional<z.ZodObject<{
17469
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
17470
+ color: z.ZodOptional<z.ZodObject<{
17471
+ r: z.ZodNumber;
17472
+ g: z.ZodNumber;
17473
+ b: z.ZodNumber;
17474
+ a: z.ZodNumber;
17475
+ }, z.core.$strict>>;
17476
+ }, z.core.$strict>>;
17477
+ }, z.core.$strict>;
17478
+ }, z.core.$strict>, z.ZodObject<{
17479
+ type: z.ZodLiteral<"TOGGLE">;
17480
+ enabled: z.ZodBoolean;
17481
+ }, z.core.$strict>, z.ZodObject<{
17482
+ type: z.ZodLiteral<"SELECTBOX">;
17483
+ value: z.ZodString;
17484
+ }, z.core.$strict>, z.ZodObject<{
17485
+ type: z.ZodLiteral<"DIVIDER">;
17486
+ }, z.core.$strict>, z.ZodObject<{
17487
+ type: z.ZodLiteral<"INFO">;
17488
+ text: z.ZodOptional<z.ZodString>;
17489
+ button: z.ZodOptional<z.ZodObject<{
17490
+ title: z.ZodOptional<z.ZodString>;
17491
+ link: z.ZodOptional<z.ZodString>;
17492
+ }, z.core.$strict>>;
17493
+ }, z.core.$strict>, z.ZodObject<{
17494
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
17495
+ }, z.core.$strict>, z.ZodObject<{
17496
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
17497
+ }, z.core.$strict>], "type">>;
17498
+ }, z.core.$strict>>;
15780
17499
  }, z.core.$strict>], "type">>;
15781
17500
  }, z.core.$strict>>;
15782
17501
  }, z.core.$strict>, z.ZodObject<{
@@ -16489,7 +18208,7 @@ declare function useButtonElementContent<CONTENT>(elementName: string, externalC
16489
18208
  * @returns `Reactive<CategorySelector>` — reactive object with:
16490
18209
  * - `categories: ComputedRef<CategoryListComponentItem[]>` — array of category objects with `id`, `name`, `url`, `imageUrl`, etc.
16491
18210
  * - `categoryIds: ComputedRef<Array<number>>` — array of selected category IDs
16492
- * - `hasContent: ComputedRef<boolean>` — `true` if selector data exists
18211
+ * - `hasContent: ComputedRef<boolean>` — `true` if there are categories to render
16493
18212
  * - `hasCategories: ComputedRef<boolean>` — `true` if at least one category is selected
16494
18213
  *
16495
18214
  * @see {@link CategorySelectorContent}
@@ -16715,7 +18434,7 @@ declare function useNavigationMenuElementContent<CONTENT>(): {
16715
18434
  * - `products: ComputedRef<ProductListComponentItem[]>` — array of product objects with `id`, `name`, `price`, `imageUrl`, etc.
16716
18435
  * - `categories: ComputedRef<CategoryListComponentItem[]>` — array of categories (when using category selection)
16717
18436
  * - `categoryId: ComputedRef<number>` — selected category ID (when using category selection)
16718
- * - `hasContent: ComputedRef<boolean>` — `true` if selector data exists
18437
+ * - `hasContent: ComputedRef<boolean>` — `true` if there are products to render
16719
18438
  * - `hasProducts: ComputedRef<boolean>` — `true` if at least one product is selected
16720
18439
  *
16721
18440
  * @see {@link ProductSelectorContent}
@@ -18073,4 +19792,4 @@ declare const translation: {
18073
19792
  };
18074
19793
 
18075
19794
  export { ActionLinkTypeEnum, BackgroundStyleEnum, ButtonAppearanceEnum, ButtonShapeEnum, ButtonSizeEnum, ButtonTypeEnum, CatalogLayoutSlot, CategoryLayoutSlot, Color$1 as Color, ConfigTypeEnum, DesignEditorType, EditorTypes, ImageSet, InstantsiteJsEvent, LogoTypeEnum, OverlayType, OverlayTypeEnum, PluginTypeEnum, ProductLayoutSlot, SectionTypeEnum, TemplateCategoriesList, ValidationTypeEnum, asStructuredColor, collection, content, createLayoutApp, createTextStyle, createVueClientApp, createVueServerApp, design, getBackgroundStyle, getColorHex, getContrastTextColor, getCurrentLanguageCode, isColorDark, layout, section, showcase, template, translation, useAccordionElementDesign, useBackgroundElementDesign, useBackgroundStyle, useButtonElementContent, useButtonElementDesign, useButtonStyles, useCategorySelectorElementContent, useCurrentLanguage, useDeckElementContent, useImageElementContent, useImageElementDesign, useInputboxElementContent, useInstantsiteJsApi, useLayoutElementDesign, useLogoElementContent, useLogoElementDesign, useMenuElementContent, useNavigationMenuElementContent, useProductSelectorElementContent, useSelectboxElementContent, useSelectboxElementDesign, useTextElementDesign, useTextareaElementContent, useTextareaElementDesign, useToggleElementContent, useToggleElementDesign, useTranslation, useVueBaseProps };
18076
- export type { AccordionDesignData, AccordionDesignEditor, AccordionDesignEditorDefaults, AccordionDesignItemData, AccordionItem, AccordionShowcaseDesignEditorDefaults, ActionLink, AppBaseContext, AppBaseData, AppBaseState, Background, BackgroundDesignData$1 as BackgroundDesignData, BackgroundDesignEditor, BackgroundDesignEditorDefaults, BackgroundDesignEditorDefaultsTransformed, BackgroundStyleOptions, BackgroundTransformed, BackgroundType, ButtonAppearance, ButtonContentData, ButtonContentEditor, ButtonContentEditorDefaults, ButtonDesignData$1 as ButtonDesignData, ButtonDesignEditor, ButtonDesignEditorDefaults, ButtonDesignEditorDefaultsTransformed, ButtonSize, ButtonSizeStyles, ButtonStyle, CapitalizationType, Card, CategorySelectorContent, CategorySelectorContentEditor, CategorySelectorContentEditorDefaults, CategorySelectorData, CollectionDescriptor, CollectionDescriptorContent, CollectionDescriptorMetadata, ColorPickerDesignEditor, ColorPickerDesignEditorDefaults, ColorPickerDesignEditorDefaultsTransformed, ContentEditor, ContentEditorDefaults, ContentSettings, CustomSection, Deck, DeckContent, DeckContentEditor, DefaultSection, DesignEditor, DesignEditorDefaults, DesignEditorDefaultsTransformed, DesignSettings, DividerContentEditor, DividerContentEditorDefaults, DividerDesignEditor, Font, Frame, GlobalColorsString, GlobalDesign$1 as GlobalDesign, GlobalFontsString, GlobalTextSizeString, GradientColor, GradientColorTransformed, HSLColor, ImageBorderInfoData, ImageContent, ImageContentData, ImageContentEditor, ImageContentEditorDefaults, ImageDesignData$1 as ImageDesignData, ImageDesignEditor, ImageDesignEditorDefaults, ImageDesignEditorDefaultsTransformed, ImageInfoData, InfoContentEditor, InfoContentEditorDefaults, InfoDesignEditor, InfoDesignEditorDefaults, InputBoxContent, InputboxContentEditor, InputboxContentEditorDefaults, InstantsiteJSAPI$1 as InstantsiteJSAPI, InstantsiteTilePromise$1 as InstantsiteTilePromise, InternalColor, LayoutDesignData, LayoutDesignOverride, LayoutSettings, LogoContent, LogoContentData, LogoContentEditor, LogoContentEditorDefaults, LogoDesignData$1 as LogoDesignData, LogoDesignEditor, LogoDesignEditorDefaults, LogoDesignEditorDefaultsTransformed, LogoType, MandatoryContentSettings, MandatoryDesignSettings, Manifest, MenuContent, MenuContentData, MenuContentEditor, MenuItem, NavigationMenuContentEditor, Overlay, OverlayTransformed, ProductSelectorContent, ProductSelectorContentEditor, ProductSelectorContentEditorDefaults, ProductSelectorData, RGBAColor, Section, SelectBoxContent, SelectboxContentEditor, SelectboxContentEditorDefaults, SelectboxContentOption, SelectboxDesignData, SelectboxDesignEditor, SelectboxDesignEditorDefaults, SelectboxDesignEditorDefaultsTransformed, Showcase, ShowcaseAccordionItem, ShowcaseContentEditorsDefaults, ShowcaseDeckContentEditorDefaults, ShowcaseImageContentEditorDefaults, ShowcaseInputboxContentEditorDefaults, ShowcaseLogoContentEditorDefaults, ShowcaseMenuContentEditorDefaults, ShowcaseNavigationMenuContentEditorDefaults, ShowcaseOverride, ShowcaseTextareaContentEditorDefaults, SolidColor, SolidColorTransformed, StorePageConfiguration, StorefrontSection, StorefrontSectionId, Template, TemplateConfiguration, TemplateConfigurationSection, TemplateCustomSection, TemplateDefaultSection, TemplateMetadata, TemplatePage, TemplatePageNamed, TemplateStorefrontSection, TextAreaContent, TextDesignData$1 as TextDesignData, TextDesignEditor, TextDesignEditorDefaults, TextDesignEditorDefaultsTransformed, TextSize, TextStyleOptions, TextareaContentEditor, TextareaContentEditorDefaults, TextareaDesignData$1 as TextareaDesignData, ToggleContent, ToggleContentData, ToggleContentEditor, ToggleContentEditorDefaults, ToggleDesignData, ToggleDesignEditor, ToggleDesignEditorDefaults, ToggleDesignEditorDefaultsTransformed, TransformedFrame, TranslationSettings, UseButtonStylesOptions, UseCurrentLanguageReturn, VuegaPageId };
19795
+ export type { AccordionDesignData, AccordionDesignEditor, AccordionDesignEditorDefaults, AccordionDesignItemData, AccordionItem, AccordionShowcaseDesignEditorDefaults, ActionLink, AppBaseContext, AppBaseData, AppBaseState, Background, BackgroundDesignData$1 as BackgroundDesignData, BackgroundDesignEditor, BackgroundDesignEditorDefaults, BackgroundDesignEditorDefaultsTransformed, BackgroundStyleOptions, BackgroundTransformed, BackgroundType, ButtonAppearance, ButtonContentData, ButtonContentEditor, ButtonContentEditorDefaults, ButtonDesignData$1 as ButtonDesignData, ButtonDesignEditor, ButtonDesignEditorDefaults, ButtonDesignEditorDefaultsTransformed, ButtonSize, ButtonSizeStyles, ButtonStyle, CapitalizationType, Card, CategorySelectorContent, CategorySelectorContentEditor, CategorySelectorContentEditorDefaults, CategorySelectorData, CollectionDescriptor, CollectionDescriptorContent, CollectionDescriptorMetadata, ColorPickerDesignEditor, ColorPickerDesignEditorDefaults, ColorPickerDesignEditorDefaultsTransformed, ContentEditor, ContentEditorDefaults, ContentEditorDefaultsWithNestedDeckUnion, ContentSettings, CustomSection, Deck, DeckContent, DeckContentEditor, DefaultSection, DesignEditor, DesignEditorDefaults, DesignEditorDefaultsTransformed, DesignSettings, DividerContentEditor, DividerContentEditorDefaults, DividerDesignEditor, Font, Frame, GlobalColorsString, GlobalDesign$1 as GlobalDesign, GlobalFontsString, GlobalTextSizeString, GradientColor, GradientColorTransformed, HSLColor, ImageBorderInfoData, ImageContent, ImageContentData, ImageContentEditor, ImageContentEditorDefaults, ImageDesignData$1 as ImageDesignData, ImageDesignEditor, ImageDesignEditorDefaults, ImageDesignEditorDefaultsTransformed, ImageInfoData, InfoContentEditor, InfoContentEditorDefaults, InfoDesignEditor, InfoDesignEditorDefaults, InputBoxContent, InputboxContentEditor, InputboxContentEditorDefaults, InstantsiteJSAPI$1 as InstantsiteJSAPI, InstantsiteTilePromise$1 as InstantsiteTilePromise, InternalColor, LayoutDesignData, LayoutDesignOverride, LayoutSettings, LogoContent, LogoContentData, LogoContentEditor, LogoContentEditorDefaults, LogoDesignData$1 as LogoDesignData, LogoDesignEditor, LogoDesignEditorDefaults, LogoDesignEditorDefaultsTransformed, LogoType, MandatoryContentSettings, MandatoryDesignSettings, Manifest, MenuContent, MenuContentData, MenuContentEditor, MenuItem, NavigationMenuContentEditor, Overlay, OverlayTransformed, ProductSelectorContent, ProductSelectorContentEditor, ProductSelectorContentEditorDefaults, ProductSelectorData, RGBAColor, Section, SelectBoxContent, SelectboxContentEditor, SelectboxContentEditorDefaults, SelectboxContentOption, SelectboxDesignData, SelectboxDesignEditor, SelectboxDesignEditorDefaults, SelectboxDesignEditorDefaultsTransformed, Showcase, ShowcaseAccordionItem, ShowcaseContentEditorsDefaults, ShowcaseDeckContentEditorDefaults, ShowcaseImageContentEditorDefaults, ShowcaseInputboxContentEditorDefaults, ShowcaseLogoContentEditorDefaults, ShowcaseMenuContentEditorDefaults, ShowcaseNavigationMenuContentEditorDefaults, ShowcaseOverride, ShowcaseTextareaContentEditorDefaults, SolidColor, SolidColorTransformed, StorePageConfiguration, StorefrontSection, StorefrontSectionId, Template, TemplateConfiguration, TemplateConfigurationSection, TemplateCustomSection, TemplateDefaultSection, TemplateMetadata, TemplatePage, TemplatePageNamed, TemplateStorefrontSection, TextAreaContent, TextDesignData$1 as TextDesignData, TextDesignEditor, TextDesignEditorDefaults, TextDesignEditorDefaultsTransformed, TextSize, TextStyleOptions, TextareaContentEditor, TextareaContentEditorDefaults, TextareaDesignData$1 as TextareaDesignData, ToggleContent, ToggleContentData, ToggleContentEditor, ToggleContentEditorDefaults, ToggleDesignData, ToggleDesignEditor, ToggleDesignEditorDefaults, ToggleDesignEditorDefaultsTransformed, TransformedFrame, TranslationSettings, UseButtonStylesOptions, UseCurrentLanguageReturn, VuegaPageId };