shopify-accelerate-app 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/@types/metafields.ts +9 -0
  2. package/@types/sections.ts +1769 -0
  3. package/@types/settings.ts +3 -0
  4. package/@types/shopify.ts +1871 -0
  5. package/@types/types.d.ts +17 -0
  6. package/README.md +2 -0
  7. package/package.json +111 -0
  8. package/shopify-accelerate-app.ts +394 -0
  9. package/shopify.graphql +48866 -0
  10. package/src/esbuild/esbuild.ts +246 -0
  11. package/src/scaffold-theme/build-theme.ts +24 -0
  12. package/src/scaffold-theme/generate-asset-files.ts +48 -0
  13. package/src/scaffold-theme/generate-base-types.ts +23 -0
  14. package/src/scaffold-theme/generate-block-files.ts +194 -0
  15. package/src/scaffold-theme/generate-blocks-types.ts +242 -0
  16. package/src/scaffold-theme/generate-config-files.ts +34 -0
  17. package/src/scaffold-theme/generate-liquid-files.ts +995 -0
  18. package/src/scaffold-theme/generate-schema-locales.ts +195 -0
  19. package/src/scaffold-theme/generate-schema-variables.ts +380 -0
  20. package/src/scaffold-theme/generate-section-files.ts +303 -0
  21. package/src/scaffold-theme/generate-section-preset-files.ts +296 -0
  22. package/src/scaffold-theme/generate-section-types.ts +339 -0
  23. package/src/scaffold-theme/generate-setting-types.ts +123 -0
  24. package/src/scaffold-theme/generate-settings-file.ts +103 -0
  25. package/src/scaffold-theme/parse-files.ts +466 -0
  26. package/src/scaffold-theme/parse-locales.ts +98 -0
  27. package/src/shopify-cli/pull.ts +103 -0
  28. package/src/tailwind/postcss.config.js +8 -0
  29. package/src/tailwind/tailwind-watch.ts +133 -0
  30. package/src/tailwind/tailwind.config.js +261 -0
  31. package/src/telemetry/telemetry.ts +84 -0
  32. package/src/templates/.env.template +12 -0
  33. package/src/templates/shopify.theme.toml +9 -0
  34. package/src/utils/capitalize.ts +3 -0
  35. package/src/utils/delay.ts +3 -0
  36. package/src/utils/fs.ts +87 -0
  37. package/src/utils/is-object.ts +3 -0
  38. package/src/utils/json.ts +8 -0
  39. package/src/utils/to-camel-case.ts +6 -0
  40. package/src/utils/to-kebab-case.ts +6 -0
  41. package/src/utils/to-pascal-case.ts +12 -0
  42. package/src/utils/to-snake-case.ts +45 -0
  43. package/src/validate-cli-options.ts +281 -0
  44. package/src/watch-headless/watch-headless.ts +81 -0
  45. package/src/watch-theme/watch-theme.ts +84 -0
  46. package/tsconfig.json +82 -0
  47. package/tsconfig.tsbuildinfo +1 -0
