@@ -113,7 +113,7 @@ export type ArticleType = {
113113  headings : HeadingType [ ] 
114114  slug : string 
115115  image ?: ImageType  |  null 
116-   category ?: CategoryType  |  null 
116+   blogCategory ?: BlogCategoryType  |  null 
117117  author ?: AuthorType  |  null 
118118  pageMetadata ?: PageMetadataType 
119119}  &  DefaultAttributesType 
@@ -134,7 +134,7 @@ export type PopulatedAuthorType<K extends OptionalKeys<AuthorType>> = Populate<
134134  K 
135135> 
136136
137- export  type  CategoryType  =  { 
137+ export  type  BlogCategoryType  =  { 
138138  slug : string 
139139  title : string 
140140  description : string 
@@ -144,25 +144,32 @@ export type CategoryType = {
144144  htmlTitle : string 
145145  image ?: ImageType  |  null 
146146  articles ?: ArticleType [ ]  |  null 
147-   questions ?: QuestionType [ ]  |  null 
147+   faq ?: FAQType  |  null 
148148  pageMetadata ?: PageMetadataType 
149149  mainArticle ?: ArticleType  |  null 
150150}  &  DefaultAttributesType 
151151
152- export  type  PopulatedCategoryType < K  extends  OptionalKeys < CategoryType > >  = 
153-   Populate < CategoryType ,  K > 
152+ export  type  PopulatedBlogCategoryType < 
153+   K  extends  OptionalKeys < BlogCategoryType > , 
154+ >  =  Populate < BlogCategoryType ,  K > 
154155
155156export  type  QuestionType  =  { 
156157  question : string 
157158  answer : string 
158159  htmlAnswer : string 
159160  order : number 
160-   category ?: CategoryType  |  null 
161+   blogCategory ?: BlogCategoryType  |  null 
161162}  &  DefaultAttributesType 
162163
163164export  type  ArticleItemType  =  Pick < 
164-   PopulatedArticleType < 'image'  |  'category' > , 
165-   'id'  |  'documentId'  |  'title'  |  'description'  |  'slug'  |  'image'  |  'category' 
165+   PopulatedArticleType < 'image'  |  'blogCategory' > , 
166+   |  'id' 
167+   |  'documentId' 
168+   |  'title' 
169+   |  'description' 
170+   |  'slug' 
171+   |  'image' 
172+   |  'blogCategory' 
166173> 
167174
168175export  type  BannerType  =  { 
@@ -202,15 +209,11 @@ export type PartnerCampaignType = {
202209  image ?: ImageType  |  null 
203210  logo : ImageType 
204211  backgroundColor ?: string 
205-   questions ?: { 
206-     question : string 
207-     answer : string 
208-     htmlAnswer : string 
209-   } [ ] 
212+   faq ?: FAQType  |  null 
210213} 
211214
212215export  type  FAQType  =  { 
213-   category : string 
216+   title : string 
214217  order : number 
215218  questions : QuestionType [ ] 
216219  subTitle ?: string 
@@ -249,7 +252,7 @@ export type ThematicLandingPage = {
249252  block4 ?: CarouselItemType [ ] 
250253  block5 ?: TitleImageListDescriptionWithHTML 
251254  block6 ?: TitleImageListDescriptionWithHTML 
252-   articlesList ?: ArticleType [ ] 
255+   articles ?: ArticleType [ ] 
253256  articlesCTALabel ?: string 
254257  articlesCTALink ?: string 
255258  block7 ?: TitleImageListDescriptionWithHTML 
0 commit comments