@@ -421,6 +421,10 @@ export interface ApiBlogPageBlogPage extends Struct.CollectionTypeSchema {
421421 draftAndPublish : true ;
422422 } ;
423423 attributes : {
424+ catogaries : Schema . Attribute . Relation <
425+ 'oneToMany' ,
426+ 'api::catogary.catogary'
427+ > ;
424428 content : Schema . Attribute . RichText & Schema . Attribute . Required ;
425429 createdAt : Schema . Attribute . DateTime ;
426430 createdBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
@@ -473,6 +477,38 @@ export interface ApiBlogBlog extends Struct.SingleTypeSchema {
473477 } ;
474478}
475479
480+ export interface ApiCatogaryCatogary extends Struct . CollectionTypeSchema {
481+ collectionName : 'catogaries' ;
482+ info : {
483+ displayName : 'Catogary' ;
484+ pluralName : 'catogaries' ;
485+ singularName : 'catogary' ;
486+ } ;
487+ options : {
488+ draftAndPublish : true ;
489+ } ;
490+ attributes : {
491+ category : Schema . Attribute . String ;
492+ catogary : Schema . Attribute . Relation <
493+ 'manyToOne' ,
494+ 'api::blog-page.blog-page'
495+ > ;
496+ createdAt : Schema . Attribute . DateTime ;
497+ createdBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
498+ Schema . Attribute . Private ;
499+ locale : Schema . Attribute . String & Schema . Attribute . Private ;
500+ localizations : Schema . Attribute . Relation <
501+ 'oneToMany' ,
502+ 'api::catogary.catogary'
503+ > &
504+ Schema . Attribute . Private ;
505+ publishedAt : Schema . Attribute . DateTime ;
506+ updatedAt : Schema . Attribute . DateTime ;
507+ updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
508+ Schema . Attribute . Private ;
509+ } ;
510+ }
511+
476512export interface ApiCommunitySupportCommunitySupport
477513 extends Struct . SingleTypeSchema {
478514 collectionName : 'community_supports' ;
@@ -1555,6 +1591,7 @@ declare module '@strapi/strapi' {
15551591 'api::about-us.about-us' : ApiAboutUsAboutUs ;
15561592 'api::blog-page.blog-page' : ApiBlogPageBlogPage ;
15571593 'api::blog.blog' : ApiBlogBlog ;
1594+ 'api::catogary.catogary' : ApiCatogaryCatogary ;
15581595 'api::community-support.community-support' : ApiCommunitySupportCommunitySupport ;
15591596 'api::contact.contact' : ApiContactContact ;
15601597 'api::download.download' : ApiDownloadDownload ;
0 commit comments