prismic-slicemachine-to-hydrogen-jrhcn 0.1.613 → 0.1.614

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.
@@ -8727,6 +8727,250 @@ export type GlobalSettingsDocument<Lang extends string = string> =
8727
8727
  Lang
8728
8728
  >
8729
8729
 
8730
+ type HeadlessBlogIndexDocumentDataSlicesSlice =
8731
+ | BlogAboutRokaSlice
8732
+ | BlogHeroSlice
8733
+
8734
+ /**
8735
+ * Content for Headless Blog Index documents
8736
+ */
8737
+ interface HeadlessBlogIndexDocumentData {
8738
+ /**
8739
+ * Slice Zone field in *Headless Blog Index*
8740
+ *
8741
+ * - **Field Type**: Slice Zone
8742
+ * - **Placeholder**: *None*
8743
+ * - **API ID Path**: headless_blog_index.slices[]
8744
+ * - **Tab**: Main
8745
+ * - **Documentation**: https://prismic.io/docs/field#slices
8746
+ */
8747
+ slices: prismic.SliceZone<HeadlessBlogIndexDocumentDataSlicesSlice> /**
8748
+ * Meta Title field in *Headless Blog Index*
8749
+ *
8750
+ * - **Field Type**: Text
8751
+ * - **Placeholder**: A title of the page used for social media and search engines
8752
+ * - **API ID Path**: headless_blog_index.meta_title
8753
+ * - **Tab**: SEO & Metadata
8754
+ * - **Documentation**: https://prismic.io/docs/field#key-text
8755
+ */
8756
+ meta_title: prismic.KeyTextField
8757
+
8758
+ /**
8759
+ * Meta Description field in *Headless Blog Index*
8760
+ *
8761
+ * - **Field Type**: Text
8762
+ * - **Placeholder**: A brief summary of the page
8763
+ * - **API ID Path**: headless_blog_index.meta_description
8764
+ * - **Tab**: SEO & Metadata
8765
+ * - **Documentation**: https://prismic.io/docs/field#key-text
8766
+ */
8767
+ meta_description: prismic.KeyTextField
8768
+
8769
+ /**
8770
+ * Meta Image field in *Headless Blog Index*
8771
+ *
8772
+ * - **Field Type**: Image
8773
+ * - **Placeholder**: *None*
8774
+ * - **API ID Path**: headless_blog_index.meta_image
8775
+ * - **Tab**: SEO & Metadata
8776
+ * - **Documentation**: https://prismic.io/docs/field#image
8777
+ */
8778
+ meta_image: prismic.ImageField<never>
8779
+
8780
+ /**
8781
+ * OG Title field in *Headless Blog Index*
8782
+ *
8783
+ * - **Field Type**: Text
8784
+ * - **Placeholder**: *None*
8785
+ * - **API ID Path**: headless_blog_index.og_title
8786
+ * - **Tab**: SEO & Metadata
8787
+ * - **Documentation**: https://prismic.io/docs/field#key-text
8788
+ */
8789
+ og_title: prismic.KeyTextField
8790
+
8791
+ /**
8792
+ * OG Description field in *Headless Blog Index*
8793
+ *
8794
+ * - **Field Type**: Text
8795
+ * - **Placeholder**: *None*
8796
+ * - **API ID Path**: headless_blog_index.og_description
8797
+ * - **Tab**: SEO & Metadata
8798
+ * - **Documentation**: https://prismic.io/docs/field#key-text
8799
+ */
8800
+ og_description: prismic.KeyTextField
8801
+
8802
+ /**
8803
+ * OG Image field in *Headless Blog Index*
8804
+ *
8805
+ * - **Field Type**: Image
8806
+ * - **Placeholder**: *None*
8807
+ * - **API ID Path**: headless_blog_index.og_image
8808
+ * - **Tab**: SEO & Metadata
8809
+ * - **Documentation**: https://prismic.io/docs/field#image
8810
+ */
8811
+ og_image: prismic.ImageField<never>
8812
+ }
8813
+
8814
+ /**
8815
+ * Headless Blog Index document from Prismic
8816
+ *
8817
+ * - **API ID**: `headless_blog_index`
8818
+ * - **Repeatable**: `false`
8819
+ * - **Documentation**: https://prismic.io/docs/custom-types
8820
+ *
8821
+ * @typeParam Lang - Language API ID of the document.
8822
+ */
8823
+ export type HeadlessBlogIndexDocument<Lang extends string = string> =
8824
+ prismic.PrismicDocumentWithoutUID<
8825
+ Simplify<HeadlessBlogIndexDocumentData>,
8826
+ 'headless_blog_index',
8827
+ Lang
8828
+ >
8829
+
8830
+ type HeadlessBlogPageDocumentDataSlicesSlice =
8831
+ | BlogPostCollectionSlice
8832
+ | BlogProductCardsSlice
8833
+ | BlogHeroSlice
8834
+ | BlogPostContentSlice
8835
+ | BlogPostQuoteSlice
8836
+ | BlogPostImageGridSlice
8837
+ | BlogAboutRokaSlice
8838
+
8839
+ /**
8840
+ * Item in *Headless Blog Page → Categories*
8841
+ */
8842
+ export interface HeadlessBlogPageDocumentDataCategoriesItem {
8843
+ /**
8844
+ * Category field in *Headless Blog Page → Categories*
8845
+ *
8846
+ * - **Field Type**: Text
8847
+ * - **Placeholder**: *None*
8848
+ * - **API ID Path**: headless_blog_page.categories[].category
8849
+ * - **Documentation**: https://prismic.io/docs/field#key-text
8850
+ */
8851
+ category: prismic.KeyTextField
8852
+ }
8853
+
8854
+ /**
8855
+ * Content for Headless Blog Page documents
8856
+ */
8857
+ interface HeadlessBlogPageDocumentData {
8858
+ /**
8859
+ * Preview Image field in *Headless Blog Page*
8860
+ *
8861
+ * - **Field Type**: Image
8862
+ * - **Placeholder**: *None*
8863
+ * - **API ID Path**: headless_blog_page.preview_image
8864
+ * - **Tab**: Main
8865
+ * - **Documentation**: https://prismic.io/docs/field#image
8866
+ */
8867
+ preview_image: prismic.ImageField<never>
8868
+
8869
+ /**
8870
+ * Slice Zone field in *Headless Blog Page*
8871
+ *
8872
+ * - **Field Type**: Slice Zone
8873
+ * - **Placeholder**: *None*
8874
+ * - **API ID Path**: headless_blog_page.slices[]
8875
+ * - **Tab**: Main
8876
+ * - **Documentation**: https://prismic.io/docs/field#slices
8877
+ */
8878
+ slices: prismic.SliceZone<HeadlessBlogPageDocumentDataSlicesSlice> /**
8879
+ * Meta Title field in *Headless Blog Page*
8880
+ *
8881
+ * - **Field Type**: Text
8882
+ * - **Placeholder**: A title of the page used for social media and search engines
8883
+ * - **API ID Path**: headless_blog_page.meta_title
8884
+ * - **Tab**: SEO & Metadata
8885
+ * - **Documentation**: https://prismic.io/docs/field#key-text
8886
+ */
8887
+ meta_title: prismic.KeyTextField
8888
+
8889
+ /**
8890
+ * Meta Description field in *Headless Blog Page*
8891
+ *
8892
+ * - **Field Type**: Text
8893
+ * - **Placeholder**: A brief summary of the page
8894
+ * - **API ID Path**: headless_blog_page.meta_description
8895
+ * - **Tab**: SEO & Metadata
8896
+ * - **Documentation**: https://prismic.io/docs/field#key-text
8897
+ */
8898
+ meta_description: prismic.KeyTextField
8899
+
8900
+ /**
8901
+ * Meta Image field in *Headless Blog Page*
8902
+ *
8903
+ * - **Field Type**: Image
8904
+ * - **Placeholder**: *None*
8905
+ * - **API ID Path**: headless_blog_page.meta_image
8906
+ * - **Tab**: SEO & Metadata
8907
+ * - **Documentation**: https://prismic.io/docs/field#image
8908
+ */
8909
+ meta_image: prismic.ImageField<never>
8910
+
8911
+ /**
8912
+ * OG Title field in *Headless Blog Page*
8913
+ *
8914
+ * - **Field Type**: Text
8915
+ * - **Placeholder**: *None*
8916
+ * - **API ID Path**: headless_blog_page.og_title
8917
+ * - **Tab**: SEO & Metadata
8918
+ * - **Documentation**: https://prismic.io/docs/field#key-text
8919
+ */
8920
+ og_title: prismic.KeyTextField
8921
+
8922
+ /**
8923
+ * OG Description field in *Headless Blog Page*
8924
+ *
8925
+ * - **Field Type**: Text
8926
+ * - **Placeholder**: *None*
8927
+ * - **API ID Path**: headless_blog_page.og_description
8928
+ * - **Tab**: SEO & Metadata
8929
+ * - **Documentation**: https://prismic.io/docs/field#key-text
8930
+ */
8931
+ og_description: prismic.KeyTextField
8932
+
8933
+ /**
8934
+ * OG Image field in *Headless Blog Page*
8935
+ *
8936
+ * - **Field Type**: Image
8937
+ * - **Placeholder**: *None*
8938
+ * - **API ID Path**: headless_blog_page.og_image
8939
+ * - **Tab**: SEO & Metadata
8940
+ * - **Documentation**: https://prismic.io/docs/field#image
8941
+ */
8942
+ og_image: prismic.ImageField<never>
8943
+
8944
+ /**
8945
+ * Categories field in *Headless Blog Page*
8946
+ *
8947
+ * - **Field Type**: Group
8948
+ * - **Placeholder**: *None*
8949
+ * - **API ID Path**: headless_blog_page.categories[]
8950
+ * - **Tab**: SEO & Metadata
8951
+ * - **Documentation**: https://prismic.io/docs/field#group
8952
+ */
8953
+ categories: prismic.GroupField<
8954
+ Simplify<HeadlessBlogPageDocumentDataCategoriesItem>
8955
+ >
8956
+ }
8957
+
8958
+ /**
8959
+ * Headless Blog Page document from Prismic
8960
+ *
8961
+ * - **API ID**: `headless_blog_page`
8962
+ * - **Repeatable**: `true`
8963
+ * - **Documentation**: https://prismic.io/docs/custom-types
8964
+ *
8965
+ * @typeParam Lang - Language API ID of the document.
8966
+ */
8967
+ export type HeadlessBlogPageDocument<Lang extends string = string> =
8968
+ prismic.PrismicDocumentWithUID<
8969
+ Simplify<HeadlessBlogPageDocumentData>,
8970
+ 'headless_blog_page',
8971
+ Lang
8972
+ >
8973
+
8730
8974
  type HeadlessCollectionDocumentDataSlicesSlice =
