Reorganize generated components
This commit is contained in:
Vendored
+58
-58
@@ -1,60 +1,5 @@
|
||||
import type { Schema, Attribute } from '@strapi/strapi';
|
||||
|
||||
export interface UrlLiens extends Schema.Component {
|
||||
collectionName: 'components_url_liens';
|
||||
info: {
|
||||
displayName: 'Vid\u00E9o';
|
||||
icon: 'hand-pointer';
|
||||
description: '';
|
||||
};
|
||||
attributes: {
|
||||
url: Attribute.String;
|
||||
plateforme: Attribute.Enumeration<
|
||||
['Youtube', 'Gad\u00E9', 'Dailymotion', 'Vimeo', 'File', 'Lbry', 'Rumble']
|
||||
>;
|
||||
};
|
||||
}
|
||||
|
||||
export interface TradTraductions extends Schema.Component {
|
||||
collectionName: 'components_trad_traductions';
|
||||
info: {
|
||||
displayName: 'Traductions';
|
||||
icon: 'spell-check';
|
||||
description: '';
|
||||
};
|
||||
attributes: {
|
||||
francais: Attribute.RichText;
|
||||
anglais: Attribute.RichText;
|
||||
espagnol: Attribute.RichText;
|
||||
allemand: Attribute.RichText;
|
||||
italien: Attribute.RichText;
|
||||
};
|
||||
}
|
||||
|
||||
export interface StoreAlbum extends Schema.Component {
|
||||
collectionName: 'components_store_albums';
|
||||
info: {
|
||||
displayName: 'Album';
|
||||
icon: 'music';
|
||||
description: '';
|
||||
};
|
||||
attributes: {
|
||||
url: Attribute.String;
|
||||
plateforme: Attribute.Enumeration<
|
||||
[
|
||||
'Tidal',
|
||||
'Spotify',
|
||||
'Deezer',
|
||||
'Qobuz',
|
||||
'Youtubemusic',
|
||||
'Applemusic',
|
||||
'Amazon',
|
||||
'Soundcloud'
|
||||
]
|
||||
>;
|
||||
};
|
||||
}
|
||||
|
||||
export interface DifferenceParolesDiff extends Schema.Component {
|
||||
collectionName: 'components_diff_paroles_diffs';
|
||||
info: {
|
||||
@@ -84,13 +29,68 @@ export interface DifferenceParolesDiff extends Schema.Component {
|
||||
};
|
||||
}
|
||||
|
||||
export interface StoreAlbum extends Schema.Component {
|
||||
collectionName: 'components_store_albums';
|
||||
info: {
|
||||
displayName: 'Album';
|
||||
icon: 'music';
|
||||
description: '';
|
||||
};
|
||||
attributes: {
|
||||
url: Attribute.String;
|
||||
plateforme: Attribute.Enumeration<
|
||||
[
|
||||
'Tidal',
|
||||
'Spotify',
|
||||
'Deezer',
|
||||
'Qobuz',
|
||||
'Youtubemusic',
|
||||
'Applemusic',
|
||||
'Amazon',
|
||||
'Soundcloud'
|
||||
]
|
||||
>;
|
||||
};
|
||||
}
|
||||
|
||||
export interface TradTraductions extends Schema.Component {
|
||||
collectionName: 'components_trad_traductions';
|
||||
info: {
|
||||
displayName: 'Traductions';
|
||||
icon: 'spell-check';
|
||||
description: '';
|
||||
};
|
||||
attributes: {
|
||||
francais: Attribute.RichText;
|
||||
anglais: Attribute.RichText;
|
||||
espagnol: Attribute.RichText;
|
||||
allemand: Attribute.RichText;
|
||||
italien: Attribute.RichText;
|
||||
};
|
||||
}
|
||||
|
||||
export interface UrlLiens extends Schema.Component {
|
||||
collectionName: 'components_url_liens';
|
||||
info: {
|
||||
displayName: 'Vid\u00E9o';
|
||||
icon: 'hand-pointer';
|
||||
description: '';
|
||||
};
|
||||
attributes: {
|
||||
url: Attribute.String;
|
||||
plateforme: Attribute.Enumeration<
|
||||
['Youtube', 'Gad\u00E9', 'Dailymotion', 'Vimeo', 'File', 'Lbry', 'Rumble']
|
||||
>;
|
||||
};
|
||||
}
|
||||
|
||||
declare module '@strapi/types' {
|
||||
export module Shared {
|
||||
export interface Components {
|
||||
'url.liens': UrlLiens;
|
||||
'trad.traductions': TradTraductions;
|
||||
'store.album': StoreAlbum;
|
||||
'difference.paroles-diff': DifferenceParolesDiff;
|
||||
'store.album': StoreAlbum;
|
||||
'trad.traductions': TradTraductions;
|
||||
'url.liens': UrlLiens;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user