@lightspeed/crane-api 2.4.0-rc.0 → 2.4.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
 
@@ -2663,6 +2843,96 @@ declare const DeckShowcaseContentEditorDefaultsSchema: z.ZodObject<{
2663
2843
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
2664
2844
  }, z.core.$strict>, z.ZodObject<{
2665
2845
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
2846
+ }, z.core.$strict>, z.ZodObject<{
2847
+ type: z.ZodLiteral<"DECK">;
2848
+ cards: z.ZodArray<z.ZodObject<{
2849
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
2850
+ type: z.ZodLiteral<"INPUTBOX">;
2851
+ text: z.ZodString;
2852
+ }, z.core.$strict>, z.ZodObject<{
2853
+ type: z.ZodLiteral<"TEXTAREA">;
2854
+ text: z.ZodString;
2855
+ }, z.core.$strict>, z.ZodObject<{
2856
+ type: z.ZodLiteral<"BUTTON">;
2857
+ title: z.ZodString;
2858
+ buttonType: z.ZodEnum<{
2859
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
2860
+ HYPER_LINK: "HYPER_LINK";
2861
+ MAIL_LINK: "MAIL_LINK";
2862
+ TEL_LINK: "TEL_LINK";
2863
+ GO_TO_STORE: "GO_TO_STORE";
2864
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
2865
+ GO_TO_PAGE: "GO_TO_PAGE";
2866
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
2867
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
2868
+ }>;
2869
+ link: z.ZodOptional<z.ZodString>;
2870
+ linkTarget: z.ZodOptional<z.ZodString>;
2871
+ email: z.ZodOptional<z.ZodString>;
2872
+ phone: z.ZodOptional<z.ZodString>;
2873
+ tileId: z.ZodOptional<z.ZodString>;
2874
+ categoryId: z.ZodOptional<z.ZodNumber>;
2875
+ }, z.core.$strict>, z.ZodObject<{
2876
+ type: z.ZodLiteral<"IMAGE">;
2877
+ imageData: z.ZodObject<{
2878
+ set: z.ZodObject<{
2879
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
2880
+ url: z.ZodString;
2881
+ width: z.ZodOptional<z.ZodInt>;
2882
+ height: z.ZodOptional<z.ZodInt>;
2883
+ }, z.core.$strict>>;
2884
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
2885
+ url: z.ZodString;
2886
+ width: z.ZodOptional<z.ZodInt>;
2887
+ height: z.ZodOptional<z.ZodInt>;
2888
+ }, z.core.$strict>>;
2889
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
2890
+ url: z.ZodString;
2891
+ width: z.ZodOptional<z.ZodInt>;
2892
+ height: z.ZodOptional<z.ZodInt>;
2893
+ }, z.core.$strict>>;
2894
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
2895
+ url: z.ZodString;
2896
+ width: z.ZodOptional<z.ZodInt>;
2897
+ height: z.ZodOptional<z.ZodInt>;
2898
+ }, z.core.$strict>>;
2899
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
2900
+ url: z.ZodString;
2901
+ width: z.ZodOptional<z.ZodInt>;
2902
+ height: z.ZodOptional<z.ZodInt>;
2903
+ }, z.core.$strict>>;
2904
+ }, z.core.$strict>;
2905
+ borderInfo: z.ZodOptional<z.ZodObject<{
2906
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
2907
+ color: z.ZodOptional<z.ZodObject<{
2908
+ r: z.ZodNumber;
2909
+ g: z.ZodNumber;
2910
+ b: z.ZodNumber;
2911
+ a: z.ZodNumber;
2912
+ }, z.core.$strict>>;
2913
+ }, z.core.$strict>>;
2914
+ }, z.core.$strict>;
2915
+ }, z.core.$strict>, z.ZodObject<{
2916
+ type: z.ZodLiteral<"TOGGLE">;
2917
+ enabled: z.ZodBoolean;
2918
+ }, z.core.$strict>, z.ZodObject<{
2919
+ type: z.ZodLiteral<"SELECTBOX">;
2920
+ value: z.ZodString;
2921
+ }, z.core.$strict>, z.ZodObject<{
2922
+ type: z.ZodLiteral<"DIVIDER">;
2923
+ }, z.core.$strict>, z.ZodObject<{
2924
+ type: z.ZodLiteral<"INFO">;
2925
+ text: z.ZodOptional<z.ZodString>;
2926
+ button: z.ZodOptional<z.ZodObject<{
2927
+ title: z.ZodOptional<z.ZodString>;
2928
+ link: z.ZodOptional<z.ZodString>;
2929
+ }, z.core.$strict>>;
2930
+ }, z.core.$strict>, z.ZodObject<{
2931
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
2932
+ }, z.core.$strict>, z.ZodObject<{
2933
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
2934
+ }, z.core.$strict>], "type">>;
2935
+ }, z.core.$strict>>;
2666
2936
  }, z.core.$strict>], "type">>;
2667
2937
  }, z.core.$strict>>;
2668
2938
  }, z.core.$strict>;
@@ -4392,51 +4662,141 @@ declare const ShowcaseContentEditorDefaultsSchema: z.ZodDiscriminatedUnion<[z.Zo
4392
4662
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
4393
4663
  }, z.core.$strict>, z.ZodObject<{
4394
4664
  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";
4425
- PILL: "PILL";
4426
- }>>;
4427
- font: z.ZodOptional<z.ZodString>;
4428
- color: z.ZodOptional<z.ZodCustom<string, string>>;
4429
- visible: z.ZodOptional<z.ZodBoolean>;
4430
- }, z.core.$strict>, z.ZodObject<{
4431
- type: z.ZodLiteral<"IMAGE">;
4432
- overlay: z.ZodOptional<z.ZodEnum<{
4433
- COLOR: "COLOR";
4434
- GRADIENT: "GRADIENT";
4435
- NONE: "NONE";
4436
- }>>;
4437
- color: z.ZodOptional<z.ZodCustom<string | string[], string | string[]>>;
4438
- visible: z.ZodOptional<z.ZodBoolean>;
4439
- }, z.core.$strict>, z.ZodObject<{
4665
+ }, z.core.$strict>, z.ZodObject<{
4666
+ type: z.ZodLiteral<"DECK">;
4667
+ cards: z.ZodArray<z.ZodObject<{
4668
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
4669
+ type: z.ZodLiteral<"INPUTBOX">;
4670
+ text: z.ZodString;
4671
+ }, z.core.$strict>, z.ZodObject<{
4672
+ type: z.ZodLiteral<"TEXTAREA">;
4673
+ text: z.ZodString;
4674
+ }, z.core.$strict>, z.ZodObject<{
4675
+ type: z.ZodLiteral<"BUTTON">;
4676
+ title: z.ZodString;
4677
+ buttonType: z.ZodEnum<{
4678
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
4679
+ HYPER_LINK: "HYPER_LINK";
4680
+ MAIL_LINK: "MAIL_LINK";
4681
+ TEL_LINK: "TEL_LINK";
4682
+ GO_TO_STORE: "GO_TO_STORE";
4683
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
4684
+ GO_TO_PAGE: "GO_TO_PAGE";
4685
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
4686
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
4687
+ }>;
4688
+ link: z.ZodOptional<z.ZodString>;
4689
+ linkTarget: z.ZodOptional<z.ZodString>;
4690
+ email: z.ZodOptional<z.ZodString>;
4691
+ phone: z.ZodOptional<z.ZodString>;
4692
+ tileId: z.ZodOptional<z.ZodString>;
4693
+ categoryId: z.ZodOptional<z.ZodNumber>;
4694
+ }, z.core.$strict>, z.ZodObject<{
4695
+ type: z.ZodLiteral<"IMAGE">;
4696
+ imageData: z.ZodObject<{
4697
+ set: z.ZodObject<{
4698
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
4699
+ url: z.ZodString;
4700
+ width: z.ZodOptional<z.ZodInt>;
4701
+ height: z.ZodOptional<z.ZodInt>;
4702
+ }, z.core.$strict>>;
4703
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
4704
+ url: z.ZodString;
4705
+ width: z.ZodOptional<z.ZodInt>;
4706
+ height: z.ZodOptional<z.ZodInt>;
4707
+ }, z.core.$strict>>;
4708
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
4709
+ url: z.ZodString;
4710
+ width: z.ZodOptional<z.ZodInt>;
4711
+ height: z.ZodOptional<z.ZodInt>;
4712
+ }, z.core.$strict>>;
4713
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
4714
+ url: z.ZodString;
4715
+ width: z.ZodOptional<z.ZodInt>;
4716
+ height: z.ZodOptional<z.ZodInt>;
4717
+ }, z.core.$strict>>;
4718
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
4719
+ url: z.ZodString;
4720
+ width: z.ZodOptional<z.ZodInt>;
4721
+ height: z.ZodOptional<z.ZodInt>;
4722
+ }, z.core.$strict>>;
4723
+ }, z.core.$strict>;
4724
+ borderInfo: z.ZodOptional<z.ZodObject<{
4725
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
4726
+ color: z.ZodOptional<z.ZodObject<{
4727
+ r: z.ZodNumber;
4728
+ g: z.ZodNumber;
4729
+ b: z.ZodNumber;
4730
+ a: z.ZodNumber;
4731
+ }, z.core.$strict>>;
4732
+ }, z.core.$strict>>;
4733
+ }, z.core.$strict>;
4734
+ }, z.core.$strict>, z.ZodObject<{
4735
+ type: z.ZodLiteral<"TOGGLE">;
4736
+ enabled: z.ZodBoolean;
4737
+ }, z.core.$strict>, z.ZodObject<{
4738
+ type: z.ZodLiteral<"SELECTBOX">;
4739
+ value: z.ZodString;
4740
+ }, z.core.$strict>, z.ZodObject<{
4741
+ type: z.ZodLiteral<"DIVIDER">;
4742
+ }, z.core.$strict>, z.ZodObject<{
4743
+ type: z.ZodLiteral<"INFO">;
4744
+ text: z.ZodOptional<z.ZodString>;
4745
+ button: z.ZodOptional<z.ZodObject<{
4746
+ title: z.ZodOptional<z.ZodString>;
4747
+ link: z.ZodOptional<z.ZodString>;
4748
+ }, z.core.$strict>>;
4749
+ }, z.core.$strict>, z.ZodObject<{
4750
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
4751
+ }, z.core.$strict>, z.ZodObject<{
4752
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
4753
+ }, z.core.$strict>], "type">>;
4754
+ }, z.core.$strict>>;
4755
+ }, z.core.$strict>], "type">>;
4756
+ }, z.core.$strict>>;
4757
+ }, z.core.$strict>, z.ZodObject<{
4758
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
4759
+ }, z.core.$strict>, z.ZodObject<{
4760
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
4761
+ }, z.core.$strict>], "type">;
4762
+ declare const DesignEditorDefaultsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
4763
+ type: z.ZodLiteral<"TEXT">;
4764
+ font: z.ZodOptional<z.ZodString>;
4765
+ size: z.ZodOptional<z.ZodCustom<number | GlobalTextSizeValue, number | GlobalTextSizeValue>>;
4766
+ bold: z.ZodOptional<z.ZodBoolean>;
4767
+ italic: z.ZodOptional<z.ZodBoolean>;
4768
+ color: z.ZodOptional<z.ZodCustom<string, string>>;
4769
+ visible: z.ZodOptional<z.ZodBoolean>;
4770
+ }, z.core.$strict>, z.ZodObject<{
4771
+ type: z.ZodLiteral<"BUTTON">;
4772
+ appearance: z.ZodOptional<z.ZodEnum<{
4773
+ TEXT: "TEXT";
4774
+ SOLID: "SOLID";
4775
+ OUTLINE: "OUTLINE";
4776
+ }>>;
4777
+ size: z.ZodOptional<z.ZodEnum<{
4778
+ SMALL: "SMALL";
4779
+ MEDIUM: "MEDIUM";
4780
+ LARGE: "LARGE";
4781
+ }>>;
4782
+ shape: z.ZodOptional<z.ZodEnum<{
4783
+ ROUND_CORNER: "ROUND_CORNER";
4784
+ RECTANGLE: "RECTANGLE";
4785
+ PILL: "PILL";
4786
+ }>>;
4787
+ font: z.ZodOptional<z.ZodString>;
4788
+ color: z.ZodOptional<z.ZodCustom<string, string>>;
4789
+ visible: z.ZodOptional<z.ZodBoolean>;
4790
+ }, z.core.$strict>, z.ZodObject<{
4791
+ type: z.ZodLiteral<"IMAGE">;
4792
+ overlay: z.ZodOptional<z.ZodEnum<{
4793
+ COLOR: "COLOR";
4794
+ GRADIENT: "GRADIENT";
4795
+ NONE: "NONE";
4796
+ }>>;
4797
+ color: z.ZodOptional<z.ZodCustom<string | string[], string | string[]>>;
4798
+ visible: z.ZodOptional<z.ZodBoolean>;
4799
+ }, z.core.$strict>, z.ZodObject<{
4440
4800
  type: z.ZodLiteral<"TOGGLE">;
4441
4801
  enabled: z.ZodOptional<z.ZodBoolean>;
4442
4802
  }, z.core.$strict>, z.ZodObject<{
@@ -8070,6 +8430,96 @@ declare const ManifestSchema: z.ZodObject<{
8070
8430
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
8071
8431
  }, z.core.$strict>, z.ZodObject<{
8072
8432
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
8433
+ }, z.core.$strict>, z.ZodObject<{
8434
+ type: z.ZodLiteral<"DECK">;
8435
+ cards: z.ZodArray<z.ZodObject<{
8436
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
8437
+ type: z.ZodLiteral<"INPUTBOX">;
8438
+ text: z.ZodString;
8439
+ }, z.core.$strict>, z.ZodObject<{
8440
+ type: z.ZodLiteral<"TEXTAREA">;
8441
+ text: z.ZodString;
8442
+ }, z.core.$strict>, z.ZodObject<{
8443
+ type: z.ZodLiteral<"BUTTON">;
8444
+ title: z.ZodString;
8445
+ buttonType: z.ZodEnum<{
8446
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
8447
+ HYPER_LINK: "HYPER_LINK";
8448
+ MAIL_LINK: "MAIL_LINK";
8449
+ TEL_LINK: "TEL_LINK";
8450
+ GO_TO_STORE: "GO_TO_STORE";
8451
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
8452
+ GO_TO_PAGE: "GO_TO_PAGE";
8453
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
8454
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
8455
+ }>;
8456
+ link: z.ZodOptional<z.ZodString>;
8457
+ linkTarget: z.ZodOptional<z.ZodString>;
8458
+ email: z.ZodOptional<z.ZodString>;
8459
+ phone: z.ZodOptional<z.ZodString>;
8460
+ tileId: z.ZodOptional<z.ZodString>;
8461
+ categoryId: z.ZodOptional<z.ZodNumber>;
8462
+ }, z.core.$strict>, z.ZodObject<{
8463
+ type: z.ZodLiteral<"IMAGE">;
8464
+ imageData: z.ZodObject<{
8465
+ set: z.ZodObject<{
8466
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
8467
+ url: z.ZodString;
8468
+ width: z.ZodOptional<z.ZodInt>;
8469
+ height: z.ZodOptional<z.ZodInt>;
8470
+ }, z.core.$strict>>;
8471
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
8472
+ url: z.ZodString;
8473
+ width: z.ZodOptional<z.ZodInt>;
8474
+ height: z.ZodOptional<z.ZodInt>;
8475
+ }, z.core.$strict>>;
8476
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
8477
+ url: z.ZodString;
8478
+ width: z.ZodOptional<z.ZodInt>;
8479
+ height: z.ZodOptional<z.ZodInt>;
8480
+ }, z.core.$strict>>;
8481
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
8482
+ url: z.ZodString;
8483
+ width: z.ZodOptional<z.ZodInt>;
8484
+ height: z.ZodOptional<z.ZodInt>;
8485
+ }, z.core.$strict>>;
8486
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
8487
+ url: z.ZodString;
8488
+ width: z.ZodOptional<z.ZodInt>;
8489
+ height: z.ZodOptional<z.ZodInt>;
8490
+ }, z.core.$strict>>;
8491
+ }, z.core.$strict>;
8492
+ borderInfo: z.ZodOptional<z.ZodObject<{
8493
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
8494
+ color: z.ZodOptional<z.ZodObject<{
8495
+ r: z.ZodNumber;
8496
+ g: z.ZodNumber;
8497
+ b: z.ZodNumber;
8498
+ a: z.ZodNumber;
8499
+ }, z.core.$strict>>;
8500
+ }, z.core.$strict>>;
8501
+ }, z.core.$strict>;
8502
+ }, z.core.$strict>, z.ZodObject<{
8503
+ type: z.ZodLiteral<"TOGGLE">;
8504
+ enabled: z.ZodBoolean;
8505
+ }, z.core.$strict>, z.ZodObject<{
8506
+ type: z.ZodLiteral<"SELECTBOX">;
8507
+ value: z.ZodString;
8508
+ }, z.core.$strict>, z.ZodObject<{
8509
+ type: z.ZodLiteral<"DIVIDER">;
8510
+ }, z.core.$strict>, z.ZodObject<{
8511
+ type: z.ZodLiteral<"INFO">;
8512
+ text: z.ZodOptional<z.ZodString>;
8513
+ button: z.ZodOptional<z.ZodObject<{
8514
+ title: z.ZodOptional<z.ZodString>;
8515
+ link: z.ZodOptional<z.ZodString>;
8516
+ }, z.core.$strict>>;
8517
+ }, z.core.$strict>, z.ZodObject<{
8518
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
8519
+ }, z.core.$strict>, z.ZodObject<{
8520
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
8521
+ }, z.core.$strict>], "type">>;
8522
+ }, z.core.$strict>>;
8073
8523
  }, z.core.$strict>], "type">>;
8074
8524
  }, z.core.$strict>>;
8075
8525
  }, z.core.$strict>, z.ZodObject<{
@@ -8575,37 +9025,93 @@ declare const ManifestSchema: z.ZodObject<{
8575
9025
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
8576
9026
  }, z.core.$strict>, z.ZodObject<{
8577
9027
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
8578
- }, z.core.$strict>], "type">>;
8579
- }, z.core.$strict>>;
8580
- }, z.core.$strict>, z.ZodObject<{
8581
- type: z.ZodLiteral<"PRODUCT_SELECTOR">;
8582
- }, z.core.$strict>, z.ZodObject<{
8583
- type: z.ZodLiteral<"CATEGORY_SELECTOR">;
8584
- }, z.core.$strict>], "type">>>;
8585
- design: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
8586
- type: z.ZodLiteral<"TEXT">;
8587
- font: z.ZodOptional<z.ZodString>;
8588
- size: z.ZodOptional<z.ZodCustom<number | GlobalTextSizeValue, number | GlobalTextSizeValue>>;
8589
- bold: z.ZodOptional<z.ZodBoolean>;
8590
- italic: z.ZodOptional<z.ZodBoolean>;
8591
- color: z.ZodOptional<z.ZodCustom<string, string>>;
8592
- visible: z.ZodOptional<z.ZodBoolean>;
8593
- }, z.core.$strict>, z.ZodObject<{
8594
- type: z.ZodLiteral<"BUTTON">;
8595
- appearance: z.ZodOptional<z.ZodEnum<{
8596
- TEXT: "TEXT";
8597
- SOLID: "SOLID";
8598
- OUTLINE: "OUTLINE";
8599
- }>>;
8600
- size: z.ZodOptional<z.ZodEnum<{
8601
- SMALL: "SMALL";
8602
- MEDIUM: "MEDIUM";
8603
- LARGE: "LARGE";
8604
- }>>;
8605
- shape: z.ZodOptional<z.ZodEnum<{
8606
- ROUND_CORNER: "ROUND_CORNER";
8607
- RECTANGLE: "RECTANGLE";
8608
- PILL: "PILL";
9028
+ }, z.core.$strict>, z.ZodObject<{
9029
+ type: z.ZodLiteral<"DECK">;
9030
+ cards: z.ZodArray<z.ZodObject<{
9031
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
9032
+ type: z.ZodLiteral<"INPUTBOX">;
9033
+ text: z.ZodString;
9034
+ }, z.core.$strict>, z.ZodObject<{
9035
+ type: z.ZodLiteral<"TEXTAREA">;
9036
+ text: z.ZodString;
9037
+ }, z.core.$strict>, z.ZodObject<{
9038
+ type: z.ZodLiteral<"BUTTON">;
9039
+ title: z.ZodString;
9040
+ buttonType: z.ZodEnum<{
9041
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
9042
+ HYPER_LINK: "HYPER_LINK";
9043
+ MAIL_LINK: "MAIL_LINK";
9044
+ TEL_LINK: "TEL_LINK";
9045
+ GO_TO_STORE: "GO_TO_STORE";
9046
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
9047
+ GO_TO_PAGE: "GO_TO_PAGE";
9048
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
9049
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
9050
+ }>;
9051
+ link: z.ZodOptional<z.ZodString>;
9052
+ linkTarget: z.ZodOptional<z.ZodString>;
9053
+ email: z.ZodOptional<z.ZodString>;
9054
+ phone: z.ZodOptional<z.ZodString>;
9055
+ tileId: z.ZodOptional<z.ZodString>;
9056
+ categoryId: z.ZodOptional<z.ZodNumber>;
9057
+ }, z.core.$strict>, z.ZodObject<{
9058
+ type: z.ZodLiteral<"IMAGE">;
9059
+ imageData: z.ZodObject<{
9060
+ set: z.ZodObject</*elided*/ any, z.core.$strict>;
9061
+ borderInfo: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
9062
+ }, z.core.$strict>;
9063
+ }, z.core.$strict>, z.ZodObject<{
9064
+ type: z.ZodLiteral<"TOGGLE">;
9065
+ enabled: z.ZodBoolean;
9066
+ }, z.core.$strict>, z.ZodObject<{
9067
+ type: z.ZodLiteral<"SELECTBOX">;
9068
+ value: z.ZodString;
9069
+ }, z.core.$strict>, z.ZodObject<{
9070
+ type: z.ZodLiteral<"DIVIDER">;
9071
+ }, z.core.$strict>, z.ZodObject<{
9072
+ type: z.ZodLiteral<"INFO">;
9073
+ text: z.ZodOptional<z.ZodString>;
9074
+ button: z.ZodOptional<z.ZodObject<{
9075
+ title: z.ZodOptional<z.ZodString>;
9076
+ link: z.ZodOptional<z.ZodString>;
9077
+ }, z.core.$strict>>;
9078
+ }, z.core.$strict>, z.ZodObject<{
9079
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
9080
+ }, z.core.$strict>, z.ZodObject<{
9081
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
9082
+ }, z.core.$strict>], "type">>;
9083
+ }, z.core.$strict>>;
9084
+ }, z.core.$strict>], "type">>;
9085
+ }, z.core.$strict>>;
9086
+ }, z.core.$strict>, z.ZodObject<{
9087
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
9088
+ }, z.core.$strict>, z.ZodObject<{
9089
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
9090
+ }, z.core.$strict>], "type">>>;
9091
+ design: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
9092
+ type: z.ZodLiteral<"TEXT">;
9093
+ font: z.ZodOptional<z.ZodString>;
9094
+ size: z.ZodOptional<z.ZodCustom<number | GlobalTextSizeValue, number | GlobalTextSizeValue>>;
9095
+ bold: z.ZodOptional<z.ZodBoolean>;
9096
+ italic: z.ZodOptional<z.ZodBoolean>;
9097
+ color: z.ZodOptional<z.ZodCustom<string, string>>;
9098
+ visible: z.ZodOptional<z.ZodBoolean>;
9099
+ }, z.core.$strict>, z.ZodObject<{
9100
+ type: z.ZodLiteral<"BUTTON">;
9101
+ appearance: z.ZodOptional<z.ZodEnum<{
9102
+ TEXT: "TEXT";
9103
+ SOLID: "SOLID";
9104
+ OUTLINE: "OUTLINE";
9105
+ }>>;
9106
+ size: z.ZodOptional<z.ZodEnum<{
9107
+ SMALL: "SMALL";
9108
+ MEDIUM: "MEDIUM";
9109
+ LARGE: "LARGE";
9110
+ }>>;
9111
+ shape: z.ZodOptional<z.ZodEnum<{
9112
+ ROUND_CORNER: "ROUND_CORNER";
9113
+ RECTANGLE: "RECTANGLE";
9114
+ PILL: "PILL";
8609
9115
  }>>;
8610
9116
  font: z.ZodOptional<z.ZodString>;
8611
9117
  color: z.ZodOptional<z.ZodCustom<string, string>>;
@@ -9022,6 +9528,62 @@ declare const ManifestSchema: z.ZodObject<{
9022
9528
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
9023
9529
  }, z.core.$strict>, z.ZodObject<{
9024
9530
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
9531
+ }, z.core.$strict>, z.ZodObject<{
9532
+ type: z.ZodLiteral<"DECK">;
9533
+ cards: z.ZodArray<z.ZodObject<{
9534
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
9535
+ type: z.ZodLiteral<"INPUTBOX">;
9536
+ text: z.ZodString;
9537
+ }, z.core.$strict>, z.ZodObject<{
9538
+ type: z.ZodLiteral<"TEXTAREA">;
9539
+ text: z.ZodString;
9540
+ }, z.core.$strict>, z.ZodObject<{
9541
+ type: z.ZodLiteral<"BUTTON">;
9542
+ title: z.ZodString;
9543
+ buttonType: z.ZodEnum<{
9544
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
9545
+ HYPER_LINK: "HYPER_LINK";
9546
+ MAIL_LINK: "MAIL_LINK";
9547
+ TEL_LINK: "TEL_LINK";
9548
+ GO_TO_STORE: "GO_TO_STORE";
9549
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
9550
+ GO_TO_PAGE: "GO_TO_PAGE";
9551
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
9552
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
9553
+ }>;
9554
+ link: z.ZodOptional<z.ZodString>;
9555
+ linkTarget: z.ZodOptional<z.ZodString>;
9556
+ email: z.ZodOptional<z.ZodString>;
9557
+ phone: z.ZodOptional<z.ZodString>;
9558
+ tileId: z.ZodOptional<z.ZodString>;
9559
+ categoryId: z.ZodOptional<z.ZodNumber>;
9560
+ }, z.core.$strict>, z.ZodObject<{
9561
+ type: z.ZodLiteral<"IMAGE">;
9562
+ imageData: z.ZodObject<{
9563
+ set: z.ZodObject</*elided*/ any, z.core.$strict>;
9564
+ borderInfo: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
9565
+ }, z.core.$strict>;
9566
+ }, z.core.$strict>, z.ZodObject<{
9567
+ type: z.ZodLiteral<"TOGGLE">;
9568
+ enabled: z.ZodBoolean;
9569
+ }, z.core.$strict>, z.ZodObject<{
9570
+ type: z.ZodLiteral<"SELECTBOX">;
9571
+ value: z.ZodString;
9572
+ }, z.core.$strict>, z.ZodObject<{
9573
+ type: z.ZodLiteral<"DIVIDER">;
9574
+ }, z.core.$strict>, z.ZodObject<{
9575
+ type: z.ZodLiteral<"INFO">;
9576
+ text: z.ZodOptional<z.ZodString>;
9577
+ button: z.ZodOptional<z.ZodObject<{
9578
+ title: z.ZodOptional<z.ZodString>;
9579
+ link: z.ZodOptional<z.ZodString>;
9580
+ }, z.core.$strict>>;
9581
+ }, z.core.$strict>, z.ZodObject<{
9582
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
9583
+ }, z.core.$strict>, z.ZodObject<{
9584
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
9585
+ }, z.core.$strict>], "type">>;
9586
+ }, z.core.$strict>>;
9025
9587
  }, z.core.$strict>], "type">>;
9026
9588
  }, z.core.$strict>>;
9027
9589
  }, z.core.$strict>, z.ZodObject<{
@@ -9474,6 +10036,71 @@ declare const ManifestSchema: z.ZodObject<{
9474
10036
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
9475
10037
  }, z.core.$strict>, z.ZodObject<{
9476
10038
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
10039
+ }, z.core.$strict>, z.ZodObject<{
10040
+ type: z.ZodLiteral<"DECK">;
10041
+ cards: z.ZodArray<z.ZodObject<{
10042
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
10043
+ type: z.ZodLiteral<"INPUTBOX">;
10044
+ text: z.ZodString;
10045
+ }, z.core.$strict>, z.ZodObject<{
10046
+ type: z.ZodLiteral<"TEXTAREA">;
10047
+ text: z.ZodString;
10048
+ }, z.core.$strict>, z.ZodObject<{
10049
+ type: z.ZodLiteral<"BUTTON">;
10050
+ title: z.ZodString;
10051
+ buttonType: z.ZodEnum<{
10052
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
10053
+ HYPER_LINK: "HYPER_LINK";
10054
+ MAIL_LINK: "MAIL_LINK";
10055
+ TEL_LINK: "TEL_LINK";
10056
+ GO_TO_STORE: "GO_TO_STORE";
10057
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
10058
+ GO_TO_PAGE: "GO_TO_PAGE";
10059
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
10060
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
10061
+ }>;
10062
+ link: z.ZodOptional<z.ZodString>;
10063
+ linkTarget: z.ZodOptional<z.ZodString>;
10064
+ email: z.ZodOptional<z.ZodString>;
10065
+ phone: z.ZodOptional<z.ZodString>;
10066
+ tileId: z.ZodOptional<z.ZodString>;
10067
+ categoryId: z.ZodOptional<z.ZodNumber>;
10068
+ }, z.core.$strict>, z.ZodObject<{
10069
+ type: z.ZodLiteral<"IMAGE">;
10070
+ imageData: z.ZodObject<{
10071
+ set: z.ZodObject<{
10072
+ ORIGINAL: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
10073
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
10074
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
10075
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
10076
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
10077
+ }, z.core.$strict>;
10078
+ borderInfo: z.ZodOptional<z.ZodObject<{
10079
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
10080
+ color: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
10081
+ }, z.core.$strict>>;
10082
+ }, z.core.$strict>;
10083
+ }, z.core.$strict>, z.ZodObject<{
10084
+ type: z.ZodLiteral<"TOGGLE">;
10085
+ enabled: z.ZodBoolean;
10086
+ }, z.core.$strict>, z.ZodObject<{
10087
+ type: z.ZodLiteral<"SELECTBOX">;
10088
+ value: z.ZodString;
10089
+ }, z.core.$strict>, z.ZodObject<{
10090
+ type: z.ZodLiteral<"DIVIDER">;
10091
+ }, z.core.$strict>, z.ZodObject<{
10092
+ type: z.ZodLiteral<"INFO">;
10093
+ text: z.ZodOptional<z.ZodString>;
10094
+ button: z.ZodOptional<z.ZodObject<{
10095
+ title: z.ZodOptional<z.ZodString>;
10096
+ link: z.ZodOptional<z.ZodString>;
10097
+ }, z.core.$strict>>;
10098
+ }, z.core.$strict>, z.ZodObject<{
10099
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
10100
+ }, z.core.$strict>, z.ZodObject<{
10101
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
10102
+ }, z.core.$strict>], "type">>;
10103
+ }, z.core.$strict>>;
9477
10104
  }, z.core.$strict>], "type">>;
9478
10105
  }, z.core.$strict>>;
9479
10106
  }, z.core.$strict>, z.ZodObject<{
@@ -11055,6 +11682,71 @@ declare const ManifestSchema: z.ZodObject<{
11055
11682
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
11056
11683
  }, z.core.$strict>, z.ZodObject<{
11057
11684
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
11685
+ }, z.core.$strict>, z.ZodObject<{
11686
+ type: z.ZodLiteral<"DECK">;
11687
+ cards: z.ZodArray<z.ZodObject<{
11688
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
11689
+ type: z.ZodLiteral<"INPUTBOX">;
11690
+ text: z.ZodString;
11691
+ }, z.core.$strict>, z.ZodObject<{
11692
+ type: z.ZodLiteral<"TEXTAREA">;
11693
+ text: z.ZodString;
11694
+ }, z.core.$strict>, z.ZodObject<{
11695
+ type: z.ZodLiteral<"BUTTON">;
11696
+ title: z.ZodString;
11697
+ buttonType: z.ZodEnum<{
11698
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
11699
+ HYPER_LINK: "HYPER_LINK";
11700
+ MAIL_LINK: "MAIL_LINK";
11701
+ TEL_LINK: "TEL_LINK";
11702
+ GO_TO_STORE: "GO_TO_STORE";
11703
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
11704
+ GO_TO_PAGE: "GO_TO_PAGE";
11705
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
11706
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
11707
+ }>;
11708
+ link: z.ZodOptional<z.ZodString>;
11709
+ linkTarget: z.ZodOptional<z.ZodString>;
11710
+ email: z.ZodOptional<z.ZodString>;
11711
+ phone: z.ZodOptional<z.ZodString>;
11712
+ tileId: z.ZodOptional<z.ZodString>;
11713
+ categoryId: z.ZodOptional<z.ZodNumber>;
11714
+ }, z.core.$strict>, z.ZodObject<{
11715
+ type: z.ZodLiteral<"IMAGE">;
11716
+ imageData: z.ZodObject<{
11717
+ set: z.ZodObject<{
11718
+ ORIGINAL: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
11719
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
11720
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
11721
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
11722
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
11723
+ }, z.core.$strict>;
11724
+ borderInfo: z.ZodOptional<z.ZodObject<{
11725
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
11726
+ color: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
11727
+ }, z.core.$strict>>;
11728
+ }, z.core.$strict>;
11729
+ }, z.core.$strict>, z.ZodObject<{
11730
+ type: z.ZodLiteral<"TOGGLE">;
11731
+ enabled: z.ZodBoolean;
11732
+ }, z.core.$strict>, z.ZodObject<{
11733
+ type: z.ZodLiteral<"SELECTBOX">;
11734
+ value: z.ZodString;
11735
+ }, z.core.$strict>, z.ZodObject<{
11736
+ type: z.ZodLiteral<"DIVIDER">;
11737
+ }, z.core.$strict>, z.ZodObject<{
11738
+ type: z.ZodLiteral<"INFO">;
11739
+ text: z.ZodOptional<z.ZodString>;
11740
+ button: z.ZodOptional<z.ZodObject<{
11741
+ title: z.ZodOptional<z.ZodString>;
11742
+ link: z.ZodOptional<z.ZodString>;
11743
+ }, z.core.$strict>>;
11744
+ }, z.core.$strict>, z.ZodObject<{
11745
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
11746
+ }, z.core.$strict>, z.ZodObject<{
11747
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
11748
+ }, z.core.$strict>], "type">>;
11749
+ }, z.core.$strict>>;
11058
11750
  }, z.core.$strict>], "type">>;
11059
11751
  }, z.core.$strict>>;
11060
11752
  }, z.core.$strict>, z.ZodObject<{
@@ -11541,63 +12233,153 @@ declare const CustomSectionSchema: z.ZodObject<{
11541
12233
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
11542
12234
  }, z.core.$strict>, z.ZodObject<{
11543
12235
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
11544
- }, z.core.$strict>], "type">>;
11545
- }, z.core.$strict>>;
11546
- }, z.core.$strict>, z.ZodObject<{
11547
- type: z.ZodLiteral<"PRODUCT_SELECTOR">;
11548
- }, z.core.$strict>, z.ZodObject<{
11549
- type: z.ZodLiteral<"CATEGORY_SELECTOR">;
11550
- }, z.core.$strict>], "type">>>;
11551
- design: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
11552
- type: z.ZodLiteral<"TEXT">;
11553
- font: z.ZodOptional<z.ZodString>;
11554
- size: z.ZodOptional<z.ZodCustom<number | GlobalTextSizeValue, number | GlobalTextSizeValue>>;
11555
- bold: z.ZodOptional<z.ZodBoolean>;
11556
- italic: z.ZodOptional<z.ZodBoolean>;
11557
- color: z.ZodOptional<z.ZodCustom<string, string>>;
11558
- visible: z.ZodOptional<z.ZodBoolean>;
11559
- }, z.core.$strict>, z.ZodObject<{
11560
- type: z.ZodLiteral<"BUTTON">;
11561
- appearance: z.ZodOptional<z.ZodEnum<{
11562
- TEXT: "TEXT";
11563
- SOLID: "SOLID";
11564
- OUTLINE: "OUTLINE";
11565
- }>>;
11566
- size: z.ZodOptional<z.ZodEnum<{
11567
- SMALL: "SMALL";
11568
- MEDIUM: "MEDIUM";
11569
- LARGE: "LARGE";
11570
- }>>;
11571
- shape: z.ZodOptional<z.ZodEnum<{
11572
- ROUND_CORNER: "ROUND_CORNER";
11573
- RECTANGLE: "RECTANGLE";
11574
- PILL: "PILL";
11575
- }>>;
11576
- font: z.ZodOptional<z.ZodString>;
11577
- color: z.ZodOptional<z.ZodCustom<string, string>>;
11578
- visible: z.ZodOptional<z.ZodBoolean>;
11579
- }, z.core.$strict>, z.ZodObject<{
11580
- type: z.ZodLiteral<"IMAGE">;
11581
- overlay: z.ZodOptional<z.ZodEnum<{
11582
- COLOR: "COLOR";
11583
- GRADIENT: "GRADIENT";
11584
- NONE: "NONE";
11585
- }>>;
11586
- color: z.ZodOptional<z.ZodCustom<string | string[], string | string[]>>;
11587
- visible: z.ZodOptional<z.ZodBoolean>;
11588
- }, z.core.$strict>, z.ZodObject<{
11589
- type: z.ZodLiteral<"TOGGLE">;
11590
- enabled: z.ZodOptional<z.ZodBoolean>;
11591
- }, z.core.$strict>, z.ZodObject<{
11592
- type: z.ZodLiteral<"SELECTBOX">;
11593
- value: z.ZodOptional<z.ZodString>;
11594
- }, z.core.$strict>, z.ZodObject<{
11595
- type: z.ZodLiteral<"BACKGROUND">;
11596
- style: z.ZodOptional<z.ZodEnum<{
11597
- COLOR: "COLOR";
11598
- GRADIENT: "GRADIENT";
11599
- }>>;
11600
- color: z.ZodOptional<z.ZodCustom<string | string[], string | string[]>>;
12236
+ }, z.core.$strict>, z.ZodObject<{
12237
+ type: z.ZodLiteral<"DECK">;
12238
+ cards: z.ZodArray<z.ZodObject<{
12239
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
12240
+ type: z.ZodLiteral<"INPUTBOX">;
12241
+ text: z.ZodString;
12242
+ }, z.core.$strict>, z.ZodObject<{
12243
+ type: z.ZodLiteral<"TEXTAREA">;
12244
+ text: z.ZodString;
12245
+ }, z.core.$strict>, z.ZodObject<{
12246
+ type: z.ZodLiteral<"BUTTON">;
12247
+ title: z.ZodString;
12248
+ buttonType: z.ZodEnum<{
12249
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
12250
+ HYPER_LINK: "HYPER_LINK";
12251
+ MAIL_LINK: "MAIL_LINK";
12252
+ TEL_LINK: "TEL_LINK";
12253
+ GO_TO_STORE: "GO_TO_STORE";
12254
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
12255
+ GO_TO_PAGE: "GO_TO_PAGE";
12256
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
12257
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
12258
+ }>;
12259
+ link: z.ZodOptional<z.ZodString>;
12260
+ linkTarget: z.ZodOptional<z.ZodString>;
12261
+ email: z.ZodOptional<z.ZodString>;
12262
+ phone: z.ZodOptional<z.ZodString>;
12263
+ tileId: z.ZodOptional<z.ZodString>;
12264
+ categoryId: z.ZodOptional<z.ZodNumber>;
12265
+ }, z.core.$strict>, z.ZodObject<{
12266
+ type: z.ZodLiteral<"IMAGE">;
12267
+ imageData: z.ZodObject<{
12268
+ set: z.ZodObject<{
12269
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
12270
+ url: z.ZodString;
12271
+ width: z.ZodOptional<z.ZodInt>;
12272
+ height: z.ZodOptional<z.ZodInt>;
12273
+ }, z.core.$strict>>;
12274
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
12275
+ url: z.ZodString;
12276
+ width: z.ZodOptional<z.ZodInt>;
12277
+ height: z.ZodOptional<z.ZodInt>;
12278
+ }, z.core.$strict>>;
12279
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
12280
+ url: z.ZodString;
12281
+ width: z.ZodOptional<z.ZodInt>;
12282
+ height: z.ZodOptional<z.ZodInt>;
12283
+ }, z.core.$strict>>;
12284
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
12285
+ url: z.ZodString;
12286
+ width: z.ZodOptional<z.ZodInt>;
12287
+ height: z.ZodOptional<z.ZodInt>;
12288
+ }, z.core.$strict>>;
12289
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
12290
+ url: z.ZodString;
12291
+ width: z.ZodOptional<z.ZodInt>;
12292
+ height: z.ZodOptional<z.ZodInt>;
12293
+ }, z.core.$strict>>;
12294
+ }, z.core.$strict>;
12295
+ borderInfo: z.ZodOptional<z.ZodObject<{
12296
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
12297
+ color: z.ZodOptional<z.ZodObject<{
12298
+ r: z.ZodNumber;
12299
+ g: z.ZodNumber;
12300
+ b: z.ZodNumber;
12301
+ a: z.ZodNumber;
12302
+ }, z.core.$strict>>;
12303
+ }, z.core.$strict>>;
12304
+ }, z.core.$strict>;
12305
+ }, z.core.$strict>, z.ZodObject<{
12306
+ type: z.ZodLiteral<"TOGGLE">;
12307
+ enabled: z.ZodBoolean;
12308
+ }, z.core.$strict>, z.ZodObject<{
12309
+ type: z.ZodLiteral<"SELECTBOX">;
12310
+ value: z.ZodString;
12311
+ }, z.core.$strict>, z.ZodObject<{
12312
+ type: z.ZodLiteral<"DIVIDER">;
12313
+ }, z.core.$strict>, z.ZodObject<{
12314
+ type: z.ZodLiteral<"INFO">;
12315
+ text: z.ZodOptional<z.ZodString>;
12316
+ button: z.ZodOptional<z.ZodObject<{
12317
+ title: z.ZodOptional<z.ZodString>;
12318
+ link: z.ZodOptional<z.ZodString>;
12319
+ }, z.core.$strict>>;
12320
+ }, z.core.$strict>, z.ZodObject<{
12321
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
12322
+ }, z.core.$strict>, z.ZodObject<{
12323
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
12324
+ }, z.core.$strict>], "type">>;
12325
+ }, z.core.$strict>>;
12326
+ }, z.core.$strict>], "type">>;
12327
+ }, z.core.$strict>>;
12328
+ }, z.core.$strict>, z.ZodObject<{
12329
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
12330
+ }, z.core.$strict>, z.ZodObject<{
12331
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
12332
+ }, z.core.$strict>], "type">>>;
12333
+ design: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
12334
+ type: z.ZodLiteral<"TEXT">;
12335
+ font: z.ZodOptional<z.ZodString>;
12336
+ size: z.ZodOptional<z.ZodCustom<number | GlobalTextSizeValue, number | GlobalTextSizeValue>>;
12337
+ bold: z.ZodOptional<z.ZodBoolean>;
12338
+ italic: z.ZodOptional<z.ZodBoolean>;
12339
+ color: z.ZodOptional<z.ZodCustom<string, string>>;
12340
+ visible: z.ZodOptional<z.ZodBoolean>;
12341
+ }, z.core.$strict>, z.ZodObject<{
12342
+ type: z.ZodLiteral<"BUTTON">;
12343
+ appearance: z.ZodOptional<z.ZodEnum<{
12344
+ TEXT: "TEXT";
12345
+ SOLID: "SOLID";
12346
+ OUTLINE: "OUTLINE";
12347
+ }>>;
12348
+ size: z.ZodOptional<z.ZodEnum<{
12349
+ SMALL: "SMALL";
12350
+ MEDIUM: "MEDIUM";
12351
+ LARGE: "LARGE";
12352
+ }>>;
12353
+ shape: z.ZodOptional<z.ZodEnum<{
12354
+ ROUND_CORNER: "ROUND_CORNER";
12355
+ RECTANGLE: "RECTANGLE";
12356
+ PILL: "PILL";
12357
+ }>>;
12358
+ font: z.ZodOptional<z.ZodString>;
12359
+ color: z.ZodOptional<z.ZodCustom<string, string>>;
12360
+ visible: z.ZodOptional<z.ZodBoolean>;
12361
+ }, z.core.$strict>, z.ZodObject<{
12362
+ type: z.ZodLiteral<"IMAGE">;
12363
+ overlay: z.ZodOptional<z.ZodEnum<{
12364
+ COLOR: "COLOR";
12365
+ GRADIENT: "GRADIENT";
12366
+ NONE: "NONE";
12367
+ }>>;
12368
+ color: z.ZodOptional<z.ZodCustom<string | string[], string | string[]>>;
12369
+ visible: z.ZodOptional<z.ZodBoolean>;
12370
+ }, z.core.$strict>, z.ZodObject<{
12371
+ type: z.ZodLiteral<"TOGGLE">;
12372
+ enabled: z.ZodOptional<z.ZodBoolean>;
12373
+ }, z.core.$strict>, z.ZodObject<{
12374
+ type: z.ZodLiteral<"SELECTBOX">;
12375
+ value: z.ZodOptional<z.ZodString>;
12376
+ }, z.core.$strict>, z.ZodObject<{
12377
+ type: z.ZodLiteral<"BACKGROUND">;
12378
+ style: z.ZodOptional<z.ZodEnum<{
12379
+ COLOR: "COLOR";
12380
+ GRADIENT: "GRADIENT";
12381
+ }>>;
12382
+ color: z.ZodOptional<z.ZodCustom<string | string[], string | string[]>>;
11601
12383
  }, z.core.$strict>, z.ZodObject<{
11602
12384
  type: z.ZodLiteral<"COLOR_PICKER">;
11603
12385
  color: z.ZodOptional<z.ZodCustom<string, string>>;
@@ -11992,6 +12774,96 @@ declare const SectionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
11992
12774
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
11993
12775
  }, z.core.$strict>, z.ZodObject<{
11994
12776
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
12777
+ }, z.core.$strict>, z.ZodObject<{
12778
+ type: z.ZodLiteral<"DECK">;
12779
+ cards: z.ZodArray<z.ZodObject<{
12780
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
12781
+ type: z.ZodLiteral<"INPUTBOX">;
12782
+ text: z.ZodString;
12783
+ }, z.core.$strict>, z.ZodObject<{
12784
+ type: z.ZodLiteral<"TEXTAREA">;
12785
+ text: z.ZodString;
12786
+ }, z.core.$strict>, z.ZodObject<{
12787
+ type: z.ZodLiteral<"BUTTON">;
12788
+ title: z.ZodString;
12789
+ buttonType: z.ZodEnum<{
12790
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
12791
+ HYPER_LINK: "HYPER_LINK";
12792
+ MAIL_LINK: "MAIL_LINK";
12793
+ TEL_LINK: "TEL_LINK";
12794
+ GO_TO_STORE: "GO_TO_STORE";
12795
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
12796
+ GO_TO_PAGE: "GO_TO_PAGE";
12797
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
12798
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
12799
+ }>;
12800
+ link: z.ZodOptional<z.ZodString>;
12801
+ linkTarget: z.ZodOptional<z.ZodString>;
12802
+ email: z.ZodOptional<z.ZodString>;
12803
+ phone: z.ZodOptional<z.ZodString>;
12804
+ tileId: z.ZodOptional<z.ZodString>;
12805
+ categoryId: z.ZodOptional<z.ZodNumber>;
12806
+ }, z.core.$strict>, z.ZodObject<{
12807
+ type: z.ZodLiteral<"IMAGE">;
12808
+ imageData: z.ZodObject<{
12809
+ set: z.ZodObject<{
12810
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
12811
+ url: z.ZodString;
12812
+ width: z.ZodOptional<z.ZodInt>;
12813
+ height: z.ZodOptional<z.ZodInt>;
12814
+ }, z.core.$strict>>;
12815
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
12816
+ url: z.ZodString;
12817
+ width: z.ZodOptional<z.ZodInt>;
12818
+ height: z.ZodOptional<z.ZodInt>;
12819
+ }, z.core.$strict>>;
12820
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
12821
+ url: z.ZodString;
12822
+ width: z.ZodOptional<z.ZodInt>;
12823
+ height: z.ZodOptional<z.ZodInt>;
12824
+ }, z.core.$strict>>;
12825
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
12826
+ url: z.ZodString;
12827
+ width: z.ZodOptional<z.ZodInt>;
12828
+ height: z.ZodOptional<z.ZodInt>;
12829
+ }, z.core.$strict>>;
12830
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
12831
+ url: z.ZodString;
12832
+ width: z.ZodOptional<z.ZodInt>;
12833
+ height: z.ZodOptional<z.ZodInt>;
12834
+ }, z.core.$strict>>;
12835
+ }, z.core.$strict>;
12836
+ borderInfo: z.ZodOptional<z.ZodObject<{
12837
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
12838
+ color: z.ZodOptional<z.ZodObject<{
12839
+ r: z.ZodNumber;
12840
+ g: z.ZodNumber;
12841
+ b: z.ZodNumber;
12842
+ a: z.ZodNumber;
12843
+ }, z.core.$strict>>;
12844
+ }, z.core.$strict>>;
12845
+ }, z.core.$strict>;
12846
+ }, z.core.$strict>, z.ZodObject<{
12847
+ type: z.ZodLiteral<"TOGGLE">;
12848
+ enabled: z.ZodBoolean;
12849
+ }, z.core.$strict>, z.ZodObject<{
12850
+ type: z.ZodLiteral<"SELECTBOX">;
12851
+ value: z.ZodString;
12852
+ }, z.core.$strict>, z.ZodObject<{
12853
+ type: z.ZodLiteral<"DIVIDER">;
12854
+ }, z.core.$strict>, z.ZodObject<{
12855
+ type: z.ZodLiteral<"INFO">;
12856
+ text: z.ZodOptional<z.ZodString>;
12857
+ button: z.ZodOptional<z.ZodObject<{
12858
+ title: z.ZodOptional<z.ZodString>;
12859
+ link: z.ZodOptional<z.ZodString>;
12860
+ }, z.core.$strict>>;
12861
+ }, z.core.$strict>, z.ZodObject<{
12862
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
12863
+ }, z.core.$strict>, z.ZodObject<{
12864
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
12865
+ }, z.core.$strict>], "type">>;
12866
+ }, z.core.$strict>>;
11995
12867
  }, z.core.$strict>], "type">>;
11996
12868
  }, z.core.$strict>>;
11997
12869
  }, z.core.$strict>, z.ZodObject<{
@@ -12442,10 +13314,100 @@ declare const TemplatePageSchema: z.ZodObject<{
12442
13314
  title: z.ZodOptional<z.ZodString>;
12443
13315
  link: z.ZodOptional<z.ZodString>;
12444
13316
  }, z.core.$strict>>;
12445
- }, z.core.$strict>, z.ZodObject<{
12446
- type: z.ZodLiteral<"PRODUCT_SELECTOR">;
12447
- }, z.core.$strict>, z.ZodObject<{
12448
- type: z.ZodLiteral<"CATEGORY_SELECTOR">;
13317
+ }, z.core.$strict>, z.ZodObject<{
13318
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
13319
+ }, z.core.$strict>, z.ZodObject<{
13320
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
13321
+ }, z.core.$strict>, z.ZodObject<{
13322
+ type: z.ZodLiteral<"DECK">;
13323
+ cards: z.ZodArray<z.ZodObject<{
13324
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
13325
+ type: z.ZodLiteral<"INPUTBOX">;
13326
+ text: z.ZodString;
13327
+ }, z.core.$strict>, z.ZodObject<{
13328
+ type: z.ZodLiteral<"TEXTAREA">;
13329
+ text: z.ZodString;
13330
+ }, z.core.$strict>, z.ZodObject<{
13331
+ type: z.ZodLiteral<"BUTTON">;
13332
+ title: z.ZodString;
13333
+ buttonType: z.ZodEnum<{
13334
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
13335
+ HYPER_LINK: "HYPER_LINK";
13336
+ MAIL_LINK: "MAIL_LINK";
13337
+ TEL_LINK: "TEL_LINK";
13338
+ GO_TO_STORE: "GO_TO_STORE";
13339
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
13340
+ GO_TO_PAGE: "GO_TO_PAGE";
13341
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
13342
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
13343
+ }>;
13344
+ link: z.ZodOptional<z.ZodString>;
13345
+ linkTarget: z.ZodOptional<z.ZodString>;
13346
+ email: z.ZodOptional<z.ZodString>;
13347
+ phone: z.ZodOptional<z.ZodString>;
13348
+ tileId: z.ZodOptional<z.ZodString>;
13349
+ categoryId: z.ZodOptional<z.ZodNumber>;
13350
+ }, z.core.$strict>, z.ZodObject<{
13351
+ type: z.ZodLiteral<"IMAGE">;
13352
+ imageData: z.ZodObject<{
13353
+ set: z.ZodObject<{
13354
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
13355
+ url: z.ZodString;
13356
+ width: z.ZodOptional<z.ZodInt>;
13357
+ height: z.ZodOptional<z.ZodInt>;
13358
+ }, z.core.$strict>>;
13359
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
13360
+ url: z.ZodString;
13361
+ width: z.ZodOptional<z.ZodInt>;
13362
+ height: z.ZodOptional<z.ZodInt>;
13363
+ }, z.core.$strict>>;
13364
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
13365
+ url: z.ZodString;
13366
+ width: z.ZodOptional<z.ZodInt>;
13367
+ height: z.ZodOptional<z.ZodInt>;
13368
+ }, z.core.$strict>>;
13369
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
13370
+ url: z.ZodString;
13371
+ width: z.ZodOptional<z.ZodInt>;
13372
+ height: z.ZodOptional<z.ZodInt>;
13373
+ }, z.core.$strict>>;
13374
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
13375
+ url: z.ZodString;
13376
+ width: z.ZodOptional<z.ZodInt>;
13377
+ height: z.ZodOptional<z.ZodInt>;
13378
+ }, z.core.$strict>>;
13379
+ }, z.core.$strict>;
13380
+ borderInfo: z.ZodOptional<z.ZodObject<{
13381
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
13382
+ color: z.ZodOptional<z.ZodObject<{
13383
+ r: z.ZodNumber;
13384
+ g: z.ZodNumber;
13385
+ b: z.ZodNumber;
13386
+ a: z.ZodNumber;
13387
+ }, z.core.$strict>>;
13388
+ }, z.core.$strict>>;
13389
+ }, z.core.$strict>;
13390
+ }, z.core.$strict>, z.ZodObject<{
13391
+ type: z.ZodLiteral<"TOGGLE">;
13392
+ enabled: z.ZodBoolean;
13393
+ }, z.core.$strict>, z.ZodObject<{
13394
+ type: z.ZodLiteral<"SELECTBOX">;
13395
+ value: z.ZodString;
13396
+ }, z.core.$strict>, z.ZodObject<{
13397
+ type: z.ZodLiteral<"DIVIDER">;
13398
+ }, z.core.$strict>, z.ZodObject<{
13399
+ type: z.ZodLiteral<"INFO">;
13400
+ text: z.ZodOptional<z.ZodString>;
13401
+ button: z.ZodOptional<z.ZodObject<{
13402
+ title: z.ZodOptional<z.ZodString>;
13403
+ link: z.ZodOptional<z.ZodString>;
13404
+ }, z.core.$strict>>;
13405
+ }, z.core.$strict>, z.ZodObject<{
13406
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
13407
+ }, z.core.$strict>, z.ZodObject<{
13408
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
13409
+ }, z.core.$strict>], "type">>;
13410
+ }, z.core.$strict>>;
12449
13411
  }, z.core.$strict>], "type">>;
12450
13412
  }, z.core.$strict>>;
