@@ -877,6 +877,38 @@ export interface ApiGithubReleaseGithubRelease
877877 } ;
878878}
879879
880+ export interface ApiGlobalAdsBannerGlobalAdsBanner
881+ extends Struct . SingleTypeSchema {
882+ collectionName : 'global_ads_banners' ;
883+ info : {
884+ displayName : 'Global Ads Banner' ;
885+ pluralName : 'global-ads-banners' ;
886+ singularName : 'global-ads-banner' ;
887+ } ;
888+ options : {
889+ draftAndPublish : true ;
890+ } ;
891+ attributes : {
892+ createdAt : Schema . Attribute . DateTime ;
893+ createdBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
894+ Schema . Attribute . Private ;
895+ date : Schema . Attribute . DateTime ;
896+ locale : Schema . Attribute . String & Schema . Attribute . Private ;
897+ localizations : Schema . Attribute . Relation <
898+ 'oneToMany' ,
899+ 'api::global-ads-banner.global-ads-banner'
900+ > &
901+ Schema . Attribute . Private ;
902+ primaryButton : Schema . Attribute . Component < 'elements.button' , false > ;
903+ publishedAt : Schema . Attribute . DateTime ;
904+ tag : Schema . Attribute . String ;
905+ title : Schema . Attribute . String ;
906+ updatedAt : Schema . Attribute . DateTime ;
907+ updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
908+ Schema . Attribute . Private ;
909+ } ;
910+ }
911+
880912export interface ApiHeaderHeader extends Struct . SingleTypeSchema {
881913 collectionName : 'headers' ;
882914 info : {
@@ -2083,6 +2115,7 @@ declare module '@strapi/strapi' {
20832115 'api::faq.faq' : ApiFaqFaq ;
20842116 'api::footer.footer' : ApiFooterFooter ;
20852117 'api::github-release.github-release' : ApiGithubReleaseGithubRelease ;
2118+ 'api::global-ads-banner.global-ads-banner' : ApiGlobalAdsBannerGlobalAdsBanner ;
20862119 'api::header.header' : ApiHeaderHeader ;
20872120 'api::homepage.homepage' : ApiHomepageHomepage ;
20882121 'api::navbar.navbar' : ApiNavbarNavbar ;
0 commit comments