From c18112bfe5e6b952383a3184be005a71a92584e5 Mon Sep 17 00:00:00 2001 From: He4eT Date: Tue, 1 Apr 2025 12:54:44 +0200 Subject: [PATCH] Types: generated --- types/generated/contentTypes.d.ts | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) 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;