@syntrologie/adapt-product 2.8.0-canary.245

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.
Files changed (47) hide show
  1. package/dist/bind/controller.d.ts +12 -0
  2. package/dist/bind/controller.d.ts.map +1 -0
  3. package/dist/bind/dom-selector.d.ts +11 -0
  4. package/dist/bind/dom-selector.d.ts.map +1 -0
  5. package/dist/bind/index.d.ts +6 -0
  6. package/dist/bind/index.d.ts.map +1 -0
  7. package/dist/bind/jsonld.d.ts +11 -0
  8. package/dist/bind/jsonld.d.ts.map +1 -0
  9. package/dist/bind/opengraph.d.ts +7 -0
  10. package/dist/bind/opengraph.d.ts.map +1 -0
  11. package/dist/bind/shopify-ajax.d.ts +11 -0
  12. package/dist/bind/shopify-ajax.d.ts.map +1 -0
  13. package/dist/bind/types.d.ts +7 -0
  14. package/dist/bind/types.d.ts.map +1 -0
  15. package/dist/bind/woocommerce-store-api.d.ts +7 -0
  16. package/dist/bind/woocommerce-store-api.d.ts.map +1 -0
  17. package/dist/cdn.d.ts +30 -0
  18. package/dist/cdn.d.ts.map +1 -0
  19. package/dist/cdn.js +34 -0
  20. package/dist/cdn.js.map +7 -0
  21. package/dist/chunk-E2IVTQMX.js +1100 -0
  22. package/dist/chunk-E2IVTQMX.js.map +7 -0
  23. package/dist/chunk-SM35E4R3.js +126 -0
  24. package/dist/chunk-SM35E4R3.js.map +7 -0
  25. package/dist/runtime.d.ts +567 -0
  26. package/dist/runtime.d.ts.map +1 -0
  27. package/dist/runtime.js +18 -0
  28. package/dist/runtime.js.map +7 -0
  29. package/dist/sanitizer.d.ts +8 -0
  30. package/dist/sanitizer.d.ts.map +1 -0
  31. package/dist/schema-primitives.d.ts +414 -0
  32. package/dist/schema-primitives.d.ts.map +1 -0
  33. package/dist/schema.d.ts +3645 -0
  34. package/dist/schema.d.ts.map +1 -0
  35. package/dist/schema.js +17 -0
  36. package/dist/schema.js.map +7 -0
  37. package/dist/theme.d.ts +9 -0
  38. package/dist/theme.d.ts.map +1 -0
  39. package/dist/widgets/ProductCardLit.d.ts +32 -0
  40. package/dist/widgets/ProductCardLit.d.ts.map +1 -0
  41. package/dist/widgets/ProductComparisonLit.d.ts +33 -0
  42. package/dist/widgets/ProductComparisonLit.d.ts.map +1 -0
  43. package/dist/widgets/ProductGridLit.d.ts +27 -0
  44. package/dist/widgets/ProductGridLit.d.ts.map +1 -0
  45. package/dist/widgets/ProductHeroLit.d.ts +27 -0
  46. package/dist/widgets/ProductHeroLit.d.ts.map +1 -0
  47. package/package.json +58 -0
@@ -0,0 +1,3645 @@
1
+ import { z } from 'zod';
2
+ export declare const cardSchema: z.ZodObject<{
3
+ product: z.ZodObject<{
4
+ id: z.ZodString;
5
+ name: z.ZodString;
6
+ tagline: z.ZodOptional<z.ZodString>;
7
+ image: z.ZodObject<{
8
+ src: z.ZodEffects<z.ZodString, string, string>;
9
+ alt: z.ZodString;
10
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
11
+ type: z.ZodLiteral<"dom-selector">;
12
+ selector: z.ZodString;
13
+ }, "strict", z.ZodTypeAny, {
14
+ type: "dom-selector";
15
+ selector: string;
16
+ }, {
17
+ type: "dom-selector";
18
+ selector: string;
19
+ }>, z.ZodObject<{
20
+ type: z.ZodLiteral<"shopify-ajax">;
21
+ handle: z.ZodString;
22
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
23
+ }, "strict", z.ZodTypeAny, {
24
+ type: "shopify-ajax";
25
+ handle: string;
26
+ base?: string | undefined;
27
+ }, {
28
+ type: "shopify-ajax";
29
+ handle: string;
30
+ base?: string | undefined;
31
+ }>, z.ZodObject<{
32
+ type: z.ZodLiteral<"opengraph">;
33
+ url: z.ZodEffects<z.ZodString, string, string>;
34
+ }, "strict", z.ZodTypeAny, {
35
+ type: "opengraph";
36
+ url: string;
37
+ }, {
38
+ type: "opengraph";
39
+ url: string;
40
+ }>, z.ZodObject<{
41
+ type: z.ZodLiteral<"jsonld">;
42
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
43
+ }, "strict", z.ZodTypeAny, {
44
+ type: "jsonld";
45
+ url?: string | undefined;
46
+ }, {
47
+ type: "jsonld";
48
+ url?: string | undefined;
49
+ }>]>>;
50
+ }, "strict", z.ZodTypeAny, {
51
+ src: string;
52
+ alt: string;
53
+ bind?: {
54
+ type: "dom-selector";
55
+ selector: string;
56
+ } | {
57
+ type: "shopify-ajax";
58
+ handle: string;
59
+ base?: string | undefined;
60
+ } | {
61
+ type: "opengraph";
62
+ url: string;
63
+ } | {
64
+ type: "jsonld";
65
+ url?: string | undefined;
66
+ } | undefined;
67
+ }, {
68
+ src: string;
69
+ alt: string;
70
+ bind?: {
71
+ type: "dom-selector";
72
+ selector: string;
73
+ } | {
74
+ type: "shopify-ajax";
75
+ handle: string;
76
+ base?: string | undefined;
77
+ } | {
78
+ type: "opengraph";
79
+ url: string;
80
+ } | {
81
+ type: "jsonld";
82
+ url?: string | undefined;
83
+ } | undefined;
84
+ }>;
85
+ price: z.ZodOptional<z.ZodObject<{
86
+ amount: z.ZodString;
87
+ cadence: z.ZodOptional<z.ZodString>;
88
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
89
+ type: z.ZodLiteral<"dom-selector">;
90
+ selector: z.ZodString;
91
+ }, "strict", z.ZodTypeAny, {
92
+ type: "dom-selector";
93
+ selector: string;
94
+ }, {
95
+ type: "dom-selector";
96
+ selector: string;
97
+ }>, z.ZodObject<{
98
+ type: z.ZodLiteral<"shopify-ajax">;
99
+ handle: z.ZodString;
100
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
101
+ }, "strict", z.ZodTypeAny, {
102
+ type: "shopify-ajax";
103
+ handle: string;
104
+ base?: string | undefined;
105
+ }, {
106
+ type: "shopify-ajax";
107
+ handle: string;
108
+ base?: string | undefined;
109
+ }>, z.ZodObject<{
110
+ type: z.ZodLiteral<"woocommerce-store-api">;
111
+ slug: z.ZodString;
112
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
113
+ }, "strict", z.ZodTypeAny, {
114
+ type: "woocommerce-store-api";
115
+ slug: string;
116
+ base?: string | undefined;
117
+ }, {
118
+ type: "woocommerce-store-api";
119
+ slug: string;
120
+ base?: string | undefined;
121
+ }>, z.ZodObject<{
122
+ type: z.ZodLiteral<"jsonld">;
123
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
124
+ }, "strict", z.ZodTypeAny, {
125
+ type: "jsonld";
126
+ url?: string | undefined;
127
+ }, {
128
+ type: "jsonld";
129
+ url?: string | undefined;
130
+ }>]>>;
131
+ }, "strict", z.ZodTypeAny, {
132
+ amount: string;
133
+ bind?: {
134
+ type: "dom-selector";
135
+ selector: string;
136
+ } | {
137
+ type: "shopify-ajax";
138
+ handle: string;
139
+ base?: string | undefined;
140
+ } | {
141
+ type: "woocommerce-store-api";
142
+ slug: string;
143
+ base?: string | undefined;
144
+ } | {
145
+ type: "jsonld";
146
+ url?: string | undefined;
147
+ } | undefined;
148
+ cadence?: string | undefined;
149
+ }, {
150
+ amount: string;
151
+ bind?: {
152
+ type: "dom-selector";
153
+ selector: string;
154
+ } | {
155
+ type: "shopify-ajax";
156
+ handle: string;
157
+ base?: string | undefined;
158
+ } | {
159
+ type: "woocommerce-store-api";
160
+ slug: string;
161
+ base?: string | undefined;
162
+ } | {
163
+ type: "jsonld";
164
+ url?: string | undefined;
165
+ } | undefined;
166
+ cadence?: string | undefined;
167
+ }>>;
168
+ badge: z.ZodOptional<z.ZodObject<{
169
+ label: z.ZodString;
170
+ tone: z.ZodDefault<z.ZodEnum<["neutral", "primary", "success", "warning"]>>;
171
+ }, "strict", z.ZodTypeAny, {
172
+ label: string;
173
+ tone: "neutral" | "primary" | "success" | "warning";
174
+ }, {
175
+ label: string;
176
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
177
+ }>>;
178
+ attributes: z.ZodArray<z.ZodObject<{
179
+ label: z.ZodString;
180
+ value: z.ZodString;
181
+ emphasis: z.ZodDefault<z.ZodBoolean>;
182
+ }, "strict", z.ZodTypeAny, {
183
+ value: string;
184
+ label: string;
185
+ emphasis: boolean;
186
+ }, {
187
+ value: string;
188
+ label: string;
189
+ emphasis?: boolean | undefined;
190
+ }>, "many">;
191
+ framing: z.ZodOptional<z.ZodString>;
192
+ ctas: z.ZodArray<z.ZodObject<{
193
+ label: z.ZodString;
194
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
195
+ target: z.ZodDefault<z.ZodEnum<["_self", "_blank"]>>;
196
+ variant: z.ZodDefault<z.ZodEnum<["primary", "secondary", "ghost"]>>;
197
+ actionId: z.ZodOptional<z.ZodString>;
198
+ }, "strict", z.ZodTypeAny, {
199
+ label: string;
200
+ target: "_self" | "_blank";
201
+ variant: "primary" | "secondary" | "ghost";
202
+ href?: string | undefined;
203
+ actionId?: string | undefined;
204
+ }, {
205
+ label: string;
206
+ href?: string | undefined;
207
+ target?: "_self" | "_blank" | undefined;
208
+ variant?: "primary" | "secondary" | "ghost" | undefined;
209
+ actionId?: string | undefined;
210
+ }>, "many">;
211
+ }, "strict", z.ZodTypeAny, {
212
+ id: string;
213
+ name: string;
214
+ image: {
215
+ src: string;
216
+ alt: string;
217
+ bind?: {
218
+ type: "dom-selector";
219
+ selector: string;
220
+ } | {
221
+ type: "shopify-ajax";
222
+ handle: string;
223
+ base?: string | undefined;
224
+ } | {
225
+ type: "opengraph";
226
+ url: string;
227
+ } | {
228
+ type: "jsonld";
229
+ url?: string | undefined;
230
+ } | undefined;
231
+ };
232
+ attributes: {
233
+ value: string;
234
+ label: string;
235
+ emphasis: boolean;
236
+ }[];
237
+ ctas: {
238
+ label: string;
239
+ target: "_self" | "_blank";
240
+ variant: "primary" | "secondary" | "ghost";
241
+ href?: string | undefined;
242
+ actionId?: string | undefined;
243
+ }[];
244
+ tagline?: string | undefined;
245
+ price?: {
246
+ amount: string;
247
+ bind?: {
248
+ type: "dom-selector";
249
+ selector: string;
250
+ } | {
251
+ type: "shopify-ajax";
252
+ handle: string;
253
+ base?: string | undefined;
254
+ } | {
255
+ type: "woocommerce-store-api";
256
+ slug: string;
257
+ base?: string | undefined;
258
+ } | {
259
+ type: "jsonld";
260
+ url?: string | undefined;
261
+ } | undefined;
262
+ cadence?: string | undefined;
263
+ } | undefined;
264
+ badge?: {
265
+ label: string;
266
+ tone: "neutral" | "primary" | "success" | "warning";
267
+ } | undefined;
268
+ framing?: string | undefined;
269
+ }, {
270
+ id: string;
271
+ name: string;
272
+ image: {
273
+ src: string;
274
+ alt: string;
275
+ bind?: {
276
+ type: "dom-selector";
277
+ selector: string;
278
+ } | {
279
+ type: "shopify-ajax";
280
+ handle: string;
281
+ base?: string | undefined;
282
+ } | {
283
+ type: "opengraph";
284
+ url: string;
285
+ } | {
286
+ type: "jsonld";
287
+ url?: string | undefined;
288
+ } | undefined;
289
+ };
290
+ attributes: {
291
+ value: string;
292
+ label: string;
293
+ emphasis?: boolean | undefined;
294
+ }[];
295
+ ctas: {
296
+ label: string;
297
+ href?: string | undefined;
298
+ target?: "_self" | "_blank" | undefined;
299
+ variant?: "primary" | "secondary" | "ghost" | undefined;
300
+ actionId?: string | undefined;
301
+ }[];
302
+ tagline?: string | undefined;
303
+ price?: {
304
+ amount: string;
305
+ bind?: {
306
+ type: "dom-selector";
307
+ selector: string;
308
+ } | {
309
+ type: "shopify-ajax";
310
+ handle: string;
311
+ base?: string | undefined;
312
+ } | {
313
+ type: "woocommerce-store-api";
314
+ slug: string;
315
+ base?: string | undefined;
316
+ } | {
317
+ type: "jsonld";
318
+ url?: string | undefined;
319
+ } | undefined;
320
+ cadence?: string | undefined;
321
+ } | undefined;
322
+ badge?: {
323
+ label: string;
324
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
325
+ } | undefined;
326
+ framing?: string | undefined;
327
+ }>;
328
+ density: z.ZodDefault<z.ZodEnum<["compact", "standard"]>>;
329
+ }, "strict", z.ZodTypeAny, {
330
+ product: {
331
+ id: string;
332
+ name: string;
333
+ image: {
334
+ src: string;
335
+ alt: string;
336
+ bind?: {
337
+ type: "dom-selector";
338
+ selector: string;
339
+ } | {
340
+ type: "shopify-ajax";
341
+ handle: string;
342
+ base?: string | undefined;
343
+ } | {
344
+ type: "opengraph";
345
+ url: string;
346
+ } | {
347
+ type: "jsonld";
348
+ url?: string | undefined;
349
+ } | undefined;
350
+ };
351
+ attributes: {
352
+ value: string;
353
+ label: string;
354
+ emphasis: boolean;
355
+ }[];
356
+ ctas: {
357
+ label: string;
358
+ target: "_self" | "_blank";
359
+ variant: "primary" | "secondary" | "ghost";
360
+ href?: string | undefined;
361
+ actionId?: string | undefined;
362
+ }[];
363
+ tagline?: string | undefined;
364
+ price?: {
365
+ amount: string;
366
+ bind?: {
367
+ type: "dom-selector";
368
+ selector: string;
369
+ } | {
370
+ type: "shopify-ajax";
371
+ handle: string;
372
+ base?: string | undefined;
373
+ } | {
374
+ type: "woocommerce-store-api";
375
+ slug: string;
376
+ base?: string | undefined;
377
+ } | {
378
+ type: "jsonld";
379
+ url?: string | undefined;
380
+ } | undefined;
381
+ cadence?: string | undefined;
382
+ } | undefined;
383
+ badge?: {
384
+ label: string;
385
+ tone: "neutral" | "primary" | "success" | "warning";
386
+ } | undefined;
387
+ framing?: string | undefined;
388
+ };
389
+ density: "compact" | "standard";
390
+ }, {
391
+ product: {
392
+ id: string;
393
+ name: string;
394
+ image: {
395
+ src: string;
396
+ alt: string;
397
+ bind?: {
398
+ type: "dom-selector";
399
+ selector: string;
400
+ } | {
401
+ type: "shopify-ajax";
402
+ handle: string;
403
+ base?: string | undefined;
404
+ } | {
405
+ type: "opengraph";
406
+ url: string;
407
+ } | {
408
+ type: "jsonld";
409
+ url?: string | undefined;
410
+ } | undefined;
411
+ };
412
+ attributes: {
413
+ value: string;
414
+ label: string;
415
+ emphasis?: boolean | undefined;
416
+ }[];
417
+ ctas: {
418
+ label: string;
419
+ href?: string | undefined;
420
+ target?: "_self" | "_blank" | undefined;
421
+ variant?: "primary" | "secondary" | "ghost" | undefined;
422
+ actionId?: string | undefined;
423
+ }[];
424
+ tagline?: string | undefined;
425
+ price?: {
426
+ amount: string;
427
+ bind?: {
428
+ type: "dom-selector";
429
+ selector: string;
430
+ } | {
431
+ type: "shopify-ajax";
432
+ handle: string;
433
+ base?: string | undefined;
434
+ } | {
435
+ type: "woocommerce-store-api";
436
+ slug: string;
437
+ base?: string | undefined;
438
+ } | {
439
+ type: "jsonld";
440
+ url?: string | undefined;
441
+ } | undefined;
442
+ cadence?: string | undefined;
443
+ } | undefined;
444
+ badge?: {
445
+ label: string;
446
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
447
+ } | undefined;
448
+ framing?: string | undefined;
449
+ };
450
+ density?: "compact" | "standard" | undefined;
451
+ }>;
452
+ export declare const comparisonSchema: z.ZodObject<{
453
+ products: z.ZodArray<z.ZodObject<{
454
+ id: z.ZodString;
455
+ name: z.ZodString;
456
+ tagline: z.ZodOptional<z.ZodString>;
457
+ image: z.ZodObject<{
458
+ src: z.ZodEffects<z.ZodString, string, string>;
459
+ alt: z.ZodString;
460
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
461
+ type: z.ZodLiteral<"dom-selector">;
462
+ selector: z.ZodString;
463
+ }, "strict", z.ZodTypeAny, {
464
+ type: "dom-selector";
465
+ selector: string;
466
+ }, {
467
+ type: "dom-selector";
468
+ selector: string;
469
+ }>, z.ZodObject<{
470
+ type: z.ZodLiteral<"shopify-ajax">;
471
+ handle: z.ZodString;
472
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
473
+ }, "strict", z.ZodTypeAny, {
474
+ type: "shopify-ajax";
475
+ handle: string;
476
+ base?: string | undefined;
477
+ }, {
478
+ type: "shopify-ajax";
479
+ handle: string;
480
+ base?: string | undefined;
481
+ }>, z.ZodObject<{
482
+ type: z.ZodLiteral<"opengraph">;
483
+ url: z.ZodEffects<z.ZodString, string, string>;
484
+ }, "strict", z.ZodTypeAny, {
485
+ type: "opengraph";
486
+ url: string;
487
+ }, {
488
+ type: "opengraph";
489
+ url: string;
490
+ }>, z.ZodObject<{
491
+ type: z.ZodLiteral<"jsonld">;
492
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
493
+ }, "strict", z.ZodTypeAny, {
494
+ type: "jsonld";
495
+ url?: string | undefined;
496
+ }, {
497
+ type: "jsonld";
498
+ url?: string | undefined;
499
+ }>]>>;
500
+ }, "strict", z.ZodTypeAny, {
501
+ src: string;
502
+ alt: string;
503
+ bind?: {
504
+ type: "dom-selector";
505
+ selector: string;
506
+ } | {
507
+ type: "shopify-ajax";
508
+ handle: string;
509
+ base?: string | undefined;
510
+ } | {
511
+ type: "opengraph";
512
+ url: string;
513
+ } | {
514
+ type: "jsonld";
515
+ url?: string | undefined;
516
+ } | undefined;
517
+ }, {
518
+ src: string;
519
+ alt: string;
520
+ bind?: {
521
+ type: "dom-selector";
522
+ selector: string;
523
+ } | {
524
+ type: "shopify-ajax";
525
+ handle: string;
526
+ base?: string | undefined;
527
+ } | {
528
+ type: "opengraph";
529
+ url: string;
530
+ } | {
531
+ type: "jsonld";
532
+ url?: string | undefined;
533
+ } | undefined;
534
+ }>;
535
+ price: z.ZodOptional<z.ZodObject<{
536
+ amount: z.ZodString;
537
+ cadence: z.ZodOptional<z.ZodString>;
538
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
539
+ type: z.ZodLiteral<"dom-selector">;
540
+ selector: z.ZodString;
541
+ }, "strict", z.ZodTypeAny, {
542
+ type: "dom-selector";
543
+ selector: string;
544
+ }, {
545
+ type: "dom-selector";
546
+ selector: string;
547
+ }>, z.ZodObject<{
548
+ type: z.ZodLiteral<"shopify-ajax">;
549
+ handle: z.ZodString;
550
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
551
+ }, "strict", z.ZodTypeAny, {
552
+ type: "shopify-ajax";
553
+ handle: string;
554
+ base?: string | undefined;
555
+ }, {
556
+ type: "shopify-ajax";
557
+ handle: string;
558
+ base?: string | undefined;
559
+ }>, z.ZodObject<{
560
+ type: z.ZodLiteral<"woocommerce-store-api">;
561
+ slug: z.ZodString;
562
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
563
+ }, "strict", z.ZodTypeAny, {
564
+ type: "woocommerce-store-api";
565
+ slug: string;
566
+ base?: string | undefined;
567
+ }, {
568
+ type: "woocommerce-store-api";
569
+ slug: string;
570
+ base?: string | undefined;
571
+ }>, z.ZodObject<{
572
+ type: z.ZodLiteral<"jsonld">;
573
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
574
+ }, "strict", z.ZodTypeAny, {
575
+ type: "jsonld";
576
+ url?: string | undefined;
577
+ }, {
578
+ type: "jsonld";
579
+ url?: string | undefined;
580
+ }>]>>;
581
+ }, "strict", z.ZodTypeAny, {
582
+ amount: string;
583
+ bind?: {
584
+ type: "dom-selector";
585
+ selector: string;
586
+ } | {
587
+ type: "shopify-ajax";
588
+ handle: string;
589
+ base?: string | undefined;
590
+ } | {
591
+ type: "woocommerce-store-api";
592
+ slug: string;
593
+ base?: string | undefined;
594
+ } | {
595
+ type: "jsonld";
596
+ url?: string | undefined;
597
+ } | undefined;
598
+ cadence?: string | undefined;
599
+ }, {
600
+ amount: string;
601
+ bind?: {
602
+ type: "dom-selector";
603
+ selector: string;
604
+ } | {
605
+ type: "shopify-ajax";
606
+ handle: string;
607
+ base?: string | undefined;
608
+ } | {
609
+ type: "woocommerce-store-api";
610
+ slug: string;
611
+ base?: string | undefined;
612
+ } | {
613
+ type: "jsonld";
614
+ url?: string | undefined;
615
+ } | undefined;
616
+ cadence?: string | undefined;
617
+ }>>;
618
+ badge: z.ZodOptional<z.ZodObject<{
619
+ label: z.ZodString;
620
+ tone: z.ZodDefault<z.ZodEnum<["neutral", "primary", "success", "warning"]>>;
621
+ }, "strict", z.ZodTypeAny, {
622
+ label: string;
623
+ tone: "neutral" | "primary" | "success" | "warning";
624
+ }, {
625
+ label: string;
626
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
627
+ }>>;
628
+ attributes: z.ZodArray<z.ZodObject<{
629
+ label: z.ZodString;
630
+ value: z.ZodString;
631
+ emphasis: z.ZodDefault<z.ZodBoolean>;
632
+ }, "strict", z.ZodTypeAny, {
633
+ value: string;
634
+ label: string;
635
+ emphasis: boolean;
636
+ }, {
637
+ value: string;
638
+ label: string;
639
+ emphasis?: boolean | undefined;
640
+ }>, "many">;
641
+ framing: z.ZodOptional<z.ZodString>;
642
+ ctas: z.ZodArray<z.ZodObject<{
643
+ label: z.ZodString;
644
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
645
+ target: z.ZodDefault<z.ZodEnum<["_self", "_blank"]>>;
646
+ variant: z.ZodDefault<z.ZodEnum<["primary", "secondary", "ghost"]>>;
647
+ actionId: z.ZodOptional<z.ZodString>;
648
+ }, "strict", z.ZodTypeAny, {
649
+ label: string;
650
+ target: "_self" | "_blank";
651
+ variant: "primary" | "secondary" | "ghost";
652
+ href?: string | undefined;
653
+ actionId?: string | undefined;
654
+ }, {
655
+ label: string;
656
+ href?: string | undefined;
657
+ target?: "_self" | "_blank" | undefined;
658
+ variant?: "primary" | "secondary" | "ghost" | undefined;
659
+ actionId?: string | undefined;
660
+ }>, "many">;
661
+ }, "strict", z.ZodTypeAny, {
662
+ id: string;
663
+ name: string;
664
+ image: {
665
+ src: string;
666
+ alt: string;
667
+ bind?: {
668
+ type: "dom-selector";
669
+ selector: string;
670
+ } | {
671
+ type: "shopify-ajax";
672
+ handle: string;
673
+ base?: string | undefined;
674
+ } | {
675
+ type: "opengraph";
676
+ url: string;
677
+ } | {
678
+ type: "jsonld";
679
+ url?: string | undefined;
680
+ } | undefined;
681
+ };
682
+ attributes: {
683
+ value: string;
684
+ label: string;
685
+ emphasis: boolean;
686
+ }[];
687
+ ctas: {
688
+ label: string;
689
+ target: "_self" | "_blank";
690
+ variant: "primary" | "secondary" | "ghost";
691
+ href?: string | undefined;
692
+ actionId?: string | undefined;
693
+ }[];
694
+ tagline?: string | undefined;
695
+ price?: {
696
+ amount: string;
697
+ bind?: {
698
+ type: "dom-selector";
699
+ selector: string;
700
+ } | {
701
+ type: "shopify-ajax";
702
+ handle: string;
703
+ base?: string | undefined;
704
+ } | {
705
+ type: "woocommerce-store-api";
706
+ slug: string;
707
+ base?: string | undefined;
708
+ } | {
709
+ type: "jsonld";
710
+ url?: string | undefined;
711
+ } | undefined;
712
+ cadence?: string | undefined;
713
+ } | undefined;
714
+ badge?: {
715
+ label: string;
716
+ tone: "neutral" | "primary" | "success" | "warning";
717
+ } | undefined;
718
+ framing?: string | undefined;
719
+ }, {
720
+ id: string;
721
+ name: string;
722
+ image: {
723
+ src: string;
724
+ alt: string;
725
+ bind?: {
726
+ type: "dom-selector";
727
+ selector: string;
728
+ } | {
729
+ type: "shopify-ajax";
730
+ handle: string;
731
+ base?: string | undefined;
732
+ } | {
733
+ type: "opengraph";
734
+ url: string;
735
+ } | {
736
+ type: "jsonld";
737
+ url?: string | undefined;
738
+ } | undefined;
739
+ };
740
+ attributes: {
741
+ value: string;
742
+ label: string;
743
+ emphasis?: boolean | undefined;
744
+ }[];
745
+ ctas: {
746
+ label: string;
747
+ href?: string | undefined;
748
+ target?: "_self" | "_blank" | undefined;
749
+ variant?: "primary" | "secondary" | "ghost" | undefined;
750
+ actionId?: string | undefined;
751
+ }[];
752
+ tagline?: string | undefined;
753
+ price?: {
754
+ amount: string;
755
+ bind?: {
756
+ type: "dom-selector";
757
+ selector: string;
758
+ } | {
759
+ type: "shopify-ajax";
760
+ handle: string;
761
+ base?: string | undefined;
762
+ } | {
763
+ type: "woocommerce-store-api";
764
+ slug: string;
765
+ base?: string | undefined;
766
+ } | {
767
+ type: "jsonld";
768
+ url?: string | undefined;
769
+ } | undefined;
770
+ cadence?: string | undefined;
771
+ } | undefined;
772
+ badge?: {
773
+ label: string;
774
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
775
+ } | undefined;
776
+ framing?: string | undefined;
777
+ }>, "many">;
778
+ defaultExpandedIndex: z.ZodOptional<z.ZodNumber>;
779
+ expandBehavior: z.ZodDefault<z.ZodEnum<["multi", "accordion"]>>;
780
+ heading: z.ZodOptional<z.ZodString>;
781
+ }, "strict", z.ZodTypeAny, {
782
+ products: {
783
+ id: string;
784
+ name: string;
785
+ image: {
786
+ src: string;
787
+ alt: string;
788
+ bind?: {
789
+ type: "dom-selector";
790
+ selector: string;
791
+ } | {
792
+ type: "shopify-ajax";
793
+ handle: string;
794
+ base?: string | undefined;
795
+ } | {
796
+ type: "opengraph";
797
+ url: string;
798
+ } | {
799
+ type: "jsonld";
800
+ url?: string | undefined;
801
+ } | undefined;
802
+ };
803
+ attributes: {
804
+ value: string;
805
+ label: string;
806
+ emphasis: boolean;
807
+ }[];
808
+ ctas: {
809
+ label: string;
810
+ target: "_self" | "_blank";
811
+ variant: "primary" | "secondary" | "ghost";
812
+ href?: string | undefined;
813
+ actionId?: string | undefined;
814
+ }[];
815
+ tagline?: string | undefined;
816
+ price?: {
817
+ amount: string;
818
+ bind?: {
819
+ type: "dom-selector";
820
+ selector: string;
821
+ } | {
822
+ type: "shopify-ajax";
823
+ handle: string;
824
+ base?: string | undefined;
825
+ } | {
826
+ type: "woocommerce-store-api";
827
+ slug: string;
828
+ base?: string | undefined;
829
+ } | {
830
+ type: "jsonld";
831
+ url?: string | undefined;
832
+ } | undefined;
833
+ cadence?: string | undefined;
834
+ } | undefined;
835
+ badge?: {
836
+ label: string;
837
+ tone: "neutral" | "primary" | "success" | "warning";
838
+ } | undefined;
839
+ framing?: string | undefined;
840
+ }[];
841
+ expandBehavior: "multi" | "accordion";
842
+ defaultExpandedIndex?: number | undefined;
843
+ heading?: string | undefined;
844
+ }, {
845
+ products: {
846
+ id: string;
847
+ name: string;
848
+ image: {
849
+ src: string;
850
+ alt: string;
851
+ bind?: {
852
+ type: "dom-selector";
853
+ selector: string;
854
+ } | {
855
+ type: "shopify-ajax";
856
+ handle: string;
857
+ base?: string | undefined;
858
+ } | {
859
+ type: "opengraph";
860
+ url: string;
861
+ } | {
862
+ type: "jsonld";
863
+ url?: string | undefined;
864
+ } | undefined;
865
+ };
866
+ attributes: {
867
+ value: string;
868
+ label: string;
869
+ emphasis?: boolean | undefined;
870
+ }[];
871
+ ctas: {
872
+ label: string;
873
+ href?: string | undefined;
874
+ target?: "_self" | "_blank" | undefined;
875
+ variant?: "primary" | "secondary" | "ghost" | undefined;
876
+ actionId?: string | undefined;
877
+ }[];
878
+ tagline?: string | undefined;
879
+ price?: {
880
+ amount: string;
881
+ bind?: {
882
+ type: "dom-selector";
883
+ selector: string;
884
+ } | {
885
+ type: "shopify-ajax";
886
+ handle: string;
887
+ base?: string | undefined;
888
+ } | {
889
+ type: "woocommerce-store-api";
890
+ slug: string;
891
+ base?: string | undefined;
892
+ } | {
893
+ type: "jsonld";
894
+ url?: string | undefined;
895
+ } | undefined;
896
+ cadence?: string | undefined;
897
+ } | undefined;
898
+ badge?: {
899
+ label: string;
900
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
901
+ } | undefined;
902
+ framing?: string | undefined;
903
+ }[];
904
+ defaultExpandedIndex?: number | undefined;
905
+ expandBehavior?: "multi" | "accordion" | undefined;
906
+ heading?: string | undefined;
907
+ }>;
908
+ export declare const heroSchema: z.ZodObject<{
909
+ product: z.ZodObject<{
910
+ id: z.ZodString;
911
+ name: z.ZodString;
912
+ tagline: z.ZodOptional<z.ZodString>;
913
+ image: z.ZodObject<{
914
+ src: z.ZodEffects<z.ZodString, string, string>;
915
+ alt: z.ZodString;
916
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
917
+ type: z.ZodLiteral<"dom-selector">;
918
+ selector: z.ZodString;
919
+ }, "strict", z.ZodTypeAny, {
920
+ type: "dom-selector";
921
+ selector: string;
922
+ }, {
923
+ type: "dom-selector";
924
+ selector: string;
925
+ }>, z.ZodObject<{
926
+ type: z.ZodLiteral<"shopify-ajax">;
927
+ handle: z.ZodString;
928
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
929
+ }, "strict", z.ZodTypeAny, {
930
+ type: "shopify-ajax";
931
+ handle: string;
932
+ base?: string | undefined;
933
+ }, {
934
+ type: "shopify-ajax";
935
+ handle: string;
936
+ base?: string | undefined;
937
+ }>, z.ZodObject<{
938
+ type: z.ZodLiteral<"opengraph">;
939
+ url: z.ZodEffects<z.ZodString, string, string>;
940
+ }, "strict", z.ZodTypeAny, {
941
+ type: "opengraph";
942
+ url: string;
943
+ }, {
944
+ type: "opengraph";
945
+ url: string;
946
+ }>, z.ZodObject<{
947
+ type: z.ZodLiteral<"jsonld">;
948
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
949
+ }, "strict", z.ZodTypeAny, {
950
+ type: "jsonld";
951
+ url?: string | undefined;
952
+ }, {
953
+ type: "jsonld";
954
+ url?: string | undefined;
955
+ }>]>>;
956
+ }, "strict", z.ZodTypeAny, {
957
+ src: string;
958
+ alt: string;
959
+ bind?: {
960
+ type: "dom-selector";
961
+ selector: string;
962
+ } | {
963
+ type: "shopify-ajax";
964
+ handle: string;
965
+ base?: string | undefined;
966
+ } | {
967
+ type: "opengraph";
968
+ url: string;
969
+ } | {
970
+ type: "jsonld";
971
+ url?: string | undefined;
972
+ } | undefined;
973
+ }, {
974
+ src: string;
975
+ alt: string;
976
+ bind?: {
977
+ type: "dom-selector";
978
+ selector: string;
979
+ } | {
980
+ type: "shopify-ajax";
981
+ handle: string;
982
+ base?: string | undefined;
983
+ } | {
984
+ type: "opengraph";
985
+ url: string;
986
+ } | {
987
+ type: "jsonld";
988
+ url?: string | undefined;
989
+ } | undefined;
990
+ }>;
991
+ price: z.ZodOptional<z.ZodObject<{
992
+ amount: z.ZodString;
993
+ cadence: z.ZodOptional<z.ZodString>;
994
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
995
+ type: z.ZodLiteral<"dom-selector">;
996
+ selector: z.ZodString;
997
+ }, "strict", z.ZodTypeAny, {
998
+ type: "dom-selector";
999
+ selector: string;
1000
+ }, {
1001
+ type: "dom-selector";
1002
+ selector: string;
1003
+ }>, z.ZodObject<{
1004
+ type: z.ZodLiteral<"shopify-ajax">;
1005
+ handle: z.ZodString;
1006
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1007
+ }, "strict", z.ZodTypeAny, {
1008
+ type: "shopify-ajax";
1009
+ handle: string;
1010
+ base?: string | undefined;
1011
+ }, {
1012
+ type: "shopify-ajax";
1013
+ handle: string;
1014
+ base?: string | undefined;
1015
+ }>, z.ZodObject<{
1016
+ type: z.ZodLiteral<"woocommerce-store-api">;
1017
+ slug: z.ZodString;
1018
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1019
+ }, "strict", z.ZodTypeAny, {
1020
+ type: "woocommerce-store-api";
1021
+ slug: string;
1022
+ base?: string | undefined;
1023
+ }, {
1024
+ type: "woocommerce-store-api";
1025
+ slug: string;
1026
+ base?: string | undefined;
1027
+ }>, z.ZodObject<{
1028
+ type: z.ZodLiteral<"jsonld">;
1029
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1030
+ }, "strict", z.ZodTypeAny, {
1031
+ type: "jsonld";
1032
+ url?: string | undefined;
1033
+ }, {
1034
+ type: "jsonld";
1035
+ url?: string | undefined;
1036
+ }>]>>;
1037
+ }, "strict", z.ZodTypeAny, {
1038
+ amount: string;
1039
+ bind?: {
1040
+ type: "dom-selector";
1041
+ selector: string;
1042
+ } | {
1043
+ type: "shopify-ajax";
1044
+ handle: string;
1045
+ base?: string | undefined;
1046
+ } | {
1047
+ type: "woocommerce-store-api";
1048
+ slug: string;
1049
+ base?: string | undefined;
1050
+ } | {
1051
+ type: "jsonld";
1052
+ url?: string | undefined;
1053
+ } | undefined;
1054
+ cadence?: string | undefined;
1055
+ }, {
1056
+ amount: string;
1057
+ bind?: {
1058
+ type: "dom-selector";
1059
+ selector: string;
1060
+ } | {
1061
+ type: "shopify-ajax";
1062
+ handle: string;
1063
+ base?: string | undefined;
1064
+ } | {
1065
+ type: "woocommerce-store-api";
1066
+ slug: string;
1067
+ base?: string | undefined;
1068
+ } | {
1069
+ type: "jsonld";
1070
+ url?: string | undefined;
1071
+ } | undefined;
1072
+ cadence?: string | undefined;
1073
+ }>>;
1074
+ badge: z.ZodOptional<z.ZodObject<{
1075
+ label: z.ZodString;
1076
+ tone: z.ZodDefault<z.ZodEnum<["neutral", "primary", "success", "warning"]>>;
1077
+ }, "strict", z.ZodTypeAny, {
1078
+ label: string;
1079
+ tone: "neutral" | "primary" | "success" | "warning";
1080
+ }, {
1081
+ label: string;
1082
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
1083
+ }>>;
1084
+ attributes: z.ZodArray<z.ZodObject<{
1085
+ label: z.ZodString;
1086
+ value: z.ZodString;
1087
+ emphasis: z.ZodDefault<z.ZodBoolean>;
1088
+ }, "strict", z.ZodTypeAny, {
1089
+ value: string;
1090
+ label: string;
1091
+ emphasis: boolean;
1092
+ }, {
1093
+ value: string;
1094
+ label: string;
1095
+ emphasis?: boolean | undefined;
1096
+ }>, "many">;
1097
+ framing: z.ZodOptional<z.ZodString>;
1098
+ ctas: z.ZodArray<z.ZodObject<{
1099
+ label: z.ZodString;
1100
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1101
+ target: z.ZodDefault<z.ZodEnum<["_self", "_blank"]>>;
1102
+ variant: z.ZodDefault<z.ZodEnum<["primary", "secondary", "ghost"]>>;
1103
+ actionId: z.ZodOptional<z.ZodString>;
1104
+ }, "strict", z.ZodTypeAny, {
1105
+ label: string;
1106
+ target: "_self" | "_blank";
1107
+ variant: "primary" | "secondary" | "ghost";
1108
+ href?: string | undefined;
1109
+ actionId?: string | undefined;
1110
+ }, {
1111
+ label: string;
1112
+ href?: string | undefined;
1113
+ target?: "_self" | "_blank" | undefined;
1114
+ variant?: "primary" | "secondary" | "ghost" | undefined;
1115
+ actionId?: string | undefined;
1116
+ }>, "many">;
1117
+ }, "strict", z.ZodTypeAny, {
1118
+ id: string;
1119
+ name: string;
1120
+ image: {
1121
+ src: string;
1122
+ alt: string;
1123
+ bind?: {
1124
+ type: "dom-selector";
1125
+ selector: string;
1126
+ } | {
1127
+ type: "shopify-ajax";
1128
+ handle: string;
1129
+ base?: string | undefined;
1130
+ } | {
1131
+ type: "opengraph";
1132
+ url: string;
1133
+ } | {
1134
+ type: "jsonld";
1135
+ url?: string | undefined;
1136
+ } | undefined;
1137
+ };
1138
+ attributes: {
1139
+ value: string;
1140
+ label: string;
1141
+ emphasis: boolean;
1142
+ }[];
1143
+ ctas: {
1144
+ label: string;
1145
+ target: "_self" | "_blank";
1146
+ variant: "primary" | "secondary" | "ghost";
1147
+ href?: string | undefined;
1148
+ actionId?: string | undefined;
1149
+ }[];
1150
+ tagline?: string | undefined;
1151
+ price?: {
1152
+ amount: string;
1153
+ bind?: {
1154
+ type: "dom-selector";
1155
+ selector: string;
1156
+ } | {
1157
+ type: "shopify-ajax";
1158
+ handle: string;
1159
+ base?: string | undefined;
1160
+ } | {
1161
+ type: "woocommerce-store-api";
1162
+ slug: string;
1163
+ base?: string | undefined;
1164
+ } | {
1165
+ type: "jsonld";
1166
+ url?: string | undefined;
1167
+ } | undefined;
1168
+ cadence?: string | undefined;
1169
+ } | undefined;
1170
+ badge?: {
1171
+ label: string;
1172
+ tone: "neutral" | "primary" | "success" | "warning";
1173
+ } | undefined;
1174
+ framing?: string | undefined;
1175
+ }, {
1176
+ id: string;
1177
+ name: string;
1178
+ image: {
1179
+ src: string;
1180
+ alt: string;
1181
+ bind?: {
1182
+ type: "dom-selector";
1183
+ selector: string;
1184
+ } | {
1185
+ type: "shopify-ajax";
1186
+ handle: string;
1187
+ base?: string | undefined;
1188
+ } | {
1189
+ type: "opengraph";
1190
+ url: string;
1191
+ } | {
1192
+ type: "jsonld";
1193
+ url?: string | undefined;
1194
+ } | undefined;
1195
+ };
1196
+ attributes: {
1197
+ value: string;
1198
+ label: string;
1199
+ emphasis?: boolean | undefined;
1200
+ }[];
1201
+ ctas: {
1202
+ label: string;
1203
+ href?: string | undefined;
1204
+ target?: "_self" | "_blank" | undefined;
1205
+ variant?: "primary" | "secondary" | "ghost" | undefined;
1206
+ actionId?: string | undefined;
1207
+ }[];
1208
+ tagline?: string | undefined;
1209
+ price?: {
1210
+ amount: string;
1211
+ bind?: {
1212
+ type: "dom-selector";
1213
+ selector: string;
1214
+ } | {
1215
+ type: "shopify-ajax";
1216
+ handle: string;
1217
+ base?: string | undefined;
1218
+ } | {
1219
+ type: "woocommerce-store-api";
1220
+ slug: string;
1221
+ base?: string | undefined;
1222
+ } | {
1223
+ type: "jsonld";
1224
+ url?: string | undefined;
1225
+ } | undefined;
1226
+ cadence?: string | undefined;
1227
+ } | undefined;
1228
+ badge?: {
1229
+ label: string;
1230
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
1231
+ } | undefined;
1232
+ framing?: string | undefined;
1233
+ }>;
1234
+ layout: z.ZodDefault<z.ZodEnum<["image-left", "image-right", "image-top"]>>;
1235
+ longCopy: z.ZodOptional<z.ZodString>;
1236
+ }, "strict", z.ZodTypeAny, {
1237
+ product: {
1238
+ id: string;
1239
+ name: string;
1240
+ image: {
1241
+ src: string;
1242
+ alt: string;
1243
+ bind?: {
1244
+ type: "dom-selector";
1245
+ selector: string;
1246
+ } | {
1247
+ type: "shopify-ajax";
1248
+ handle: string;
1249
+ base?: string | undefined;
1250
+ } | {
1251
+ type: "opengraph";
1252
+ url: string;
1253
+ } | {
1254
+ type: "jsonld";
1255
+ url?: string | undefined;
1256
+ } | undefined;
1257
+ };
1258
+ attributes: {
1259
+ value: string;
1260
+ label: string;
1261
+ emphasis: boolean;
1262
+ }[];
1263
+ ctas: {
1264
+ label: string;
1265
+ target: "_self" | "_blank";
1266
+ variant: "primary" | "secondary" | "ghost";
1267
+ href?: string | undefined;
1268
+ actionId?: string | undefined;
1269
+ }[];
1270
+ tagline?: string | undefined;
1271
+ price?: {
1272
+ amount: string;
1273
+ bind?: {
1274
+ type: "dom-selector";
1275
+ selector: string;
1276
+ } | {
1277
+ type: "shopify-ajax";
1278
+ handle: string;
1279
+ base?: string | undefined;
1280
+ } | {
1281
+ type: "woocommerce-store-api";
1282
+ slug: string;
1283
+ base?: string | undefined;
1284
+ } | {
1285
+ type: "jsonld";
1286
+ url?: string | undefined;
1287
+ } | undefined;
1288
+ cadence?: string | undefined;
1289
+ } | undefined;
1290
+ badge?: {
1291
+ label: string;
1292
+ tone: "neutral" | "primary" | "success" | "warning";
1293
+ } | undefined;
1294
+ framing?: string | undefined;
1295
+ };
1296
+ layout: "image-left" | "image-right" | "image-top";
1297
+ longCopy?: string | undefined;
1298
+ }, {
1299
+ product: {
1300
+ id: string;
1301
+ name: string;
1302
+ image: {
1303
+ src: string;
1304
+ alt: string;
1305
+ bind?: {
1306
+ type: "dom-selector";
1307
+ selector: string;
1308
+ } | {
1309
+ type: "shopify-ajax";
1310
+ handle: string;
1311
+ base?: string | undefined;
1312
+ } | {
1313
+ type: "opengraph";
1314
+ url: string;
1315
+ } | {
1316
+ type: "jsonld";
1317
+ url?: string | undefined;
1318
+ } | undefined;
1319
+ };
1320
+ attributes: {
1321
+ value: string;
1322
+ label: string;
1323
+ emphasis?: boolean | undefined;
1324
+ }[];
1325
+ ctas: {
1326
+ label: string;
1327
+ href?: string | undefined;
1328
+ target?: "_self" | "_blank" | undefined;
1329
+ variant?: "primary" | "secondary" | "ghost" | undefined;
1330
+ actionId?: string | undefined;
1331
+ }[];
1332
+ tagline?: string | undefined;
1333
+ price?: {
1334
+ amount: string;
1335
+ bind?: {
1336
+ type: "dom-selector";
1337
+ selector: string;
1338
+ } | {
1339
+ type: "shopify-ajax";
1340
+ handle: string;
1341
+ base?: string | undefined;
1342
+ } | {
1343
+ type: "woocommerce-store-api";
1344
+ slug: string;
1345
+ base?: string | undefined;
1346
+ } | {
1347
+ type: "jsonld";
1348
+ url?: string | undefined;
1349
+ } | undefined;
1350
+ cadence?: string | undefined;
1351
+ } | undefined;
1352
+ badge?: {
1353
+ label: string;
1354
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
1355
+ } | undefined;
1356
+ framing?: string | undefined;
1357
+ };
1358
+ layout?: "image-left" | "image-right" | "image-top" | undefined;
1359
+ longCopy?: string | undefined;
1360
+ }>;
1361
+ export declare const gridSchema: z.ZodObject<{
1362
+ products: z.ZodArray<z.ZodObject<{
1363
+ id: z.ZodString;
1364
+ name: z.ZodString;
1365
+ tagline: z.ZodOptional<z.ZodString>;
1366
+ image: z.ZodObject<{
1367
+ src: z.ZodEffects<z.ZodString, string, string>;
1368
+ alt: z.ZodString;
1369
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1370
+ type: z.ZodLiteral<"dom-selector">;
1371
+ selector: z.ZodString;
1372
+ }, "strict", z.ZodTypeAny, {
1373
+ type: "dom-selector";
1374
+ selector: string;
1375
+ }, {
1376
+ type: "dom-selector";
1377
+ selector: string;
1378
+ }>, z.ZodObject<{
1379
+ type: z.ZodLiteral<"shopify-ajax">;
1380
+ handle: z.ZodString;
1381
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1382
+ }, "strict", z.ZodTypeAny, {
1383
+ type: "shopify-ajax";
1384
+ handle: string;
1385
+ base?: string | undefined;
1386
+ }, {
1387
+ type: "shopify-ajax";
1388
+ handle: string;
1389
+ base?: string | undefined;
1390
+ }>, z.ZodObject<{
1391
+ type: z.ZodLiteral<"opengraph">;
1392
+ url: z.ZodEffects<z.ZodString, string, string>;
1393
+ }, "strict", z.ZodTypeAny, {
1394
+ type: "opengraph";
1395
+ url: string;
1396
+ }, {
1397
+ type: "opengraph";
1398
+ url: string;
1399
+ }>, z.ZodObject<{
1400
+ type: z.ZodLiteral<"jsonld">;
1401
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1402
+ }, "strict", z.ZodTypeAny, {
1403
+ type: "jsonld";
1404
+ url?: string | undefined;
1405
+ }, {
1406
+ type: "jsonld";
1407
+ url?: string | undefined;
1408
+ }>]>>;
1409
+ }, "strict", z.ZodTypeAny, {
1410
+ src: string;
1411
+ alt: string;
1412
+ bind?: {
1413
+ type: "dom-selector";
1414
+ selector: string;
1415
+ } | {
1416
+ type: "shopify-ajax";
1417
+ handle: string;
1418
+ base?: string | undefined;
1419
+ } | {
1420
+ type: "opengraph";
1421
+ url: string;
1422
+ } | {
1423
+ type: "jsonld";
1424
+ url?: string | undefined;
1425
+ } | undefined;
1426
+ }, {
1427
+ src: string;
1428
+ alt: string;
1429
+ bind?: {
1430
+ type: "dom-selector";
1431
+ selector: string;
1432
+ } | {
1433
+ type: "shopify-ajax";
1434
+ handle: string;
1435
+ base?: string | undefined;
1436
+ } | {
1437
+ type: "opengraph";
1438
+ url: string;
1439
+ } | {
1440
+ type: "jsonld";
1441
+ url?: string | undefined;
1442
+ } | undefined;
1443
+ }>;
1444
+ price: z.ZodOptional<z.ZodObject<{
1445
+ amount: z.ZodString;
1446
+ cadence: z.ZodOptional<z.ZodString>;
1447
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1448
+ type: z.ZodLiteral<"dom-selector">;
1449
+ selector: z.ZodString;
1450
+ }, "strict", z.ZodTypeAny, {
1451
+ type: "dom-selector";
1452
+ selector: string;
1453
+ }, {
1454
+ type: "dom-selector";
1455
+ selector: string;
1456
+ }>, z.ZodObject<{
1457
+ type: z.ZodLiteral<"shopify-ajax">;
1458
+ handle: z.ZodString;
1459
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1460
+ }, "strict", z.ZodTypeAny, {
1461
+ type: "shopify-ajax";
1462
+ handle: string;
1463
+ base?: string | undefined;
1464
+ }, {
1465
+ type: "shopify-ajax";
1466
+ handle: string;
1467
+ base?: string | undefined;
1468
+ }>, z.ZodObject<{
1469
+ type: z.ZodLiteral<"woocommerce-store-api">;
1470
+ slug: z.ZodString;
1471
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1472
+ }, "strict", z.ZodTypeAny, {
1473
+ type: "woocommerce-store-api";
1474
+ slug: string;
1475
+ base?: string | undefined;
1476
+ }, {
1477
+ type: "woocommerce-store-api";
1478
+ slug: string;
1479
+ base?: string | undefined;
1480
+ }>, z.ZodObject<{
1481
+ type: z.ZodLiteral<"jsonld">;
1482
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1483
+ }, "strict", z.ZodTypeAny, {
1484
+ type: "jsonld";
1485
+ url?: string | undefined;
1486
+ }, {
1487
+ type: "jsonld";
1488
+ url?: string | undefined;
1489
+ }>]>>;
1490
+ }, "strict", z.ZodTypeAny, {
1491
+ amount: string;
1492
+ bind?: {
1493
+ type: "dom-selector";
1494
+ selector: string;
1495
+ } | {
1496
+ type: "shopify-ajax";
1497
+ handle: string;
1498
+ base?: string | undefined;
1499
+ } | {
1500
+ type: "woocommerce-store-api";
1501
+ slug: string;
1502
+ base?: string | undefined;
1503
+ } | {
1504
+ type: "jsonld";
1505
+ url?: string | undefined;
1506
+ } | undefined;
1507
+ cadence?: string | undefined;
1508
+ }, {
1509
+ amount: string;
1510
+ bind?: {
1511
+ type: "dom-selector";
1512
+ selector: string;
1513
+ } | {
1514
+ type: "shopify-ajax";
1515
+ handle: string;
1516
+ base?: string | undefined;
1517
+ } | {
1518
+ type: "woocommerce-store-api";
1519
+ slug: string;
1520
+ base?: string | undefined;
1521
+ } | {
1522
+ type: "jsonld";
1523
+ url?: string | undefined;
1524
+ } | undefined;
1525
+ cadence?: string | undefined;
1526
+ }>>;
1527
+ badge: z.ZodOptional<z.ZodObject<{
1528
+ label: z.ZodString;
1529
+ tone: z.ZodDefault<z.ZodEnum<["neutral", "primary", "success", "warning"]>>;
1530
+ }, "strict", z.ZodTypeAny, {
1531
+ label: string;
1532
+ tone: "neutral" | "primary" | "success" | "warning";
1533
+ }, {
1534
+ label: string;
1535
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
1536
+ }>>;
1537
+ attributes: z.ZodArray<z.ZodObject<{
1538
+ label: z.ZodString;
1539
+ value: z.ZodString;
1540
+ emphasis: z.ZodDefault<z.ZodBoolean>;
1541
+ }, "strict", z.ZodTypeAny, {
1542
+ value: string;
1543
+ label: string;
1544
+ emphasis: boolean;
1545
+ }, {
1546
+ value: string;
1547
+ label: string;
1548
+ emphasis?: boolean | undefined;
1549
+ }>, "many">;
1550
+ framing: z.ZodOptional<z.ZodString>;
1551
+ ctas: z.ZodArray<z.ZodObject<{
1552
+ label: z.ZodString;
1553
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1554
+ target: z.ZodDefault<z.ZodEnum<["_self", "_blank"]>>;
1555
+ variant: z.ZodDefault<z.ZodEnum<["primary", "secondary", "ghost"]>>;
1556
+ actionId: z.ZodOptional<z.ZodString>;
1557
+ }, "strict", z.ZodTypeAny, {
1558
+ label: string;
1559
+ target: "_self" | "_blank";
1560
+ variant: "primary" | "secondary" | "ghost";
1561
+ href?: string | undefined;
1562
+ actionId?: string | undefined;
1563
+ }, {
1564
+ label: string;
1565
+ href?: string | undefined;
1566
+ target?: "_self" | "_blank" | undefined;
1567
+ variant?: "primary" | "secondary" | "ghost" | undefined;
1568
+ actionId?: string | undefined;
1569
+ }>, "many">;
1570
+ }, "strict", z.ZodTypeAny, {
1571
+ id: string;
1572
+ name: string;
1573
+ image: {
1574
+ src: string;
1575
+ alt: string;
1576
+ bind?: {
1577
+ type: "dom-selector";
1578
+ selector: string;
1579
+ } | {
1580
+ type: "shopify-ajax";
1581
+ handle: string;
1582
+ base?: string | undefined;
1583
+ } | {
1584
+ type: "opengraph";
1585
+ url: string;
1586
+ } | {
1587
+ type: "jsonld";
1588
+ url?: string | undefined;
1589
+ } | undefined;
1590
+ };
1591
+ attributes: {
1592
+ value: string;
1593
+ label: string;
1594
+ emphasis: boolean;
1595
+ }[];
1596
+ ctas: {
1597
+ label: string;
1598
+ target: "_self" | "_blank";
1599
+ variant: "primary" | "secondary" | "ghost";
1600
+ href?: string | undefined;
1601
+ actionId?: string | undefined;
1602
+ }[];
1603
+ tagline?: string | undefined;
1604
+ price?: {
1605
+ amount: string;
1606
+ bind?: {
1607
+ type: "dom-selector";
1608
+ selector: string;
1609
+ } | {
1610
+ type: "shopify-ajax";
1611
+ handle: string;
1612
+ base?: string | undefined;
1613
+ } | {
1614
+ type: "woocommerce-store-api";
1615
+ slug: string;
1616
+ base?: string | undefined;
1617
+ } | {
1618
+ type: "jsonld";
1619
+ url?: string | undefined;
1620
+ } | undefined;
1621
+ cadence?: string | undefined;
1622
+ } | undefined;
1623
+ badge?: {
1624
+ label: string;
1625
+ tone: "neutral" | "primary" | "success" | "warning";
1626
+ } | undefined;
1627
+ framing?: string | undefined;
1628
+ }, {
1629
+ id: string;
1630
+ name: string;
1631
+ image: {
1632
+ src: string;
1633
+ alt: string;
1634
+ bind?: {
1635
+ type: "dom-selector";
1636
+ selector: string;
1637
+ } | {
1638
+ type: "shopify-ajax";
1639
+ handle: string;
1640
+ base?: string | undefined;
1641
+ } | {
1642
+ type: "opengraph";
1643
+ url: string;
1644
+ } | {
1645
+ type: "jsonld";
1646
+ url?: string | undefined;
1647
+ } | undefined;
1648
+ };
1649
+ attributes: {
1650
+ value: string;
1651
+ label: string;
1652
+ emphasis?: boolean | undefined;
1653
+ }[];
1654
+ ctas: {
1655
+ label: string;
1656
+ href?: string | undefined;
1657
+ target?: "_self" | "_blank" | undefined;
1658
+ variant?: "primary" | "secondary" | "ghost" | undefined;
1659
+ actionId?: string | undefined;
1660
+ }[];
1661
+ tagline?: string | undefined;
1662
+ price?: {
1663
+ amount: string;
1664
+ bind?: {
1665
+ type: "dom-selector";
1666
+ selector: string;
1667
+ } | {
1668
+ type: "shopify-ajax";
1669
+ handle: string;
1670
+ base?: string | undefined;
1671
+ } | {
1672
+ type: "woocommerce-store-api";
1673
+ slug: string;
1674
+ base?: string | undefined;
1675
+ } | {
1676
+ type: "jsonld";
1677
+ url?: string | undefined;
1678
+ } | undefined;
1679
+ cadence?: string | undefined;
1680
+ } | undefined;
1681
+ badge?: {
1682
+ label: string;
1683
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
1684
+ } | undefined;
1685
+ framing?: string | undefined;
1686
+ }>, "many">;
1687
+ desktopColumns: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
1688
+ heading: z.ZodOptional<z.ZodString>;
1689
+ }, "strict", z.ZodTypeAny, {
1690
+ products: {
1691
+ id: string;
1692
+ name: string;
1693
+ image: {
1694
+ src: string;
1695
+ alt: string;
1696
+ bind?: {
1697
+ type: "dom-selector";
1698
+ selector: string;
1699
+ } | {
1700
+ type: "shopify-ajax";
1701
+ handle: string;
1702
+ base?: string | undefined;
1703
+ } | {
1704
+ type: "opengraph";
1705
+ url: string;
1706
+ } | {
1707
+ type: "jsonld";
1708
+ url?: string | undefined;
1709
+ } | undefined;
1710
+ };
1711
+ attributes: {
1712
+ value: string;
1713
+ label: string;
1714
+ emphasis: boolean;
1715
+ }[];
1716
+ ctas: {
1717
+ label: string;
1718
+ target: "_self" | "_blank";
1719
+ variant: "primary" | "secondary" | "ghost";
1720
+ href?: string | undefined;
1721
+ actionId?: string | undefined;
1722
+ }[];
1723
+ tagline?: string | undefined;
1724
+ price?: {
1725
+ amount: string;
1726
+ bind?: {
1727
+ type: "dom-selector";
1728
+ selector: string;
1729
+ } | {
1730
+ type: "shopify-ajax";
1731
+ handle: string;
1732
+ base?: string | undefined;
1733
+ } | {
1734
+ type: "woocommerce-store-api";
1735
+ slug: string;
1736
+ base?: string | undefined;
1737
+ } | {
1738
+ type: "jsonld";
1739
+ url?: string | undefined;
1740
+ } | undefined;
1741
+ cadence?: string | undefined;
1742
+ } | undefined;
1743
+ badge?: {
1744
+ label: string;
1745
+ tone: "neutral" | "primary" | "success" | "warning";
1746
+ } | undefined;
1747
+ framing?: string | undefined;
1748
+ }[];
1749
+ desktopColumns: 2 | 3;
1750
+ heading?: string | undefined;
1751
+ }, {
1752
+ products: {
1753
+ id: string;
1754
+ name: string;
1755
+ image: {
1756
+ src: string;
1757
+ alt: string;
1758
+ bind?: {
1759
+ type: "dom-selector";
1760
+ selector: string;
1761
+ } | {
1762
+ type: "shopify-ajax";
1763
+ handle: string;
1764
+ base?: string | undefined;
1765
+ } | {
1766
+ type: "opengraph";
1767
+ url: string;
1768
+ } | {
1769
+ type: "jsonld";
1770
+ url?: string | undefined;
1771
+ } | undefined;
1772
+ };
1773
+ attributes: {
1774
+ value: string;
1775
+ label: string;
1776
+ emphasis?: boolean | undefined;
1777
+ }[];
1778
+ ctas: {
1779
+ label: string;
1780
+ href?: string | undefined;
1781
+ target?: "_self" | "_blank" | undefined;
1782
+ variant?: "primary" | "secondary" | "ghost" | undefined;
1783
+ actionId?: string | undefined;
1784
+ }[];
1785
+ tagline?: string | undefined;
1786
+ price?: {
1787
+ amount: string;
1788
+ bind?: {
1789
+ type: "dom-selector";
1790
+ selector: string;
1791
+ } | {
1792
+ type: "shopify-ajax";
1793
+ handle: string;
1794
+ base?: string | undefined;
1795
+ } | {
1796
+ type: "woocommerce-store-api";
1797
+ slug: string;
1798
+ base?: string | undefined;
1799
+ } | {
1800
+ type: "jsonld";
1801
+ url?: string | undefined;
1802
+ } | undefined;
1803
+ cadence?: string | undefined;
1804
+ } | undefined;
1805
+ badge?: {
1806
+ label: string;
1807
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
1808
+ } | undefined;
1809
+ framing?: string | undefined;
1810
+ }[];
1811
+ heading?: string | undefined;
1812
+ desktopColumns?: 2 | 3 | undefined;
1813
+ }>;
1814
+ export type CardProps = z.infer<typeof cardSchema>;
1815
+ export type ComparisonProps = z.infer<typeof comparisonSchema>;
1816
+ export type HeroProps = z.infer<typeof heroSchema>;
1817
+ export type GridProps = z.infer<typeof gridSchema>;
1818
+ export declare const tileWidgets: readonly [{
1819
+ readonly widget: "adaptive-product:card";
1820
+ readonly defName: "productCardProps";
1821
+ readonly propsSchema: z.ZodObject<{
1822
+ product: z.ZodObject<{
1823
+ id: z.ZodString;
1824
+ name: z.ZodString;
1825
+ tagline: z.ZodOptional<z.ZodString>;
1826
+ image: z.ZodObject<{
1827
+ src: z.ZodEffects<z.ZodString, string, string>;
1828
+ alt: z.ZodString;
1829
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1830
+ type: z.ZodLiteral<"dom-selector">;
1831
+ selector: z.ZodString;
1832
+ }, "strict", z.ZodTypeAny, {
1833
+ type: "dom-selector";
1834
+ selector: string;
1835
+ }, {
1836
+ type: "dom-selector";
1837
+ selector: string;
1838
+ }>, z.ZodObject<{
1839
+ type: z.ZodLiteral<"shopify-ajax">;
1840
+ handle: z.ZodString;
1841
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1842
+ }, "strict", z.ZodTypeAny, {
1843
+ type: "shopify-ajax";
1844
+ handle: string;
1845
+ base?: string | undefined;
1846
+ }, {
1847
+ type: "shopify-ajax";
1848
+ handle: string;
1849
+ base?: string | undefined;
1850
+ }>, z.ZodObject<{
1851
+ type: z.ZodLiteral<"opengraph">;
1852
+ url: z.ZodEffects<z.ZodString, string, string>;
1853
+ }, "strict", z.ZodTypeAny, {
1854
+ type: "opengraph";
1855
+ url: string;
1856
+ }, {
1857
+ type: "opengraph";
1858
+ url: string;
1859
+ }>, z.ZodObject<{
1860
+ type: z.ZodLiteral<"jsonld">;
1861
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1862
+ }, "strict", z.ZodTypeAny, {
1863
+ type: "jsonld";
1864
+ url?: string | undefined;
1865
+ }, {
1866
+ type: "jsonld";
1867
+ url?: string | undefined;
1868
+ }>]>>;
1869
+ }, "strict", z.ZodTypeAny, {
1870
+ src: string;
1871
+ alt: string;
1872
+ bind?: {
1873
+ type: "dom-selector";
1874
+ selector: string;
1875
+ } | {
1876
+ type: "shopify-ajax";
1877
+ handle: string;
1878
+ base?: string | undefined;
1879
+ } | {
1880
+ type: "opengraph";
1881
+ url: string;
1882
+ } | {
1883
+ type: "jsonld";
1884
+ url?: string | undefined;
1885
+ } | undefined;
1886
+ }, {
1887
+ src: string;
1888
+ alt: string;
1889
+ bind?: {
1890
+ type: "dom-selector";
1891
+ selector: string;
1892
+ } | {
1893
+ type: "shopify-ajax";
1894
+ handle: string;
1895
+ base?: string | undefined;
1896
+ } | {
1897
+ type: "opengraph";
1898
+ url: string;
1899
+ } | {
1900
+ type: "jsonld";
1901
+ url?: string | undefined;
1902
+ } | undefined;
1903
+ }>;
1904
+ price: z.ZodOptional<z.ZodObject<{
1905
+ amount: z.ZodString;
1906
+ cadence: z.ZodOptional<z.ZodString>;
1907
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1908
+ type: z.ZodLiteral<"dom-selector">;
1909
+ selector: z.ZodString;
1910
+ }, "strict", z.ZodTypeAny, {
1911
+ type: "dom-selector";
1912
+ selector: string;
1913
+ }, {
1914
+ type: "dom-selector";
1915
+ selector: string;
1916
+ }>, z.ZodObject<{
1917
+ type: z.ZodLiteral<"shopify-ajax">;
1918
+ handle: z.ZodString;
1919
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1920
+ }, "strict", z.ZodTypeAny, {
1921
+ type: "shopify-ajax";
1922
+ handle: string;
1923
+ base?: string | undefined;
1924
+ }, {
1925
+ type: "shopify-ajax";
1926
+ handle: string;
1927
+ base?: string | undefined;
1928
+ }>, z.ZodObject<{
1929
+ type: z.ZodLiteral<"woocommerce-store-api">;
1930
+ slug: z.ZodString;
1931
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1932
+ }, "strict", z.ZodTypeAny, {
1933
+ type: "woocommerce-store-api";
1934
+ slug: string;
1935
+ base?: string | undefined;
1936
+ }, {
1937
+ type: "woocommerce-store-api";
1938
+ slug: string;
1939
+ base?: string | undefined;
1940
+ }>, z.ZodObject<{
1941
+ type: z.ZodLiteral<"jsonld">;
1942
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1943
+ }, "strict", z.ZodTypeAny, {
1944
+ type: "jsonld";
1945
+ url?: string | undefined;
1946
+ }, {
1947
+ type: "jsonld";
1948
+ url?: string | undefined;
1949
+ }>]>>;
1950
+ }, "strict", z.ZodTypeAny, {
1951
+ amount: string;
1952
+ bind?: {
1953
+ type: "dom-selector";
1954
+ selector: string;
1955
+ } | {
1956
+ type: "shopify-ajax";
1957
+ handle: string;
1958
+ base?: string | undefined;
1959
+ } | {
1960
+ type: "woocommerce-store-api";
1961
+ slug: string;
1962
+ base?: string | undefined;
1963
+ } | {
1964
+ type: "jsonld";
1965
+ url?: string | undefined;
1966
+ } | undefined;
1967
+ cadence?: string | undefined;
1968
+ }, {
1969
+ amount: string;
1970
+ bind?: {
1971
+ type: "dom-selector";
1972
+ selector: string;
1973
+ } | {
1974
+ type: "shopify-ajax";
1975
+ handle: string;
1976
+ base?: string | undefined;
1977
+ } | {
1978
+ type: "woocommerce-store-api";
1979
+ slug: string;
1980
+ base?: string | undefined;
1981
+ } | {
1982
+ type: "jsonld";
1983
+ url?: string | undefined;
1984
+ } | undefined;
1985
+ cadence?: string | undefined;
1986
+ }>>;
1987
+ badge: z.ZodOptional<z.ZodObject<{
1988
+ label: z.ZodString;
1989
+ tone: z.ZodDefault<z.ZodEnum<["neutral", "primary", "success", "warning"]>>;
1990
+ }, "strict", z.ZodTypeAny, {
1991
+ label: string;
1992
+ tone: "neutral" | "primary" | "success" | "warning";
1993
+ }, {
1994
+ label: string;
1995
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
1996
+ }>>;
1997
+ attributes: z.ZodArray<z.ZodObject<{
1998
+ label: z.ZodString;
1999
+ value: z.ZodString;
2000
+ emphasis: z.ZodDefault<z.ZodBoolean>;
2001
+ }, "strict", z.ZodTypeAny, {
2002
+ value: string;
2003
+ label: string;
2004
+ emphasis: boolean;
2005
+ }, {
2006
+ value: string;
2007
+ label: string;
2008
+ emphasis?: boolean | undefined;
2009
+ }>, "many">;
2010
+ framing: z.ZodOptional<z.ZodString>;
2011
+ ctas: z.ZodArray<z.ZodObject<{
2012
+ label: z.ZodString;
2013
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2014
+ target: z.ZodDefault<z.ZodEnum<["_self", "_blank"]>>;
2015
+ variant: z.ZodDefault<z.ZodEnum<["primary", "secondary", "ghost"]>>;
2016
+ actionId: z.ZodOptional<z.ZodString>;
2017
+ }, "strict", z.ZodTypeAny, {
2018
+ label: string;
2019
+ target: "_self" | "_blank";
2020
+ variant: "primary" | "secondary" | "ghost";
2021
+ href?: string | undefined;
2022
+ actionId?: string | undefined;
2023
+ }, {
2024
+ label: string;
2025
+ href?: string | undefined;
2026
+ target?: "_self" | "_blank" | undefined;
2027
+ variant?: "primary" | "secondary" | "ghost" | undefined;
2028
+ actionId?: string | undefined;
2029
+ }>, "many">;
2030
+ }, "strict", z.ZodTypeAny, {
2031
+ id: string;
2032
+ name: string;
2033
+ image: {
2034
+ src: string;
2035
+ alt: string;
2036
+ bind?: {
2037
+ type: "dom-selector";
2038
+ selector: string;
2039
+ } | {
2040
+ type: "shopify-ajax";
2041
+ handle: string;
2042
+ base?: string | undefined;
2043
+ } | {
2044
+ type: "opengraph";
2045
+ url: string;
2046
+ } | {
2047
+ type: "jsonld";
2048
+ url?: string | undefined;
2049
+ } | undefined;
2050
+ };
2051
+ attributes: {
2052
+ value: string;
2053
+ label: string;
2054
+ emphasis: boolean;
2055
+ }[];
2056
+ ctas: {
2057
+ label: string;
2058
+ target: "_self" | "_blank";
2059
+ variant: "primary" | "secondary" | "ghost";
2060
+ href?: string | undefined;
2061
+ actionId?: string | undefined;
2062
+ }[];
2063
+ tagline?: string | undefined;
2064
+ price?: {
2065
+ amount: string;
2066
+ bind?: {
2067
+ type: "dom-selector";
2068
+ selector: string;
2069
+ } | {
2070
+ type: "shopify-ajax";
2071
+ handle: string;
2072
+ base?: string | undefined;
2073
+ } | {
2074
+ type: "woocommerce-store-api";
2075
+ slug: string;
2076
+ base?: string | undefined;
2077
+ } | {
2078
+ type: "jsonld";
2079
+ url?: string | undefined;
2080
+ } | undefined;
2081
+ cadence?: string | undefined;
2082
+ } | undefined;
2083
+ badge?: {
2084
+ label: string;
2085
+ tone: "neutral" | "primary" | "success" | "warning";
2086
+ } | undefined;
2087
+ framing?: string | undefined;
2088
+ }, {
2089
+ id: string;
2090
+ name: string;
2091
+ image: {
2092
+ src: string;
2093
+ alt: string;
2094
+ bind?: {
2095
+ type: "dom-selector";
2096
+ selector: string;
2097
+ } | {
2098
+ type: "shopify-ajax";
2099
+ handle: string;
2100
+ base?: string | undefined;
2101
+ } | {
2102
+ type: "opengraph";
2103
+ url: string;
2104
+ } | {
2105
+ type: "jsonld";
2106
+ url?: string | undefined;
2107
+ } | undefined;
2108
+ };
2109
+ attributes: {
2110
+ value: string;
2111
+ label: string;
2112
+ emphasis?: boolean | undefined;
2113
+ }[];
2114
+ ctas: {
2115
+ label: string;
2116
+ href?: string | undefined;
2117
+ target?: "_self" | "_blank" | undefined;
2118
+ variant?: "primary" | "secondary" | "ghost" | undefined;
2119
+ actionId?: string | undefined;
2120
+ }[];
2121
+ tagline?: string | undefined;
2122
+ price?: {
2123
+ amount: string;
2124
+ bind?: {
2125
+ type: "dom-selector";
2126
+ selector: string;
2127
+ } | {
2128
+ type: "shopify-ajax";
2129
+ handle: string;
2130
+ base?: string | undefined;
2131
+ } | {
2132
+ type: "woocommerce-store-api";
2133
+ slug: string;
2134
+ base?: string | undefined;
2135
+ } | {
2136
+ type: "jsonld";
2137
+ url?: string | undefined;
2138
+ } | undefined;
2139
+ cadence?: string | undefined;
2140
+ } | undefined;
2141
+ badge?: {
2142
+ label: string;
2143
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
2144
+ } | undefined;
2145
+ framing?: string | undefined;
2146
+ }>;
2147
+ density: z.ZodDefault<z.ZodEnum<["compact", "standard"]>>;
2148
+ }, "strict", z.ZodTypeAny, {
2149
+ product: {
2150
+ id: string;
2151
+ name: string;
2152
+ image: {
2153
+ src: string;
2154
+ alt: string;
2155
+ bind?: {
2156
+ type: "dom-selector";
2157
+ selector: string;
2158
+ } | {
2159
+ type: "shopify-ajax";
2160
+ handle: string;
2161
+ base?: string | undefined;
2162
+ } | {
2163
+ type: "opengraph";
2164
+ url: string;
2165
+ } | {
2166
+ type: "jsonld";
2167
+ url?: string | undefined;
2168
+ } | undefined;
2169
+ };
2170
+ attributes: {
2171
+ value: string;
2172
+ label: string;
2173
+ emphasis: boolean;
2174
+ }[];
2175
+ ctas: {
2176
+ label: string;
2177
+ target: "_self" | "_blank";
2178
+ variant: "primary" | "secondary" | "ghost";
2179
+ href?: string | undefined;
2180
+ actionId?: string | undefined;
2181
+ }[];
2182
+ tagline?: string | undefined;
2183
+ price?: {
2184
+ amount: string;
2185
+ bind?: {
2186
+ type: "dom-selector";
2187
+ selector: string;
2188
+ } | {
2189
+ type: "shopify-ajax";
2190
+ handle: string;
2191
+ base?: string | undefined;
2192
+ } | {
2193
+ type: "woocommerce-store-api";
2194
+ slug: string;
2195
+ base?: string | undefined;
2196
+ } | {
2197
+ type: "jsonld";
2198
+ url?: string | undefined;
2199
+ } | undefined;
2200
+ cadence?: string | undefined;
2201
+ } | undefined;
2202
+ badge?: {
2203
+ label: string;
2204
+ tone: "neutral" | "primary" | "success" | "warning";
2205
+ } | undefined;
2206
+ framing?: string | undefined;
2207
+ };
2208
+ density: "compact" | "standard";
2209
+ }, {
2210
+ product: {
2211
+ id: string;
2212
+ name: string;
2213
+ image: {
2214
+ src: string;
2215
+ alt: string;
2216
+ bind?: {
2217
+ type: "dom-selector";
2218
+ selector: string;
2219
+ } | {
2220
+ type: "shopify-ajax";
2221
+ handle: string;
2222
+ base?: string | undefined;
2223
+ } | {
2224
+ type: "opengraph";
2225
+ url: string;
2226
+ } | {
2227
+ type: "jsonld";
2228
+ url?: string | undefined;
2229
+ } | undefined;
2230
+ };
2231
+ attributes: {
2232
+ value: string;
2233
+ label: string;
2234
+ emphasis?: boolean | undefined;
2235
+ }[];
2236
+ ctas: {
2237
+ label: string;
2238
+ href?: string | undefined;
2239
+ target?: "_self" | "_blank" | undefined;
2240
+ variant?: "primary" | "secondary" | "ghost" | undefined;
2241
+ actionId?: string | undefined;
2242
+ }[];
2243
+ tagline?: string | undefined;
2244
+ price?: {
2245
+ amount: string;
2246
+ bind?: {
2247
+ type: "dom-selector";
2248
+ selector: string;
2249
+ } | {
2250
+ type: "shopify-ajax";
2251
+ handle: string;
2252
+ base?: string | undefined;
2253
+ } | {
2254
+ type: "woocommerce-store-api";
2255
+ slug: string;
2256
+ base?: string | undefined;
2257
+ } | {
2258
+ type: "jsonld";
2259
+ url?: string | undefined;
2260
+ } | undefined;
2261
+ cadence?: string | undefined;
2262
+ } | undefined;
2263
+ badge?: {
2264
+ label: string;
2265
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
2266
+ } | undefined;
2267
+ framing?: string | undefined;
2268
+ };
2269
+ density?: "compact" | "standard" | undefined;
2270
+ }>;
2271
+ }, {
2272
+ readonly widget: "adaptive-product:comparison";
2273
+ readonly defName: "productComparisonProps";
2274
+ readonly propsSchema: z.ZodObject<{
2275
+ products: z.ZodArray<z.ZodObject<{
2276
+ id: z.ZodString;
2277
+ name: z.ZodString;
2278
+ tagline: z.ZodOptional<z.ZodString>;
2279
+ image: z.ZodObject<{
2280
+ src: z.ZodEffects<z.ZodString, string, string>;
2281
+ alt: z.ZodString;
2282
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2283
+ type: z.ZodLiteral<"dom-selector">;
2284
+ selector: z.ZodString;
2285
+ }, "strict", z.ZodTypeAny, {
2286
+ type: "dom-selector";
2287
+ selector: string;
2288
+ }, {
2289
+ type: "dom-selector";
2290
+ selector: string;
2291
+ }>, z.ZodObject<{
2292
+ type: z.ZodLiteral<"shopify-ajax">;
2293
+ handle: z.ZodString;
2294
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2295
+ }, "strict", z.ZodTypeAny, {
2296
+ type: "shopify-ajax";
2297
+ handle: string;
2298
+ base?: string | undefined;
2299
+ }, {
2300
+ type: "shopify-ajax";
2301
+ handle: string;
2302
+ base?: string | undefined;
2303
+ }>, z.ZodObject<{
2304
+ type: z.ZodLiteral<"opengraph">;
2305
+ url: z.ZodEffects<z.ZodString, string, string>;
2306
+ }, "strict", z.ZodTypeAny, {
2307
+ type: "opengraph";
2308
+ url: string;
2309
+ }, {
2310
+ type: "opengraph";
2311
+ url: string;
2312
+ }>, z.ZodObject<{
2313
+ type: z.ZodLiteral<"jsonld">;
2314
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2315
+ }, "strict", z.ZodTypeAny, {
2316
+ type: "jsonld";
2317
+ url?: string | undefined;
2318
+ }, {
2319
+ type: "jsonld";
2320
+ url?: string | undefined;
2321
+ }>]>>;
2322
+ }, "strict", z.ZodTypeAny, {
2323
+ src: string;
2324
+ alt: string;
2325
+ bind?: {
2326
+ type: "dom-selector";
2327
+ selector: string;
2328
+ } | {
2329
+ type: "shopify-ajax";
2330
+ handle: string;
2331
+ base?: string | undefined;
2332
+ } | {
2333
+ type: "opengraph";
2334
+ url: string;
2335
+ } | {
2336
+ type: "jsonld";
2337
+ url?: string | undefined;
2338
+ } | undefined;
2339
+ }, {
2340
+ src: string;
2341
+ alt: string;
2342
+ bind?: {
2343
+ type: "dom-selector";
2344
+ selector: string;
2345
+ } | {
2346
+ type: "shopify-ajax";
2347
+ handle: string;
2348
+ base?: string | undefined;
2349
+ } | {
2350
+ type: "opengraph";
2351
+ url: string;
2352
+ } | {
2353
+ type: "jsonld";
2354
+ url?: string | undefined;
2355
+ } | undefined;
2356
+ }>;
2357
+ price: z.ZodOptional<z.ZodObject<{
2358
+ amount: z.ZodString;
2359
+ cadence: z.ZodOptional<z.ZodString>;
2360
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2361
+ type: z.ZodLiteral<"dom-selector">;
2362
+ selector: z.ZodString;
2363
+ }, "strict", z.ZodTypeAny, {
2364
+ type: "dom-selector";
2365
+ selector: string;
2366
+ }, {
2367
+ type: "dom-selector";
2368
+ selector: string;
2369
+ }>, z.ZodObject<{
2370
+ type: z.ZodLiteral<"shopify-ajax">;
2371
+ handle: z.ZodString;
2372
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2373
+ }, "strict", z.ZodTypeAny, {
2374
+ type: "shopify-ajax";
2375
+ handle: string;
2376
+ base?: string | undefined;
2377
+ }, {
2378
+ type: "shopify-ajax";
2379
+ handle: string;
2380
+ base?: string | undefined;
2381
+ }>, z.ZodObject<{
2382
+ type: z.ZodLiteral<"woocommerce-store-api">;
2383
+ slug: z.ZodString;
2384
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2385
+ }, "strict", z.ZodTypeAny, {
2386
+ type: "woocommerce-store-api";
2387
+ slug: string;
2388
+ base?: string | undefined;
2389
+ }, {
2390
+ type: "woocommerce-store-api";
2391
+ slug: string;
2392
+ base?: string | undefined;
2393
+ }>, z.ZodObject<{
2394
+ type: z.ZodLiteral<"jsonld">;
2395
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2396
+ }, "strict", z.ZodTypeAny, {
2397
+ type: "jsonld";
2398
+ url?: string | undefined;
2399
+ }, {
2400
+ type: "jsonld";
2401
+ url?: string | undefined;
2402
+ }>]>>;
2403
+ }, "strict", z.ZodTypeAny, {
2404
+ amount: string;
2405
+ bind?: {
2406
+ type: "dom-selector";
2407
+ selector: string;
2408
+ } | {
2409
+ type: "shopify-ajax";
2410
+ handle: string;
2411
+ base?: string | undefined;
2412
+ } | {
2413
+ type: "woocommerce-store-api";
2414
+ slug: string;
2415
+ base?: string | undefined;
2416
+ } | {
2417
+ type: "jsonld";
2418
+ url?: string | undefined;
2419
+ } | undefined;
2420
+ cadence?: string | undefined;
2421
+ }, {
2422
+ amount: string;
2423
+ bind?: {
2424
+ type: "dom-selector";
2425
+ selector: string;
2426
+ } | {
2427
+ type: "shopify-ajax";
2428
+ handle: string;
2429
+ base?: string | undefined;
2430
+ } | {
2431
+ type: "woocommerce-store-api";
2432
+ slug: string;
2433
+ base?: string | undefined;
2434
+ } | {
2435
+ type: "jsonld";
2436
+ url?: string | undefined;
2437
+ } | undefined;
2438
+ cadence?: string | undefined;
2439
+ }>>;
2440
+ badge: z.ZodOptional<z.ZodObject<{
2441
+ label: z.ZodString;
2442
+ tone: z.ZodDefault<z.ZodEnum<["neutral", "primary", "success", "warning"]>>;
2443
+ }, "strict", z.ZodTypeAny, {
2444
+ label: string;
2445
+ tone: "neutral" | "primary" | "success" | "warning";
2446
+ }, {
2447
+ label: string;
2448
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
2449
+ }>>;
2450
+ attributes: z.ZodArray<z.ZodObject<{
2451
+ label: z.ZodString;
2452
+ value: z.ZodString;
2453
+ emphasis: z.ZodDefault<z.ZodBoolean>;
2454
+ }, "strict", z.ZodTypeAny, {
2455
+ value: string;
2456
+ label: string;
2457
+ emphasis: boolean;
2458
+ }, {
2459
+ value: string;
2460
+ label: string;
2461
+ emphasis?: boolean | undefined;
2462
+ }>, "many">;
2463
+ framing: z.ZodOptional<z.ZodString>;
2464
+ ctas: z.ZodArray<z.ZodObject<{
2465
+ label: z.ZodString;
2466
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2467
+ target: z.ZodDefault<z.ZodEnum<["_self", "_blank"]>>;
2468
+ variant: z.ZodDefault<z.ZodEnum<["primary", "secondary", "ghost"]>>;
2469
+ actionId: z.ZodOptional<z.ZodString>;
2470
+ }, "strict", z.ZodTypeAny, {
2471
+ label: string;
2472
+ target: "_self" | "_blank";
2473
+ variant: "primary" | "secondary" | "ghost";
2474
+ href?: string | undefined;
2475
+ actionId?: string | undefined;
2476
+ }, {
2477
+ label: string;
2478
+ href?: string | undefined;
2479
+ target?: "_self" | "_blank" | undefined;
2480
+ variant?: "primary" | "secondary" | "ghost" | undefined;
2481
+ actionId?: string | undefined;
2482
+ }>, "many">;
2483
+ }, "strict", z.ZodTypeAny, {
2484
+ id: string;
2485
+ name: string;
2486
+ image: {
2487
+ src: string;
2488
+ alt: string;
2489
+ bind?: {
2490
+ type: "dom-selector";
2491
+ selector: string;
2492
+ } | {
2493
+ type: "shopify-ajax";
2494
+ handle: string;
2495
+ base?: string | undefined;
2496
+ } | {
2497
+ type: "opengraph";
2498
+ url: string;
2499
+ } | {
2500
+ type: "jsonld";
2501
+ url?: string | undefined;
2502
+ } | undefined;
2503
+ };
2504
+ attributes: {
2505
+ value: string;
2506
+ label: string;
2507
+ emphasis: boolean;
2508
+ }[];
2509
+ ctas: {
2510
+ label: string;
2511
+ target: "_self" | "_blank";
2512
+ variant: "primary" | "secondary" | "ghost";
2513
+ href?: string | undefined;
2514
+ actionId?: string | undefined;
2515
+ }[];
2516
+ tagline?: string | undefined;
2517
+ price?: {
2518
+ amount: string;
2519
+ bind?: {
2520
+ type: "dom-selector";
2521
+ selector: string;
2522
+ } | {
2523
+ type: "shopify-ajax";
2524
+ handle: string;
2525
+ base?: string | undefined;
2526
+ } | {
2527
+ type: "woocommerce-store-api";
2528
+ slug: string;
2529
+ base?: string | undefined;
2530
+ } | {
2531
+ type: "jsonld";
2532
+ url?: string | undefined;
2533
+ } | undefined;
2534
+ cadence?: string | undefined;
2535
+ } | undefined;
2536
+ badge?: {
2537
+ label: string;
2538
+ tone: "neutral" | "primary" | "success" | "warning";
2539
+ } | undefined;
2540
+ framing?: string | undefined;
2541
+ }, {
2542
+ id: string;
2543
+ name: string;
2544
+ image: {
2545
+ src: string;
2546
+ alt: string;
2547
+ bind?: {
2548
+ type: "dom-selector";
2549
+ selector: string;
2550
+ } | {
2551
+ type: "shopify-ajax";
2552
+ handle: string;
2553
+ base?: string | undefined;
2554
+ } | {
2555
+ type: "opengraph";
2556
+ url: string;
2557
+ } | {
2558
+ type: "jsonld";
2559
+ url?: string | undefined;
2560
+ } | undefined;
2561
+ };
2562
+ attributes: {
2563
+ value: string;
2564
+ label: string;
2565
+ emphasis?: boolean | undefined;
2566
+ }[];
2567
+ ctas: {
2568
+ label: string;
2569
+ href?: string | undefined;
2570
+ target?: "_self" | "_blank" | undefined;
2571
+ variant?: "primary" | "secondary" | "ghost" | undefined;
2572
+ actionId?: string | undefined;
2573
+ }[];
2574
+ tagline?: string | undefined;
2575
+ price?: {
2576
+ amount: string;
2577
+ bind?: {
2578
+ type: "dom-selector";
2579
+ selector: string;
2580
+ } | {
2581
+ type: "shopify-ajax";
2582
+ handle: string;
2583
+ base?: string | undefined;
2584
+ } | {
2585
+ type: "woocommerce-store-api";
2586
+ slug: string;
2587
+ base?: string | undefined;
2588
+ } | {
2589
+ type: "jsonld";
2590
+ url?: string | undefined;
2591
+ } | undefined;
2592
+ cadence?: string | undefined;
2593
+ } | undefined;
2594
+ badge?: {
2595
+ label: string;
2596
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
2597
+ } | undefined;
2598
+ framing?: string | undefined;
2599
+ }>, "many">;
2600
+ defaultExpandedIndex: z.ZodOptional<z.ZodNumber>;
2601
+ expandBehavior: z.ZodDefault<z.ZodEnum<["multi", "accordion"]>>;
2602
+ heading: z.ZodOptional<z.ZodString>;
2603
+ }, "strict", z.ZodTypeAny, {
2604
+ products: {
2605
+ id: string;
2606
+ name: string;
2607
+ image: {
2608
+ src: string;
2609
+ alt: string;
2610
+ bind?: {
2611
+ type: "dom-selector";
2612
+ selector: string;
2613
+ } | {
2614
+ type: "shopify-ajax";
2615
+ handle: string;
2616
+ base?: string | undefined;
2617
+ } | {
2618
+ type: "opengraph";
2619
+ url: string;
2620
+ } | {
2621
+ type: "jsonld";
2622
+ url?: string | undefined;
2623
+ } | undefined;
2624
+ };
2625
+ attributes: {
2626
+ value: string;
2627
+ label: string;
2628
+ emphasis: boolean;
2629
+ }[];
2630
+ ctas: {
2631
+ label: string;
2632
+ target: "_self" | "_blank";
2633
+ variant: "primary" | "secondary" | "ghost";
2634
+ href?: string | undefined;
2635
+ actionId?: string | undefined;
2636
+ }[];
2637
+ tagline?: string | undefined;
2638
+ price?: {
2639
+ amount: string;
2640
+ bind?: {
2641
+ type: "dom-selector";
2642
+ selector: string;
2643
+ } | {
2644
+ type: "shopify-ajax";
2645
+ handle: string;
2646
+ base?: string | undefined;
2647
+ } | {
2648
+ type: "woocommerce-store-api";
2649
+ slug: string;
2650
+ base?: string | undefined;
2651
+ } | {
2652
+ type: "jsonld";
2653
+ url?: string | undefined;
2654
+ } | undefined;
2655
+ cadence?: string | undefined;
2656
+ } | undefined;
2657
+ badge?: {
2658
+ label: string;
2659
+ tone: "neutral" | "primary" | "success" | "warning";
2660
+ } | undefined;
2661
+ framing?: string | undefined;
2662
+ }[];
2663
+ expandBehavior: "multi" | "accordion";
2664
+ defaultExpandedIndex?: number | undefined;
2665
+ heading?: string | undefined;
2666
+ }, {
2667
+ products: {
2668
+ id: string;
2669
+ name: string;
2670
+ image: {
2671
+ src: string;
2672
+ alt: string;
2673
+ bind?: {
2674
+ type: "dom-selector";
2675
+ selector: string;
2676
+ } | {
2677
+ type: "shopify-ajax";
2678
+ handle: string;
2679
+ base?: string | undefined;
2680
+ } | {
2681
+ type: "opengraph";
2682
+ url: string;
2683
+ } | {
2684
+ type: "jsonld";
2685
+ url?: string | undefined;
2686
+ } | undefined;
2687
+ };
2688
+ attributes: {
2689
+ value: string;
2690
+ label: string;
2691
+ emphasis?: boolean | undefined;
2692
+ }[];
2693
+ ctas: {
2694
+ label: string;
2695
+ href?: string | undefined;
2696
+ target?: "_self" | "_blank" | undefined;
2697
+ variant?: "primary" | "secondary" | "ghost" | undefined;
2698
+ actionId?: string | undefined;
2699
+ }[];
2700
+ tagline?: string | undefined;
2701
+ price?: {
2702
+ amount: string;
2703
+ bind?: {
2704
+ type: "dom-selector";
2705
+ selector: string;
2706
+ } | {
2707
+ type: "shopify-ajax";
2708
+ handle: string;
2709
+ base?: string | undefined;
2710
+ } | {
2711
+ type: "woocommerce-store-api";
2712
+ slug: string;
2713
+ base?: string | undefined;
2714
+ } | {
2715
+ type: "jsonld";
2716
+ url?: string | undefined;
2717
+ } | undefined;
2718
+ cadence?: string | undefined;
2719
+ } | undefined;
2720
+ badge?: {
2721
+ label: string;
2722
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
2723
+ } | undefined;
2724
+ framing?: string | undefined;
2725
+ }[];
2726
+ defaultExpandedIndex?: number | undefined;
2727
+ expandBehavior?: "multi" | "accordion" | undefined;
2728
+ heading?: string | undefined;
2729
+ }>;
2730
+ }, {
2731
+ readonly widget: "adaptive-product:hero";
2732
+ readonly defName: "productHeroProps";
2733
+ readonly propsSchema: z.ZodObject<{
2734
+ product: z.ZodObject<{
2735
+ id: z.ZodString;
2736
+ name: z.ZodString;
2737
+ tagline: z.ZodOptional<z.ZodString>;
2738
+ image: z.ZodObject<{
2739
+ src: z.ZodEffects<z.ZodString, string, string>;
2740
+ alt: z.ZodString;
2741
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2742
+ type: z.ZodLiteral<"dom-selector">;
2743
+ selector: z.ZodString;
2744
+ }, "strict", z.ZodTypeAny, {
2745
+ type: "dom-selector";
2746
+ selector: string;
2747
+ }, {
2748
+ type: "dom-selector";
2749
+ selector: string;
2750
+ }>, z.ZodObject<{
2751
+ type: z.ZodLiteral<"shopify-ajax">;
2752
+ handle: z.ZodString;
2753
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2754
+ }, "strict", z.ZodTypeAny, {
2755
+ type: "shopify-ajax";
2756
+ handle: string;
2757
+ base?: string | undefined;
2758
+ }, {
2759
+ type: "shopify-ajax";
2760
+ handle: string;
2761
+ base?: string | undefined;
2762
+ }>, z.ZodObject<{
2763
+ type: z.ZodLiteral<"opengraph">;
2764
+ url: z.ZodEffects<z.ZodString, string, string>;
2765
+ }, "strict", z.ZodTypeAny, {
2766
+ type: "opengraph";
2767
+ url: string;
2768
+ }, {
2769
+ type: "opengraph";
2770
+ url: string;
2771
+ }>, z.ZodObject<{
2772
+ type: z.ZodLiteral<"jsonld">;
2773
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2774
+ }, "strict", z.ZodTypeAny, {
2775
+ type: "jsonld";
2776
+ url?: string | undefined;
2777
+ }, {
2778
+ type: "jsonld";
2779
+ url?: string | undefined;
2780
+ }>]>>;
2781
+ }, "strict", z.ZodTypeAny, {
2782
+ src: string;
2783
+ alt: string;
2784
+ bind?: {
2785
+ type: "dom-selector";
2786
+ selector: string;
2787
+ } | {
2788
+ type: "shopify-ajax";
2789
+ handle: string;
2790
+ base?: string | undefined;
2791
+ } | {
2792
+ type: "opengraph";
2793
+ url: string;
2794
+ } | {
2795
+ type: "jsonld";
2796
+ url?: string | undefined;
2797
+ } | undefined;
2798
+ }, {
2799
+ src: string;
2800
+ alt: string;
2801
+ bind?: {
2802
+ type: "dom-selector";
2803
+ selector: string;
2804
+ } | {
2805
+ type: "shopify-ajax";
2806
+ handle: string;
2807
+ base?: string | undefined;
2808
+ } | {
2809
+ type: "opengraph";
2810
+ url: string;
2811
+ } | {
2812
+ type: "jsonld";
2813
+ url?: string | undefined;
2814
+ } | undefined;
2815
+ }>;
2816
+ price: z.ZodOptional<z.ZodObject<{
2817
+ amount: z.ZodString;
2818
+ cadence: z.ZodOptional<z.ZodString>;
2819
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2820
+ type: z.ZodLiteral<"dom-selector">;
2821
+ selector: z.ZodString;
2822
+ }, "strict", z.ZodTypeAny, {
2823
+ type: "dom-selector";
2824
+ selector: string;
2825
+ }, {
2826
+ type: "dom-selector";
2827
+ selector: string;
2828
+ }>, z.ZodObject<{
2829
+ type: z.ZodLiteral<"shopify-ajax">;
2830
+ handle: z.ZodString;
2831
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2832
+ }, "strict", z.ZodTypeAny, {
2833
+ type: "shopify-ajax";
2834
+ handle: string;
2835
+ base?: string | undefined;
2836
+ }, {
2837
+ type: "shopify-ajax";
2838
+ handle: string;
2839
+ base?: string | undefined;
2840
+ }>, z.ZodObject<{
2841
+ type: z.ZodLiteral<"woocommerce-store-api">;
2842
+ slug: z.ZodString;
2843
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2844
+ }, "strict", z.ZodTypeAny, {
2845
+ type: "woocommerce-store-api";
2846
+ slug: string;
2847
+ base?: string | undefined;
2848
+ }, {
2849
+ type: "woocommerce-store-api";
2850
+ slug: string;
2851
+ base?: string | undefined;
2852
+ }>, z.ZodObject<{
2853
+ type: z.ZodLiteral<"jsonld">;
2854
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2855
+ }, "strict", z.ZodTypeAny, {
2856
+ type: "jsonld";
2857
+ url?: string | undefined;
2858
+ }, {
2859
+ type: "jsonld";
2860
+ url?: string | undefined;
2861
+ }>]>>;
2862
+ }, "strict", z.ZodTypeAny, {
2863
+ amount: string;
2864
+ bind?: {
2865
+ type: "dom-selector";
2866
+ selector: string;
2867
+ } | {
2868
+ type: "shopify-ajax";
2869
+ handle: string;
2870
+ base?: string | undefined;
2871
+ } | {
2872
+ type: "woocommerce-store-api";
2873
+ slug: string;
2874
+ base?: string | undefined;
2875
+ } | {
2876
+ type: "jsonld";
2877
+ url?: string | undefined;
2878
+ } | undefined;
2879
+ cadence?: string | undefined;
2880
+ }, {
2881
+ amount: string;
2882
+ bind?: {
2883
+ type: "dom-selector";
2884
+ selector: string;
2885
+ } | {
2886
+ type: "shopify-ajax";
2887
+ handle: string;
2888
+ base?: string | undefined;
2889
+ } | {
2890
+ type: "woocommerce-store-api";
2891
+ slug: string;
2892
+ base?: string | undefined;
2893
+ } | {
2894
+ type: "jsonld";
2895
+ url?: string | undefined;
2896
+ } | undefined;
2897
+ cadence?: string | undefined;
2898
+ }>>;
2899
+ badge: z.ZodOptional<z.ZodObject<{
2900
+ label: z.ZodString;
2901
+ tone: z.ZodDefault<z.ZodEnum<["neutral", "primary", "success", "warning"]>>;
2902
+ }, "strict", z.ZodTypeAny, {
2903
+ label: string;
2904
+ tone: "neutral" | "primary" | "success" | "warning";
2905
+ }, {
2906
+ label: string;
2907
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
2908
+ }>>;
2909
+ attributes: z.ZodArray<z.ZodObject<{
2910
+ label: z.ZodString;
2911
+ value: z.ZodString;
2912
+ emphasis: z.ZodDefault<z.ZodBoolean>;
2913
+ }, "strict", z.ZodTypeAny, {
2914
+ value: string;
2915
+ label: string;
2916
+ emphasis: boolean;
2917
+ }, {
2918
+ value: string;
2919
+ label: string;
2920
+ emphasis?: boolean | undefined;
2921
+ }>, "many">;
2922
+ framing: z.ZodOptional<z.ZodString>;
2923
+ ctas: z.ZodArray<z.ZodObject<{
2924
+ label: z.ZodString;
2925
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
2926
+ target: z.ZodDefault<z.ZodEnum<["_self", "_blank"]>>;
2927
+ variant: z.ZodDefault<z.ZodEnum<["primary", "secondary", "ghost"]>>;
2928
+ actionId: z.ZodOptional<z.ZodString>;
2929
+ }, "strict", z.ZodTypeAny, {
2930
+ label: string;
2931
+ target: "_self" | "_blank";
2932
+ variant: "primary" | "secondary" | "ghost";
2933
+ href?: string | undefined;
2934
+ actionId?: string | undefined;
2935
+ }, {
2936
+ label: string;
2937
+ href?: string | undefined;
2938
+ target?: "_self" | "_blank" | undefined;
2939
+ variant?: "primary" | "secondary" | "ghost" | undefined;
2940
+ actionId?: string | undefined;
2941
+ }>, "many">;
2942
+ }, "strict", z.ZodTypeAny, {
2943
+ id: string;
2944
+ name: string;
2945
+ image: {
2946
+ src: string;
2947
+ alt: string;
2948
+ bind?: {
2949
+ type: "dom-selector";
2950
+ selector: string;
2951
+ } | {
2952
+ type: "shopify-ajax";
2953
+ handle: string;
2954
+ base?: string | undefined;
2955
+ } | {
2956
+ type: "opengraph";
2957
+ url: string;
2958
+ } | {
2959
+ type: "jsonld";
2960
+ url?: string | undefined;
2961
+ } | undefined;
2962
+ };
2963
+ attributes: {
2964
+ value: string;
2965
+ label: string;
2966
+ emphasis: boolean;
2967
+ }[];
2968
+ ctas: {
2969
+ label: string;
2970
+ target: "_self" | "_blank";
2971
+ variant: "primary" | "secondary" | "ghost";
2972
+ href?: string | undefined;
2973
+ actionId?: string | undefined;
2974
+ }[];
2975
+ tagline?: string | undefined;
2976
+ price?: {
2977
+ amount: string;
2978
+ bind?: {
2979
+ type: "dom-selector";
2980
+ selector: string;
2981
+ } | {
2982
+ type: "shopify-ajax";
2983
+ handle: string;
2984
+ base?: string | undefined;
2985
+ } | {
2986
+ type: "woocommerce-store-api";
2987
+ slug: string;
2988
+ base?: string | undefined;
2989
+ } | {
2990
+ type: "jsonld";
2991
+ url?: string | undefined;
2992
+ } | undefined;
2993
+ cadence?: string | undefined;
2994
+ } | undefined;
2995
+ badge?: {
2996
+ label: string;
2997
+ tone: "neutral" | "primary" | "success" | "warning";
2998
+ } | undefined;
2999
+ framing?: string | undefined;
3000
+ }, {
3001
+ id: string;
3002
+ name: string;
3003
+ image: {
3004
+ src: string;
3005
+ alt: string;
3006
+ bind?: {
3007
+ type: "dom-selector";
3008
+ selector: string;
3009
+ } | {
3010
+ type: "shopify-ajax";
3011
+ handle: string;
3012
+ base?: string | undefined;
3013
+ } | {
3014
+ type: "opengraph";
3015
+ url: string;
3016
+ } | {
3017
+ type: "jsonld";
3018
+ url?: string | undefined;
3019
+ } | undefined;
3020
+ };
3021
+ attributes: {
3022
+ value: string;
3023
+ label: string;
3024
+ emphasis?: boolean | undefined;
3025
+ }[];
3026
+ ctas: {
3027
+ label: string;
3028
+ href?: string | undefined;
3029
+ target?: "_self" | "_blank" | undefined;
3030
+ variant?: "primary" | "secondary" | "ghost" | undefined;
3031
+ actionId?: string | undefined;
3032
+ }[];
3033
+ tagline?: string | undefined;
3034
+ price?: {
3035
+ amount: string;
3036
+ bind?: {
3037
+ type: "dom-selector";
3038
+ selector: string;
3039
+ } | {
3040
+ type: "shopify-ajax";
3041
+ handle: string;
3042
+ base?: string | undefined;
3043
+ } | {
3044
+ type: "woocommerce-store-api";
3045
+ slug: string;
3046
+ base?: string | undefined;
3047
+ } | {
3048
+ type: "jsonld";
3049
+ url?: string | undefined;
3050
+ } | undefined;
3051
+ cadence?: string | undefined;
3052
+ } | undefined;
3053
+ badge?: {
3054
+ label: string;
3055
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
3056
+ } | undefined;
3057
+ framing?: string | undefined;
3058
+ }>;
3059
+ layout: z.ZodDefault<z.ZodEnum<["image-left", "image-right", "image-top"]>>;
3060
+ longCopy: z.ZodOptional<z.ZodString>;
3061
+ }, "strict", z.ZodTypeAny, {
3062
+ product: {
3063
+ id: string;
3064
+ name: string;
3065
+ image: {
3066
+ src: string;
3067
+ alt: string;
3068
+ bind?: {
3069
+ type: "dom-selector";
3070
+ selector: string;
3071
+ } | {
3072
+ type: "shopify-ajax";
3073
+ handle: string;
3074
+ base?: string | undefined;
3075
+ } | {
3076
+ type: "opengraph";
3077
+ url: string;
3078
+ } | {
3079
+ type: "jsonld";
3080
+ url?: string | undefined;
3081
+ } | undefined;
3082
+ };
3083
+ attributes: {
3084
+ value: string;
3085
+ label: string;
3086
+ emphasis: boolean;
3087
+ }[];
3088
+ ctas: {
3089
+ label: string;
3090
+ target: "_self" | "_blank";
3091
+ variant: "primary" | "secondary" | "ghost";
3092
+ href?: string | undefined;
3093
+ actionId?: string | undefined;
3094
+ }[];
3095
+ tagline?: string | undefined;
3096
+ price?: {
3097
+ amount: string;
3098
+ bind?: {
3099
+ type: "dom-selector";
3100
+ selector: string;
3101
+ } | {
3102
+ type: "shopify-ajax";
3103
+ handle: string;
3104
+ base?: string | undefined;
3105
+ } | {
3106
+ type: "woocommerce-store-api";
3107
+ slug: string;
3108
+ base?: string | undefined;
3109
+ } | {
3110
+ type: "jsonld";
3111
+ url?: string | undefined;
3112
+ } | undefined;
3113
+ cadence?: string | undefined;
3114
+ } | undefined;
3115
+ badge?: {
3116
+ label: string;
3117
+ tone: "neutral" | "primary" | "success" | "warning";
3118
+ } | undefined;
3119
+ framing?: string | undefined;
3120
+ };
3121
+ layout: "image-left" | "image-right" | "image-top";
3122
+ longCopy?: string | undefined;
3123
+ }, {
3124
+ product: {
3125
+ id: string;
3126
+ name: string;
3127
+ image: {
3128
+ src: string;
3129
+ alt: string;
3130
+ bind?: {
3131
+ type: "dom-selector";
3132
+ selector: string;
3133
+ } | {
3134
+ type: "shopify-ajax";
3135
+ handle: string;
3136
+ base?: string | undefined;
3137
+ } | {
3138
+ type: "opengraph";
3139
+ url: string;
3140
+ } | {
3141
+ type: "jsonld";
3142
+ url?: string | undefined;
3143
+ } | undefined;
3144
+ };
3145
+ attributes: {
3146
+ value: string;
3147
+ label: string;
3148
+ emphasis?: boolean | undefined;
3149
+ }[];
3150
+ ctas: {
3151
+ label: string;
3152
+ href?: string | undefined;
3153
+ target?: "_self" | "_blank" | undefined;
3154
+ variant?: "primary" | "secondary" | "ghost" | undefined;
3155
+ actionId?: string | undefined;
3156
+ }[];
3157
+ tagline?: string | undefined;
3158
+ price?: {
3159
+ amount: string;
3160
+ bind?: {
3161
+ type: "dom-selector";
3162
+ selector: string;
3163
+ } | {
3164
+ type: "shopify-ajax";
3165
+ handle: string;
3166
+ base?: string | undefined;
3167
+ } | {
3168
+ type: "woocommerce-store-api";
3169
+ slug: string;
3170
+ base?: string | undefined;
3171
+ } | {
3172
+ type: "jsonld";
3173
+ url?: string | undefined;
3174
+ } | undefined;
3175
+ cadence?: string | undefined;
3176
+ } | undefined;
3177
+ badge?: {
3178
+ label: string;
3179
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
3180
+ } | undefined;
3181
+ framing?: string | undefined;
3182
+ };
3183
+ layout?: "image-left" | "image-right" | "image-top" | undefined;
3184
+ longCopy?: string | undefined;
3185
+ }>;
3186
+ }, {
3187
+ readonly widget: "adaptive-product:grid";
3188
+ readonly defName: "productGridProps";
3189
+ readonly propsSchema: z.ZodObject<{
3190
+ products: z.ZodArray<z.ZodObject<{
3191
+ id: z.ZodString;
3192
+ name: z.ZodString;
3193
+ tagline: z.ZodOptional<z.ZodString>;
3194
+ image: z.ZodObject<{
3195
+ src: z.ZodEffects<z.ZodString, string, string>;
3196
+ alt: z.ZodString;
3197
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3198
+ type: z.ZodLiteral<"dom-selector">;
3199
+ selector: z.ZodString;
3200
+ }, "strict", z.ZodTypeAny, {
3201
+ type: "dom-selector";
3202
+ selector: string;
3203
+ }, {
3204
+ type: "dom-selector";
3205
+ selector: string;
3206
+ }>, z.ZodObject<{
3207
+ type: z.ZodLiteral<"shopify-ajax">;
3208
+ handle: z.ZodString;
3209
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3210
+ }, "strict", z.ZodTypeAny, {
3211
+ type: "shopify-ajax";
3212
+ handle: string;
3213
+ base?: string | undefined;
3214
+ }, {
3215
+ type: "shopify-ajax";
3216
+ handle: string;
3217
+ base?: string | undefined;
3218
+ }>, z.ZodObject<{
3219
+ type: z.ZodLiteral<"opengraph">;
3220
+ url: z.ZodEffects<z.ZodString, string, string>;
3221
+ }, "strict", z.ZodTypeAny, {
3222
+ type: "opengraph";
3223
+ url: string;
3224
+ }, {
3225
+ type: "opengraph";
3226
+ url: string;
3227
+ }>, z.ZodObject<{
3228
+ type: z.ZodLiteral<"jsonld">;
3229
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3230
+ }, "strict", z.ZodTypeAny, {
3231
+ type: "jsonld";
3232
+ url?: string | undefined;
3233
+ }, {
3234
+ type: "jsonld";
3235
+ url?: string | undefined;
3236
+ }>]>>;
3237
+ }, "strict", z.ZodTypeAny, {
3238
+ src: string;
3239
+ alt: string;
3240
+ bind?: {
3241
+ type: "dom-selector";
3242
+ selector: string;
3243
+ } | {
3244
+ type: "shopify-ajax";
3245
+ handle: string;
3246
+ base?: string | undefined;
3247
+ } | {
3248
+ type: "opengraph";
3249
+ url: string;
3250
+ } | {
3251
+ type: "jsonld";
3252
+ url?: string | undefined;
3253
+ } | undefined;
3254
+ }, {
3255
+ src: string;
3256
+ alt: string;
3257
+ bind?: {
3258
+ type: "dom-selector";
3259
+ selector: string;
3260
+ } | {
3261
+ type: "shopify-ajax";
3262
+ handle: string;
3263
+ base?: string | undefined;
3264
+ } | {
3265
+ type: "opengraph";
3266
+ url: string;
3267
+ } | {
3268
+ type: "jsonld";
3269
+ url?: string | undefined;
3270
+ } | undefined;
3271
+ }>;
3272
+ price: z.ZodOptional<z.ZodObject<{
3273
+ amount: z.ZodString;
3274
+ cadence: z.ZodOptional<z.ZodString>;
3275
+ bind: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3276
+ type: z.ZodLiteral<"dom-selector">;
3277
+ selector: z.ZodString;
3278
+ }, "strict", z.ZodTypeAny, {
3279
+ type: "dom-selector";
3280
+ selector: string;
3281
+ }, {
3282
+ type: "dom-selector";
3283
+ selector: string;
3284
+ }>, z.ZodObject<{
3285
+ type: z.ZodLiteral<"shopify-ajax">;
3286
+ handle: z.ZodString;
3287
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3288
+ }, "strict", z.ZodTypeAny, {
3289
+ type: "shopify-ajax";
3290
+ handle: string;
3291
+ base?: string | undefined;
3292
+ }, {
3293
+ type: "shopify-ajax";
3294
+ handle: string;
3295
+ base?: string | undefined;
3296
+ }>, z.ZodObject<{
3297
+ type: z.ZodLiteral<"woocommerce-store-api">;
3298
+ slug: z.ZodString;
3299
+ base: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3300
+ }, "strict", z.ZodTypeAny, {
3301
+ type: "woocommerce-store-api";
3302
+ slug: string;
3303
+ base?: string | undefined;
3304
+ }, {
3305
+ type: "woocommerce-store-api";
3306
+ slug: string;
3307
+ base?: string | undefined;
3308
+ }>, z.ZodObject<{
3309
+ type: z.ZodLiteral<"jsonld">;
3310
+ url: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3311
+ }, "strict", z.ZodTypeAny, {
3312
+ type: "jsonld";
3313
+ url?: string | undefined;
3314
+ }, {
3315
+ type: "jsonld";
3316
+ url?: string | undefined;
3317
+ }>]>>;
3318
+ }, "strict", z.ZodTypeAny, {
3319
+ amount: string;
3320
+ bind?: {
3321
+ type: "dom-selector";
3322
+ selector: string;
3323
+ } | {
3324
+ type: "shopify-ajax";
3325
+ handle: string;
3326
+ base?: string | undefined;
3327
+ } | {
3328
+ type: "woocommerce-store-api";
3329
+ slug: string;
3330
+ base?: string | undefined;
3331
+ } | {
3332
+ type: "jsonld";
3333
+ url?: string | undefined;
3334
+ } | undefined;
3335
+ cadence?: string | undefined;
3336
+ }, {
3337
+ amount: string;
3338
+ bind?: {
3339
+ type: "dom-selector";
3340
+ selector: string;
3341
+ } | {
3342
+ type: "shopify-ajax";
3343
+ handle: string;
3344
+ base?: string | undefined;
3345
+ } | {
3346
+ type: "woocommerce-store-api";
3347
+ slug: string;
3348
+ base?: string | undefined;
3349
+ } | {
3350
+ type: "jsonld";
3351
+ url?: string | undefined;
3352
+ } | undefined;
3353
+ cadence?: string | undefined;
3354
+ }>>;
3355
+ badge: z.ZodOptional<z.ZodObject<{
3356
+ label: z.ZodString;
3357
+ tone: z.ZodDefault<z.ZodEnum<["neutral", "primary", "success", "warning"]>>;
3358
+ }, "strict", z.ZodTypeAny, {
3359
+ label: string;
3360
+ tone: "neutral" | "primary" | "success" | "warning";
3361
+ }, {
3362
+ label: string;
3363
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
3364
+ }>>;
3365
+ attributes: z.ZodArray<z.ZodObject<{
3366
+ label: z.ZodString;
3367
+ value: z.ZodString;
3368
+ emphasis: z.ZodDefault<z.ZodBoolean>;
3369
+ }, "strict", z.ZodTypeAny, {
3370
+ value: string;
3371
+ label: string;
3372
+ emphasis: boolean;
3373
+ }, {
3374
+ value: string;
3375
+ label: string;
3376
+ emphasis?: boolean | undefined;
3377
+ }>, "many">;
3378
+ framing: z.ZodOptional<z.ZodString>;
3379
+ ctas: z.ZodArray<z.ZodObject<{
3380
+ label: z.ZodString;
3381
+ href: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
3382
+ target: z.ZodDefault<z.ZodEnum<["_self", "_blank"]>>;
3383
+ variant: z.ZodDefault<z.ZodEnum<["primary", "secondary", "ghost"]>>;
3384
+ actionId: z.ZodOptional<z.ZodString>;
3385
+ }, "strict", z.ZodTypeAny, {
3386
+ label: string;
3387
+ target: "_self" | "_blank";
3388
+ variant: "primary" | "secondary" | "ghost";
3389
+ href?: string | undefined;
3390
+ actionId?: string | undefined;
3391
+ }, {
3392
+ label: string;
3393
+ href?: string | undefined;
3394
+ target?: "_self" | "_blank" | undefined;
3395
+ variant?: "primary" | "secondary" | "ghost" | undefined;
3396
+ actionId?: string | undefined;
3397
+ }>, "many">;
3398
+ }, "strict", z.ZodTypeAny, {
3399
+ id: string;
3400
+ name: string;
3401
+ image: {
3402
+ src: string;
3403
+ alt: string;
3404
+ bind?: {
3405
+ type: "dom-selector";
3406
+ selector: string;
3407
+ } | {
3408
+ type: "shopify-ajax";
3409
+ handle: string;
3410
+ base?: string | undefined;
3411
+ } | {
3412
+ type: "opengraph";
3413
+ url: string;
3414
+ } | {
3415
+ type: "jsonld";
3416
+ url?: string | undefined;
3417
+ } | undefined;
3418
+ };
3419
+ attributes: {
3420
+ value: string;
3421
+ label: string;
3422
+ emphasis: boolean;
3423
+ }[];
3424
+ ctas: {
3425
+ label: string;
3426
+ target: "_self" | "_blank";
3427
+ variant: "primary" | "secondary" | "ghost";
3428
+ href?: string | undefined;
3429
+ actionId?: string | undefined;
3430
+ }[];
3431
+ tagline?: string | undefined;
3432
+ price?: {
3433
+ amount: string;
3434
+ bind?: {
3435
+ type: "dom-selector";
3436
+ selector: string;
3437
+ } | {
3438
+ type: "shopify-ajax";
3439
+ handle: string;
3440
+ base?: string | undefined;
3441
+ } | {
3442
+ type: "woocommerce-store-api";
3443
+ slug: string;
3444
+ base?: string | undefined;
3445
+ } | {
3446
+ type: "jsonld";
3447
+ url?: string | undefined;
3448
+ } | undefined;
3449
+ cadence?: string | undefined;
3450
+ } | undefined;
3451
+ badge?: {
3452
+ label: string;
3453
+ tone: "neutral" | "primary" | "success" | "warning";
3454
+ } | undefined;
3455
+ framing?: string | undefined;
3456
+ }, {
3457
+ id: string;
3458
+ name: string;
3459
+ image: {
3460
+ src: string;
3461
+ alt: string;
3462
+ bind?: {
3463
+ type: "dom-selector";
3464
+ selector: string;
3465
+ } | {
3466
+ type: "shopify-ajax";
3467
+ handle: string;
3468
+ base?: string | undefined;
3469
+ } | {
3470
+ type: "opengraph";
3471
+ url: string;
3472
+ } | {
3473
+ type: "jsonld";
3474
+ url?: string | undefined;
3475
+ } | undefined;
3476
+ };
3477
+ attributes: {
3478
+ value: string;
3479
+ label: string;
3480
+ emphasis?: boolean | undefined;
3481
+ }[];
3482
+ ctas: {
3483
+ label: string;
3484
+ href?: string | undefined;
3485
+ target?: "_self" | "_blank" | undefined;
3486
+ variant?: "primary" | "secondary" | "ghost" | undefined;
3487
+ actionId?: string | undefined;
3488
+ }[];
3489
+ tagline?: string | undefined;
3490
+ price?: {
3491
+ amount: string;
3492
+ bind?: {
3493
+ type: "dom-selector";
3494
+ selector: string;
3495
+ } | {
3496
+ type: "shopify-ajax";
3497
+ handle: string;
3498
+ base?: string | undefined;
3499
+ } | {
3500
+ type: "woocommerce-store-api";
3501
+ slug: string;
3502
+ base?: string | undefined;
3503
+ } | {
3504
+ type: "jsonld";
3505
+ url?: string | undefined;
3506
+ } | undefined;
3507
+ cadence?: string | undefined;
3508
+ } | undefined;
3509
+ badge?: {
3510
+ label: string;
3511
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
3512
+ } | undefined;
3513
+ framing?: string | undefined;
3514
+ }>, "many">;
3515
+ desktopColumns: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<2>, z.ZodLiteral<3>]>>;
3516
+ heading: z.ZodOptional<z.ZodString>;
3517
+ }, "strict", z.ZodTypeAny, {
3518
+ products: {
3519
+ id: string;
3520
+ name: string;
3521
+ image: {
3522
+ src: string;
3523
+ alt: string;
3524
+ bind?: {
3525
+ type: "dom-selector";
3526
+ selector: string;
3527
+ } | {
3528
+ type: "shopify-ajax";
3529
+ handle: string;
3530
+ base?: string | undefined;
3531
+ } | {
3532
+ type: "opengraph";
3533
+ url: string;
3534
+ } | {
3535
+ type: "jsonld";
3536
+ url?: string | undefined;
3537
+ } | undefined;
3538
+ };
3539
+ attributes: {
3540
+ value: string;
3541
+ label: string;
3542
+ emphasis: boolean;
3543
+ }[];
3544
+ ctas: {
3545
+ label: string;
3546
+ target: "_self" | "_blank";
3547
+ variant: "primary" | "secondary" | "ghost";
3548
+ href?: string | undefined;
3549
+ actionId?: string | undefined;
3550
+ }[];
3551
+ tagline?: string | undefined;
3552
+ price?: {
3553
+ amount: string;
3554
+ bind?: {
3555
+ type: "dom-selector";
3556
+ selector: string;
3557
+ } | {
3558
+ type: "shopify-ajax";
3559
+ handle: string;
3560
+ base?: string | undefined;
3561
+ } | {
3562
+ type: "woocommerce-store-api";
3563
+ slug: string;
3564
+ base?: string | undefined;
3565
+ } | {
3566
+ type: "jsonld";
3567
+ url?: string | undefined;
3568
+ } | undefined;
3569
+ cadence?: string | undefined;
3570
+ } | undefined;
3571
+ badge?: {
3572
+ label: string;
3573
+ tone: "neutral" | "primary" | "success" | "warning";
3574
+ } | undefined;
3575
+ framing?: string | undefined;
3576
+ }[];
3577
+ desktopColumns: 2 | 3;
3578
+ heading?: string | undefined;
3579
+ }, {
3580
+ products: {
3581
+ id: string;
3582
+ name: string;
3583
+ image: {
3584
+ src: string;
3585
+ alt: string;
3586
+ bind?: {
3587
+ type: "dom-selector";
3588
+ selector: string;
3589
+ } | {
3590
+ type: "shopify-ajax";
3591
+ handle: string;
3592
+ base?: string | undefined;
3593
+ } | {
3594
+ type: "opengraph";
3595
+ url: string;
3596
+ } | {
3597
+ type: "jsonld";
3598
+ url?: string | undefined;
3599
+ } | undefined;
3600
+ };
3601
+ attributes: {
3602
+ value: string;
3603
+ label: string;
3604
+ emphasis?: boolean | undefined;
3605
+ }[];
3606
+ ctas: {
3607
+ label: string;
3608
+ href?: string | undefined;
3609
+ target?: "_self" | "_blank" | undefined;
3610
+ variant?: "primary" | "secondary" | "ghost" | undefined;
3611
+ actionId?: string | undefined;
3612
+ }[];
3613
+ tagline?: string | undefined;
3614
+ price?: {
3615
+ amount: string;
3616
+ bind?: {
3617
+ type: "dom-selector";
3618
+ selector: string;
3619
+ } | {
3620
+ type: "shopify-ajax";
3621
+ handle: string;
3622
+ base?: string | undefined;
3623
+ } | {
3624
+ type: "woocommerce-store-api";
3625
+ slug: string;
3626
+ base?: string | undefined;
3627
+ } | {
3628
+ type: "jsonld";
3629
+ url?: string | undefined;
3630
+ } | undefined;
3631
+ cadence?: string | undefined;
3632
+ } | undefined;
3633
+ badge?: {
3634
+ label: string;
3635
+ tone?: "neutral" | "primary" | "success" | "warning" | undefined;
3636
+ } | undefined;
3637
+ framing?: string | undefined;
3638
+ }[];
3639
+ heading?: string | undefined;
3640
+ desktopColumns?: 2 | 3 | undefined;
3641
+ }>;
3642
+ }];
3643
+ export type { ImageBind, PriceBind, Product } from './schema-primitives';
3644
+ export { productSchema } from './schema-primitives';
3645
+ //# sourceMappingURL=schema.d.ts.map