@@ -841,6 +841,40 @@ export interface ApiFooterFooter extends Struct.SingleTypeSchema {
841841 } ;
842842}
843843
844+ export interface ApiGithubReleaseGithubRelease
845+ extends Struct . CollectionTypeSchema {
846+ collectionName : 'github_releases' ;
847+ info : {
848+ displayName : 'Github Release' ;
849+ pluralName : 'github-releases' ;
850+ singularName : 'github-release' ;
851+ } ;
852+ options : {
853+ draftAndPublish : true ;
854+ } ;
855+ attributes : {
856+ changelog : Schema . Attribute . RichText ;
857+ createdAt : Schema . Attribute . DateTime ;
858+ createdBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
859+ Schema . Attribute . Private ;
860+ date : Schema . Attribute . String ;
861+ locale : Schema . Attribute . String & Schema . Attribute . Private ;
862+ localizations : Schema . Attribute . Relation <
863+ 'oneToMany' ,
864+ 'api::github-release.github-release'
865+ > &
866+ Schema . Attribute . Private ;
867+ publishedAt : Schema . Attribute . DateTime ;
868+ release_name : Schema . Attribute . String ;
869+ release_url : Schema . Attribute . String ;
870+ repository : Schema . Attribute . String ;
871+ updatedAt : Schema . Attribute . DateTime ;
872+ updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
873+ Schema . Attribute . Private ;
874+ version : Schema . Attribute . String ;
875+ } ;
876+ }
877+
844878export interface ApiHeaderHeader extends Struct . SingleTypeSchema {
845879 collectionName : 'headers' ;
846880 info : {
@@ -2045,6 +2079,7 @@ declare module '@strapi/strapi' {
20452079 'api::enterprise-license.enterprise-license' : ApiEnterpriseLicenseEnterpriseLicense ;
20462080 'api::faq.faq' : ApiFaqFaq ;
20472081 'api::footer.footer' : ApiFooterFooter ;
2082+ 'api::github-release.github-release' : ApiGithubReleaseGithubRelease ;
20482083 'api::header.header' : ApiHeaderHeader ;
20492084 'api::homepage.homepage' : ApiHomepageHomepage ;
20502085 'api::navbar.navbar' : ApiNavbarNavbar ;
0 commit comments