diff --git a/types/generated/contentTypes.d.ts b/types/generated/contentTypes.d.ts index d114b83..7fd2706 100644 --- a/types/generated/contentTypes.d.ts +++ b/types/generated/contentTypes.d.ts @@ -369,6 +369,34 @@ export interface AdminUser extends Struct.CollectionTypeSchema { }; } +export interface ApiEventEvent extends Struct.CollectionTypeSchema { + collectionName: 'events'; + info: { + displayName: 'Event'; + pluralName: 'events'; + singularName: 'event'; + }; + options: { + draftAndPublish: false; + }; + attributes: { + createdAt: Schema.Attribute.DateTime; + createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & + Schema.Attribute.Private; + extra: Schema.Attribute.Text; + locale: Schema.Attribute.String & Schema.Attribute.Private; + localizations: Schema.Attribute.Relation<'oneToMany', 'api::event.event'> & + Schema.Attribute.Private; + name: Schema.Attribute.String & Schema.Attribute.Required; + publishedAt: Schema.Attribute.DateTime; + timestamp: Schema.Attribute.BigInteger & Schema.Attribute.Required; + type: Schema.Attribute.String & Schema.Attribute.Required; + updatedAt: Schema.Attribute.DateTime; + updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & + Schema.Attribute.Private; + }; +} + export interface ApiHackspaceHackspace extends Struct.SingleTypeSchema { collectionName: 'hackspaces'; info: { @@ -944,6 +972,7 @@ declare module '@strapi/strapi' { 'admin::transfer-token': AdminTransferToken; 'admin::transfer-token-permission': AdminTransferTokenPermission; 'admin::user': AdminUser; + 'api::event.event': ApiEventEvent; 'api::hackspace.hackspace': ApiHackspaceHackspace; 'api::state.state': ApiStateState; 'plugin::content-releases.release': PluginContentReleasesRelease;