@lightspeed/crane-api 2.3.3-rc.1 → 2.3.3-rc.2

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