mirror of
https://github.com/He4eT/simple-spaceapi.git
synced 2026-05-04 17:37:24 +00:00
Types: generated
This commit is contained in:
parent
1173236c07
commit
8416e15af2
2 changed files with 14 additions and 0 deletions
13
types/generated/components.d.ts
vendored
13
types/generated/components.d.ts
vendored
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
1
types/generated/contentTypes.d.ts
vendored
1
types/generated/contentTypes.d.ts
vendored
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue