vehicles
This commit is contained in:
parent
7679f4f6c9
commit
bd52f5c996
11 changed files with 1892 additions and 20 deletions
2
types/generated/components.d.ts
vendored
2
types/generated/components.d.ts
vendored
|
@ -180,7 +180,7 @@ export interface SharedList extends Struct.ComponentSchema {
|
|||
enable_detail: Schema.Attribute.Boolean &
|
||||
Schema.Attribute.Required &
|
||||
Schema.Attribute.DefaultTo<false>;
|
||||
sammlungs_referenz: Schema.Attribute.Relation<
|
||||
lookup: Schema.Attribute.Relation<
|
||||
'oneToOne',
|
||||
'api::collection-lookup.collection-lookup'
|
||||
>;
|
||||
|
|
44
types/generated/contentTypes.d.ts
vendored
44
types/generated/contentTypes.d.ts
vendored
|
@ -381,15 +381,14 @@ export interface ApiArticleArticle extends Struct.CollectionTypeSchema {
|
|||
draftAndPublish: true;
|
||||
};
|
||||
attributes: {
|
||||
attachment: Schema.Attribute.Media<'images' | 'files' | 'videos', true>;
|
||||
attachment: Schema.Attribute.Media<'images', true>;
|
||||
content: Schema.Attribute.Blocks;
|
||||
createdAt: Schema.Attribute.DateTime;
|
||||
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
||||
Schema.Attribute.Private;
|
||||
date: Schema.Attribute.Date & Schema.Attribute.Required;
|
||||
description: Schema.Attribute.String & Schema.Attribute.Required;
|
||||
image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'> &
|
||||
Schema.Attribute.Required;
|
||||
image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
|
||||
locale: Schema.Attribute.String & Schema.Attribute.Private;
|
||||
localizations: Schema.Attribute.Relation<
|
||||
'oneToMany',
|
||||
|
@ -422,6 +421,9 @@ export interface ApiCollectionLookupCollectionLookup
|
|||
createdAt: Schema.Attribute.DateTime;
|
||||
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
||||
Schema.Attribute.Private;
|
||||
imageItem: Schema.Attribute.Boolean &
|
||||
Schema.Attribute.Required &
|
||||
Schema.Attribute.DefaultTo<false>;
|
||||
locale: Schema.Attribute.String & Schema.Attribute.Private;
|
||||
localizations: Schema.Attribute.Relation<
|
||||
'oneToMany',
|
||||
|
@ -548,7 +550,7 @@ export interface ApiOperationOperation extends Struct.CollectionTypeSchema {
|
|||
draftAndPublish: true;
|
||||
};
|
||||
attributes: {
|
||||
attachment: Schema.Attribute.Media<'images' | 'files' | 'videos', true>;
|
||||
attachment: Schema.Attribute.Media<'images', true>;
|
||||
content: Schema.Attribute.Blocks;
|
||||
createdAt: Schema.Attribute.DateTime;
|
||||
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
||||
|
@ -611,6 +613,39 @@ export interface ApiPagePage extends Struct.CollectionTypeSchema {
|
|||
};
|
||||
}
|
||||
|
||||
export interface ApiVehicleVehicle extends Struct.CollectionTypeSchema {
|
||||
collectionName: 'vehicles';
|
||||
info: {
|
||||
displayName: 'Fahrzeuge';
|
||||
pluralName: 'vehicles';
|
||||
singularName: 'vehicle';
|
||||
};
|
||||
options: {
|
||||
draftAndPublish: true;
|
||||
};
|
||||
attributes: {
|
||||
attachment: Schema.Attribute.Media<'images', true>;
|
||||
content: Schema.Attribute.Blocks;
|
||||
createdAt: Schema.Attribute.DateTime;
|
||||
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
||||
Schema.Attribute.Private;
|
||||
description: Schema.Attribute.String & Schema.Attribute.Required;
|
||||
image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
|
||||
locale: Schema.Attribute.String & Schema.Attribute.Private;
|
||||
localizations: Schema.Attribute.Relation<
|
||||
'oneToMany',
|
||||
'api::vehicle.vehicle'
|
||||
> &
|
||||
Schema.Attribute.Private;
|
||||
publishedAt: Schema.Attribute.DateTime;
|
||||
slug: Schema.Attribute.UID<'title'> & Schema.Attribute.Required;
|
||||
title: Schema.Attribute.String & Schema.Attribute.Required;
|
||||
updatedAt: Schema.Attribute.DateTime;
|
||||
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
||||
Schema.Attribute.Private;
|
||||
};
|
||||
}
|
||||
|
||||
export interface PluginContentReleasesRelease
|
||||
extends Struct.CollectionTypeSchema {
|
||||
collectionName: 'strapi_releases';
|
||||
|
@ -1123,6 +1158,7 @@ declare module '@strapi/strapi' {
|
|||
'api::homepage.homepage': ApiHomepageHomepage;
|
||||
'api::operation.operation': ApiOperationOperation;
|
||||
'api::page.page': ApiPagePage;
|
||||
'api::vehicle.vehicle': ApiVehicleVehicle;
|
||||
'plugin::content-releases.release': PluginContentReleasesRelease;
|
||||
'plugin::content-releases.release-action': PluginContentReleasesReleaseAction;
|
||||
'plugin::i18n.locale': PluginI18NLocale;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue