mirror of
https://github.com/He4eT/simple-spaceapi.git
synced 2026-05-05 01:47:24 +00:00
Types: generated
This commit is contained in:
parent
7eba0b9622
commit
c18112bfe5
1 changed files with 29 additions and 0 deletions
29
types/generated/contentTypes.d.ts
vendored
29
types/generated/contentTypes.d.ts
vendored
|
|
@ -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 {
|
export interface ApiHackspaceHackspace extends Struct.SingleTypeSchema {
|
||||||
collectionName: 'hackspaces';
|
collectionName: 'hackspaces';
|
||||||
info: {
|
info: {
|
||||||
|
|
@ -944,6 +972,7 @@ declare module '@strapi/strapi' {
|
||||||
'admin::transfer-token': AdminTransferToken;
|
'admin::transfer-token': AdminTransferToken;
|
||||||
'admin::transfer-token-permission': AdminTransferTokenPermission;
|
'admin::transfer-token-permission': AdminTransferTokenPermission;
|
||||||
'admin::user': AdminUser;
|
'admin::user': AdminUser;
|
||||||
|
'api::event.event': ApiEventEvent;
|
||||||
'api::hackspace.hackspace': ApiHackspaceHackspace;
|
'api::hackspace.hackspace': ApiHackspaceHackspace;
|
||||||
'api::state.state': ApiStateState;
|
'api::state.state': ApiStateState;
|
||||||
'plugin::content-releases.release': PluginContentReleasesRelease;
|
'plugin::content-releases.release': PluginContentReleasesRelease;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue