@@ -774,7 +774,7 @@ export interface ApiEnterpriseLicenseEnterpriseLicense
774774 } ;
775775}
776776
777- export interface ApiEventPageEventPage extends Struct . CollectionTypeSchema {
777+ export interface ApiEventPageEventPage extends Struct . SingleTypeSchema {
778778 collectionName : 'event_pages' ;
779779 info : {
780780 description : '' ;
@@ -786,22 +786,20 @@ export interface ApiEventPageEventPage extends Struct.CollectionTypeSchema {
786786 draftAndPublish : true ;
787787 } ;
788788 attributes : {
789+ body : Schema . Attribute . DynamicZone <
790+ [ 'section-hero.resource-hero-section' , 'section-cards.event-cards' ]
791+ > ;
789792 createdAt : Schema . Attribute . DateTime ;
790793 createdBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
791794 Schema . Attribute . Private ;
792- description : Schema . Attribute . Text ;
793- eventDate : Schema . Attribute . Date ;
794- eventType : Schema . Attribute . String ;
795795 locale : Schema . Attribute . String & Schema . Attribute . Private ;
796796 localizations : Schema . Attribute . Relation <
797797 'oneToMany' ,
798798 'api::event-page.event-page'
799799 > &
800800 Schema . Attribute . Private ;
801- place : Schema . Attribute . String ;
802801 publishedAt : Schema . Attribute . DateTime ;
803- slug : Schema . Attribute . String ;
804- title : Schema . Attribute . String ;
802+ seo : Schema . Attribute . Component < 'seo.seo' , false > ;
805803 updatedAt : Schema . Attribute . DateTime ;
806804 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
807805 Schema . Attribute . Private ;
@@ -915,6 +913,7 @@ export interface ApiGlobalAdsBannerGlobalAdsBanner
915913 extends Struct . SingleTypeSchema {
916914 collectionName : 'global_ads_banners' ;
917915 info : {
916+ description : '' ;
918917 displayName : 'Global Ads Banner' ;
919918 pluralName : 'global-ads-banners' ;
920919 singularName : 'global-ads-banner' ;
@@ -936,7 +935,10 @@ export interface ApiGlobalAdsBannerGlobalAdsBanner
936935 primaryButton : Schema . Attribute . Component < 'elements.button' , false > ;
937936 publishedAt : Schema . Attribute . DateTime ;
938937 tag : Schema . Attribute . String ;
939- title : Schema . Attribute . String ;
938+ title : Schema . Attribute . String &
939+ Schema . Attribute . SetMinMaxLength < {
940+ maxLength : 60 ;
941+ } > ;
940942 updatedAt : Schema . Attribute . DateTime ;
941943 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
942944 Schema . Attribute . Private ;
0 commit comments