Types: generated

This commit is contained in:
He4eT 2025-03-31 18:03:35 +02:00
commit 8416e15af2
2 changed files with 14 additions and 0 deletions

View file

@ -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 { export interface LocationArea extends Struct.ComponentSchema {
collectionName: 'components_location_areas'; collectionName: 'components_location_areas';
info: { info: {
@ -95,6 +107,7 @@ declare module '@strapi/strapi' {
'hackspace.contacts': HackspaceContacts; 'hackspace.contacts': HackspaceContacts;
'hackspace.keymaster': HackspaceKeymaster; 'hackspace.keymaster': HackspaceKeymaster;
'hackspace.location': HackspaceLocation; 'hackspace.location': HackspaceLocation;
'hackspace.spacefed': HackspaceSpacefed;
'location.area': LocationArea; 'location.area': LocationArea;
'state.state-icon': StateStateIcon; 'state.state-icon': StateStateIcon;
} }

View file

@ -396,6 +396,7 @@ export interface ApiHackspaceHackspace extends Struct.SingleTypeSchema {
logo: Schema.Attribute.Media<'images'> & Schema.Attribute.Required; logo: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
publishedAt: Schema.Attribute.DateTime; publishedAt: Schema.Attribute.DateTime;
space: Schema.Attribute.String & Schema.Attribute.Required; space: Schema.Attribute.String & Schema.Attribute.Required;
spacefed: Schema.Attribute.Component<'hackspace.spacefed', false>;
updatedAt: Schema.Attribute.DateTime; updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;