@@ -0,0 +1,1769 @@
1
+ import { _Image_liquid, _Product_liquid, _Linklist_liquid, _Blog_liquid, _Collection_liquid, _Color_liquid, _Page_liquid, _Article_liquid, _Font_liquid } from "types/shopify";
2
+
3
+ export type BackgroundSection = {
4
+ blocks: BackgroundBlocks[];
5
+ id: string;
6
+ type: "background";
7
+ };
8
+
9
+ export type BackgroundBlocks = {
10
+ id: string;
11
+ settings: {
12
+ /** Input type: range */
13
+ height: number;
14
+ /** Input type: range */
15
+ marginTop: number;
16
+ /** Input type: range */
17
+ opacity: number;
18
+ /** Input type: radio */
19
+ type: "all" | "mobile" | "mobile_tablet" | "tablet" | "tablet_desktop" | "desktop";
20
+ /** Input type: color_background */
21
+ color?: string;
22
+ /** Input type: textarea */
23
+ css?: string;
24
+ /** Input type: image_picker */
25
+ image?: _Image_liquid;
26
+ /** Input type: textarea */
27
+ svg?: string;
28
+ /** Input type: text */
29
+ title?: string;
30
+ };
31
+ type: "bg";
32
+ };
33
+
34
+ export type BlockquoteSection = {
35
+ id: string;
36
+ settings: {
37
+ /** Input type: checkbox */
38
+ quotation_marks: boolean;
39
+ /** Input type: text */
40
+ author?: string;
41
+ /** Input type: text */
42
+ job_title?: string;
43
+ /** Input type: textarea */
44
+ quote?: string;
45
+ };
46
+ type: "blockquote";
47
+ };
48
+
49
+ export type ContactSection = {
50
+ blocks: ContactBlocks[];
51
+ id: string;
52
+ settings: {
53
+ /** Input type: richtext */
54
+ address?: `<p${string}</p>`;
55
+ /** Input type: text */
56
+ contact_title?: string;
57
+ /** Input type: richtext */
58
+ email?: `<p${string}</p>`;
59
+ /** Input type: richtext */
60
+ hours?: `<p${string}</p>`;
61
+ /** Input type: richtext */
62
+ info_paragraph?: `<p${string}</p>`;
63
+ /** Input type: text */
64
+ info_title?: string;
65
+ /** Input type: richtext */
66
+ phone?: `<p${string}</p>`;
67
+ /** Input type: text */
68
+ sub_title?: string;
69
+ /** Input type: richtext */
70
+ submit_paragraph?: `<p${string}</p>`;
71
+ /** Input type: richtext */
72
+ success_paragraph?: `<p${string}</p>`;
73
+ /** Input type: text */
74
+ title?: string;
75
+ };
76
+ type: "contact";
77
+ };
78
+
79
+ export type ContactBlocks =
80
+ | {
81
+ id: string;
82
+ settings: {
83
+ /** Input type: select */
84
+ autocomplete:
85
+ | "off"
86
+ | "name"
87
+ | "honorific-prefix"
88
+ | "given-name"
89
+ | "additional-name"
90
+ | "family-name"
91
+ | "honorific-suffix"
92
+ | "nickname"
93
+ | "email"
94
+ | "username"
95
+ | "new-password"
96
+ | "current-password"
97
+ | "one-time-code"
98
+ | "organization-title"
99
+ | "organization"
100
+ | "street-address"
101
+ | "address-line1, address-line2, address-line3"
102
+ | "address-level4"
103
+ | "address-level3"
104
+ | "address-level2"
105
+ | "address-level1"
106
+ | "country"
107
+ | "country-name"
108
+ | "postal-code"
109
+ | "cc-name"
110
+ | "cc-given-name"
111
+ | "cc-additional-name"
112
+ | "cc-family-name"
113
+ | "cc-number"
114
+ | "cc-exp"
115
+ | "cc-exp-month"
116
+ | "cc-exp-year"
117
+ | "cc-csc"
118
+ | "cc-type"
119
+ | "transaction-currency"
120
+ | "transaction-amount"
121
+ | "language"
122
+ | "bday"
123
+ | "bday-day"
124
+ | "bday-month"
125
+ | "bday-year"
126
+ | "sex"
127
+ | "tel"
128
+ | "tel-country-code"
129
+ | "tel-national"
130
+ | "tel-area-code"
131
+ | "tel-local"
132
+ | "tel-extension"
133
+ | "impp"
134
+ | "url"
135
+ | "photo";
136
+ /** Input type: checkbox */
137
+ required: boolean;
138
+ /** Input type: radio */
139
+ size: "half" | "full";
140
+ /** Input type: select */
141
+ type: "text" | "textarea" | "email" | "password" | "number" | "tel" | "url" | "date";
142
+ /** Input type: textarea */
143
+ error_message?: string;
144
+ /** Input type: text */
145
+ placeholder?: string;
146
+ /** Input type: text */
147
+ title?: string;
148
+ };
149
+ type: "basic";
150
+ }
151
+ | {
152
+ id: string;
153
+ settings: {
154
+ /** Input type: select */
155
+ autocomplete:
156
+ | "off"
157
+ | "name"
158
+ | "honorific-prefix"
159
+ | "given-name"
160
+ | "additional-name"
161
+ | "family-name"
162
+ | "honorific-suffix"
163
+ | "nickname"
164
+ | "email"
165
+ | "username"
166
+ | "new-password"
167
+ | "current-password"
168
+ | "one-time-code"
169
+ | "organization-title"
170
+ | "organization"
171
+ | "street-address"
172
+ | "address-line1, address-line2, address-line3"
173
+ | "address-level4"
174
+ | "address-level3"
175
+ | "address-level2"
176
+ | "address-level1"
177
+ | "country"
178
+ | "country-name"
179
+ | "postal-code"
180
+ | "cc-name"
181
+ | "cc-given-name"
182
+ | "cc-additional-name"
183
+ | "cc-family-name"
184
+ | "cc-number"
185
+ | "cc-exp"
186
+ | "cc-exp-month"
187
+ | "cc-exp-year"
188
+ | "cc-csc"
189
+ | "cc-type"
190
+ | "transaction-currency"
191
+ | "transaction-amount"
192
+ | "language"
193
+ | "bday"
194
+ | "bday-day"
195
+ | "bday-month"
196
+ | "bday-year"
197
+ | "sex"
198
+ | "tel"
199
+ | "tel-country-code"
200
+ | "tel-national"
201
+ | "tel-area-code"
202
+ | "tel-local"
203
+ | "tel-extension"
204
+ | "impp"
205
+ | "url"
206
+ | "photo";
207
+ /** Input type: range */
208
+ lines: number;
209
+ /** Input type: checkbox */
210
+ required: boolean;
211
+ /** Input type: radio */
212
+ size: "half" | "full";
213
+ /** Input type: textarea */
214
+ error_message?: string;
215
+ /** Input type: text */
216
+ placeholder?: string;
217
+ /** Input type: text */
218
+ title?: string;
219
+ };
220
+ type: "textarea";
221
+ }
222
+ | {
223
+ id: string;
224
+ settings: {
225
+ /** Input type: checkbox */
226
+ required: boolean;
227
+ /** Input type: radio */
228
+ type: "radio" | "checkbox";
229
+ /** Input type: textarea */
230
+ error_message?: string;
231
+ /** Input type: textarea */
232
+ options?: string;
233
+ /** Input type: text */
234
+ title?: string;
235
+ };
236
+ type: "group";
237
+ }
238
+ | {
239
+ id: string;
240
+ settings: {
241
+ /** Input type: checkbox */
242
+ required: boolean;
243
+ /** Input type: radio */
244
+ size: "half" | "full";
245
+ /** Input type: textarea */
246
+ error_message?: string;
247
+ /** Input type: textarea */
248
+ options?: string;
249
+ /** Input type: text */
250
+ title?: string;
251
+ };
252
+ type: "select";
253
+ }
254
+ | {
255
+ id: string;
256
+ type: "separator";
257
+ };
258
+
259
+ export type FeatureCarouselSection = {
260
+ blocks: FeatureCarouselBlocks[];
261
+ id: string;
262
+ settings: {
263
+ /** Input type: select */
264
+ position: "left" | "center" | "right";
265
+ /** Input type: text */
266
+ cta1?: string;
267
+ /** Input type: url */
268
+ cta1_link?: string;
269
+ /** Input type: text */
270
+ cta2?: string;
271
+ /** Input type: url */
272
+ cta2_link?: string;
273
+ /** Input type: product_list */
274
+ features?: _Product_liquid[];
275
+ /** Input type: richtext */
276
+ paragraph?: `<p${string}</p>`;
277
+ /** Input type: text */
278
+ pre_title?: string;
279
+ /** Input type: text */
280
+ title?: string;
281
+ };
282
+ type: "feature-carousel";
283
+ };
284
+
285
+ export type FeatureCarouselBlocks = {
286
+ id: string;
287
+ settings: {
288
+ /** Input type: image_picker */
289
+ image?: _Image_liquid;
290
+ /** Input type: url */
291
+ link?: string;
292
+ /** Input type: textarea */
293
+ paragraph?: string;
294
+ /** Input type: text */
295
+ title?: string;
296
+ };
297
+ type: "manual-feature";
298
+ };
299
+
300
+ export type FeatureListSection = {
301
+ blocks: FeatureListBlocks[];
302
+ id: string;
303
+ settings: {
304
+ /** Input type: select */
305
+ position: "left" | "center" | "right";
306
+ /** Input type: text */
307
+ cta1?: string;
308
+ /** Input type: url */
309
+ cta1_link?: string;
310
+ /** Input type: text */
311
+ cta2?: string;
312
+ /** Input type: url */
313
+ cta2_link?: string;
314
+ /** Input type: richtext */
315
+ paragraph?: `<p${string}</p>`;
316
+ /** Input type: text */
317
+ pre_title?: string;
318
+ /** Input type: text */
319
+ title?: string;
320
+ };
321
+ type: "feature-list";
322
+ };
323
+
324
+ export type FeatureListBlocks = {
325
+ id: string;
326
+ settings: {
327
+ /** Input type: select */
328
+ icon:
329
+ | "BadgeCheckIcon"
330
+ | "CameraIcon"
331
+ | "ChatAlt2Icon"
332
+ | "ColorSwatchIcon"
333
+ | "CloudIcon"
334
+ | "DesktopComputerIcon"
335
+ | "CubeTransparentIcon"
336
+ | "DeviceMobileIcon"
337
+ | "DeviceTabletIcon"
338
+ | "CursorClickIcon"
339
+ | "HeartIcon"
340
+ | "KeyIcon"
341
+ | "LightningBoltIcon"
342
+ | "LinkIcon"
343
+ | "LightBulbIcon"
344
+ | "LockClosedIcon"
345
+ | "LockOpenIcon"
346
+ | "PaperAirplaneIcon"
347
+ | "ShoppingBagIcon"
348
+ | "ShoppingCartIcon"
349
+ | "SparklesIcon"
350
+ | "TagIcon"
351
+ | "TruckIcon"
352
+ | "UserGroupIcon"
353
+ | "AnnotationIcon"
354
+ | "MailIcon"
355
+ | "MailOpenIcon"
356
+ | "brutalist"
357
+ | "colors"
358
+ | "elegant"
359
+ | "filters"
360
+ | "grid"
361
+ | "playful"
362
+ | "shadows"
363
+ | "simple"
364
+ | "sizing"
365
+ | "transforms"
366
+ | "typography"
367
+ | "ui-avatar"
368
+ | "ui-code"
369
+ | "ui-cursor"
370
+ | "ui-mobile"
371
+ | "ui-responsive"
372
+ | "ui-stack"
373
+ | "ui-1"
374
+ | "ui-2"
375
+ | "ui-3"
376
+ | "ui-4"
377
+ | "CalendarLight"
378
+ | "ChatLight"
379
+ | "Code"
380
+ | "DeliveryLight"
381
+ | "ExchangeSimple"
382
+ | "FastCheckoutLight"
383
+ | "GiftCardLight"
384
+ | "PlanetLight"
385
+ | "Resize"
386
+ | "ReturnsLight"
387
+ | "ShippingSimple"
388
+ | "Stack"
389
+ | "WarrantyLight"
390
+ | "WarrantySimple"
391
+ | "server-2"
392
+ | "server-8"
393
+ | "up-align-1-light"
394
+ | "columns-1-light"
395
+ | "laptop-star-light"
396
+ | "squares-1-light"
397
+ | "cubes-light";
398
+ /** Input type: richtext */
399
+ paragraph?: `<p${string}</p>`;
400
+ /** Input type: richtext */
401
+ paragraph_old?: `<p${string}</p>`;
402
+ /** Input type: text */
403
+ title?: string;
404
+ };
405
+ type: "feature";
406
+ };
407
+
408
+ export type FooterSection = {
409
+ blocks: FooterBlocks[];
410
+ id: string;
411
+ settings: {
412
+ /** Input type: url */
413
+ facebook?: string;
414
+ /** Input type: url */
415
+ github?: string;
416
+ /** Input type: url */
417
+ google?: string;
418
+ /** Input type: url */
419
+ instagram?: string;
420
+ };
421
+ type: "footer";
422
+ };
423
+
424
+ export type FooterBlocks = {
425
+ id: string;
426
+ settings: {
427
+ /** Input type: link_list */
428
+ menu?: _Linklist_liquid;
429
+ };
430
+ type: "menu";
431
+ };
432
+
433
+ export type HeaderSection = {
434
+ blocks: HeaderBlocks[];
435
+ id: string;
436
+ settings: {
437
+ /** Input type: image_picker */
438
+ logo?: _Image_liquid;
439
+ /** Input type: link_list */
440
+ menu?: _Linklist_liquid;
441
+ };
442
+ type: "header";
443
+ };
444
+
445
+ export type HeaderBlocks =
446
+ | {
447
+ id: string;
448
+ settings: {
449
+ /** Input type: text */
450
+ handle?: string;
451
+ /** Input type: product_list */
452
+ menu_items?: _Product_liquid[];
453
+ };
454
+ type: "dropdown_menu_features";
455
+ }
456
+ | {
457
+ id: string;
458
+ settings: {
459
+ /** Input type: text */
460
+ handle?: string;
461
+ /** Input type: blog */
462
+ menu_items?: _Blog_liquid;
463
+ };
464
+ type: "dropdown_menu_carousel";
465
+ }
466
+ | {
467
+ id: string;
468
+ settings: {
469
+ /** Input type: text */
470
+ handle?: string;
471
+ /** Input type: image_picker */
472
+ image_1?: _Image_liquid;
473
+ /** Input type: image_picker */
474
+ image_2?: _Image_liquid;
475
+ /** Input type: url */
476
+ link_1?: string;
477
+ /** Input type: url */
478
+ link_2?: string;
479
+ /** Input type: text */
480
+ title_1?: string;
481
+ /** Input type: text */
482
+ title_2?: string;
483
+ };
484
+ type: "dropdown_menu_portfolio";
485
+ };
486
+
487
+ export type HeadingSection = {
488
+ id: string;
489
+ settings: {
490
+ /** Input type: select */
491
+ position: "left" | "center" | "right";
492
+ /** Input type: text */
493
+ cta1?: string;
494
+ /** Input type: url */
495
+ cta1_link?: string;
496
+ /** Input type: text */
497
+ cta2?: string;
498
+ /** Input type: url */
499
+ cta2_link?: string;
500
+ /** Input type: richtext */
501
+ paragraph?: `<p${string}</p>`;
502
+ /** Input type: text */
503
+ pre_title?: string;
504
+ /** Input type: text */
505
+ title?: string;
506
+ };
507
+ type: "heading";
508
+ };
509
+
510
+ export type HeroWithFeaturesSection = {
511
+ blocks: HeroWithFeaturesBlocks[];
512
+ id: string;
513
+ settings: {
514
+ /** Input type: text */
515
+ cta1?: string;
516
+ /** Input type: url */
517
+ cta1_link?: string;
518
+ /** Input type: text */
519
+ cta2?: string;
520
+ /** Input type: url */
521
+ cta2_link?: string;
522
+ /** Input type: image_picker */
523
+ image_1?: _Image_liquid;
524
+ /** Input type: image_picker */
525
+ image_2?: _Image_liquid;
526
+ /** Input type: image_picker */
527
+ image_3?: _Image_liquid;
528
+ /** Input type: richtext */
529
+ paragraph?: `<p${string}</p>`;
530
+ /** Input type: text */
531
+ pre_title?: string;
532
+ /** Input type: product_list */
533
+ tech?: _Product_liquid[];
534
+ /** Input type: text */
535
+ title?: string;
536
+ };
537
+ type: "hero-with-features";
538
+ };
539
+
540
+ export type HeroWithFeaturesBlocks = {
541
+ id: string;
542
+ settings: {
543
+ /** Input type: select */
544
+ icon:
545
+ | "BadgeCheckIcon"
546
+ | "CameraIcon"
547
+ | "ChatAlt2Icon"
548
+ | "ColorSwatchIcon"
549
+ | "CloudIcon"
550
+ | "DesktopComputerIcon"
551
+ | "CubeTransparentIcon"
552
+ | "DeviceMobileIcon"
553
+ | "DeviceTabletIcon"
554
+ | "CursorClickIcon"
555
+ | "HeartIcon"
556
+ | "KeyIcon"
557
+ | "LightningBoltIcon"
558
+ | "LinkIcon"
559
+ | "LightBulbIcon"
560
+ | "LockClosedIcon"
561
+ | "LockOpenIcon"
562
+ | "PaperAirplaneIcon"
563
+ | "ShoppingBagIcon"
564
+ | "ShoppingCartIcon"
565
+ | "SparklesIcon"
566
+ | "TagIcon"
567
+ | "TruckIcon"
568
+ | "UserGroupIcon"
569
+ | "AnnotationIcon"
570
+ | "MailIcon"
571
+ | "MailOpenIcon"
572
+ | "brutalist"
573
+ | "colors"
574
+ | "elegant"
575
+ | "filters"
576
+ | "grid"
577
+ | "playful"
578
+ | "shadows"
579
+ | "simple"
580
+ | "sizing"
581
+ | "transforms"
582
+ | "typography"
583
+ | "ui-avatar"
584
+ | "ui-code"
585
+ | "ui-cursor"
586
+ | "ui-mobile"
587
+ | "ui-responsive"
588
+ | "ui-stack"
589
+ | "ui-1"
590
+ | "ui-2"
591
+ | "ui-3"
592
+ | "ui-4"
593
+ | "CalendarLight"
594
+ | "ChatLight"
595
+ | "Code"
596
+ | "DeliveryLight"
597
+ | "ExchangeSimple"
598
+ | "FastCheckoutLight"
599
+ | "GiftCardLight"
600
+ | "PlanetLight"
601
+ | "Resize"
602
+ | "ReturnsLight"
603
+ | "ShippingSimple"
604
+ | "Stack"
605
+ | "WarrantyLight"
606
+ | "WarrantySimple"
607
+ | "server-2"
608
+ | "server-8"
609
+ | "up-align-1-light"
610
+ | "columns-1-light"
611
+ | "laptop-star-light"
612
+ | "squares-1-light"
613
+ | "cubes-light";
614
+ /** Input type: textarea */
615
+ paragraph?: string;
616
+ /** Input type: text */
617
+ title?: string;
618
+ };
619
+ type: "feature";
620
+ };
621
+
622
+ export type HeroSection = {
623
+ id: string;
624
+ settings: {
625
+ /** Input type: image_picker */
626
+ image?: _Image_liquid;
627
+ /** Input type: richtext */
628
+ list?: `<p${string}</p>`;
629
+ /** Input type: text */
630
+ list_title?: string;
631
+ /** Input type: richtext */
632
+ paragraph?: `<p${string}</p>`;
633
+ /** Input type: text */
634
+ pre_title?: string;
635
+ /** Input type: text */
636
+ title?: string;
637
+ };
638
+ type: "hero";
639
+ };
640
+
641
+ export type ImageCarouselSection = {
642
+ blocks: ImageCarouselBlocks[];
643
+ id: string;
644
+ settings: {
645
+ /** Input type: checkbox */
646
+ animate: boolean;
647
+ /** Input type: range */
648
+ animation_duration: number;
649
+ /** Input type: select */
650
+ position: "left" | "center" | "right";
651
+ /** Input type: blog */
652
+ blog?: _Blog_liquid;
653
+ /** Input type: collection */
654
+ collection?: _Collection_liquid;
655
+ /** Input type: text */
656
+ cta1?: string;
657
+ /** Input type: url */
658
+ cta1_link?: string;
659
+ /** Input type: text */
660
+ cta2?: string;
661
+ /** Input type: url */
662
+ cta2_link?: string;
663
+ /** Input type: richtext */
664
+ paragraph?: `<p${string}</p>`;
665
+ /** Input type: text */
666
+ pre_title?: string;
667
+ /** Input type: product_list */
668
+ products?: _Product_liquid[];
669
+ /** Input type: text */
670
+ title?: string;
671
+ };
672
+ type: "image-carousel";
673
+ };
674
+
675
+ export type ImageCarouselBlocks = {
676
+ id: string;
677
+ settings: {
678
+ /** Input type: image_picker */
679
+ image?: _Image_liquid;
680
+ /** Input type: url */
681
+ link?: string;
682
+ /** Input type: text */
683
+ title?: string;
684
+ };
685
+ type: "manual-image";
686
+ };
687
+
688
+ export type ImageGallerySection = {
689
+ id: string;
690
+ settings: {
691
+ /** Input type: image_picker */
692
+ image1?: _Image_liquid;
693
+ /** Input type: image_picker */
694
+ image2?: _Image_liquid;
695
+ /** Input type: image_picker */
696
+ image3?: _Image_liquid;
697
+ /** Input type: image_picker */
698
+ image4?: _Image_liquid;
699
+ /** Input type: image_picker */
700
+ image5?: _Image_liquid;
701
+ /** Input type: image_picker */
702
+ image6?: _Image_liquid;
703
+ /** Input type: text */
704
+ title1?: string;
705
+ /** Input type: text */
706
+ title2?: string;
707
+ /** Input type: text */
708
+ title3?: string;
709
+ /** Input type: text */
710
+ title4?: string;
711
+ /** Input type: text */
712
+ title5?: string;
713
+ /** Input type: text */
714
+ title6?: string;
715
+ };
716
+ type: "image-gallery";
717
+ };
718
+
719
+ export type ImageTextSection = {
720
+ id: string;
721
+ settings: {
722
+ /** Input type: select */
723
+ aspect_desktop: "auto" | "9-16" | "1-1" | "4-3" | "3-2" | "16-9" | "21-9";
724
+ /** Input type: select */
725
+ aspect_mobile: "hidden" | "9-16" | "1-1" | "4-3" | "3-2" | "16-9" | "21-9";
726
+ /** Input type: checkbox */
727
+ fit_height: boolean;
728
+ /** Input type: radio */
729
+ position: "left" | "right";
730
+ /** Input type: image_picker */
731
+ image?: _Image_liquid;
732
+ /** Input type: richtext */
733
+ list?: `<p${string}</p>`;
734
+ /** Input type: text */
735
+ list_title?: string;
736
+ /** Input type: richtext */
737
+ paragraph?: `<p${string}</p>`;
738
+ /** Input type: text */
739
+ pre_title?: string;
740
+ /** Input type: text */
741
+ title?: string;
742
+ };
743
+ type: "image-text";
744
+ };
745
+
746
+ export type InfoCardsSection = {
747
+ blocks: InfoCardsBlocks[];
748
+ id: string;
749
+ settings: {
750
+ /** Input type: product_list */
751
+ content_list?: _Product_liquid[];
752
+ /** Input type: text */
753
+ pre_title?: string;
754
+ /** Input type: text */
755
+ title?: string;
756
+ };
757
+ type: "info-cards";
758
+ };
759
+
760
+ export type InfoCardsBlocks = {
761
+ id: string;
762
+ settings: {
763
+ /** Input type: richtext */
764
+ paragraph?: `<p${string}</p>`;
765
+ /** Input type: textarea */
766
+ svg?: string;
767
+ /** Input type: text */
768
+ title?: string;
769
+ };
770
+ type: "manual-info-card";
771
+ };
772
+
773
+ export type LogoBannerSection = {
774
+ blocks: LogoBannerBlocks[];
775
+ id: string;
776
+ settings: {
777
+ /** Input type: checkbox */
778
+ animate: boolean;
779
+ /** Input type: range */
780
+ animation_duration: number;
781
+ /** Input type: range */
782
+ height: number;
783
+ /** Input type: collection */
784
+ collection?: _Collection_liquid;
785
+ /** Input type: product_list */
786
+ products?: _Product_liquid[];
787
+ /** Input type: text */
788
+ title?: string;
789
+ };
790
+ type: "logo-banner";
791
+ };
792
+
793
+ export type LogoBannerBlocks =
794
+ | {
795
+ id: string;
796
+ settings: {
797
+ /** Input type: textarea */
798
+ svg?: string;
799
+ /** Input type: text */
800
+ title?: string;
801
+ };
802
+ type: "manual-svg";
803
+ }
804
+ | {
805
+ id: string;
806
+ settings: {
807
+ /** Input type: image_picker */
808
+ image?: _Image_liquid;
809
+ /** Input type: text */
810
+ title?: string;
811
+ };
812
+ type: "manual-image";
813
+ };
814
+
815
+ export type PageSettingsSection = {
816
+ id: string;
817
+ settings: {
818
+ /** Input type: color */
819
+ color_accent?: _Color_liquid;
820
+ /** Input type: color */
821
+ color_accent_contrast?: _Color_liquid;
822
+ /** Input type: color */
823
+ color_accent_contrast_dark?: _Color_liquid;
824
+ /** Input type: color */
825
+ color_accent_dark?: _Color_liquid;
826
+ /** Input type: color */
827
+ color_accent_secondary?: _Color_liquid;
828
+ /** Input type: color */
829
+ color_accent_secondary_contrast?: _Color_liquid;
830
+ /** Input type: color */
831
+ color_accent_secondary_contrast_dark?: _Color_liquid;
832
+ /** Input type: color */
833
+ color_accent_secondary_dark?: _Color_liquid;
834
+ };
835
+ type: "page-settings";
836
+ };
837
+
838
+ export type SpecListSection = {
839
+ blocks: SpecListBlocks[];
840
+ id: string;
841
+ settings: {
842
+ /** Input type: checkbox */
843
+ blur_bg: boolean;
844
+ /** Input type: radio */
845
+ color_toggle: "dark" | "light";
846
+ /** Input type: color_background */
847
+ color_bg?: string;
848
+ };
849
+ type: "spec-list";
850
+ };
851
+
852
+ export type SpecListBlocks =
853
+ | {
854
+ id: string;
855
+ settings: {
856
+ /** Input type: select */
857
+ position: "left" | "center" | "right";
858
+ /** Input type: text */
859
+ cta1?: string;
860
+ /** Input type: url */
861
+ cta1_link?: string;
862
+ /** Input type: text */
863
+ cta2?: string;
864
+ /** Input type: url */
865
+ cta2_link?: string;
866
+ /** Input type: richtext */
867
+ paragraph?: `<p${string}</p>`;
868
+ /** Input type: text */
869
+ pre_title?: string;
870
+ /** Input type: text */
871
+ title?: string;
872
+ };
873
+ type: "heading";
874
+ }
875
+ | {
876
+ id: string;
877
+ settings: {
878
+ /** Input type: select */
879
+ icon1:
880
+ | "BadgeCheckIcon"
881
+ | "CameraIcon"
882
+ | "ChatAlt2Icon"
883
+ | "ColorSwatchIcon"
884
+ | "CloudIcon"
885
+ | "DesktopComputerIcon"
886
+ | "CubeTransparentIcon"
887
+ | "DeviceMobileIcon"
888
+ | "DeviceTabletIcon"
889
+ | "CursorClickIcon"
890
+ | "HeartIcon"
891
+ | "KeyIcon"
892
+ | "LightningBoltIcon"
893
+ | "LinkIcon"
894
+ | "LightBulbIcon"
895
+ | "LockClosedIcon"
896
+ | "LockOpenIcon"
897
+ | "PaperAirplaneIcon"
898
+ | "ShoppingBagIcon"
899
+ | "ShoppingCartIcon"
900
+ | "SparklesIcon"
901
+ | "TagIcon"
902
+ | "TruckIcon"
903
+ | "UserGroupIcon"
904
+ | "AnnotationIcon"
905
+ | "MailIcon"
906
+ | "MailOpenIcon"
907
+ | "brutalist"
908
+ | "colors"
909
+ | "elegant"
910
+ | "filters"
911
+ | "grid"
912
+ | "playful"
913
+ | "shadows"
914
+ | "simple"
915
+ | "sizing"
916
+ | "transforms"
917
+ | "typography"
918
+ | "ui-avatar"
919
+ | "ui-code"
920
+ | "ui-cursor"
921
+ | "ui-mobile"
922
+ | "ui-responsive"
923
+ | "ui-stack"
924
+ | "ui-1"
925
+ | "ui-2"
926
+ | "ui-3"
927
+ | "ui-4"
928
+ | "CalendarLight"
929
+ | "ChatLight"
930
+ | "Code"
931
+ | "DeliveryLight"
932
+ | "ExchangeSimple"
933
+ | "FastCheckoutLight"
934
+ | "GiftCardLight"
935
+ | "PlanetLight"
936
+ | "Resize"
937
+ | "ReturnsLight"
938
+ | "ShippingSimple"
939
+ | "Stack"
940
+ | "WarrantyLight"
941
+ | "WarrantySimple"
942
+ | "server-2"
943
+ | "server-8"
944
+ | "up-align-1-light"
945
+ | "columns-1-light"
946
+ | "laptop-star-light"
947
+ | "squares-1-light"
948
+ | "cubes-light";
949
+ /** Input type: select */
950
+ icon2:
951
+ | "BadgeCheckIcon"
952
+ | "CameraIcon"
953
+ | "ChatAlt2Icon"
954
+ | "ColorSwatchIcon"
955
+ | "CloudIcon"
956
+ | "DesktopComputerIcon"
957
+ | "CubeTransparentIcon"
958
+ | "DeviceMobileIcon"
959
+ | "DeviceTabletIcon"
960
+ | "CursorClickIcon"
961
+ | "HeartIcon"
962
+ | "KeyIcon"
963
+ | "LightningBoltIcon"
964
+ | "LinkIcon"
965
+ | "LightBulbIcon"
966
+ | "LockClosedIcon"
967
+ | "LockOpenIcon"
968
+ | "PaperAirplaneIcon"
969
+ | "ShoppingBagIcon"
970
+ | "ShoppingCartIcon"
971
+ | "SparklesIcon"
972
+ | "TagIcon"
973
+ | "TruckIcon"
974
+ | "UserGroupIcon"
975
+ | "AnnotationIcon"
976
+ | "MailIcon"
977
+ | "MailOpenIcon"
978
+ | "brutalist"
979
+ | "colors"
980
+ | "elegant"
981
+ | "filters"
982
+ | "grid"
983
+ | "playful"
984
+ | "shadows"
985
+ | "simple"
986
+ | "sizing"
987
+ | "transforms"
988
+ | "typography"
989
+ | "ui-avatar"
990
+ | "ui-code"
991
+ | "ui-cursor"
992
+ | "ui-mobile"
993
+ | "ui-responsive"
994
+ | "ui-stack"
995
+ | "ui-1"
996
+ | "ui-2"
997
+ | "ui-3"
998
+ | "ui-4"
999
+ | "CalendarLight"
1000
+ | "ChatLight"
1001
+ | "Code"
1002
+ | "DeliveryLight"
1003
+ | "ExchangeSimple"
1004
+ | "FastCheckoutLight"
1005
+ | "GiftCardLight"
1006
+ | "PlanetLight"
1007
+ | "Resize"
1008
+ | "ReturnsLight"
1009
+ | "ShippingSimple"
1010
+ | "Stack"
1011
+ | "WarrantyLight"
1012
+ | "WarrantySimple"
1013
+ | "server-2"
1014
+ | "server-8"
1015
+ | "up-align-1-light"
1016
+ | "columns-1-light"
1017
+ | "laptop-star-light"
1018
+ | "squares-1-light"
1019
+ | "cubes-light";
1020
+ /** Input type: select */
1021
+ icon3:
1022
+ | "BadgeCheckIcon"
1023
+ | "CameraIcon"
1024
+ | "ChatAlt2Icon"
1025
+ | "ColorSwatchIcon"
1026
+ | "CloudIcon"
1027
+ | "DesktopComputerIcon"
1028
+ | "CubeTransparentIcon"
1029
+ | "DeviceMobileIcon"
1030
+ | "DeviceTabletIcon"
1031
+ | "CursorClickIcon"
1032
+ | "HeartIcon"
1033
+ | "KeyIcon"
1034
+ | "LightningBoltIcon"
1035
+ | "LinkIcon"
1036
+ | "LightBulbIcon"
1037
+ | "LockClosedIcon"
1038
+ | "LockOpenIcon"
1039
+ | "PaperAirplaneIcon"
1040
+ | "ShoppingBagIcon"
1041
+ | "ShoppingCartIcon"
1042
+ | "SparklesIcon"
1043
+ | "TagIcon"
1044
+ | "TruckIcon"
1045
+ | "UserGroupIcon"
1046
+ | "AnnotationIcon"
1047
+ | "MailIcon"
1048
+ | "MailOpenIcon"
1049
+ | "brutalist"
1050
+ | "colors"
1051
+ | "elegant"
1052
+ | "filters"
1053
+ | "grid"
1054
+ | "playful"
1055
+ | "shadows"
1056
+ | "simple"
1057
+ | "sizing"
1058
+ | "transforms"
1059
+ | "typography"
1060
+ | "ui-avatar"
1061
+ | "ui-code"
1062
+ | "ui-cursor"
1063
+ | "ui-mobile"
1064
+ | "ui-responsive"
1065
+ | "ui-stack"
1066
+ | "ui-1"
1067
+ | "ui-2"
1068
+ | "ui-3"
1069
+ | "ui-4"
1070
+ | "CalendarLight"
1071
+ | "ChatLight"
1072
+ | "Code"
1073
+ | "DeliveryLight"
1074
+ | "ExchangeSimple"
1075
+ | "FastCheckoutLight"
1076
+ | "GiftCardLight"
1077
+ | "PlanetLight"
1078
+ | "Resize"
1079
+ | "ReturnsLight"
1080
+ | "ShippingSimple"
1081
+ | "Stack"
1082
+ | "WarrantyLight"
1083
+ | "WarrantySimple"
1084
+ | "server-2"
1085
+ | "server-8"
1086
+ | "up-align-1-light"
1087
+ | "columns-1-light"
1088
+ | "laptop-star-light"
1089
+ | "squares-1-light"
1090
+ | "cubes-light";
1091
+ /** Input type: select */
1092
+ icon4:
1093
+ | "BadgeCheckIcon"
1094
+ | "CameraIcon"
1095
+ | "ChatAlt2Icon"
1096
+ | "ColorSwatchIcon"
1097
+ | "CloudIcon"
1098
+ | "DesktopComputerIcon"
1099
+ | "CubeTransparentIcon"
1100
+ | "DeviceMobileIcon"
1101
+ | "DeviceTabletIcon"
1102
+ | "CursorClickIcon"
1103
+ | "HeartIcon"
1104
+ | "KeyIcon"
1105
+ | "LightningBoltIcon"
1106
+ | "LinkIcon"
1107
+ | "LightBulbIcon"
1108
+ | "LockClosedIcon"
1109
+ | "LockOpenIcon"
1110
+ | "PaperAirplaneIcon"
1111
+ | "ShoppingBagIcon"
1112
+ | "ShoppingCartIcon"
1113
+ | "SparklesIcon"
1114
+ | "TagIcon"
1115
+ | "TruckIcon"
1116
+ | "UserGroupIcon"
1117
+ | "AnnotationIcon"
1118
+ | "MailIcon"
1119
+ | "MailOpenIcon"
1120
+ | "brutalist"
1121
+ | "colors"
1122
+ | "elegant"
1123
+ | "filters"
1124
+ | "grid"
1125
+ | "playful"
1126
+ | "shadows"
1127
+ | "simple"
1128
+ | "sizing"
1129
+ | "transforms"
1130
+ | "typography"
1131
+ | "ui-avatar"
1132
+ | "ui-code"
1133
+ | "ui-cursor"
1134
+ | "ui-mobile"
1135
+ | "ui-responsive"
1136
+ | "ui-stack"
1137
+ | "ui-1"
1138
+ | "ui-2"
1139
+ | "ui-3"
1140
+ | "ui-4"
1141
+ | "CalendarLight"
1142
+ | "ChatLight"
1143
+ | "Code"
1144
+ | "DeliveryLight"
1145
+ | "ExchangeSimple"
1146
+ | "FastCheckoutLight"
1147
+ | "GiftCardLight"
1148
+ | "PlanetLight"
1149
+ | "Resize"
1150
+ | "ReturnsLight"
1151
+ | "ShippingSimple"
1152
+ | "Stack"
1153
+ | "WarrantyLight"
1154
+ | "WarrantySimple"
1155
+ | "server-2"
1156
+ | "server-8"
1157
+ | "up-align-1-light"
1158
+ | "columns-1-light"
1159
+ | "laptop-star-light"
1160
+ | "squares-1-light"
1161
+ | "cubes-light";
1162
+ /** Input type: select */
1163
+ icon5:
1164
+ | "BadgeCheckIcon"
1165
+ | "CameraIcon"
1166
+ | "ChatAlt2Icon"
1167
+ | "ColorSwatchIcon"
1168
+ | "CloudIcon"
1169
+ | "DesktopComputerIcon"
1170
+ | "CubeTransparentIcon"
1171
+ | "DeviceMobileIcon"
1172
+ | "DeviceTabletIcon"
1173
+ | "CursorClickIcon"
1174
+ | "HeartIcon"
1175
+ | "KeyIcon"
1176
+ | "LightningBoltIcon"
1177
+ | "LinkIcon"
1178
+ | "LightBulbIcon"
1179
+ | "LockClosedIcon"
1180
+ | "LockOpenIcon"
1181
+ | "PaperAirplaneIcon"
1182
+ | "ShoppingBagIcon"
1183
+ | "ShoppingCartIcon"
1184
+ | "SparklesIcon"
1185
+ | "TagIcon"
1186
+ | "TruckIcon"
1187
+ | "UserGroupIcon"
1188
+ | "AnnotationIcon"
1189
+ | "MailIcon"
1190
+ | "MailOpenIcon"
1191
+ | "brutalist"
1192
+ | "colors"
1193
+ | "elegant"
1194
+ | "filters"
1195
+ | "grid"
1196
+ | "playful"
1197
+ | "shadows"
1198
+ | "simple"
1199
+ | "sizing"
1200
+ | "transforms"
1201
+ | "typography"
1202
+ | "ui-avatar"
1203
+ | "ui-code"
1204
+ | "ui-cursor"
1205
+ | "ui-mobile"
1206
+ | "ui-responsive"
1207
+ | "ui-stack"
1208
+ | "ui-1"
1209
+ | "ui-2"
1210
+ | "ui-3"
1211
+ | "ui-4"
1212
+ | "CalendarLight"
1213
+ | "ChatLight"
1214
+ | "Code"
1215
+ | "DeliveryLight"
1216
+ | "ExchangeSimple"
1217
+ | "FastCheckoutLight"
1218
+ | "GiftCardLight"
1219
+ | "PlanetLight"
1220
+ | "Resize"
1221
+ | "ReturnsLight"
1222
+ | "ShippingSimple"
1223
+ | "Stack"
1224
+ | "WarrantyLight"
1225
+ | "WarrantySimple"
1226
+ | "server-2"
1227
+ | "server-8"
1228
+ | "up-align-1-light"
1229
+ | "columns-1-light"
1230
+ | "laptop-star-light"
1231
+ | "squares-1-light"
1232
+ | "cubes-light";
1233
+ /** Input type: select */
1234
+ icon6:
1235
+ | "BadgeCheckIcon"
1236
+ | "CameraIcon"
1237
+ | "ChatAlt2Icon"
1238
+ | "ColorSwatchIcon"
1239
+ | "CloudIcon"
1240
+ | "DesktopComputerIcon"
1241
+ | "CubeTransparentIcon"
1242
+ | "DeviceMobileIcon"
1243
+ | "DeviceTabletIcon"
1244
+ | "CursorClickIcon"
1245
+ | "HeartIcon"
1246
+ | "KeyIcon"
1247
+ | "LightningBoltIcon"
1248
+ | "LinkIcon"
1249
+ | "LightBulbIcon"
1250
+ | "LockClosedIcon"
1251
+ | "LockOpenIcon"
1252
+ | "PaperAirplaneIcon"
1253
+ | "ShoppingBagIcon"
1254
+ | "ShoppingCartIcon"
1255
+ | "SparklesIcon"
1256
+ | "TagIcon"
1257
+ | "TruckIcon"
1258
+ | "UserGroupIcon"
1259
+ | "AnnotationIcon"
1260
+ | "MailIcon"
1261
+ | "MailOpenIcon"
1262
+ | "brutalist"
1263
+ | "colors"
1264
+ | "elegant"
1265
+ | "filters"
1266
+ | "grid"
1267
+ | "playful"
1268
+ | "shadows"
1269
+ | "simple"
1270
+ | "sizing"
1271
+ | "transforms"
1272
+ | "typography"
1273
+ | "ui-avatar"
1274
+ | "ui-code"
1275
+ | "ui-cursor"
1276
+ | "ui-mobile"
1277
+ | "ui-responsive"
1278
+ | "ui-stack"
1279
+ | "ui-1"
1280
+ | "ui-2"
1281
+ | "ui-3"
1282
+ | "ui-4"
1283
+ | "CalendarLight"
1284
+ | "ChatLight"
1285
+ | "Code"
1286
+ | "DeliveryLight"
1287
+ | "ExchangeSimple"
1288
+ | "FastCheckoutLight"
1289
+ | "GiftCardLight"
1290
+ | "PlanetLight"
1291
+ | "Resize"
1292
+ | "ReturnsLight"
1293
+ | "ShippingSimple"
1294
+ | "Stack"
1295
+ | "WarrantyLight"
1296
+ | "WarrantySimple"
1297
+ | "server-2"
1298
+ | "server-8"
1299
+ | "up-align-1-light"
1300
+ | "columns-1-light"
1301
+ | "laptop-star-light"
1302
+ | "squares-1-light"
1303
+ | "cubes-light";
1304
+ /** Input type: text */
1305
+ text1?: string;
1306
+ /** Input type: text */
1307
+ text2?: string;
1308
+ /** Input type: text */
1309
+ text3?: string;
1310
+ /** Input type: text */
1311
+ text4?: string;
1312
+ /** Input type: text */
1313
+ text5?: string;
1314
+ /** Input type: text */
1315
+ text6?: string;
1316
+ };
1317
+ type: "list";
1318
+ };
1319
+
1320
+ export type StatsGraphSection = {
1321
+ blocks: StatsGraphBlocks[];
1322
+ id: string;
1323
+ type: "stats-graph";
1324
+ };
1325
+
1326
+ export type StatsGraphBlocks = {
1327
+ id: string;
1328
+ settings: {
1329
+ /** Input type: text */
1330
+ descriptions?: string;
1331
+ /** Input type: text */
1332
+ stat?: string;
1333
+ };
1334
+ type: "stat";
1335
+ };
1336
+
1337
+ export type StorySection = {
1338
+ blocks: StoryBlocks[];
1339
+ id: string;
1340
+ type: "story";
1341
+ };
1342
+
1343
+ export type StoryBlocks =
1344
+ | {
1345
+ id: string;
1346
+ settings: {
1347
+ /** Input type: select */
1348
+ position: "left" | "center" | "right";
1349
+ /** Input type: text */
1350
+ cta1?: string;
1351
+ /** Input type: url */
1352
+ cta1_link?: string;
1353
+ /** Input type: text */
1354
+ cta2?: string;
1355
+ /** Input type: url */
1356
+ cta2_link?: string;
1357
+ /** Input type: richtext */
1358
+ paragraph?: `<p${string}</p>`;
1359
+ /** Input type: text */
1360
+ pre_title?: string;
1361
+ /** Input type: text */
1362
+ title?: string;
1363
+ };
1364
+ type: "heading";
1365
+ }
1366
+ | {
1367
+ id: string;
1368
+ settings: {
1369
+ /** Input type: select */
1370
+ aspect_desktop: "auto" | "9-16" | "1-1" | "4-3" | "3-2" | "16-9" | "21-9";
1371
+ /** Input type: select */
1372
+ aspect_mobile: "hidden" | "9-16" | "1-1" | "4-3" | "3-2" | "16-9" | "21-9";
1373
+ /** Input type: checkbox */
1374
+ fit_height: boolean;
1375
+ /** Input type: radio */
1376
+ position: "left" | "right";
1377
+ /** Input type: image_picker */
1378
+ image?: _Image_liquid;
1379
+ /** Input type: richtext */
1380
+ list?: `<p${string}</p>`;
1381
+ /** Input type: text */
1382
+ list_title?: string;
1383
+ /** Input type: richtext */
1384
+ paragraph?: `<p${string}</p>`;
1385
+ /** Input type: text */
1386
+ pre_title?: string;
1387
+ /** Input type: text */
1388
+ title?: string;
1389
+ };
1390
+ type: "image-text";
1391
+ };
1392
+
1393
+ export type TabsFaqSection = {
1394
+ blocks: TabsFaqBlocks[];
1395
+ id: string;
1396
+ settings: {
1397
+ /** Input type: text */
1398
+ title?: string;
1399
+ };
1400
+ type: "tabs-faq";
1401
+ };
1402
+
1403
+ export type TabsFaqBlocks = {
1404
+ id: string;
1405
+ settings: {
1406
+ /** Input type: collection */
1407
+ faq_items?: _Collection_liquid;
1408
+ /** Input type: text */
1409
+ title?: string;
1410
+ };
1411
+ type: "category";
1412
+ };
1413
+
1414
+ export type TabsImageCardSection = {
1415
+ blocks: TabsImageCardBlocks[];
1416
+ id: string;
1417
+ type: "tabs-image-card";
1418
+ };
1419
+
1420
+ export type TabsImageCardBlocks =
1421
+ | {
1422
+ id: string;
1423
+ settings: {
1424
+ /** Input type: select */
1425
+ position: "left" | "center" | "right";
1426
+ /** Input type: text */
1427
+ cta1?: string;
1428
+ /** Input type: url */
1429
+ cta1_link?: string;
1430
+ /** Input type: text */
1431
+ cta2?: string;
1432
+ /** Input type: url */
1433
+ cta2_link?: string;
1434
+ /** Input type: richtext */
1435
+ paragraph?: `<p${string}</p>`;
1436
+ /** Input type: text */
1437
+ pre_title?: string;
1438
+ /** Input type: text */
1439
+ title?: string;
1440
+ };
1441
+ type: "heading";
1442
+ }
1443
+ | {
1444
+ id: string;
1445
+ settings: {
1446
+ /** Input type: select */
1447
+ tab_icon:
1448
+ | "BadgeCheckIcon"
1449
+ | "CameraIcon"
1450
+ | "ChatAlt2Icon"
1451
+ | "ColorSwatchIcon"
1452
+ | "CloudIcon"
1453
+ | "DesktopComputerIcon"
1454
+ | "CubeTransparentIcon"
1455
+ | "DeviceMobileIcon"
1456
+ | "DeviceTabletIcon"
1457
+ | "CursorClickIcon"
1458
+ | "HeartIcon"
1459
+ | "KeyIcon"
1460
+ | "LightningBoltIcon"
1461
+ | "LinkIcon"
1462
+ | "LightBulbIcon"
1463
+ | "LockClosedIcon"
1464
+ | "LockOpenIcon"
1465
+ | "PaperAirplaneIcon"
1466
+ | "ShoppingBagIcon"
1467
+ | "ShoppingCartIcon"
1468
+ | "SparklesIcon"
1469
+ | "TagIcon"
1470
+ | "TruckIcon"
1471
+ | "UserGroupIcon"
1472
+ | "AnnotationIcon"
1473
+ | "MailIcon"
1474
+ | "MailOpenIcon"
1475
+ | "brutalist"
1476
+ | "colors"
1477
+ | "elegant"
1478
+ | "filters"
1479
+ | "grid"
1480
+ | "playful"
1481
+ | "shadows"
1482
+ | "simple"
1483
+ | "sizing"
1484
+ | "transforms"
1485
+ | "typography"
1486
+ | "ui-avatar"
1487
+ | "ui-code"
1488
+ | "ui-cursor"
1489
+ | "ui-mobile"
1490
+ | "ui-responsive"
1491
+ | "ui-stack"
1492
+ | "ui-1"
1493
+ | "ui-2"
1494
+ | "ui-3"
1495
+ | "ui-4"
1496
+ | "CalendarLight"
1497
+ | "ChatLight"
1498
+ | "Code"
1499
+ | "DeliveryLight"
1500
+ | "ExchangeSimple"
1501
+ | "FastCheckoutLight"
1502
+ | "GiftCardLight"
1503
+ | "PlanetLight"
1504
+ | "Resize"
1505
+ | "ReturnsLight"
1506
+ | "ShippingSimple"
1507
+ | "Stack"
1508
+ | "WarrantyLight"
1509
+ | "WarrantySimple"
1510
+ | "server-2"
1511
+ | "server-8"
1512
+ | "up-align-1-light"
1513
+ | "columns-1-light"
1514
+ | "laptop-star-light"
1515
+ | "squares-1-light"
1516
+ | "cubes-light";
1517
+ /** Input type: text */
1518
+ cta1?: string;
1519
+ /** Input type: url */
1520
+ cta1_link?: string;
1521
+ /** Input type: text */
1522
+ cta2?: string;
1523
+ /** Input type: url */
1524
+ cta2_link?: string;
1525
+ /** Input type: image_picker */
1526
+ image?: _Image_liquid;
1527
+ /** Input type: url */
1528
+ image_link?: string;
1529
+ /** Input type: richtext */
1530
+ paragraph?: `<p${string}</p>`;
1531
+ /** Input type: text */
1532
+ tab_title?: string;
1533
+ /** Input type: text */
1534
+ title?: string;
1535
+ };
1536
+ type: "tab";
1537
+ };
1538
+
1539
+ export type TabsProcessStepSection = {
1540
+ blocks: TabsProcessStepBlocks[];
1541
+ id: string;
1542
+ settings: {
1543
+ /** Input type: richtext */
1544
+ paragraph?: `<p${string}</p>`;
1545
+ /** Input type: text */
1546
+ pre_title?: string;
1547
+ /** Input type: text */
1548
+ title?: string;
1549
+ };
1550
+ type: "tabs-process-step";
1551
+ };
1552
+
1553
+ export type TabsProcessStepBlocks = {
1554
+ id: string;
1555
+ settings: {
1556
+ /** Input type: richtext */
1557
+ paragraph?: `<p${string}</p>`;
1558
+ /** Input type: textarea */
1559
+ tab_paragraph?: string;
1560
+ /** Input type: text */
1561
+ tab_title?: string;
1562
+ /** Input type: text */
1563
+ title?: string;
1564
+ };
1565
+ type: "step";
1566
+ };
1567
+
1568
+ export type TeamListSection = {
1569
+ blocks: TeamListBlocks[];
1570
+ id: string;
1571
+ type: "team-list";
1572
+ };
1573
+
1574
+ export type TeamListBlocks =
1575
+ | {
1576
+ id: string;
1577
+ settings: {
1578
+ /** Input type: select */
1579
+ position: "left" | "center" | "right";
1580
+ /** Input type: text */
1581
+ cta1?: string;
1582
+ /** Input type: url */
1583
+ cta1_link?: string;
1584
+ /** Input type: text */
1585
+ cta2?: string;
1586
+ /** Input type: url */
1587
+ cta2_link?: string;
1588
+ /** Input type: richtext */
1589
+ paragraph?: `<p${string}</p>`;
1590
+ /** Input type: text */
1591
+ pre_title?: string;
1592
+ /** Input type: text */
1593
+ title?: string;
1594
+ };
1595
+ type: "heading";
1596
+ }
1597
+ | {
1598
+ id: string;
1599
+ settings: {
1600
+ /** Input type: image_picker */
1601
+ image?: _Image_liquid;
1602
+ /** Input type: text */
1603
+ job_title?: string;
1604
+ /** Input type: text */
1605
+ name?: string;
1606
+ };
1607
+ type: "team_member";
1608
+ };
1609
+
1610
+ export type TemplateArticleSection = {
1611
+ id: string;
1612
+ type: "template-article";
1613
+ };
1614
+
1615
+ export type TemplateBlogSection = {
1616
+ id: string;
1617
+ type: "template-blog";
1618
+ };
1619
+
1620
+ export type TemplateCartSection = {
1621
+ id: string;
1622
+ type: "template-cart";
1623
+ };
1624
+
1625
+ export type TemplateCollectionSection = {
1626
+ id: string;
1627
+ type: "template-collection";
1628
+ };
1629
+
1630
+ export type TemplateListCollectionsSection = {
1631
+ id: string;
1632
+ type: "template-list-collections";
1633
+ };
1634
+
1635
+ export type TemplatePageSection = {
1636
+ id: string;
1637
+ type: "template-page";
1638
+ };
1639
+
1640
+ export type TemplatePasswordSection = {
1641
+ id: string;
1642
+ type: "template-password";
1643
+ };
1644
+
1645
+ export type TemplateProductSection = {
1646
+ id: string;
1647
+ type: "template-product";
1648
+ };
1649
+
1650
+ export type TemplateSearchSection = {
1651
+ id: string;
1652
+ type: "template-search";
1653
+ };
1654
+
1655
+ export type Template_404Section = {
1656
+ id: string;
1657
+ type: "template-404";
1658
+ };
1659
+
1660
+ export type TestSection = {
1661
+ id: string;
1662
+ settings: {
1663
+ /** Input type: font_picker */
1664
+ font: _Font_liquid;
1665
+ /** Input type: article */
1666
+ article?: _Article_liquid;
1667
+ /** Input type: blog */
1668
+ blog?: _Blog_liquid;
1669
+ /** Input type: collection */
1670
+ collection?: _Collection_liquid;
1671
+ /** Input type: collection_list */
1672
+ collection_list?: _Collection_liquid[];
1673
+ /** Input type: color */
1674
+ color?: _Color_liquid;
1675
+ /** Input type: font */
1676
+ font2?: string;
1677
+ /** Input type: image_picker */
1678
+ image?: _Image_liquid;
1679
+ /** Input type: link_list */
1680
+ links?: _Linklist_liquid;
1681
+ /** Input type: page */
1682
+ page?: _Page_liquid;
1683
+ /** Input type: product */
1684
+ product?: _Product_liquid;
1685
+ /** Input type: product_list */
1686
+ product_list?: _Product_liquid[];
1687
+ };
1688
+ type: "test";
1689
+ };
1690
+
1691
+ export type TestimonialListSection = {
1692
+ blocks: TestimonialListBlocks[];
1693
+ id: string;
1694
+ settings: {
1695
+ /** Input type: select */
1696
+ position: "left" | "center" | "right";
1697
+ /** Input type: text */
1698
+ cta1?: string;
1699
+ /** Input type: url */
1700
+ cta1_link?: string;
1701
+ /** Input type: text */
1702
+ cta2?: string;
1703
+ /** Input type: url */
1704
+ cta2_link?: string;
1705
+ /** Input type: richtext */
1706
+ paragraph?: `<p${string}</p>`;
1707
+ /** Input type: text */
1708
+ pre_title?: string;
1709
+ /** Input type: product_list */
1710
+ products?: _Product_liquid[];
1711
+ /** Input type: text */
1712
+ title?: string;
1713
+ };
1714
+ type: "testimonial-list";
1715
+ };
1716
+
1717
+ export type TestimonialListBlocks = {
1718
+ id: string;
1719
+ settings: {
1720
+ /** Input type: text */
1721
+ author?: string;
1722
+ /** Input type: image_picker */
1723
+ image?: _Image_liquid;
1724
+ /** Input type: text */
1725
+ job_title?: string;
1726
+ /** Input type: url */
1727
+ link?: string;
1728
+ /** Input type: richtext */
1729
+ quote?: `<p${string}</p>`;
1730
+ };
1731
+ type: "testimonial";
1732
+ };
1733
+
1734
+ export type Sections =
1735
+ | BackgroundSection
1736
+ | BlockquoteSection
1737
+ | ContactSection
1738
+ | FeatureCarouselSection
1739
+ | FeatureListSection
1740
+ | FooterSection
1741
+ | HeaderSection
1742
+ | HeadingSection
1743
+ | HeroWithFeaturesSection
1744
+ | HeroSection
1745
+ | ImageCarouselSection
1746
+ | ImageGallerySection
1747
+ | ImageTextSection
1748
+ | InfoCardsSection
1749
+ | LogoBannerSection
1750
+ | PageSettingsSection
1751
+ | SpecListSection
1752
+ | StatsGraphSection
1753
+ | StorySection
1754
+ | TabsFaqSection
1755
+ | TabsImageCardSection
1756
+ | TabsProcessStepSection
1757
+ | TeamListSection
1758
+ | TemplateArticleSection
1759
+ | TemplateBlogSection
1760
+ | TemplateCartSection
1761
+ | TemplateCollectionSection
1762
+ | TemplateListCollectionsSection
1763
+ | TemplatePageSection
1764
+ | TemplatePasswordSection
1765
+ | TemplateProductSection
1766
+ | TemplateSearchSection
1767
+ | Template_404Section
1768
+ | TestSection
1769
+ | TestimonialListSection;