8731
8975
  | ProductFaqSlice
8732
8976
  | BannerGridSlice
@@ -8804,39 +9048,6 @@ interface HeadlessCollectionDocumentData {
8804
9048
  * - **Documentation**: https://prismic.io/docs/field#image
8805
9049
  */
8806
9050
  meta_image: prismic.ImageField<never>
8807
-
8808
- /**
8809
- * OG Title field in *Headless Collection*
8810
- *
8811
- * - **Field Type**: Text
8812
- * - **Placeholder**: *None*
8813
- * - **API ID Path**: headless_collection.og_title
8814
- * - **Tab**: SEO & Metadata
8815
- * - **Documentation**: https://prismic.io/docs/field#key-text
8816
- */
8817
- og_title: prismic.KeyTextField
8818
-
8819
- /**
8820
- * OG Description field in *Headless Collection*
8821
- *
8822
- * - **Field Type**: Text
8823
- * - **Placeholder**: *None*
8824
- * - **API ID Path**: headless_collection.og_description
8825
- * - **Tab**: SEO & Metadata
8826
- * - **Documentation**: https://prismic.io/docs/field#key-text
8827
- */
8828
- og_description: prismic.KeyTextField
8829
-
8830
- /**
8831
- * OG Image field in *Headless Collection*
8832
- *
8833
- * - **Field Type**: Image
8834
- * - **Placeholder**: *None*
8835
- * - **API ID Path**: headless_collection.og_image
8836
- * - **Tab**: SEO & Metadata
8837
- * - **Documentation**: https://prismic.io/docs/field#image
8838
- */
8839
- og_image: prismic.ImageField<never>
8840
9051
  }
8841
9052
 
8842
9053
  /**
@@ -9112,40 +9323,7 @@ interface HeadlessProductDocumentData {
9112
9323
  * - **Tab**: SEO & Metadata
9113
9324
  * - **Documentation**: https://prismic.io/docs/field#image
9114
9325
  */
9115
- meta_image: prismic.ImageField<never>
9116
-
9117
- /**
9118
- * OG Title field in *Headless Product*
9119
- *
9120
- * - **Field Type**: Text
9121
- * - **Placeholder**: *None*
9122
- * - **API ID Path**: headless_product.og_title
9123
- * - **Tab**: SEO & Metadata
9124
- * - **Documentation**: https://prismic.io/docs/field#key-text
9125
- */
9126
- og_title: prismic.KeyTextField
9127
-
9128
- /**
9129
- * OG Description field in *Headless Product*
9130
- *
9131
- * - **Field Type**: Text
9132
- * - **Placeholder**: *None*
9133
- * - **API ID Path**: headless_product.og_description
9134
- * - **Tab**: SEO & Metadata
9135
- * - **Documentation**: https://prismic.io/docs/field#key-text
9136
- */
9137
- og_description: prismic.KeyTextField
9138
-
9139
- /**
9140
- * OG Image field in *Headless Product*
9141
- *
9142
- * - **Field Type**: Image
9143
- * - **Placeholder**: *None*
9144
- * - **API ID Path**: headless_product.og_image
9145
- * - **Tab**: SEO & Metadata
9146
- * - **Documentation**: https://prismic.io/docs/field#image
9147
- */
9148
- og_image: prismic.ImageField<never> /**
9326
+ meta_image: prismic.ImageField<never> /**
9149
9327
  * Show HSA/FSA field in *Headless Product*
9150
9328
  *
9151
9329
  * - **Field Type**: Boolean
@@ -34712,6 +34890,8 @@ export type AllDocumentTypes =
34712
34890
  | GlassesLpDocument
34713
34891
  | GlobalDocument
34714
34892
  | GlobalSettingsDocument
34893
+ | HeadlessBlogIndexDocument
34894
+ | HeadlessBlogPageDocument
34715
34895
  | HeadlessCollectionDocument
34716
34896
  | HeadlessPageDocument
34717
34897
  | HeadlessProductDocument
@@ -35631,6 +35811,499 @@ export type BannerImageSlice = prismic.SharedSlice<
35631
35811
  BannerImageSliceVariation
35632
35812
  >
35633
35813
 
35814
+ /**
35815
+ * Primary content in *BlogAboutRoka → Default → Primary*
35816
+ */
35817
+ export interface BlogAboutRokaSliceDefaultPrimary {
35818
+ /**
35819
+ * Content field in *BlogAboutRoka → Default → Primary*
35820
+ *
35821
+ * - **Field Type**: Rich Text
35822
+ * - **Placeholder**: *None*
35823
+ * - **API ID Path**: blog_about_roka.default.primary.content
35824
+ * - **Documentation**: https://prismic.io/docs/field#rich-text-title
35825
+ */
35826
+ content: prismic.RichTextField
35827
+ }
35828
+
35829
+ /**
35830
+ * Default variation for BlogAboutRoka Slice
35831
+ *
35832
+ * - **API ID**: `default`
35833
+ * - **Description**: Default
35834
+ * - **Documentation**: https://prismic.io/docs/slice
35835
+ */
35836
+ export type BlogAboutRokaSliceDefault = prismic.SharedSliceVariation<
35837
+ 'default',
35838
+ Simplify<BlogAboutRokaSliceDefaultPrimary>,
35839
+ never
35840
+ >
35841
+
35842
+ /**
35843
+ * Slice variation for *BlogAboutRoka*
35844
+ */
35845
+ type BlogAboutRokaSliceVariation = BlogAboutRokaSliceDefault
35846
+
35847
+ /**
35848
+ * BlogAboutRoka Shared Slice
35849
+ *
35850
+ * - **API ID**: `blog_about_roka`
35851
+ * - **Description**: Blog About Roka
35852
+ * - **Documentation**: https://prismic.io/docs/slice
35853
+ */
35854
+ export type BlogAboutRokaSlice = prismic.SharedSlice<
35855
+ 'blog_about_roka',
35856
+ BlogAboutRokaSliceVariation
35857
+ >
35858
+
35859
+ /**
35860
+ * Primary content in *BlogHero → Default → Primary*
35861
+ */
35862
+ export interface BlogHeroSliceDefaultPrimary {
35863
+ /**
35864
+ * Logo field in *BlogHero → Default → Primary*
35865
+ *
35866
+ * - **Field Type**: Image
35867
+ * - **Placeholder**: *None*
35868
+ * - **API ID Path**: blog_hero.default.primary.logo
35869
+ * - **Documentation**: https://prismic.io/docs/field#image
35870
+ */
35871
+ logo: prismic.ImageField<never>
35872
+
35873
+ /**
35874
+ * Title field in *BlogHero → Default → Primary*
35875
+ *
35876
+ * - **Field Type**: Text
35877
+ * - **Placeholder**: *None*
35878
+ * - **API ID Path**: blog_hero.default.primary.title
35879
+ * - **Documentation**: https://prismic.io/docs/field#key-text
35880
+ */
35881
+ title: prismic.KeyTextField
35882
+
35883
+ /**
35884
+ * Meta field in *BlogHero → Default → Primary*
35885
+ *
35886
+ * - **Field Type**: Rich Text
35887
+ * - **Placeholder**: *None*
35888
+ * - **API ID Path**: blog_hero.default.primary.meta
35889
+ * - **Documentation**: https://prismic.io/docs/field#rich-text-title
35890
+ */
35891
+ meta: prismic.RichTextField
35892
+
35893
+ /**
35894
+ * CTA Label field in *BlogHero → Default → Primary*
35895
+ *
35896
+ * - **Field Type**: Text
35897
+ * - **Placeholder**: *None*
35898
+ * - **API ID Path**: blog_hero.default.primary.cta_label
35899
+ * - **Documentation**: https://prismic.io/docs/field#key-text
35900
+ */
35901
+ cta_label: prismic.KeyTextField
35902
+
35903
+ /**
35904
+ * CTA Link field in *BlogHero → Default → Primary*
35905
+ *
35906
+ * - **Field Type**: Link
35907
+ * - **Placeholder**: *None*
35908
+ * - **API ID Path**: blog_hero.default.primary.cta_link
35909
+ * - **Documentation**: https://prismic.io/docs/field#link-content-relationship
35910
+ */
35911
+ cta_link: prismic.LinkField<
35912
+ string,
35913
+ string,
35914
+ unknown,
35915
+ prismic.FieldState,
35916
+ never
35917
+ >
35918
+
35919
+ /**
35920
+ * Hero Image field in *BlogHero → Default → Primary*
35921
+ *
35922
+ * - **Field Type**: Image
35923
+ * - **Placeholder**: *None*
35924
+ * - **API ID Path**: blog_hero.default.primary.image
35925
+ * - **Documentation**: https://prismic.io/docs/field#image
35926
+ */
35927
+ image: prismic.ImageField<
35928
+ 'Desktop (1600px)' | 'Desktop (1200px)' | 'Tablet (768px)' | 'Mobile'
35929
+ >
35930
+
35931
+ /**
35932
+ * Disable Compression field in *BlogHero → Default → Primary*
35933
+ *
35934
+ * - **Field Type**: Boolean
35935
+ * - **Placeholder**: *None*
35936
+ * - **Default Value**: false
35937
+ * - **API ID Path**: blog_hero.default.primary.disable_compression
35938
+ * - **Documentation**: https://prismic.io/docs/field#boolean
35939
+ */
35940
+ disable_compression: prismic.BooleanField
35941
+
35942
+ /**
35943
+ * Improve Readability field in *BlogHero → Default → Primary*
35944
+ *
35945
+ * - **Field Type**: Boolean
35946
+ * - **Placeholder**: *None*
35947
+ * - **Default Value**: false
35948
+ * - **API ID Path**: blog_hero.default.primary.help_read
35949
+ * - **Documentation**: https://prismic.io/docs/field#boolean
35950
+ */
35951
+ help_read: prismic.BooleanField
35952
+
35953
+ /**
35954
+ * Centered Content field in *BlogHero → Default → Primary*
35955
+ *
35956
+ * - **Field Type**: Boolean
35957
+ * - **Placeholder**: *None*
35958
+ * - **Default Value**: false
35959
+ * - **API ID Path**: blog_hero.default.primary.centered
35960
+ * - **Documentation**: https://prismic.io/docs/field#boolean
35961
+ */
35962
+ centered: prismic.BooleanField
35963
+ }
35964
+
35965
+ /**
35966
+ * Default variation for BlogHero Slice
35967
+ *
35968
+ * - **API ID**: `default`
35969
+ * - **Description**: Default blog hero
35970
+ * - **Documentation**: https://prismic.io/docs/slice
35971
+ */
35972
+ export type BlogHeroSliceDefault = prismic.SharedSliceVariation<
35973
+ 'default',
35974
+ Simplify<BlogHeroSliceDefaultPrimary>,
35975
+ never
35976
+ >
35977
+
35978
+ /**
35979
+ * Slice variation for *BlogHero*
35980
+ */
35981
+ type BlogHeroSliceVariation = BlogHeroSliceDefault
35982
+
35983
+ /**
35984
+ * BlogHero Shared Slice
35985
+ *
35986
+ * - **API ID**: `blog_hero`
35987
+ * - **Description**: Blog Hero
35988
+ * - **Documentation**: https://prismic.io/docs/slice
35989
+ */
35990
+ export type BlogHeroSlice = prismic.SharedSlice<
35991
+ 'blog_hero',
35992
+ BlogHeroSliceVariation
35993
+ >
35994
+
35995
+ /**
35996
+ * Primary content in *BlogPostCollection → Default → Primary*
35997
+ */
35998
+ export interface BlogPostCollectionSliceDefaultPrimary {
35999
+ /**
36000
+ * Collection Handle field in *BlogPostCollection → Default → Primary*
36001
+ *
36002
+ * - **Field Type**: Text
36003
+ * - **Placeholder**: *None*
36004
+ * - **API ID Path**: blog_post_collection.default.primary.collection_handle
36005
+ * - **Documentation**: https://prismic.io/docs/field#key-text
36006
+ */
36007
+ collection_handle: prismic.KeyTextField
36008
+ }
36009
+
36010
+ /**
36011
+ * Default variation for BlogPostCollection Slice
36012
+ *
36013
+ * - **API ID**: `default`
36014
+ * - **Description**: Default
36015
+ * - **Documentation**: https://prismic.io/docs/slice
36016
+ */
36017
+ export type BlogPostCollectionSliceDefault = prismic.SharedSliceVariation<
36018
+ 'default',
36019
+ Simplify<BlogPostCollectionSliceDefaultPrimary>,
36020
+ never
36021
+ >
36022
+
36023
+ /**
36024
+ * Slice variation for *BlogPostCollection*
36025
+ */
36026
+ type BlogPostCollectionSliceVariation = BlogPostCollectionSliceDefault
36027
+
36028
+ /**
36029
+ * BlogPostCollection Shared Slice
36030
+ *
36031
+ * - **API ID**: `blog_post_collection`
36032
+ * - **Description**: BlogPostCollection
36033
+ * - **Documentation**: https://prismic.io/docs/slice
36034
+ */
36035
+ export type BlogPostCollectionSlice = prismic.SharedSlice<
36036
+ 'blog_post_collection',
36037
+ BlogPostCollectionSliceVariation
36038
+ >
36039
+
36040
+ /**
36041
+ * Primary content in *BlogPostContent → Default → Primary*
36042
+ */
36043
+ export interface BlogPostContentSliceDefaultPrimary {
36044
+ /**
36045
+ * Intro field in *BlogPostContent → Default → Primary*
36046
+ *
36047
+ * - **Field Type**: Text
36048
+ * - **Placeholder**: *None*
36049
+ * - **API ID Path**: blog_post_content.default.primary.intro
36050
+ * - **Documentation**: https://prismic.io/docs/field#key-text
36051
+ */
36052
+ intro: prismic.KeyTextField
36053
+
36054
+ /**
36055
+ * Content field in *BlogPostContent → Default → Primary*
36056
+ *
36057
+ * - **Field Type**: Rich Text
36058
+ * - **Placeholder**: *None*
36059
+ * - **API ID Path**: blog_post_content.default.primary.content
36060
+ * - **Documentation**: https://prismic.io/docs/field#rich-text-title
36061
+ */
36062
+ content: prismic.RichTextField
36063
+ }
36064
+
36065
+ /**
36066
+ * Default variation for BlogPostContent Slice
36067
+ *
36068
+ * - **API ID**: `default`
36069
+ * - **Description**: Default
36070
+ * - **Documentation**: https://prismic.io/docs/slice
36071
+ */
36072
+ export type BlogPostContentSliceDefault = prismic.SharedSliceVariation<
36073
+ 'default',
36074
+ Simplify<BlogPostContentSliceDefaultPrimary>,
36075
+ never
36076
+ >
36077
+
36078
+ /**
36079
+ * Slice variation for *BlogPostContent*
36080
+ */
36081
+ type BlogPostContentSliceVariation = BlogPostContentSliceDefault
36082
+
36083
+ /**
36084
+ * BlogPostContent Shared Slice
36085
+ *
36086
+ * - **API ID**: `blog_post_content`
36087
+ * - **Description**: Blog Post Content
36088
+ * - **Documentation**: https://prismic.io/docs/slice
36089
+ */
36090
+ export type BlogPostContentSlice = prismic.SharedSlice<
36091
+ 'blog_post_content',
36092
+ BlogPostContentSliceVariation
36093
+ >
36094
+
36095
+ /**
36096
+ * Item in *BlogPostImageGrid → Default → Primary → Items*
36097
+ */
36098
+ export interface BlogPostImageGridSliceDefaultPrimaryItemsItem {
36099
+ /**
36100
+ * Image field in *BlogPostImageGrid → Default → Primary → Items*
36101
+ *
36102
+ * - **Field Type**: Image
36103
+ * - **Placeholder**: *None*
36104
+ * - **API ID Path**: blog_post_image_grid.default.primary.items[].image
36105
+ * - **Documentation**: https://prismic.io/docs/field#image
36106
+ */
36107
+ image: prismic.ImageField<never>
36108
+
36109
+ /**
36110
+ * Full Width field in *BlogPostImageGrid → Default → Primary → Items*
36111
+ *
36112
+ * - **Field Type**: Boolean
36113
+ * - **Placeholder**: *None*
36114
+ * - **Default Value**: false
36115
+ * - **API ID Path**: blog_post_image_grid.default.primary.items[].full_width
36116
+ * - **Documentation**: https://prismic.io/docs/field#boolean
36117
+ */
36118
+ full_width: prismic.BooleanField
36119
+ }
36120
+
36121
+ /**
36122
+ * Primary content in *BlogPostImageGrid → Default → Primary*
36123
+ */
36124
+ export interface BlogPostImageGridSliceDefaultPrimary {
36125
+ /**
36126
+ * Inline field in *BlogPostImageGrid → Default → Primary*
36127
+ *
36128
+ * - **Field Type**: Boolean
36129
+ * - **Placeholder**: *None*
36130
+ * - **Default Value**: false
36131
+ * - **API ID Path**: blog_post_image_grid.default.primary.inline
36132
+ * - **Documentation**: https://prismic.io/docs/field#boolean
36133
+ */
36134
+ inline: prismic.BooleanField
36135
+
36136
+ /**
36137
+ * Items field in *BlogPostImageGrid → Default → Primary*
36138
+ *
36139
+ * - **Field Type**: Group
36140
+ * - **Placeholder**: *None*
36141
+ * - **API ID Path**: blog_post_image_grid.default.primary.items[]
36142
+ * - **Documentation**: https://prismic.io/docs/field#group
36143
+ */
36144
+ items: prismic.GroupField<
36145
+ Simplify<BlogPostImageGridSliceDefaultPrimaryItemsItem>
36146
+ >
36147
+ }
36148
+
36149
+ /**
36150
+ * Default variation for BlogPostImageGrid Slice
36151
+ *
36152
+ * - **API ID**: `default`
36153
+ * - **Description**: Default
36154
+ * - **Documentation**: https://prismic.io/docs/slice
36155
+ */
36156
+ export type BlogPostImageGridSliceDefault = prismic.SharedSliceVariation<
36157
+ 'default',
36158
+ Simplify<BlogPostImageGridSliceDefaultPrimary>,
36159
+ never
36160
+ >
36161
+
36162
+ /**
36163
+ * Slice variation for *BlogPostImageGrid*
36164
+ */
36165
+ type BlogPostImageGridSliceVariation = BlogPostImageGridSliceDefault
36166
+
36167
+ /**
36168
+ * BlogPostImageGrid Shared Slice
36169
+ *
36170
+ * - **API ID**: `blog_post_image_grid`
36171
+ * - **Description**: Blog Post Image Grid
36172
+ * - **Documentation**: https://prismic.io/docs/slice
36173
+ */
36174
+ export type BlogPostImageGridSlice = prismic.SharedSlice<
36175
+ 'blog_post_image_grid',
36176
+ BlogPostImageGridSliceVariation
36177
+ >
36178
+
36179
+ /**
36180
+ * Primary content in *BlogPostQuote → Default → Primary*
36181
+ */
36182
+ export interface BlogPostQuoteSliceDefaultPrimary {
36183
+ /**
36184
+ * Quote field in *BlogPostQuote → Default → Primary*
36185
+ *
36186
+ * - **Field Type**: Rich Text
36187
+ * - **Placeholder**: *None*
36188
+ * - **API ID Path**: blog_post_quote.default.primary.quote
36189
+ * - **Documentation**: https://prismic.io/docs/field#rich-text-title
36190
+ */
36191
+ quote: prismic.RichTextField
36192
+ }
36193
+
36194
+ /**
36195
+ * Default variation for BlogPostQuote Slice
36196
+ *
36197
+ * - **API ID**: `default`
36198
+ * - **Description**: Default
36199
+ * - **Documentation**: https://prismic.io/docs/slice
36200
+ */
36201
+ export type BlogPostQuoteSliceDefault = prismic.SharedSliceVariation<
36202
+ 'default',
36203
+ Simplify<BlogPostQuoteSliceDefaultPrimary>,
36204
+ never
36205
+ >
36206
+
36207
+ /**
36208
+ * Slice variation for *BlogPostQuote*
36209
+ */
36210
+ type BlogPostQuoteSliceVariation = BlogPostQuoteSliceDefault
36211
+
36212
+ /**
36213
+ * BlogPostQuote Shared Slice
36214
+ *
36215
+ * - **API ID**: `blog_post_quote`
36216
+ * - **Description**: Blog Post Quote
36217
+ * - **Documentation**: https://prismic.io/docs/slice
36218
+ */
36219
+ export type BlogPostQuoteSlice = prismic.SharedSlice<
36220
+ 'blog_post_quote',
36221
+ BlogPostQuoteSliceVariation
36222
+ >
36223
+
36224
+ /**
36225
+ * Item in *BlogPostProductCards → Default → Primary → Variants*
36226
+ */
36227
+ export interface BlogProductCardsSliceDefaultPrimaryVariantsItem {
36228
+ /**
36229
+ * Variant field in *BlogPostProductCards → Default → Primary → Variants*
36230
+ *
36231
+ * - **Field Type**: Integration Fields (Catalog: `roka--product_variant_catalog`)
36232
+ * - **Placeholder**: *None*
36233
+ * - **API ID Path**: blog_product_cards.default.primary.variants[].variant
36234
+ * - **Documentation**: https://prismic.io/docs/field#integration
36235
+ */
36236
+ variant: prismic.IntegrationField
36237
+
36238
+ /**
36239
+ * Title field in *BlogPostProductCards → Default → Primary → Variants*
36240
+ *
36241
+ * - **Field Type**: Text
36242
+ * - **Placeholder**: Optional title override
36243
+ * - **API ID Path**: blog_product_cards.default.primary.variants[].title
36244
+ * - **Documentation**: https://prismic.io/docs/field#key-text
36245
+ */
36246
+ title: prismic.KeyTextField
36247
+ }
36248
+
36249
+ /**
36250
+ * Primary content in *BlogPostProductCards → Default → Primary*
36251
+ */
36252
+ export interface BlogProductCardsSliceDefaultPrimary {
36253
+ /**
36254
+ * Variants field in *BlogPostProductCards → Default → Primary*
36255
+ *
36256
+ * - **Field Type**: Group
36257
+ * - **Placeholder**: *None*
36258
+ * - **API ID Path**: blog_product_cards.default.primary.variants[]
36259
+ * - **Documentation**: https://prismic.io/docs/field#group
36260
+ */
36261
+ variants: prismic.GroupField<
36262
+ Simplify<BlogProductCardsSliceDefaultPrimaryVariantsItem>
36263
+ >
36264
+
36265
+ /**
36266
+ * Show Swatches field in *BlogPostProductCards → Default → Primary*
36267
+ *
36268
+ * - **Field Type**: Boolean
36269
+ * - **Placeholder**: *None*
36270
+ * - **Default Value**: false
36271
+ * - **API ID Path**: blog_product_cards.default.primary.show_swatches
36272
+ * - **Documentation**: https://prismic.io/docs/field#boolean
36273
+ */
36274
+ show_swatches: prismic.BooleanField
36275
+ }
36276
+
36277
+ /**
36278
+ * Default variation for BlogPostProductCards Slice
36279
+ *
36280
+ * - **API ID**: `default`
36281
+ * - **Description**: Default
36282
+ * - **Documentation**: https://prismic.io/docs/slice
36283
+ */
36284
+ export type BlogProductCardsSliceDefault = prismic.SharedSliceVariation<
36285
+ 'default',
36286
+ Simplify<BlogProductCardsSliceDefaultPrimary>,
36287
+ never
36288
+ >
36289
+
36290
+ /**
36291
+ * Slice variation for *BlogPostProductCards*
36292
+ */
36293
+ type BlogProductCardsSliceVariation = BlogProductCardsSliceDefault
36294
+
36295
+ /**
36296
+ * BlogPostProductCards Shared Slice
36297
+ *
36298
+ * - **API ID**: `blog_product_cards`
36299
+ * - **Description**: BlogProductCards
36300
+ * - **Documentation**: https://prismic.io/docs/slice
36301
+ */
36302
+ export type BlogProductCardsSlice = prismic.SharedSlice<
36303
+ 'blog_product_cards',
36304
+ BlogProductCardsSliceVariation
36305
+ >
36306
+
35634
36307
  /**
35635
36308
  * Primary content in *CollectionMarketingTile → Default → Primary*
35636
36309
  */