12451
13413
  }, z.core.$strict>, z.ZodObject<{
@@ -12901,6 +13863,96 @@ declare const TemplatePageNamedSchema: z.ZodObject<{
12901
13863
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
12902
13864
  }, z.core.$strict>, z.ZodObject<{
12903
13865
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
13866
+ }, z.core.$strict>, z.ZodObject<{
13867
+ type: z.ZodLiteral<"DECK">;
13868
+ cards: z.ZodArray<z.ZodObject<{
13869
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
13870
+ type: z.ZodLiteral<"INPUTBOX">;
13871
+ text: z.ZodString;
13872
+ }, z.core.$strict>, z.ZodObject<{
13873
+ type: z.ZodLiteral<"TEXTAREA">;
13874
+ text: z.ZodString;
13875
+ }, z.core.$strict>, z.ZodObject<{
13876
+ type: z.ZodLiteral<"BUTTON">;
13877
+ title: z.ZodString;
13878
+ buttonType: z.ZodEnum<{
13879
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
13880
+ HYPER_LINK: "HYPER_LINK";
13881
+ MAIL_LINK: "MAIL_LINK";
13882
+ TEL_LINK: "TEL_LINK";
13883
+ GO_TO_STORE: "GO_TO_STORE";
13884
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
13885
+ GO_TO_PAGE: "GO_TO_PAGE";
13886
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
13887
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
13888
+ }>;
13889
+ link: z.ZodOptional<z.ZodString>;
13890
+ linkTarget: z.ZodOptional<z.ZodString>;
13891
+ email: z.ZodOptional<z.ZodString>;
13892
+ phone: z.ZodOptional<z.ZodString>;
13893
+ tileId: z.ZodOptional<z.ZodString>;
13894
+ categoryId: z.ZodOptional<z.ZodNumber>;
13895
+ }, z.core.$strict>, z.ZodObject<{
13896
+ type: z.ZodLiteral<"IMAGE">;
13897
+ imageData: z.ZodObject<{
13898
+ set: z.ZodObject<{
13899
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
13900
+ url: z.ZodString;
13901
+ width: z.ZodOptional<z.ZodInt>;
13902
+ height: z.ZodOptional<z.ZodInt>;
13903
+ }, z.core.$strict>>;
13904
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
13905
+ url: z.ZodString;
13906
+ width: z.ZodOptional<z.ZodInt>;
13907
+ height: z.ZodOptional<z.ZodInt>;
13908
+ }, z.core.$strict>>;
13909
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
13910
+ url: z.ZodString;
13911
+ width: z.ZodOptional<z.ZodInt>;
13912
+ height: z.ZodOptional<z.ZodInt>;
13913
+ }, z.core.$strict>>;
13914
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
13915
+ url: z.ZodString;
13916
+ width: z.ZodOptional<z.ZodInt>;
13917
+ height: z.ZodOptional<z.ZodInt>;
13918
+ }, z.core.$strict>>;
13919
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
13920
+ url: z.ZodString;
13921
+ width: z.ZodOptional<z.ZodInt>;
13922
+ height: z.ZodOptional<z.ZodInt>;
13923
+ }, z.core.$strict>>;
13924
+ }, z.core.$strict>;
13925
+ borderInfo: z.ZodOptional<z.ZodObject<{
13926
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
13927
+ color: z.ZodOptional<z.ZodObject<{
13928
+ r: z.ZodNumber;
13929
+ g: z.ZodNumber;
13930
+ b: z.ZodNumber;
13931
+ a: z.ZodNumber;
13932
+ }, z.core.$strict>>;
13933
+ }, z.core.$strict>>;
13934
+ }, z.core.$strict>;
13935
+ }, z.core.$strict>, z.ZodObject<{
13936
+ type: z.ZodLiteral<"TOGGLE">;
13937
+ enabled: z.ZodBoolean;
13938
+ }, z.core.$strict>, z.ZodObject<{
13939
+ type: z.ZodLiteral<"SELECTBOX">;
13940
+ value: z.ZodString;
13941
+ }, z.core.$strict>, z.ZodObject<{
13942
+ type: z.ZodLiteral<"DIVIDER">;
13943
+ }, z.core.$strict>, z.ZodObject<{
13944
+ type: z.ZodLiteral<"INFO">;
13945
+ text: z.ZodOptional<z.ZodString>;
13946
+ button: z.ZodOptional<z.ZodObject<{
13947
+ title: z.ZodOptional<z.ZodString>;
13948
+ link: z.ZodOptional<z.ZodString>;
13949
+ }, z.core.$strict>>;
13950
+ }, z.core.$strict>, z.ZodObject<{
13951
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
13952
+ }, z.core.$strict>, z.ZodObject<{
13953
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
13954
+ }, z.core.$strict>], "type">>;
13955
+ }, z.core.$strict>>;
12904
13956
  }, z.core.$strict>], "type">>;
12905
13957
  }, z.core.$strict>>;
12906
13958
  }, z.core.$strict>, z.ZodObject<{
@@ -13416,6 +14468,96 @@ declare const TemplateConfigurationSectionSchema: z.ZodDiscriminatedUnion<[z.Zod
13416
14468
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
13417
14469
  }, z.core.$strict>, z.ZodObject<{
13418
14470
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
14471
+ }, z.core.$strict>, z.ZodObject<{
14472
+ type: z.ZodLiteral<"DECK">;
14473
+ cards: z.ZodArray<z.ZodObject<{
14474
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
14475
+ type: z.ZodLiteral<"INPUTBOX">;
14476
+ text: z.ZodString;
14477
+ }, z.core.$strict>, z.ZodObject<{
14478
+ type: z.ZodLiteral<"TEXTAREA">;
14479
+ text: z.ZodString;
14480
+ }, z.core.$strict>, z.ZodObject<{
14481
+ type: z.ZodLiteral<"BUTTON">;
14482
+ title: z.ZodString;
14483
+ buttonType: z.ZodEnum<{
14484
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
14485
+ HYPER_LINK: "HYPER_LINK";
14486
+ MAIL_LINK: "MAIL_LINK";
14487
+ TEL_LINK: "TEL_LINK";
14488
+ GO_TO_STORE: "GO_TO_STORE";
14489
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
14490
+ GO_TO_PAGE: "GO_TO_PAGE";
14491
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
14492
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
14493
+ }>;
14494
+ link: z.ZodOptional<z.ZodString>;
14495
+ linkTarget: z.ZodOptional<z.ZodString>;
14496
+ email: z.ZodOptional<z.ZodString>;
14497
+ phone: z.ZodOptional<z.ZodString>;
14498
+ tileId: z.ZodOptional<z.ZodString>;
14499
+ categoryId: z.ZodOptional<z.ZodNumber>;
14500
+ }, z.core.$strict>, z.ZodObject<{
14501
+ type: z.ZodLiteral<"IMAGE">;
14502
+ imageData: z.ZodObject<{
14503
+ set: z.ZodObject<{
14504
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
14505
+ url: z.ZodString;
14506
+ width: z.ZodOptional<z.ZodInt>;
14507
+ height: z.ZodOptional<z.ZodInt>;
14508
+ }, z.core.$strict>>;
14509
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
14510
+ url: z.ZodString;
14511
+ width: z.ZodOptional<z.ZodInt>;
14512
+ height: z.ZodOptional<z.ZodInt>;
14513
+ }, z.core.$strict>>;
14514
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
14515
+ url: z.ZodString;
14516
+ width: z.ZodOptional<z.ZodInt>;
14517
+ height: z.ZodOptional<z.ZodInt>;
14518
+ }, z.core.$strict>>;
14519
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
14520
+ url: z.ZodString;
14521
+ width: z.ZodOptional<z.ZodInt>;
14522
+ height: z.ZodOptional<z.ZodInt>;
14523
+ }, z.core.$strict>>;
14524
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
14525
+ url: z.ZodString;
14526
+ width: z.ZodOptional<z.ZodInt>;
14527
+ height: z.ZodOptional<z.ZodInt>;
14528
+ }, z.core.$strict>>;
14529
+ }, z.core.$strict>;
14530
+ borderInfo: z.ZodOptional<z.ZodObject<{
14531
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
14532
+ color: z.ZodOptional<z.ZodObject<{
14533
+ r: z.ZodNumber;
14534
+ g: z.ZodNumber;
14535
+ b: z.ZodNumber;
14536
+ a: z.ZodNumber;
14537
+ }, z.core.$strict>>;
14538
+ }, z.core.$strict>>;
14539
+ }, z.core.$strict>;
14540
+ }, z.core.$strict>, z.ZodObject<{
14541
+ type: z.ZodLiteral<"TOGGLE">;
14542
+ enabled: z.ZodBoolean;
14543
+ }, z.core.$strict>, z.ZodObject<{
14544
+ type: z.ZodLiteral<"SELECTBOX">;
14545
+ value: z.ZodString;
14546
+ }, z.core.$strict>, z.ZodObject<{
14547
+ type: z.ZodLiteral<"DIVIDER">;
14548
+ }, z.core.$strict>, z.ZodObject<{
14549
+ type: z.ZodLiteral<"INFO">;
14550
+ text: z.ZodOptional<z.ZodString>;
14551
+ button: z.ZodOptional<z.ZodObject<{
14552
+ title: z.ZodOptional<z.ZodString>;
14553
+ link: z.ZodOptional<z.ZodString>;
14554
+ }, z.core.$strict>>;
14555
+ }, z.core.$strict>, z.ZodObject<{
14556
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
14557
+ }, z.core.$strict>, z.ZodObject<{
14558
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
14559
+ }, z.core.$strict>], "type">>;
14560
+ }, z.core.$strict>>;
13419
14561
  }, z.core.$strict>], "type">>;
13420
14562
  }, z.core.$strict>>;
13421
14563
  }, z.core.$strict>, z.ZodObject<{
@@ -13899,27 +15041,117 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
13899
15041
  b: z.ZodNumber;
13900
15042
  a: z.ZodNumber;
13901
15043
  }, 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>;
15044
+ }, z.core.$strict>>;
15045
+ }, z.core.$strict>;
15046
+ }, z.core.$strict>, z.ZodObject<{
15047
+ type: z.ZodLiteral<"TOGGLE">;
15048
+ enabled: z.ZodBoolean;
15049
+ }, z.core.$strict>, z.ZodObject<{
15050
+ type: z.ZodLiteral<"SELECTBOX">;
15051
+ value: z.ZodString;
15052
+ }, z.core.$strict>, z.ZodObject<{
15053
+ type: z.ZodLiteral<"DIVIDER">;
15054
+ }, z.core.$strict>, z.ZodObject<{
15055
+ type: z.ZodLiteral<"INFO">;
15056
+ text: z.ZodOptional<z.ZodString>;
15057
+ button: z.ZodOptional<z.ZodObject<{
15058
+ title: z.ZodOptional<z.ZodString>;
15059
+ link: z.ZodOptional<z.ZodString>;
15060
+ }, z.core.$strict>>;
15061
+ }, z.core.$strict>, z.ZodObject<{
15062
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
15063
+ }, z.core.$strict>, z.ZodObject<{
15064
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
15065
+ }, z.core.$strict>, z.ZodObject<{
15066
+ type: z.ZodLiteral<"DECK">;
15067
+ cards: z.ZodArray<z.ZodObject<{
15068
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
15069
+ type: z.ZodLiteral<"INPUTBOX">;
15070
+ text: z.ZodString;
15071
+ }, z.core.$strict>, z.ZodObject<{
15072
+ type: z.ZodLiteral<"TEXTAREA">;
15073
+ text: z.ZodString;
15074
+ }, z.core.$strict>, z.ZodObject<{
15075
+ type: z.ZodLiteral<"BUTTON">;
15076
+ title: z.ZodString;
15077
+ buttonType: z.ZodEnum<{
15078
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
15079
+ HYPER_LINK: "HYPER_LINK";
15080
+ MAIL_LINK: "MAIL_LINK";
15081
+ TEL_LINK: "TEL_LINK";
15082
+ GO_TO_STORE: "GO_TO_STORE";
15083
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
15084
+ GO_TO_PAGE: "GO_TO_PAGE";
15085
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
15086
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
15087
+ }>;
15088
+ link: z.ZodOptional<z.ZodString>;
15089
+ linkTarget: z.ZodOptional<z.ZodString>;
15090
+ email: z.ZodOptional<z.ZodString>;
15091
+ phone: z.ZodOptional<z.ZodString>;
15092
+ tileId: z.ZodOptional<z.ZodString>;
15093
+ categoryId: z.ZodOptional<z.ZodNumber>;
15094
+ }, z.core.$strict>, z.ZodObject<{
15095
+ type: z.ZodLiteral<"IMAGE">;
15096
+ imageData: z.ZodObject<{
15097
+ set: z.ZodObject<{
15098
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
15099
+ url: z.ZodString;
15100
+ width: z.ZodOptional<z.ZodInt>;
15101
+ height: z.ZodOptional<z.ZodInt>;
15102
+ }, z.core.$strict>>;
15103
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
15104
+ url: z.ZodString;
15105
+ width: z.ZodOptional<z.ZodInt>;
15106
+ height: z.ZodOptional<z.ZodInt>;
15107
+ }, z.core.$strict>>;
15108
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
15109
+ url: z.ZodString;
15110
+ width: z.ZodOptional<z.ZodInt>;
15111
+ height: z.ZodOptional<z.ZodInt>;
15112
+ }, z.core.$strict>>;
15113
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
15114
+ url: z.ZodString;
15115
+ width: z.ZodOptional<z.ZodInt>;
15116
+ height: z.ZodOptional<z.ZodInt>;
15117
+ }, z.core.$strict>>;
15118
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
15119
+ url: z.ZodString;
15120
+ width: z.ZodOptional<z.ZodInt>;
15121
+ height: z.ZodOptional<z.ZodInt>;
15122
+ }, z.core.$strict>>;
15123
+ }, z.core.$strict>;
15124
+ borderInfo: z.ZodOptional<z.ZodObject<{
15125
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
15126
+ color: z.ZodOptional<z.ZodObject<{
15127
+ r: z.ZodNumber;
15128
+ g: z.ZodNumber;
15129
+ b: z.ZodNumber;
15130
+ a: z.ZodNumber;
15131
+ }, z.core.$strict>>;
15132
+ }, z.core.$strict>>;
15133
+ }, z.core.$strict>;
15134
+ }, z.core.$strict>, z.ZodObject<{
15135
+ type: z.ZodLiteral<"TOGGLE">;
15136
+ enabled: z.ZodBoolean;
15137
+ }, z.core.$strict>, z.ZodObject<{
15138
+ type: z.ZodLiteral<"SELECTBOX">;
15139
+ value: z.ZodString;
15140
+ }, z.core.$strict>, z.ZodObject<{
15141
+ type: z.ZodLiteral<"DIVIDER">;
15142
+ }, z.core.$strict>, z.ZodObject<{
15143
+ type: z.ZodLiteral<"INFO">;
15144
+ text: z.ZodOptional<z.ZodString>;
15145
+ button: z.ZodOptional<z.ZodObject<{
15146
+ title: z.ZodOptional<z.ZodString>;
15147
+ link: z.ZodOptional<z.ZodString>;
15148
+ }, z.core.$strict>>;
15149
+ }, z.core.$strict>, z.ZodObject<{
15150
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
15151
+ }, z.core.$strict>, z.ZodObject<{
15152
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
15153
+ }, z.core.$strict>], "type">>;
13918
15154
  }, 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
15155
  }, z.core.$strict>], "type">>;
13924
15156
  }, z.core.$strict>>;
13925
15157
  }, z.core.$strict>, z.ZodObject<{
@@ -14367,6 +15599,96 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
14367
15599
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
14368
15600
  }, z.core.$strict>, z.ZodObject<{
14369
15601
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
15602
+ }, z.core.$strict>, z.ZodObject<{
15603
+ type: z.ZodLiteral<"DECK">;
15604
+ cards: z.ZodArray<z.ZodObject<{
15605
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
15606
+ type: z.ZodLiteral<"INPUTBOX">;
15607
+ text: z.ZodString;
15608
+ }, z.core.$strict>, z.ZodObject<{
15609
+ type: z.ZodLiteral<"TEXTAREA">;
15610
+ text: z.ZodString;
15611
+ }, z.core.$strict>, z.ZodObject<{
15612
+ type: z.ZodLiteral<"BUTTON">;
15613
+ title: z.ZodString;
15614
+ buttonType: z.ZodEnum<{
15615
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
15616
+ HYPER_LINK: "HYPER_LINK";
15617
+ MAIL_LINK: "MAIL_LINK";
15618
+ TEL_LINK: "TEL_LINK";
15619
+ GO_TO_STORE: "GO_TO_STORE";
15620
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
15621
+ GO_TO_PAGE: "GO_TO_PAGE";
15622
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
15623
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
15624
+ }>;
15625
+ link: z.ZodOptional<z.ZodString>;
15626
+ linkTarget: z.ZodOptional<z.ZodString>;
15627
+ email: z.ZodOptional<z.ZodString>;
15628
+ phone: z.ZodOptional<z.ZodString>;
15629
+ tileId: z.ZodOptional<z.ZodString>;
15630
+ categoryId: z.ZodOptional<z.ZodNumber>;
15631
+ }, z.core.$strict>, z.ZodObject<{
15632
+ type: z.ZodLiteral<"IMAGE">;
15633
+ imageData: z.ZodObject<{
15634
+ set: z.ZodObject<{
15635
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
15636
+ url: z.ZodString;
15637
+ width: z.ZodOptional<z.ZodInt>;
15638
+ height: z.ZodOptional<z.ZodInt>;
15639
+ }, z.core.$strict>>;
15640
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
15641
+ url: z.ZodString;
15642
+ width: z.ZodOptional<z.ZodInt>;
15643
+ height: z.ZodOptional<z.ZodInt>;
15644
+ }, z.core.$strict>>;
15645
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
15646
+ url: z.ZodString;
15647
+ width: z.ZodOptional<z.ZodInt>;
15648
+ height: z.ZodOptional<z.ZodInt>;
15649
+ }, z.core.$strict>>;
15650
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
15651
+ url: z.ZodString;
15652
+ width: z.ZodOptional<z.ZodInt>;
15653
+ height: z.ZodOptional<z.ZodInt>;
15654
+ }, z.core.$strict>>;
15655
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
15656
+ url: z.ZodString;
15657
+ width: z.ZodOptional<z.ZodInt>;
15658
+ height: z.ZodOptional<z.ZodInt>;
15659
+ }, z.core.$strict>>;
15660
+ }, z.core.$strict>;
15661
+ borderInfo: z.ZodOptional<z.ZodObject<{
15662
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
15663
+ color: z.ZodOptional<z.ZodObject<{
15664
+ r: z.ZodNumber;
15665
+ g: z.ZodNumber;
15666
+ b: z.ZodNumber;
15667
+ a: z.ZodNumber;
15668
+ }, z.core.$strict>>;
15669
+ }, z.core.$strict>>;
15670
+ }, z.core.$strict>;
15671
+ }, z.core.$strict>, z.ZodObject<{
15672
+ type: z.ZodLiteral<"TOGGLE">;
15673
+ enabled: z.ZodBoolean;
15674
+ }, z.core.$strict>, z.ZodObject<{
15675
+ type: z.ZodLiteral<"SELECTBOX">;
15676
+ value: z.ZodString;
15677
+ }, z.core.$strict>, z.ZodObject<{
15678
+ type: z.ZodLiteral<"DIVIDER">;
15679
+ }, z.core.$strict>, z.ZodObject<{
15680
+ type: z.ZodLiteral<"INFO">;
15681
+ text: z.ZodOptional<z.ZodString>;
15682
+ button: z.ZodOptional<z.ZodObject<{
15683
+ title: z.ZodOptional<z.ZodString>;
15684
+ link: z.ZodOptional<z.ZodString>;
15685
+ }, z.core.$strict>>;
15686
+ }, z.core.$strict>, z.ZodObject<{
15687
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
15688
+ }, z.core.$strict>, z.ZodObject<{
15689
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
15690
+ }, z.core.$strict>], "type">>;
15691
+ }, z.core.$strict>>;
14370
15692
  }, z.core.$strict>], "type">>;
14371
15693
  }, z.core.$strict>>;
14372
15694
  }, z.core.$strict>, z.ZodObject<{
@@ -14878,6 +16200,71 @@ declare const TemplateSchema: z.ZodObject<{
14878
16200
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
14879
16201
  }, z.core.$strict>, z.ZodObject<{
14880
16202
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
16203
+ }, z.core.$strict>, z.ZodObject<{
16204
+ type: z.ZodLiteral<"DECK">;
16205
+ cards: z.ZodArray<z.ZodObject<{
16206
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
16207
+ type: z.ZodLiteral<"INPUTBOX">;
16208
+ text: z.ZodString;
16209
+ }, z.core.$strict>, z.ZodObject<{
16210
+ type: z.ZodLiteral<"TEXTAREA">;
16211
+ text: z.ZodString;
16212
+ }, z.core.$strict>, z.ZodObject<{
16213
+ type: z.ZodLiteral<"BUTTON">;
16214
+ title: z.ZodString;
16215
+ buttonType: z.ZodEnum<{
16216
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
16217
+ HYPER_LINK: "HYPER_LINK";
16218
+ MAIL_LINK: "MAIL_LINK";
16219
+ TEL_LINK: "TEL_LINK";
16220
+ GO_TO_STORE: "GO_TO_STORE";
16221
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
16222
+ GO_TO_PAGE: "GO_TO_PAGE";
16223
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
16224
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
16225
+ }>;
16226
+ link: z.ZodOptional<z.ZodString>;
16227
+ linkTarget: z.ZodOptional<z.ZodString>;
16228
+ email: z.ZodOptional<z.ZodString>;
16229
+ phone: z.ZodOptional<z.ZodString>;
16230
+ tileId: z.ZodOptional<z.ZodString>;
16231
+ categoryId: z.ZodOptional<z.ZodNumber>;
16232
+ }, z.core.$strict>, z.ZodObject<{
16233
+ type: z.ZodLiteral<"IMAGE">;
16234
+ imageData: z.ZodObject<{
16235
+ set: z.ZodObject<{
16236
+ ORIGINAL: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16237
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16238
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16239
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16240
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16241
+ }, z.core.$strict>;
16242
+ borderInfo: z.ZodOptional<z.ZodObject<{
16243
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
16244
+ color: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16245
+ }, z.core.$strict>>;
16246
+ }, z.core.$strict>;
16247
+ }, z.core.$strict>, z.ZodObject<{
16248
+ type: z.ZodLiteral<"TOGGLE">;
16249
+ enabled: z.ZodBoolean;
16250
+ }, z.core.$strict>, z.ZodObject<{
16251
+ type: z.ZodLiteral<"SELECTBOX">;
16252
+ value: z.ZodString;
16253
+ }, z.core.$strict>, z.ZodObject<{
16254
+ type: z.ZodLiteral<"DIVIDER">;
16255
+ }, z.core.$strict>, z.ZodObject<{
16256
+ type: z.ZodLiteral<"INFO">;
16257
+ text: z.ZodOptional<z.ZodString>;
16258
+ button: z.ZodOptional<z.ZodObject<{
16259
+ title: z.ZodOptional<z.ZodString>;
16260
+ link: z.ZodOptional<z.ZodString>;
16261
+ }, z.core.$strict>>;
16262
+ }, z.core.$strict>, z.ZodObject<{
16263
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
16264
+ }, z.core.$strict>, z.ZodObject<{
16265
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
16266
+ }, z.core.$strict>], "type">>;
16267
+ }, z.core.$strict>>;
14881
16268
  }, z.core.$strict>], "type">>;
14882
16269
  }, z.core.$strict>>;
14883
16270
  }, z.core.$strict>, z.ZodObject<{
@@ -15325,6 +16712,71 @@ declare const TemplateSchema: z.ZodObject<{
15325
16712
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
15326
16713
  }, z.core.$strict>, z.ZodObject<{
15327
16714
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
16715
+ }, z.core.$strict>, z.ZodObject<{
16716
+ type: z.ZodLiteral<"DECK">;
16717
+ cards: z.ZodArray<z.ZodObject<{
16718
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
16719
+ type: z.ZodLiteral<"INPUTBOX">;
16720
+ text: z.ZodString;
16721
+ }, z.core.$strict>, z.ZodObject<{
16722
+ type: z.ZodLiteral<"TEXTAREA">;
16723
+ text: z.ZodString;
16724
+ }, z.core.$strict>, z.ZodObject<{
16725
+ type: z.ZodLiteral<"BUTTON">;
16726
+ title: z.ZodString;
16727
+ buttonType: z.ZodEnum<{
16728
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
16729
+ HYPER_LINK: "HYPER_LINK";
16730
+ MAIL_LINK: "MAIL_LINK";
16731
+ TEL_LINK: "TEL_LINK";
16732
+ GO_TO_STORE: "GO_TO_STORE";
16733
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
16734
+ GO_TO_PAGE: "GO_TO_PAGE";
16735
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
16736
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
16737
+ }>;
16738
+ link: z.ZodOptional<z.ZodString>;
16739
+ linkTarget: z.ZodOptional<z.ZodString>;
16740
+ email: z.ZodOptional<z.ZodString>;
16741
+ phone: z.ZodOptional<z.ZodString>;
16742
+ tileId: z.ZodOptional<z.ZodString>;
16743
+ categoryId: z.ZodOptional<z.ZodNumber>;
16744
+ }, z.core.$strict>, z.ZodObject<{
16745
+ type: z.ZodLiteral<"IMAGE">;
16746
+ imageData: z.ZodObject<{
16747
+ set: z.ZodObject<{
16748
+ ORIGINAL: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16749
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16750
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16751
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16752
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16753
+ }, z.core.$strict>;
16754
+ borderInfo: z.ZodOptional<z.ZodObject<{
16755
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
16756
+ color: z.ZodOptional<z.ZodObject</*elided*/ any, z.core.$strict>>;
16757
+ }, z.core.$strict>>;
16758
+ }, z.core.$strict>;
16759
+ }, z.core.$strict>, z.ZodObject<{
16760
+ type: z.ZodLiteral<"TOGGLE">;
16761
+ enabled: z.ZodBoolean;
16762
+ }, z.core.$strict>, z.ZodObject<{
16763
+ type: z.ZodLiteral<"SELECTBOX">;
16764
+ value: z.ZodString;
16765
+ }, z.core.$strict>, z.ZodObject<{
16766
+ type: z.ZodLiteral<"DIVIDER">;
16767
+ }, z.core.$strict>, z.ZodObject<{
16768
+ type: z.ZodLiteral<"INFO">;
16769
+ text: z.ZodOptional<z.ZodString>;
16770
+ button: z.ZodOptional<z.ZodObject<{
16771
+ title: z.ZodOptional<z.ZodString>;
16772
+ link: z.ZodOptional<z.ZodString>;
16773
+ }, z.core.$strict>>;
16774
+ }, z.core.$strict>, z.ZodObject<{
16775
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
16776
+ }, z.core.$strict>, z.ZodObject<{
16777
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
16778
+ }, z.core.$strict>], "type">>;
16779
+ }, z.core.$strict>>;
15328
16780
  }, z.core.$strict>], "type">>;
15329
16781
  }, z.core.$strict>>;
15330
16782
  }, z.core.$strict>, z.ZodObject<{
@@ -15777,6 +17229,96 @@ declare const TemplateSchema: z.ZodObject<{
15777
17229
  type: z.ZodLiteral<"PRODUCT_SELECTOR">;
15778
17230
  }, z.core.$strict>, z.ZodObject<{
15779
17231
  type: z.ZodLiteral<"CATEGORY_SELECTOR">;
17232
+ }, z.core.$strict>, z.ZodObject<{
17233
+ type: z.ZodLiteral<"DECK">;
17234
+ cards: z.ZodArray<z.ZodObject<{
17235
+ settings: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
17236
+ type: z.ZodLiteral<"INPUTBOX">;
17237
+ text: z.ZodString;
17238
+ }, z.core.$strict>, z.ZodObject<{
17239
+ type: z.ZodLiteral<"TEXTAREA">;
17240
+ text: z.ZodString;
17241
+ }, z.core.$strict>, z.ZodObject<{
17242
+ type: z.ZodLiteral<"BUTTON">;
17243
+ title: z.ZodString;
17244
+ buttonType: z.ZodEnum<{
17245
+ SCROLL_TO_TILE: "SCROLL_TO_TILE";
17246
+ HYPER_LINK: "HYPER_LINK";
17247
+ MAIL_LINK: "MAIL_LINK";
17248
+ TEL_LINK: "TEL_LINK";
17249
+ GO_TO_STORE: "GO_TO_STORE";
17250
+ GO_TO_STORE_LINK: "GO_TO_STORE_LINK";
17251
+ GO_TO_PAGE: "GO_TO_PAGE";
17252
+ GO_TO_CATEGORY: "GO_TO_CATEGORY";
17253
+ GO_TO_CATEGORY_LINK: "GO_TO_CATEGORY_LINK";
17254
+ }>;
17255
+ link: z.ZodOptional<z.ZodString>;
17256
+ linkTarget: z.ZodOptional<z.ZodString>;
17257
+ email: z.ZodOptional<z.ZodString>;
17258
+ phone: z.ZodOptional<z.ZodString>;
17259
+ tileId: z.ZodOptional<z.ZodString>;
17260
+ categoryId: z.ZodOptional<z.ZodNumber>;
17261
+ }, z.core.$strict>, z.ZodObject<{
17262
+ type: z.ZodLiteral<"IMAGE">;
17263
+ imageData: z.ZodObject<{
17264
+ set: z.ZodObject<{
17265
+ ORIGINAL: z.ZodOptional<z.ZodObject<{
17266
+ url: z.ZodString;
17267
+ width: z.ZodOptional<z.ZodInt>;
17268
+ height: z.ZodOptional<z.ZodInt>;
17269
+ }, z.core.$strict>>;
17270
+ WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
17271
+ url: z.ZodString;
17272
+ width: z.ZodOptional<z.ZodInt>;
17273
+ height: z.ZodOptional<z.ZodInt>;
17274
+ }, z.core.$strict>>;
17275
+ WEBP_HI_2X_RES: z.ZodOptional<z.ZodObject<{
17276
+ url: z.ZodString;
17277
+ width: z.ZodOptional<z.ZodInt>;
17278
+ height: z.ZodOptional<z.ZodInt>;
17279
+ }, z.core.$strict>>;
17280
+ MOBILE_WEBP_LOW_RES: z.ZodOptional<z.ZodObject<{
17281
+ url: z.ZodString;
17282
+ width: z.ZodOptional<z.ZodInt>;
17283
+ height: z.ZodOptional<z.ZodInt>;
17284
+ }, z.core.$strict>>;
17285
+ MOBILE_WEBP_HI_RES: z.ZodOptional<z.ZodObject<{
17286
+ url: z.ZodString;
17287
+ width: z.ZodOptional<z.ZodInt>;
17288
+ height: z.ZodOptional<z.ZodInt>;
17289
+ }, z.core.$strict>>;
17290
+ }, z.core.$strict>;
17291
+ borderInfo: z.ZodOptional<z.ZodObject<{
17292
+ homogeneity: z.ZodOptional<z.ZodBoolean>;
17293
+ color: z.ZodOptional<z.ZodObject<{
17294
+ r: z.ZodNumber;
17295
+ g: z.ZodNumber;
17296
+ b: z.ZodNumber;
17297
+ a: z.ZodNumber;
17298
+ }, z.core.$strict>>;
17299
+ }, z.core.$strict>>;
17300
+ }, z.core.$strict>;
17301
+ }, z.core.$strict>, z.ZodObject<{
17302
+ type: z.ZodLiteral<"TOGGLE">;
17303
+ enabled: z.ZodBoolean;
17304
+ }, z.core.$strict>, z.ZodObject<{
17305
+ type: z.ZodLiteral<"SELECTBOX">;
17306
+ value: z.ZodString;
17307
+ }, z.core.$strict>, z.ZodObject<{
17308
+ type: z.ZodLiteral<"DIVIDER">;
17309
+ }, z.core.$strict>, z.ZodObject<{
17310
+ type: z.ZodLiteral<"INFO">;
17311
+ text: z.ZodOptional<z.ZodString>;
17312
+ button: z.ZodOptional<z.ZodObject<{
17313
+ title: z.ZodOptional<z.ZodString>;
17314
+ link: z.ZodOptional<z.ZodString>;
17315
+ }, z.core.$strict>>;
17316
+ }, z.core.$strict>, z.ZodObject<{
17317
+ type: z.ZodLiteral<"PRODUCT_SELECTOR">;
17318
+ }, z.core.$strict>, z.ZodObject<{
17319
+ type: z.ZodLiteral<"CATEGORY_SELECTOR">;
17320
+ }, z.core.$strict>], "type">>;
17321
+ }, z.core.$strict>>;
15780
17322
  }, z.core.$strict>], "type">>;
15781
17323
  }, z.core.$strict>>;
15782
17324
  }, z.core.$strict>, z.ZodObject<{
@@ -16489,7 +18031,7 @@ declare function useButtonElementContent<CONTENT>(elementName: string, externalC
16489
18031
  * @returns `Reactive<CategorySelector>` — reactive object with:
16490
18032
  * - `categories: ComputedRef<CategoryListComponentItem[]>` — array of category objects with `id`, `name`, `url`, `imageUrl`, etc.
16491
18033
  * - `categoryIds: ComputedRef<Array<number>>` — array of selected category IDs
16492
- * - `hasContent: ComputedRef<boolean>` — `true` if selector data exists
18034
+ * - `hasContent: ComputedRef<boolean>` — `true` if there are categories to render
16493
18035
  * - `hasCategories: ComputedRef<boolean>` — `true` if at least one category is selected
16494
18036
  *
16495
18037
  * @see {@link CategorySelectorContent}
@@ -16715,7 +18257,7 @@ declare function useNavigationMenuElementContent<CONTENT>(): {
16715
18257
  * - `products: ComputedRef<ProductListComponentItem[]>` — array of product objects with `id`, `name`, `price`, `imageUrl`, etc.
16716
18258
  * - `categories: ComputedRef<CategoryListComponentItem[]>` — array of categories (when using category selection)
16717
18259
  * - `categoryId: ComputedRef<number>` — selected category ID (when using category selection)
16718
- * - `hasContent: ComputedRef<boolean>` — `true` if selector data exists
18260
+ * - `hasContent: ComputedRef<boolean>` — `true` if there are products to render
16719
18261
  * - `hasProducts: ComputedRef<boolean>` — `true` if at least one product is selected
16720
18262
  *
16721
18263
  * @see {@link ProductSelectorContent}