@syntrologie/adapt-product 2.46.0 → 2.48.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/cdn.js +2 -2
- package/dist/{chunk-Y2QAYCSK.js → chunk-D2W6UYLT.js} +7 -2
- package/dist/chunk-D2W6UYLT.js.map +7 -0
- package/dist/{chunk-VUU65MYQ.js → chunk-XZVLFHRB.js} +64 -38
- package/dist/chunk-XZVLFHRB.js.map +7 -0
- package/dist/detail-cta.d.ts +49 -0
- package/dist/detail-cta.d.ts.map +1 -0
- package/dist/runtime.d.ts +80 -80
- package/dist/runtime.js +2 -2
- package/dist/schema-primitives.d.ts +22 -22
- package/dist/schema-primitives.d.ts.map +1 -1
- package/dist/schema.d.ts +336 -336
- package/dist/schema.js +1 -1
- package/dist/widgets/ProductCardLit.d.ts.map +1 -1
- package/dist/widgets/ProductComparisonLit.d.ts.map +1 -1
- package/dist/widgets/ProductHeroLit.d.ts.map +1 -1
- package/dist/widgets/imageStandin.d.ts +21 -0
- package/dist/widgets/imageStandin.d.ts.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-VUU65MYQ.js.map +0 -7
- package/dist/chunk-Y2QAYCSK.js.map +0 -7
package/dist/schema.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
8
8
|
id: z.ZodString;
|
|
9
9
|
name: z.ZodString;
|
|
10
10
|
tagline: z.ZodOptional<z.ZodString>;
|
|
11
|
-
image: z.ZodObject<{
|
|
11
|
+
image: z.ZodOptional<z.ZodObject<{
|
|
12
12
|
src: z.ZodEffects<z.ZodString, string, string>;
|
|
13
13
|
alt: z.ZodString;
|
|
14
14
|
bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -85,7 +85,7 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
85
85
|
type: "jsonld";
|
|
86
86
|
url?: string | undefined;
|
|
87
87
|
} | undefined;
|
|
88
|
-
}
|
|
88
|
+
}>>;
|
|
89
89
|
price: z.ZodOptional<z.ZodObject<{
|
|
90
90
|
amount: z.ZodString;
|
|
91
91
|
cadence: z.ZodOptional<z.ZodString>;
|
|
@@ -482,7 +482,15 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
482
482
|
}>>;
|
|
483
483
|
}, "strict", z.ZodTypeAny, {
|
|
484
484
|
name: string;
|
|
485
|
-
|
|
485
|
+
id: string;
|
|
486
|
+
ctas: {
|
|
487
|
+
label: string;
|
|
488
|
+
target: "_self" | "_blank";
|
|
489
|
+
variant: "primary" | "secondary" | "ghost";
|
|
490
|
+
href?: string | undefined;
|
|
491
|
+
actionId?: string | undefined;
|
|
492
|
+
}[];
|
|
493
|
+
image?: {
|
|
486
494
|
src: string;
|
|
487
495
|
alt: string;
|
|
488
496
|
bind?: {
|
|
@@ -499,15 +507,7 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
499
507
|
type: "jsonld";
|
|
500
508
|
url?: string | undefined;
|
|
501
509
|
} | undefined;
|
|
502
|
-
};
|
|
503
|
-
id: string;
|
|
504
|
-
ctas: {
|
|
505
|
-
label: string;
|
|
506
|
-
target: "_self" | "_blank";
|
|
507
|
-
variant: "primary" | "secondary" | "ghost";
|
|
508
|
-
href?: string | undefined;
|
|
509
|
-
actionId?: string | undefined;
|
|
510
|
-
}[];
|
|
510
|
+
} | undefined;
|
|
511
511
|
tagline?: string | undefined;
|
|
512
512
|
price?: {
|
|
513
513
|
amount: string;
|
|
@@ -606,7 +606,15 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
606
606
|
} | undefined;
|
|
607
607
|
}, {
|
|
608
608
|
name: string;
|
|
609
|
-
|
|
609
|
+
id: string;
|
|
610
|
+
ctas: {
|
|
611
|
+
label: string;
|
|
612
|
+
href?: string | undefined;
|
|
613
|
+
target?: "_self" | "_blank" | undefined;
|
|
614
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
615
|
+
actionId?: string | undefined;
|
|
616
|
+
}[];
|
|
617
|
+
image?: {
|
|
610
618
|
src: string;
|
|
611
619
|
alt: string;
|
|
612
620
|
bind?: {
|
|
@@ -623,15 +631,7 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
623
631
|
type: "jsonld";
|
|
624
632
|
url?: string | undefined;
|
|
625
633
|
} | undefined;
|
|
626
|
-
};
|
|
627
|
-
id: string;
|
|
628
|
-
ctas: {
|
|
629
|
-
label: string;
|
|
630
|
-
href?: string | undefined;
|
|
631
|
-
target?: "_self" | "_blank" | undefined;
|
|
632
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
633
|
-
actionId?: string | undefined;
|
|
634
|
-
}[];
|
|
634
|
+
} | undefined;
|
|
635
635
|
tagline?: string | undefined;
|
|
636
636
|
price?: {
|
|
637
637
|
amount: string;
|
|
@@ -741,7 +741,15 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
741
741
|
}, "strip", z.ZodTypeAny, {
|
|
742
742
|
product: {
|
|
743
743
|
name: string;
|
|
744
|
-
|
|
744
|
+
id: string;
|
|
745
|
+
ctas: {
|
|
746
|
+
label: string;
|
|
747
|
+
target: "_self" | "_blank";
|
|
748
|
+
variant: "primary" | "secondary" | "ghost";
|
|
749
|
+
href?: string | undefined;
|
|
750
|
+
actionId?: string | undefined;
|
|
751
|
+
}[];
|
|
752
|
+
image?: {
|
|
745
753
|
src: string;
|
|
746
754
|
alt: string;
|
|
747
755
|
bind?: {
|
|
@@ -758,15 +766,7 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
758
766
|
type: "jsonld";
|
|
759
767
|
url?: string | undefined;
|
|
760
768
|
} | undefined;
|
|
761
|
-
};
|
|
762
|
-
id: string;
|
|
763
|
-
ctas: {
|
|
764
|
-
label: string;
|
|
765
|
-
target: "_self" | "_blank";
|
|
766
|
-
variant: "primary" | "secondary" | "ghost";
|
|
767
|
-
href?: string | undefined;
|
|
768
|
-
actionId?: string | undefined;
|
|
769
|
-
}[];
|
|
769
|
+
} | undefined;
|
|
770
770
|
tagline?: string | undefined;
|
|
771
771
|
price?: {
|
|
772
772
|
amount: string;
|
|
@@ -869,7 +869,15 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
869
869
|
}, {
|
|
870
870
|
product: {
|
|
871
871
|
name: string;
|
|
872
|
-
|
|
872
|
+
id: string;
|
|
873
|
+
ctas: {
|
|
874
|
+
label: string;
|
|
875
|
+
href?: string | undefined;
|
|
876
|
+
target?: "_self" | "_blank" | undefined;
|
|
877
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
878
|
+
actionId?: string | undefined;
|
|
879
|
+
}[];
|
|
880
|
+
image?: {
|
|
873
881
|
src: string;
|
|
874
882
|
alt: string;
|
|
875
883
|
bind?: {
|
|
@@ -886,15 +894,7 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
886
894
|
type: "jsonld";
|
|
887
895
|
url?: string | undefined;
|
|
888
896
|
} | undefined;
|
|
889
|
-
};
|
|
890
|
-
id: string;
|
|
891
|
-
ctas: {
|
|
892
|
-
label: string;
|
|
893
|
-
href?: string | undefined;
|
|
894
|
-
target?: "_self" | "_blank" | undefined;
|
|
895
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
896
|
-
actionId?: string | undefined;
|
|
897
|
-
}[];
|
|
897
|
+
} | undefined;
|
|
898
898
|
tagline?: string | undefined;
|
|
899
899
|
price?: {
|
|
900
900
|
amount: string;
|
|
@@ -1029,7 +1029,7 @@ export declare const comparisonSchema: z.ZodObject<{
|
|
|
1029
1029
|
id: z.ZodString;
|
|
1030
1030
|
name: z.ZodString;
|
|
1031
1031
|
tagline: z.ZodOptional<z.ZodString>;
|
|
1032
|
-
image: z.ZodObject<{
|
|
1032
|
+
image: z.ZodOptional<z.ZodObject<{
|
|
1033
1033
|
src: z.ZodEffects<z.ZodString, string, string>;
|
|
1034
1034
|
alt: z.ZodString;
|
|
1035
1035
|
bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -1106,7 +1106,7 @@ export declare const comparisonSchema: z.ZodObject<{
|
|
|
1106
1106
|
type: "jsonld";
|
|
1107
1107
|
url?: string | undefined;
|
|
1108
1108
|
} | undefined;
|
|
1109
|
-
}
|
|
1109
|
+
}>>;
|
|
1110
1110
|
price: z.ZodOptional<z.ZodObject<{
|
|
1111
1111
|
amount: z.ZodString;
|
|
1112
1112
|
cadence: z.ZodOptional<z.ZodString>;
|
|
@@ -1503,7 +1503,15 @@ export declare const comparisonSchema: z.ZodObject<{
|
|
|
1503
1503
|
}>>;
|
|
1504
1504
|
}, "strict", z.ZodTypeAny, {
|
|
1505
1505
|
name: string;
|
|
1506
|
-
|
|
1506
|
+
id: string;
|
|
1507
|
+
ctas: {
|
|
1508
|
+
label: string;
|
|
1509
|
+
target: "_self" | "_blank";
|
|
1510
|
+
variant: "primary" | "secondary" | "ghost";
|
|
1511
|
+
href?: string | undefined;
|
|
1512
|
+
actionId?: string | undefined;
|
|
1513
|
+
}[];
|
|
1514
|
+
image?: {
|
|
1507
1515
|
src: string;
|
|
1508
1516
|
alt: string;
|
|
1509
1517
|
bind?: {
|
|
@@ -1520,15 +1528,7 @@ export declare const comparisonSchema: z.ZodObject<{
|
|
|
1520
1528
|
type: "jsonld";
|
|
1521
1529
|
url?: string | undefined;
|
|
1522
1530
|
} | undefined;
|
|
1523
|
-
};
|
|
1524
|
-
id: string;
|
|
1525
|
-
ctas: {
|
|
1526
|
-
label: string;
|
|
1527
|
-
target: "_self" | "_blank";
|
|
1528
|
-
variant: "primary" | "secondary" | "ghost";
|
|
1529
|
-
href?: string | undefined;
|
|
1530
|
-
actionId?: string | undefined;
|
|
1531
|
-
}[];
|
|
1531
|
+
} | undefined;
|
|
1532
1532
|
tagline?: string | undefined;
|
|
1533
1533
|
price?: {
|
|
1534
1534
|
amount: string;
|
|
@@ -1627,7 +1627,15 @@ export declare const comparisonSchema: z.ZodObject<{
|
|
|
1627
1627
|
} | undefined;
|
|
1628
1628
|
}, {
|
|
1629
1629
|
name: string;
|
|
1630
|
-
|
|
1630
|
+
id: string;
|
|
1631
|
+
ctas: {
|
|
1632
|
+
label: string;
|
|
1633
|
+
href?: string | undefined;
|
|
1634
|
+
target?: "_self" | "_blank" | undefined;
|
|
1635
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
1636
|
+
actionId?: string | undefined;
|
|
1637
|
+
}[];
|
|
1638
|
+
image?: {
|
|
1631
1639
|
src: string;
|
|
1632
1640
|
alt: string;
|
|
1633
1641
|
bind?: {
|
|
@@ -1644,15 +1652,7 @@ export declare const comparisonSchema: z.ZodObject<{
|
|
|
1644
1652
|
type: "jsonld";
|
|
1645
1653
|
url?: string | undefined;
|
|
1646
1654
|
} | undefined;
|
|
1647
|
-
};
|
|
1648
|
-
id: string;
|
|
1649
|
-
ctas: {
|
|
1650
|
-
label: string;
|
|
1651
|
-
href?: string | undefined;
|
|
1652
|
-
target?: "_self" | "_blank" | undefined;
|
|
1653
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
1654
|
-
actionId?: string | undefined;
|
|
1655
|
-
}[];
|
|
1655
|
+
} | undefined;
|
|
1656
1656
|
tagline?: string | undefined;
|
|
1657
1657
|
price?: {
|
|
1658
1658
|
amount: string;
|
|
@@ -1773,7 +1773,15 @@ export declare const comparisonSchema: z.ZodObject<{
|
|
|
1773
1773
|
}, "strip", z.ZodTypeAny, {
|
|
1774
1774
|
products: {
|
|
1775
1775
|
name: string;
|
|
1776
|
-
|
|
1776
|
+
id: string;
|
|
1777
|
+
ctas: {
|
|
1778
|
+
label: string;
|
|
1779
|
+
target: "_self" | "_blank";
|
|
1780
|
+
variant: "primary" | "secondary" | "ghost";
|
|
1781
|
+
href?: string | undefined;
|
|
1782
|
+
actionId?: string | undefined;
|
|
1783
|
+
}[];
|
|
1784
|
+
image?: {
|
|
1777
1785
|
src: string;
|
|
1778
1786
|
alt: string;
|
|
1779
1787
|
bind?: {
|
|
@@ -1790,15 +1798,7 @@ export declare const comparisonSchema: z.ZodObject<{
|
|
|
1790
1798
|
type: "jsonld";
|
|
1791
1799
|
url?: string | undefined;
|
|
1792
1800
|
} | undefined;
|
|
1793
|
-
};
|
|
1794
|
-
id: string;
|
|
1795
|
-
ctas: {
|
|
1796
|
-
label: string;
|
|
1797
|
-
target: "_self" | "_blank";
|
|
1798
|
-
variant: "primary" | "secondary" | "ghost";
|
|
1799
|
-
href?: string | undefined;
|
|
1800
|
-
actionId?: string | undefined;
|
|
1801
|
-
}[];
|
|
1801
|
+
} | undefined;
|
|
1802
1802
|
tagline?: string | undefined;
|
|
1803
1803
|
price?: {
|
|
1804
1804
|
amount: string;
|
|
@@ -1907,7 +1907,15 @@ export declare const comparisonSchema: z.ZodObject<{
|
|
|
1907
1907
|
}, {
|
|
1908
1908
|
products: {
|
|
1909
1909
|
name: string;
|
|
1910
|
-
|
|
1910
|
+
id: string;
|
|
1911
|
+
ctas: {
|
|
1912
|
+
label: string;
|
|
1913
|
+
href?: string | undefined;
|
|
1914
|
+
target?: "_self" | "_blank" | undefined;
|
|
1915
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
1916
|
+
actionId?: string | undefined;
|
|
1917
|
+
}[];
|
|
1918
|
+
image?: {
|
|
1911
1919
|
src: string;
|
|
1912
1920
|
alt: string;
|
|
1913
1921
|
bind?: {
|
|
@@ -1924,15 +1932,7 @@ export declare const comparisonSchema: z.ZodObject<{
|
|
|
1924
1932
|
type: "jsonld";
|
|
1925
1933
|
url?: string | undefined;
|
|
1926
1934
|
} | undefined;
|
|
1927
|
-
};
|
|
1928
|
-
id: string;
|
|
1929
|
-
ctas: {
|
|
1930
|
-
label: string;
|
|
1931
|
-
href?: string | undefined;
|
|
1932
|
-
target?: "_self" | "_blank" | undefined;
|
|
1933
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
1934
|
-
actionId?: string | undefined;
|
|
1935
|
-
}[];
|
|
1935
|
+
} | undefined;
|
|
1936
1936
|
tagline?: string | undefined;
|
|
1937
1937
|
price?: {
|
|
1938
1938
|
amount: string;
|
|
@@ -2044,7 +2044,7 @@ export declare const heroSchema: z.ZodObject<{
|
|
|
2044
2044
|
id: z.ZodString;
|
|
2045
2045
|
name: z.ZodString;
|
|
2046
2046
|
tagline: z.ZodOptional<z.ZodString>;
|
|
2047
|
-
image: z.ZodObject<{
|
|
2047
|
+
image: z.ZodOptional<z.ZodObject<{
|
|
2048
2048
|
src: z.ZodEffects<z.ZodString, string, string>;
|
|
2049
2049
|
alt: z.ZodString;
|
|
2050
2050
|
bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -2121,7 +2121,7 @@ export declare const heroSchema: z.ZodObject<{
|
|
|
2121
2121
|
type: "jsonld";
|
|
2122
2122
|
url?: string | undefined;
|
|
2123
2123
|
} | undefined;
|
|
2124
|
-
}
|
|
2124
|
+
}>>;
|
|
2125
2125
|
price: z.ZodOptional<z.ZodObject<{
|
|
2126
2126
|
amount: z.ZodString;
|
|
2127
2127
|
cadence: z.ZodOptional<z.ZodString>;
|
|
@@ -2518,7 +2518,15 @@ export declare const heroSchema: z.ZodObject<{
|
|
|
2518
2518
|
}>>;
|
|
2519
2519
|
}, "strict", z.ZodTypeAny, {
|
|
2520
2520
|
name: string;
|
|
2521
|
-
|
|
2521
|
+
id: string;
|
|
2522
|
+
ctas: {
|
|
2523
|
+
label: string;
|
|
2524
|
+
target: "_self" | "_blank";
|
|
2525
|
+
variant: "primary" | "secondary" | "ghost";
|
|
2526
|
+
href?: string | undefined;
|
|
2527
|
+
actionId?: string | undefined;
|
|
2528
|
+
}[];
|
|
2529
|
+
image?: {
|
|
2522
2530
|
src: string;
|
|
2523
2531
|
alt: string;
|
|
2524
2532
|
bind?: {
|
|
@@ -2535,15 +2543,7 @@ export declare const heroSchema: z.ZodObject<{
|
|
|
2535
2543
|
type: "jsonld";
|
|
2536
2544
|
url?: string | undefined;
|
|
2537
2545
|
} | undefined;
|
|
2538
|
-
};
|
|
2539
|
-
id: string;
|
|
2540
|
-
ctas: {
|
|
2541
|
-
label: string;
|
|
2542
|
-
target: "_self" | "_blank";
|
|
2543
|
-
variant: "primary" | "secondary" | "ghost";
|
|
2544
|
-
href?: string | undefined;
|
|
2545
|
-
actionId?: string | undefined;
|
|
2546
|
-
}[];
|
|
2546
|
+
} | undefined;
|
|
2547
2547
|
tagline?: string | undefined;
|
|
2548
2548
|
price?: {
|
|
2549
2549
|
amount: string;
|
|
@@ -2642,7 +2642,15 @@ export declare const heroSchema: z.ZodObject<{
|
|
|
2642
2642
|
} | undefined;
|
|
2643
2643
|
}, {
|
|
2644
2644
|
name: string;
|
|
2645
|
-
|
|
2645
|
+
id: string;
|
|
2646
|
+
ctas: {
|
|
2647
|
+
label: string;
|
|
2648
|
+
href?: string | undefined;
|
|
2649
|
+
target?: "_self" | "_blank" | undefined;
|
|
2650
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
2651
|
+
actionId?: string | undefined;
|
|
2652
|
+
}[];
|
|
2653
|
+
image?: {
|
|
2646
2654
|
src: string;
|
|
2647
2655
|
alt: string;
|
|
2648
2656
|
bind?: {
|
|
@@ -2659,15 +2667,7 @@ export declare const heroSchema: z.ZodObject<{
|
|
|
2659
2667
|
type: "jsonld";
|
|
2660
2668
|
url?: string | undefined;
|
|
2661
2669
|
} | undefined;
|
|
2662
|
-
};
|
|
2663
|
-
id: string;
|
|
2664
|
-
ctas: {
|
|
2665
|
-
label: string;
|
|
2666
|
-
href?: string | undefined;
|
|
2667
|
-
target?: "_self" | "_blank" | undefined;
|
|
2668
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
2669
|
-
actionId?: string | undefined;
|
|
2670
|
-
}[];
|
|
2670
|
+
} | undefined;
|
|
2671
2671
|
tagline?: string | undefined;
|
|
2672
2672
|
price?: {
|
|
2673
2673
|
amount: string;
|
|
@@ -2770,7 +2770,15 @@ export declare const heroSchema: z.ZodObject<{
|
|
|
2770
2770
|
}, "strip", z.ZodTypeAny, {
|
|
2771
2771
|
product: {
|
|
2772
2772
|
name: string;
|
|
2773
|
-
|
|
2773
|
+
id: string;
|
|
2774
|
+
ctas: {
|
|
2775
|
+
label: string;
|
|
2776
|
+
target: "_self" | "_blank";
|
|
2777
|
+
variant: "primary" | "secondary" | "ghost";
|
|
2778
|
+
href?: string | undefined;
|
|
2779
|
+
actionId?: string | undefined;
|
|
2780
|
+
}[];
|
|
2781
|
+
image?: {
|
|
2774
2782
|
src: string;
|
|
2775
2783
|
alt: string;
|
|
2776
2784
|
bind?: {
|
|
@@ -2787,15 +2795,7 @@ export declare const heroSchema: z.ZodObject<{
|
|
|
2787
2795
|
type: "jsonld";
|
|
2788
2796
|
url?: string | undefined;
|
|
2789
2797
|
} | undefined;
|
|
2790
|
-
};
|
|
2791
|
-
id: string;
|
|
2792
|
-
ctas: {
|
|
2793
|
-
label: string;
|
|
2794
|
-
target: "_self" | "_blank";
|
|
2795
|
-
variant: "primary" | "secondary" | "ghost";
|
|
2796
|
-
href?: string | undefined;
|
|
2797
|
-
actionId?: string | undefined;
|
|
2798
|
-
}[];
|
|
2798
|
+
} | undefined;
|
|
2799
2799
|
tagline?: string | undefined;
|
|
2800
2800
|
price?: {
|
|
2801
2801
|
amount: string;
|
|
@@ -2898,7 +2898,15 @@ export declare const heroSchema: z.ZodObject<{
|
|
|
2898
2898
|
}, {
|
|
2899
2899
|
product: {
|
|
2900
2900
|
name: string;
|
|
2901
|
-
|
|
2901
|
+
id: string;
|
|
2902
|
+
ctas: {
|
|
2903
|
+
label: string;
|
|
2904
|
+
href?: string | undefined;
|
|
2905
|
+
target?: "_self" | "_blank" | undefined;
|
|
2906
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
2907
|
+
actionId?: string | undefined;
|
|
2908
|
+
}[];
|
|
2909
|
+
image?: {
|
|
2902
2910
|
src: string;
|
|
2903
2911
|
alt: string;
|
|
2904
2912
|
bind?: {
|
|
@@ -2915,15 +2923,7 @@ export declare const heroSchema: z.ZodObject<{
|
|
|
2915
2923
|
type: "jsonld";
|
|
2916
2924
|
url?: string | undefined;
|
|
2917
2925
|
} | undefined;
|
|
2918
|
-
};
|
|
2919
|
-
id: string;
|
|
2920
|
-
ctas: {
|
|
2921
|
-
label: string;
|
|
2922
|
-
href?: string | undefined;
|
|
2923
|
-
target?: "_self" | "_blank" | undefined;
|
|
2924
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
2925
|
-
actionId?: string | undefined;
|
|
2926
|
-
}[];
|
|
2926
|
+
} | undefined;
|
|
2927
2927
|
tagline?: string | undefined;
|
|
2928
2928
|
price?: {
|
|
2929
2929
|
amount: string;
|
|
@@ -3029,7 +3029,7 @@ export declare const gridSchema: z.ZodObject<{
|
|
|
3029
3029
|
id: z.ZodString;
|
|
3030
3030
|
name: z.ZodString;
|
|
3031
3031
|
tagline: z.ZodOptional<z.ZodString>;
|
|
3032
|
-
image: z.ZodObject<{
|
|
3032
|
+
image: z.ZodOptional<z.ZodObject<{
|
|
3033
3033
|
src: z.ZodEffects<z.ZodString, string, string>;
|
|
3034
3034
|
alt: z.ZodString;
|
|
3035
3035
|
bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -3106,7 +3106,7 @@ export declare const gridSchema: z.ZodObject<{
|
|
|
3106
3106
|
type: "jsonld";
|
|
3107
3107
|
url?: string | undefined;
|
|
3108
3108
|
} | undefined;
|
|
3109
|
-
}
|
|
3109
|
+
}>>;
|
|
3110
3110
|
price: z.ZodOptional<z.ZodObject<{
|
|
3111
3111
|
amount: z.ZodString;
|
|
3112
3112
|
cadence: z.ZodOptional<z.ZodString>;
|
|
@@ -3503,7 +3503,15 @@ export declare const gridSchema: z.ZodObject<{
|
|
|
3503
3503
|
}>>;
|
|
3504
3504
|
}, "strict", z.ZodTypeAny, {
|
|
3505
3505
|
name: string;
|
|
3506
|
-
|
|
3506
|
+
id: string;
|
|
3507
|
+
ctas: {
|
|
3508
|
+
label: string;
|
|
3509
|
+
target: "_self" | "_blank";
|
|
3510
|
+
variant: "primary" | "secondary" | "ghost";
|
|
3511
|
+
href?: string | undefined;
|
|
3512
|
+
actionId?: string | undefined;
|
|
3513
|
+
}[];
|
|
3514
|
+
image?: {
|
|
3507
3515
|
src: string;
|
|
3508
3516
|
alt: string;
|
|
3509
3517
|
bind?: {
|
|
@@ -3520,15 +3528,7 @@ export declare const gridSchema: z.ZodObject<{
|
|
|
3520
3528
|
type: "jsonld";
|
|
3521
3529
|
url?: string | undefined;
|
|
3522
3530
|
} | undefined;
|
|
3523
|
-
};
|
|
3524
|
-
id: string;
|
|
3525
|
-
ctas: {
|
|
3526
|
-
label: string;
|
|
3527
|
-
target: "_self" | "_blank";
|
|
3528
|
-
variant: "primary" | "secondary" | "ghost";
|
|
3529
|
-
href?: string | undefined;
|
|
3530
|
-
actionId?: string | undefined;
|
|
3531
|
-
}[];
|
|
3531
|
+
} | undefined;
|
|
3532
3532
|
tagline?: string | undefined;
|
|
3533
3533
|
price?: {
|
|
3534
3534
|
amount: string;
|
|
@@ -3627,7 +3627,15 @@ export declare const gridSchema: z.ZodObject<{
|
|
|
3627
3627
|
} | undefined;
|
|
3628
3628
|
}, {
|
|
3629
3629
|
name: string;
|
|
3630
|
-
|
|
3630
|
+
id: string;
|
|
3631
|
+
ctas: {
|
|
3632
|
+
label: string;
|
|
3633
|
+
href?: string | undefined;
|
|
3634
|
+
target?: "_self" | "_blank" | undefined;
|
|
3635
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
3636
|
+
actionId?: string | undefined;
|
|
3637
|
+
}[];
|
|
3638
|
+
image?: {
|
|
3631
3639
|
src: string;
|
|
3632
3640
|
alt: string;
|
|
3633
3641
|
bind?: {
|
|
@@ -3644,15 +3652,7 @@ export declare const gridSchema: z.ZodObject<{
|
|
|
3644
3652
|
type: "jsonld";
|
|
3645
3653
|
url?: string | undefined;
|
|
3646
3654
|
} | undefined;
|
|
3647
|
-
};
|
|
3648
|
-
id: string;
|
|
3649
|
-
ctas: {
|
|
3650
|
-
label: string;
|
|
3651
|
-
href?: string | undefined;
|
|
3652
|
-
target?: "_self" | "_blank" | undefined;
|
|
3653
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
3654
|
-
actionId?: string | undefined;
|
|
3655
|
-
}[];
|
|
3655
|
+
} | undefined;
|
|
3656
3656
|
tagline?: string | undefined;
|
|
3657
3657
|
price?: {
|
|
3658
3658
|
amount: string;
|
|
@@ -3755,7 +3755,15 @@ export declare const gridSchema: z.ZodObject<{
|
|
|
3755
3755
|
}, "strip", z.ZodTypeAny, {
|
|
3756
3756
|
products: {
|
|
3757
3757
|
name: string;
|
|
3758
|
-
|
|
3758
|
+
id: string;
|
|
3759
|
+
ctas: {
|
|
3760
|
+
label: string;
|
|
3761
|
+
target: "_self" | "_blank";
|
|
3762
|
+
variant: "primary" | "secondary" | "ghost";
|
|
3763
|
+
href?: string | undefined;
|
|
3764
|
+
actionId?: string | undefined;
|
|
3765
|
+
}[];
|
|
3766
|
+
image?: {
|
|
3759
3767
|
src: string;
|
|
3760
3768
|
alt: string;
|
|
3761
3769
|
bind?: {
|
|
@@ -3772,15 +3780,7 @@ export declare const gridSchema: z.ZodObject<{
|
|
|
3772
3780
|
type: "jsonld";
|
|
3773
3781
|
url?: string | undefined;
|
|
3774
3782
|
} | undefined;
|
|
3775
|
-
};
|
|
3776
|
-
id: string;
|
|
3777
|
-
ctas: {
|
|
3778
|
-
label: string;
|
|
3779
|
-
target: "_self" | "_blank";
|
|
3780
|
-
variant: "primary" | "secondary" | "ghost";
|
|
3781
|
-
href?: string | undefined;
|
|
3782
|
-
actionId?: string | undefined;
|
|
3783
|
-
}[];
|
|
3783
|
+
} | undefined;
|
|
3784
3784
|
tagline?: string | undefined;
|
|
3785
3785
|
price?: {
|
|
3786
3786
|
amount: string;
|
|
@@ -3883,7 +3883,15 @@ export declare const gridSchema: z.ZodObject<{
|
|
|
3883
3883
|
}, {
|
|
3884
3884
|
products: {
|
|
3885
3885
|
name: string;
|
|
3886
|
-
|
|
3886
|
+
id: string;
|
|
3887
|
+
ctas: {
|
|
3888
|
+
label: string;
|
|
3889
|
+
href?: string | undefined;
|
|
3890
|
+
target?: "_self" | "_blank" | undefined;
|
|
3891
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
3892
|
+
actionId?: string | undefined;
|
|
3893
|
+
}[];
|
|
3894
|
+
image?: {
|
|
3887
3895
|
src: string;
|
|
3888
3896
|
alt: string;
|
|
3889
3897
|
bind?: {
|
|
@@ -3900,15 +3908,7 @@ export declare const gridSchema: z.ZodObject<{
|
|
|
3900
3908
|
type: "jsonld";
|
|
3901
3909
|
url?: string | undefined;
|
|
3902
3910
|
} | undefined;
|
|
3903
|
-
};
|
|
3904
|
-
id: string;
|
|
3905
|
-
ctas: {
|
|
3906
|
-
label: string;
|
|
3907
|
-
href?: string | undefined;
|
|
3908
|
-
target?: "_self" | "_blank" | undefined;
|
|
3909
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
3910
|
-
actionId?: string | undefined;
|
|
3911
|
-
}[];
|
|
3911
|
+
} | undefined;
|
|
3912
3912
|
tagline?: string | undefined;
|
|
3913
3913
|
price?: {
|
|
3914
3914
|
amount: string;
|
|
@@ -4071,7 +4071,7 @@ export declare const tileWidgets: readonly [{
|
|
|
4071
4071
|
id: z.ZodString;
|
|
4072
4072
|
name: z.ZodString;
|
|
4073
4073
|
tagline: z.ZodOptional<z.ZodString>;
|
|
4074
|
-
image: z.ZodObject<{
|
|
4074
|
+
image: z.ZodOptional<z.ZodObject<{
|
|
4075
4075
|
src: z.ZodEffects<z.ZodString, string, string>;
|
|
4076
4076
|
alt: z.ZodString;
|
|
4077
4077
|
bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -4148,7 +4148,7 @@ export declare const tileWidgets: readonly [{
|
|
|
4148
4148
|
type: "jsonld";
|
|
4149
4149
|
url?: string | undefined;
|
|
4150
4150
|
} | undefined;
|
|
4151
|
-
}
|
|
4151
|
+
}>>;
|
|
4152
4152
|
price: z.ZodOptional<z.ZodObject<{
|
|
4153
4153
|
amount: z.ZodString;
|
|
4154
4154
|
cadence: z.ZodOptional<z.ZodString>;
|
|
@@ -4545,7 +4545,15 @@ export declare const tileWidgets: readonly [{
|
|
|
4545
4545
|
}>>;
|
|
4546
4546
|
}, "strict", z.ZodTypeAny, {
|
|
4547
4547
|
name: string;
|
|
4548
|
-
|
|
4548
|
+
id: string;
|
|
4549
|
+
ctas: {
|
|
4550
|
+
label: string;
|
|
4551
|
+
target: "_self" | "_blank";
|
|
4552
|
+
variant: "primary" | "secondary" | "ghost";
|
|
4553
|
+
href?: string | undefined;
|
|
4554
|
+
actionId?: string | undefined;
|
|
4555
|
+
}[];
|
|
4556
|
+
image?: {
|
|
4549
4557
|
src: string;
|
|
4550
4558
|
alt: string;
|
|
4551
4559
|
bind?: {
|
|
@@ -4562,15 +4570,7 @@ export declare const tileWidgets: readonly [{
|
|
|
4562
4570
|
type: "jsonld";
|
|
4563
4571
|
url?: string | undefined;
|
|
4564
4572
|
} | undefined;
|
|
4565
|
-
};
|
|
4566
|
-
id: string;
|
|
4567
|
-
ctas: {
|
|
4568
|
-
label: string;
|
|
4569
|
-
target: "_self" | "_blank";
|
|
4570
|
-
variant: "primary" | "secondary" | "ghost";
|
|
4571
|
-
href?: string | undefined;
|
|
4572
|
-
actionId?: string | undefined;
|
|
4573
|
-
}[];
|
|
4573
|
+
} | undefined;
|
|
4574
4574
|
tagline?: string | undefined;
|
|
4575
4575
|
price?: {
|
|
4576
4576
|
amount: string;
|
|
@@ -4669,7 +4669,15 @@ export declare const tileWidgets: readonly [{
|
|
|
4669
4669
|
} | undefined;
|
|
4670
4670
|
}, {
|
|
4671
4671
|
name: string;
|
|
4672
|
-
|
|
4672
|
+
id: string;
|
|
4673
|
+
ctas: {
|
|
4674
|
+
label: string;
|
|
4675
|
+
href?: string | undefined;
|
|
4676
|
+
target?: "_self" | "_blank" | undefined;
|
|
4677
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
4678
|
+
actionId?: string | undefined;
|
|
4679
|
+
}[];
|
|
4680
|
+
image?: {
|
|
4673
4681
|
src: string;
|
|
4674
4682
|
alt: string;
|
|
4675
4683
|
bind?: {
|
|
@@ -4686,15 +4694,7 @@ export declare const tileWidgets: readonly [{
|
|
|
4686
4694
|
type: "jsonld";
|
|
4687
4695
|
url?: string | undefined;
|
|
4688
4696
|
} | undefined;
|
|
4689
|
-
};
|
|
4690
|
-
id: string;
|
|
4691
|
-
ctas: {
|
|
4692
|
-
label: string;
|
|
4693
|
-
href?: string | undefined;
|
|
4694
|
-
target?: "_self" | "_blank" | undefined;
|
|
4695
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
4696
|
-
actionId?: string | undefined;
|
|
4697
|
-
}[];
|
|
4697
|
+
} | undefined;
|
|
4698
4698
|
tagline?: string | undefined;
|
|
4699
4699
|
price?: {
|
|
4700
4700
|
amount: string;
|
|
@@ -4804,7 +4804,15 @@ export declare const tileWidgets: readonly [{
|
|
|
4804
4804
|
}, "strip", z.ZodTypeAny, {
|
|
4805
4805
|
product: {
|
|
4806
4806
|
name: string;
|
|
4807
|
-
|
|
4807
|
+
id: string;
|
|
4808
|
+
ctas: {
|
|
4809
|
+
label: string;
|
|
4810
|
+
target: "_self" | "_blank";
|
|
4811
|
+
variant: "primary" | "secondary" | "ghost";
|
|
4812
|
+
href?: string | undefined;
|
|
4813
|
+
actionId?: string | undefined;
|
|
4814
|
+
}[];
|
|
4815
|
+
image?: {
|
|
4808
4816
|
src: string;
|
|
4809
4817
|
alt: string;
|
|
4810
4818
|
bind?: {
|
|
@@ -4821,15 +4829,7 @@ export declare const tileWidgets: readonly [{
|
|
|
4821
4829
|
type: "jsonld";
|
|
4822
4830
|
url?: string | undefined;
|
|
4823
4831
|
} | undefined;
|
|
4824
|
-
};
|
|
4825
|
-
id: string;
|
|
4826
|
-
ctas: {
|
|
4827
|
-
label: string;
|
|
4828
|
-
target: "_self" | "_blank";
|
|
4829
|
-
variant: "primary" | "secondary" | "ghost";
|
|
4830
|
-
href?: string | undefined;
|
|
4831
|
-
actionId?: string | undefined;
|
|
4832
|
-
}[];
|
|
4832
|
+
} | undefined;
|
|
4833
4833
|
tagline?: string | undefined;
|
|
4834
4834
|
price?: {
|
|
4835
4835
|
amount: string;
|
|
@@ -4932,7 +4932,15 @@ export declare const tileWidgets: readonly [{
|
|
|
4932
4932
|
}, {
|
|
4933
4933
|
product: {
|
|
4934
4934
|
name: string;
|
|
4935
|
-
|
|
4935
|
+
id: string;
|
|
4936
|
+
ctas: {
|
|
4937
|
+
label: string;
|
|
4938
|
+
href?: string | undefined;
|
|
4939
|
+
target?: "_self" | "_blank" | undefined;
|
|
4940
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
4941
|
+
actionId?: string | undefined;
|
|
4942
|
+
}[];
|
|
4943
|
+
image?: {
|
|
4936
4944
|
src: string;
|
|
4937
4945
|
alt: string;
|
|
4938
4946
|
bind?: {
|
|
@@ -4949,15 +4957,7 @@ export declare const tileWidgets: readonly [{
|
|
|
4949
4957
|
type: "jsonld";
|
|
4950
4958
|
url?: string | undefined;
|
|
4951
4959
|
} | undefined;
|
|
4952
|
-
};
|
|
4953
|
-
id: string;
|
|
4954
|
-
ctas: {
|
|
4955
|
-
label: string;
|
|
4956
|
-
href?: string | undefined;
|
|
4957
|
-
target?: "_self" | "_blank" | undefined;
|
|
4958
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
4959
|
-
actionId?: string | undefined;
|
|
4960
|
-
}[];
|
|
4960
|
+
} | undefined;
|
|
4961
4961
|
tagline?: string | undefined;
|
|
4962
4962
|
price?: {
|
|
4963
4963
|
amount: string;
|
|
@@ -5066,7 +5066,7 @@ export declare const tileWidgets: readonly [{
|
|
|
5066
5066
|
id: z.ZodString;
|
|
5067
5067
|
name: z.ZodString;
|
|
5068
5068
|
tagline: z.ZodOptional<z.ZodString>;
|
|
5069
|
-
image: z.ZodObject<{
|
|
5069
|
+
image: z.ZodOptional<z.ZodObject<{
|
|
5070
5070
|
src: z.ZodEffects<z.ZodString, string, string>;
|
|
5071
5071
|
alt: z.ZodString;
|
|
5072
5072
|
bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -5143,7 +5143,7 @@ export declare const tileWidgets: readonly [{
|
|
|
5143
5143
|
type: "jsonld";
|
|
5144
5144
|
url?: string | undefined;
|
|
5145
5145
|
} | undefined;
|
|
5146
|
-
}
|
|
5146
|
+
}>>;
|
|
5147
5147
|
price: z.ZodOptional<z.ZodObject<{
|
|
5148
5148
|
amount: z.ZodString;
|
|
5149
5149
|
cadence: z.ZodOptional<z.ZodString>;
|
|
@@ -5540,7 +5540,15 @@ export declare const tileWidgets: readonly [{
|
|
|
5540
5540
|
}>>;
|
|
5541
5541
|
}, "strict", z.ZodTypeAny, {
|
|
5542
5542
|
name: string;
|
|
5543
|
-
|
|
5543
|
+
id: string;
|
|
5544
|
+
ctas: {
|
|
5545
|
+
label: string;
|
|
5546
|
+
target: "_self" | "_blank";
|
|
5547
|
+
variant: "primary" | "secondary" | "ghost";
|
|
5548
|
+
href?: string | undefined;
|
|
5549
|
+
actionId?: string | undefined;
|
|
5550
|
+
}[];
|
|
5551
|
+
image?: {
|
|
5544
5552
|
src: string;
|
|
5545
5553
|
alt: string;
|
|
5546
5554
|
bind?: {
|
|
@@ -5557,15 +5565,7 @@ export declare const tileWidgets: readonly [{
|
|
|
5557
5565
|
type: "jsonld";
|
|
5558
5566
|
url?: string | undefined;
|
|
5559
5567
|
} | undefined;
|
|
5560
|
-
};
|
|
5561
|
-
id: string;
|
|
5562
|
-
ctas: {
|
|
5563
|
-
label: string;
|
|
5564
|
-
target: "_self" | "_blank";
|
|
5565
|
-
variant: "primary" | "secondary" | "ghost";
|
|
5566
|
-
href?: string | undefined;
|
|
5567
|
-
actionId?: string | undefined;
|
|
5568
|
-
}[];
|
|
5568
|
+
} | undefined;
|
|
5569
5569
|
tagline?: string | undefined;
|
|
5570
5570
|
price?: {
|
|
5571
5571
|
amount: string;
|
|
@@ -5664,7 +5664,15 @@ export declare const tileWidgets: readonly [{
|
|
|
5664
5664
|
} | undefined;
|
|
5665
5665
|
}, {
|
|
5666
5666
|
name: string;
|
|
5667
|
-
|
|
5667
|
+
id: string;
|
|
5668
|
+
ctas: {
|
|
5669
|
+
label: string;
|
|
5670
|
+
href?: string | undefined;
|
|
5671
|
+
target?: "_self" | "_blank" | undefined;
|
|
5672
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
5673
|
+
actionId?: string | undefined;
|
|
5674
|
+
}[];
|
|
5675
|
+
image?: {
|
|
5668
5676
|
src: string;
|
|
5669
5677
|
alt: string;
|
|
5670
5678
|
bind?: {
|
|
@@ -5681,15 +5689,7 @@ export declare const tileWidgets: readonly [{
|
|
|
5681
5689
|
type: "jsonld";
|
|
5682
5690
|
url?: string | undefined;
|
|
5683
5691
|
} | undefined;
|
|
5684
|
-
};
|
|
5685
|
-
id: string;
|
|
5686
|
-
ctas: {
|
|
5687
|
-
label: string;
|
|
5688
|
-
href?: string | undefined;
|
|
5689
|
-
target?: "_self" | "_blank" | undefined;
|
|
5690
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
5691
|
-
actionId?: string | undefined;
|
|
5692
|
-
}[];
|
|
5692
|
+
} | undefined;
|
|
5693
5693
|
tagline?: string | undefined;
|
|
5694
5694
|
price?: {
|
|
5695
5695
|
amount: string;
|
|
@@ -5810,7 +5810,15 @@ export declare const tileWidgets: readonly [{
|
|
|
5810
5810
|
}, "strip", z.ZodTypeAny, {
|
|
5811
5811
|
products: {
|
|
5812
5812
|
name: string;
|
|
5813
|
-
|
|
5813
|
+
id: string;
|
|
5814
|
+
ctas: {
|
|
5815
|
+
label: string;
|
|
5816
|
+
target: "_self" | "_blank";
|
|
5817
|
+
variant: "primary" | "secondary" | "ghost";
|
|
5818
|
+
href?: string | undefined;
|
|
5819
|
+
actionId?: string | undefined;
|
|
5820
|
+
}[];
|
|
5821
|
+
image?: {
|
|
5814
5822
|
src: string;
|
|
5815
5823
|
alt: string;
|
|
5816
5824
|
bind?: {
|
|
@@ -5827,15 +5835,7 @@ export declare const tileWidgets: readonly [{
|
|
|
5827
5835
|
type: "jsonld";
|
|
5828
5836
|
url?: string | undefined;
|
|
5829
5837
|
} | undefined;
|
|
5830
|
-
};
|
|
5831
|
-
id: string;
|
|
5832
|
-
ctas: {
|
|
5833
|
-
label: string;
|
|
5834
|
-
target: "_self" | "_blank";
|
|
5835
|
-
variant: "primary" | "secondary" | "ghost";
|
|
5836
|
-
href?: string | undefined;
|
|
5837
|
-
actionId?: string | undefined;
|
|
5838
|
-
}[];
|
|
5838
|
+
} | undefined;
|
|
5839
5839
|
tagline?: string | undefined;
|
|
5840
5840
|
price?: {
|
|
5841
5841
|
amount: string;
|
|
@@ -5944,7 +5944,15 @@ export declare const tileWidgets: readonly [{
|
|
|
5944
5944
|
}, {
|
|
5945
5945
|
products: {
|
|
5946
5946
|
name: string;
|
|
5947
|
-
|
|
5947
|
+
id: string;
|
|
5948
|
+
ctas: {
|
|
5949
|
+
label: string;
|
|
5950
|
+
href?: string | undefined;
|
|
5951
|
+
target?: "_self" | "_blank" | undefined;
|
|
5952
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
5953
|
+
actionId?: string | undefined;
|
|
5954
|
+
}[];
|
|
5955
|
+
image?: {
|
|
5948
5956
|
src: string;
|
|
5949
5957
|
alt: string;
|
|
5950
5958
|
bind?: {
|
|
@@ -5961,15 +5969,7 @@ export declare const tileWidgets: readonly [{
|
|
|
5961
5969
|
type: "jsonld";
|
|
5962
5970
|
url?: string | undefined;
|
|
5963
5971
|
} | undefined;
|
|
5964
|
-
};
|
|
5965
|
-
id: string;
|
|
5966
|
-
ctas: {
|
|
5967
|
-
label: string;
|
|
5968
|
-
href?: string | undefined;
|
|
5969
|
-
target?: "_self" | "_blank" | undefined;
|
|
5970
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
5971
|
-
actionId?: string | undefined;
|
|
5972
|
-
}[];
|
|
5972
|
+
} | undefined;
|
|
5973
5973
|
tagline?: string | undefined;
|
|
5974
5974
|
price?: {
|
|
5975
5975
|
amount: string;
|
|
@@ -6084,7 +6084,7 @@ export declare const tileWidgets: readonly [{
|
|
|
6084
6084
|
id: z.ZodString;
|
|
6085
6085
|
name: z.ZodString;
|
|
6086
6086
|
tagline: z.ZodOptional<z.ZodString>;
|
|
6087
|
-
image: z.ZodObject<{
|
|
6087
|
+
image: z.ZodOptional<z.ZodObject<{
|
|
6088
6088
|
src: z.ZodEffects<z.ZodString, string, string>;
|
|
6089
6089
|
alt: z.ZodString;
|
|
6090
6090
|
bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -6161,7 +6161,7 @@ export declare const tileWidgets: readonly [{
|
|
|
6161
6161
|
type: "jsonld";
|
|
6162
6162
|
url?: string | undefined;
|
|
6163
6163
|
} | undefined;
|
|
6164
|
-
}
|
|
6164
|
+
}>>;
|
|
6165
6165
|
price: z.ZodOptional<z.ZodObject<{
|
|
6166
6166
|
amount: z.ZodString;
|
|
6167
6167
|
cadence: z.ZodOptional<z.ZodString>;
|
|
@@ -6558,7 +6558,15 @@ export declare const tileWidgets: readonly [{
|
|
|
6558
6558
|
}>>;
|
|
6559
6559
|
}, "strict", z.ZodTypeAny, {
|
|
6560
6560
|
name: string;
|
|
6561
|
-
|
|
6561
|
+
id: string;
|
|
6562
|
+
ctas: {
|
|
6563
|
+
label: string;
|
|
6564
|
+
target: "_self" | "_blank";
|
|
6565
|
+
variant: "primary" | "secondary" | "ghost";
|
|
6566
|
+
href?: string | undefined;
|
|
6567
|
+
actionId?: string | undefined;
|
|
6568
|
+
}[];
|
|
6569
|
+
image?: {
|
|
6562
6570
|
src: string;
|
|
6563
6571
|
alt: string;
|
|
6564
6572
|
bind?: {
|
|
@@ -6575,15 +6583,7 @@ export declare const tileWidgets: readonly [{
|
|
|
6575
6583
|
type: "jsonld";
|
|
6576
6584
|
url?: string | undefined;
|
|
6577
6585
|
} | undefined;
|
|
6578
|
-
};
|
|
6579
|
-
id: string;
|
|
6580
|
-
ctas: {
|
|
6581
|
-
label: string;
|
|
6582
|
-
target: "_self" | "_blank";
|
|
6583
|
-
variant: "primary" | "secondary" | "ghost";
|
|
6584
|
-
href?: string | undefined;
|
|
6585
|
-
actionId?: string | undefined;
|
|
6586
|
-
}[];
|
|
6586
|
+
} | undefined;
|
|
6587
6587
|
tagline?: string | undefined;
|
|
6588
6588
|
price?: {
|
|
6589
6589
|
amount: string;
|
|
@@ -6682,7 +6682,15 @@ export declare const tileWidgets: readonly [{
|
|
|
6682
6682
|
} | undefined;
|
|
6683
6683
|
}, {
|
|
6684
6684
|
name: string;
|
|
6685
|
-
|
|
6685
|
+
id: string;
|
|
6686
|
+
ctas: {
|
|
6687
|
+
label: string;
|
|
6688
|
+
href?: string | undefined;
|
|
6689
|
+
target?: "_self" | "_blank" | undefined;
|
|
6690
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
6691
|
+
actionId?: string | undefined;
|
|
6692
|
+
}[];
|
|
6693
|
+
image?: {
|
|
6686
6694
|
src: string;
|
|
6687
6695
|
alt: string;
|
|
6688
6696
|
bind?: {
|
|
@@ -6699,15 +6707,7 @@ export declare const tileWidgets: readonly [{
|
|
|
6699
6707
|
type: "jsonld";
|
|
6700
6708
|
url?: string | undefined;
|
|
6701
6709
|
} | undefined;
|
|
6702
|
-
};
|
|
6703
|
-
id: string;
|
|
6704
|
-
ctas: {
|
|
6705
|
-
label: string;
|
|
6706
|
-
href?: string | undefined;
|
|
6707
|
-
target?: "_self" | "_blank" | undefined;
|
|
6708
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
6709
|
-
actionId?: string | undefined;
|
|
6710
|
-
}[];
|
|
6710
|
+
} | undefined;
|
|
6711
6711
|
tagline?: string | undefined;
|
|
6712
6712
|
price?: {
|
|
6713
6713
|
amount: string;
|
|
@@ -6810,7 +6810,15 @@ export declare const tileWidgets: readonly [{
|
|
|
6810
6810
|
}, "strip", z.ZodTypeAny, {
|
|
6811
6811
|
product: {
|
|
6812
6812
|
name: string;
|
|
6813
|
-
|
|
6813
|
+
id: string;
|
|
6814
|
+
ctas: {
|
|
6815
|
+
label: string;
|
|
6816
|
+
target: "_self" | "_blank";
|
|
6817
|
+
variant: "primary" | "secondary" | "ghost";
|
|
6818
|
+
href?: string | undefined;
|
|
6819
|
+
actionId?: string | undefined;
|
|
6820
|
+
}[];
|
|
6821
|
+
image?: {
|
|
6814
6822
|
src: string;
|
|
6815
6823
|
alt: string;
|
|
6816
6824
|
bind?: {
|
|
@@ -6827,15 +6835,7 @@ export declare const tileWidgets: readonly [{
|
|
|
6827
6835
|
type: "jsonld";
|
|
6828
6836
|
url?: string | undefined;
|
|
6829
6837
|
} | undefined;
|
|
6830
|
-
};
|
|
6831
|
-
id: string;
|
|
6832
|
-
ctas: {
|
|
6833
|
-
label: string;
|
|
6834
|
-
target: "_self" | "_blank";
|
|
6835
|
-
variant: "primary" | "secondary" | "ghost";
|
|
6836
|
-
href?: string | undefined;
|
|
6837
|
-
actionId?: string | undefined;
|
|
6838
|
-
}[];
|
|
6838
|
+
} | undefined;
|
|
6839
6839
|
tagline?: string | undefined;
|
|
6840
6840
|
price?: {
|
|
6841
6841
|
amount: string;
|
|
@@ -6938,7 +6938,15 @@ export declare const tileWidgets: readonly [{
|
|
|
6938
6938
|
}, {
|
|
6939
6939
|
product: {
|
|
6940
6940
|
name: string;
|
|
6941
|
-
|
|
6941
|
+
id: string;
|
|
6942
|
+
ctas: {
|
|
6943
|
+
label: string;
|
|
6944
|
+
href?: string | undefined;
|
|
6945
|
+
target?: "_self" | "_blank" | undefined;
|
|
6946
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
6947
|
+
actionId?: string | undefined;
|
|
6948
|
+
}[];
|
|
6949
|
+
image?: {
|
|
6942
6950
|
src: string;
|
|
6943
6951
|
alt: string;
|
|
6944
6952
|
bind?: {
|
|
@@ -6955,15 +6963,7 @@ export declare const tileWidgets: readonly [{
|
|
|
6955
6963
|
type: "jsonld";
|
|
6956
6964
|
url?: string | undefined;
|
|
6957
6965
|
} | undefined;
|
|
6958
|
-
};
|
|
6959
|
-
id: string;
|
|
6960
|
-
ctas: {
|
|
6961
|
-
label: string;
|
|
6962
|
-
href?: string | undefined;
|
|
6963
|
-
target?: "_self" | "_blank" | undefined;
|
|
6964
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
6965
|
-
actionId?: string | undefined;
|
|
6966
|
-
}[];
|
|
6966
|
+
} | undefined;
|
|
6967
6967
|
tagline?: string | undefined;
|
|
6968
6968
|
price?: {
|
|
6969
6969
|
amount: string;
|
|
@@ -7072,7 +7072,7 @@ export declare const tileWidgets: readonly [{
|
|
|
7072
7072
|
id: z.ZodString;
|
|
7073
7073
|
name: z.ZodString;
|
|
7074
7074
|
tagline: z.ZodOptional<z.ZodString>;
|
|
7075
|
-
image: z.ZodObject<{
|
|
7075
|
+
image: z.ZodOptional<z.ZodObject<{
|
|
7076
7076
|
src: z.ZodEffects<z.ZodString, string, string>;
|
|
7077
7077
|
alt: z.ZodString;
|
|
7078
7078
|
bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -7149,7 +7149,7 @@ export declare const tileWidgets: readonly [{
|
|
|
7149
7149
|
type: "jsonld";
|
|
7150
7150
|
url?: string | undefined;
|
|
7151
7151
|
} | undefined;
|
|
7152
|
-
}
|
|
7152
|
+
}>>;
|
|
7153
7153
|
price: z.ZodOptional<z.ZodObject<{
|
|
7154
7154
|
amount: z.ZodString;
|
|
7155
7155
|
cadence: z.ZodOptional<z.ZodString>;
|
|
@@ -7546,7 +7546,15 @@ export declare const tileWidgets: readonly [{
|
|
|
7546
7546
|
}>>;
|
|
7547
7547
|
}, "strict", z.ZodTypeAny, {
|
|
7548
7548
|
name: string;
|
|
7549
|
-
|
|
7549
|
+
id: string;
|
|
7550
|
+
ctas: {
|
|
7551
|
+
label: string;
|
|
7552
|
+
target: "_self" | "_blank";
|
|
7553
|
+
variant: "primary" | "secondary" | "ghost";
|
|
7554
|
+
href?: string | undefined;
|
|
7555
|
+
actionId?: string | undefined;
|
|
7556
|
+
}[];
|
|
7557
|
+
image?: {
|
|
7550
7558
|
src: string;
|
|
7551
7559
|
alt: string;
|
|
7552
7560
|
bind?: {
|
|
@@ -7563,15 +7571,7 @@ export declare const tileWidgets: readonly [{
|
|
|
7563
7571
|
type: "jsonld";
|
|
7564
7572
|
url?: string | undefined;
|
|
7565
7573
|
} | undefined;
|
|
7566
|
-
};
|
|
7567
|
-
id: string;
|
|
7568
|
-
ctas: {
|
|
7569
|
-
label: string;
|
|
7570
|
-
target: "_self" | "_blank";
|
|
7571
|
-
variant: "primary" | "secondary" | "ghost";
|
|
7572
|
-
href?: string | undefined;
|
|
7573
|
-
actionId?: string | undefined;
|
|
7574
|
-
}[];
|
|
7574
|
+
} | undefined;
|
|
7575
7575
|
tagline?: string | undefined;
|
|
7576
7576
|
price?: {
|
|
7577
7577
|
amount: string;
|
|
@@ -7670,7 +7670,15 @@ export declare const tileWidgets: readonly [{
|
|
|
7670
7670
|
} | undefined;
|
|
7671
7671
|
}, {
|
|
7672
7672
|
name: string;
|
|
7673
|
-
|
|
7673
|
+
id: string;
|
|
7674
|
+
ctas: {
|
|
7675
|
+
label: string;
|
|
7676
|
+
href?: string | undefined;
|
|
7677
|
+
target?: "_self" | "_blank" | undefined;
|
|
7678
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
7679
|
+
actionId?: string | undefined;
|
|
7680
|
+
}[];
|
|
7681
|
+
image?: {
|
|
7674
7682
|
src: string;
|
|
7675
7683
|
alt: string;
|
|
7676
7684
|
bind?: {
|
|
@@ -7687,15 +7695,7 @@ export declare const tileWidgets: readonly [{
|
|
|
7687
7695
|
type: "jsonld";
|
|
7688
7696
|
url?: string | undefined;
|
|
7689
7697
|
} | undefined;
|
|
7690
|
-
};
|
|
7691
|
-
id: string;
|
|
7692
|
-
ctas: {
|
|
7693
|
-
label: string;
|
|
7694
|
-
href?: string | undefined;
|
|
7695
|
-
target?: "_self" | "_blank" | undefined;
|
|
7696
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
7697
|
-
actionId?: string | undefined;
|
|
7698
|
-
}[];
|
|
7698
|
+
} | undefined;
|
|
7699
7699
|
tagline?: string | undefined;
|
|
7700
7700
|
price?: {
|
|
7701
7701
|
amount: string;
|
|
@@ -7798,7 +7798,15 @@ export declare const tileWidgets: readonly [{
|
|
|
7798
7798
|
}, "strip", z.ZodTypeAny, {
|
|
7799
7799
|
products: {
|
|
7800
7800
|
name: string;
|
|
7801
|
-
|
|
7801
|
+
id: string;
|
|
7802
|
+
ctas: {
|
|
7803
|
+
label: string;
|
|
7804
|
+
target: "_self" | "_blank";
|
|
7805
|
+
variant: "primary" | "secondary" | "ghost";
|
|
7806
|
+
href?: string | undefined;
|
|
7807
|
+
actionId?: string | undefined;
|
|
7808
|
+
}[];
|
|
7809
|
+
image?: {
|
|
7802
7810
|
src: string;
|
|
7803
7811
|
alt: string;
|
|
7804
7812
|
bind?: {
|
|
@@ -7815,15 +7823,7 @@ export declare const tileWidgets: readonly [{
|
|
|
7815
7823
|
type: "jsonld";
|
|
7816
7824
|
url?: string | undefined;
|
|
7817
7825
|
} | undefined;
|
|
7818
|
-
};
|
|
7819
|
-
id: string;
|
|
7820
|
-
ctas: {
|
|
7821
|
-
label: string;
|
|
7822
|
-
target: "_self" | "_blank";
|
|
7823
|
-
variant: "primary" | "secondary" | "ghost";
|
|
7824
|
-
href?: string | undefined;
|
|
7825
|
-
actionId?: string | undefined;
|
|
7826
|
-
}[];
|
|
7826
|
+
} | undefined;
|
|
7827
7827
|
tagline?: string | undefined;
|
|
7828
7828
|
price?: {
|
|
7829
7829
|
amount: string;
|
|
@@ -7926,7 +7926,15 @@ export declare const tileWidgets: readonly [{
|
|
|
7926
7926
|
}, {
|
|
7927
7927
|
products: {
|
|
7928
7928
|
name: string;
|
|
7929
|
-
|
|
7929
|
+
id: string;
|
|
7930
|
+
ctas: {
|
|
7931
|
+
label: string;
|
|
7932
|
+
href?: string | undefined;
|
|
7933
|
+
target?: "_self" | "_blank" | undefined;
|
|
7934
|
+
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
7935
|
+
actionId?: string | undefined;
|
|
7936
|
+
}[];
|
|
7937
|
+
image?: {
|
|
7930
7938
|
src: string;
|
|
7931
7939
|
alt: string;
|
|
7932
7940
|
bind?: {
|
|
@@ -7943,15 +7951,7 @@ export declare const tileWidgets: readonly [{
|
|
|
7943
7951
|
type: "jsonld";
|
|
7944
7952
|
url?: string | undefined;
|
|
7945
7953
|
} | undefined;
|
|
7946
|
-
};
|
|
7947
|
-
id: string;
|
|
7948
|
-
ctas: {
|
|
7949
|
-
label: string;
|
|
7950
|
-
href?: string | undefined;
|
|
7951
|
-
target?: "_self" | "_blank" | undefined;
|
|
7952
|
-
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
7953
|
-
actionId?: string | undefined;
|
|
7954
|
-
}[];
|
|
7954
|
+
} | undefined;
|
|
7955
7955
|
tagline?: string | undefined;
|
|
7956
7956
|
price?: {
|
|
7957
7957
|
amount: string;
|