From 8416e15af213e198fbce1d26612767cc6e045c62 Mon Sep 17 00:00:00 2001 From: He4eT Date: Mon, 31 Mar 2025 18:03:35 +0200 Subject: [PATCH] Types: generated --- types/generated/components.d.ts | 13 +++++++++++++ types/generated/contentTypes.d.ts | 1 + 2 files changed, 14 insertions(+) diff --git a/types/generated/components.d.ts b/types/generated/components.d.ts index c25850f..68c9a57 100644 --- a/types/generated/components.d.ts +++ b/types/generated/components.d.ts @@ -63,6 +63,18 @@ export interface HackspaceLocation extends Struct.ComponentSchema { }; } +export interface HackspaceSpacefed extends Struct.ComponentSchema { + collectionName: 'components_hackspace_spacefeds'; + info: { + displayName: 'spacefed'; + icon: 'globe'; + }; + attributes: { + spacenet: Schema.Attribute.Boolean & Schema.Attribute.Required; + spacesaml: Schema.Attribute.Boolean & Schema.Attribute.Required; + }; +} + export interface LocationArea extends Struct.ComponentSchema { collectionName: 'components_location_areas'; info: { @@ -95,6 +107,7 @@ declare module '@strapi/strapi' { 'hackspace.contacts': HackspaceContacts; 'hackspace.keymaster': HackspaceKeymaster; 'hackspace.location': HackspaceLocation; + 'hackspace.spacefed': HackspaceSpacefed; 'location.area': LocationArea; 'state.state-icon': StateStateIcon; } diff --git a/types/generated/contentTypes.d.ts b/types/generated/contentTypes.d.ts index 581f76d..a23c183 100644 --- a/types/generated/contentTypes.d.ts +++ b/types/generated/contentTypes.d.ts @@ -396,6 +396,7 @@ export interface ApiHackspaceHackspace extends Struct.SingleTypeSchema { logo: Schema.Attribute.Media<'images'> & Schema.Attribute.Required; publishedAt: Schema.Attribute.DateTime; space: Schema.Attribute.String & Schema.Attribute.Required; + spacefed: Schema.Attribute.Component<'hackspace.spacefed', false>; updatedAt: Schema.Attribute.DateTime; updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & Schema.Attribute.Private;