@@ -41064,6 +41737,13 @@ declare module '@prismicio/client' {
41064
41737
  GlobalSettingsDocumentDataSaleTimersItem,
41065
41738
  GlobalSettingsDocumentDataFooterLegalLinksItem,
41066
41739
  GlobalSettingsDocumentDataDisclaimersItem,
41740
+ HeadlessBlogIndexDocument,
41741
+ HeadlessBlogIndexDocumentData,
41742
+ HeadlessBlogIndexDocumentDataSlicesSlice,
41743
+ HeadlessBlogPageDocument,
41744
+ HeadlessBlogPageDocumentData,
41745
+ HeadlessBlogPageDocumentDataSlicesSlice,
41746
+ HeadlessBlogPageDocumentDataCategoriesItem,
41067
41747
  HeadlessCollectionDocument,
41068
41748
  HeadlessCollectionDocumentData,
41069
41749
  HeadlessCollectionDocumentDataSlicesSlice,
@@ -41276,6 +41956,36 @@ declare module '@prismicio/client' {
41276
41956
  BannerImageSliceBannerImageWithTitle,
41277
41957
  BannerImageSliceBannerImageWithLogo,
41278
41958
  BannerImageSliceBannerImageWithTestimonial,
41959
+ BlogAboutRokaSlice,
41960
+ BlogAboutRokaSliceDefaultPrimary,
41961
+ BlogAboutRokaSliceVariation,
41962
+ BlogAboutRokaSliceDefault,
41963
+ BlogHeroSlice,
41964
+ BlogHeroSliceDefaultPrimary,
41965
+ BlogHeroSliceVariation,
41966
+ BlogHeroSliceDefault,
41967
+ BlogPostCollectionSlice,
41968
+ BlogPostCollectionSliceDefaultPrimary,
41969
+ BlogPostCollectionSliceVariation,
41970
+ BlogPostCollectionSliceDefault,
41971
+ BlogPostContentSlice,
41972
+ BlogPostContentSliceDefaultPrimary,
41973
+ BlogPostContentSliceVariation,
41974
+ BlogPostContentSliceDefault,
41975
+ BlogPostImageGridSlice,
41976
+ BlogPostImageGridSliceDefaultPrimaryItemsItem,
41977
+ BlogPostImageGridSliceDefaultPrimary,
41978
+ BlogPostImageGridSliceVariation,
41979
+ BlogPostImageGridSliceDefault,
41980
+ BlogPostQuoteSlice,
41981
+ BlogPostQuoteSliceDefaultPrimary,
41982
+ BlogPostQuoteSliceVariation,
41983
+ BlogPostQuoteSliceDefault,
41984
+ BlogProductCardsSlice,
41985
+ BlogProductCardsSliceDefaultPrimaryVariantsItem,
41986
+ BlogProductCardsSliceDefaultPrimary,
41987
+ BlogProductCardsSliceVariation,
41988
+ BlogProductCardsSliceDefault,
41279
41989
  CollectionMarketingTileSlice,
41280
41990
  CollectionMarketingTileSliceDefaultPrimary,
41281
41991
  CollectionMarketingTileSliceVariation,