build: upgrade to v4.25.23
This commit is contained in:
Vendored
+44
-44
@@ -1,30 +1,21 @@
|
||||
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']
|
||||
>;
|
||||
};
|
||||
}
|
||||
import type { Attribute, Schema } from '@strapi/strapi';
|
||||
|
||||
export interface DifferenceParolesDiff extends Schema.Component {
|
||||
collectionName: 'components_diff_paroles_diffs';
|
||||
info: {
|
||||
description: '';
|
||||
displayName: 'Paroles diff';
|
||||
icon: 'american-sign-language-interpreting';
|
||||
description: '';
|
||||
};
|
||||
attributes: {
|
||||
paroles: Attribute.RichText;
|
||||
admin_user: Attribute.Relation<
|
||||
'difference.paroles-diff',
|
||||
'oneToOne',
|
||||
'admin::user'
|
||||
>;
|
||||
date: Attribute.DateTime;
|
||||
jsonDiff: Attribute.JSON;
|
||||
paroles: Attribute.RichText;
|
||||
sources: Attribute.Enumeration<
|
||||
[
|
||||
'transcription',
|
||||
@@ -35,40 +26,17 @@ export interface DifferenceParolesDiff extends Schema.Component {
|
||||
'italien'
|
||||
]
|
||||
>;
|
||||
admin_user: Attribute.Relation<
|
||||
'difference.paroles-diff',
|
||||
'oneToOne',
|
||||
'admin::user'
|
||||
>;
|
||||
jsonDiff: Attribute.JSON;
|
||||
};
|
||||
}
|
||||
|
||||
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: {
|
||||
description: '';
|
||||
displayName: 'Album';
|
||||
icon: 'music';
|
||||
description: '';
|
||||
};
|
||||
attributes: {
|
||||
url: Attribute.String;
|
||||
plateforme: Attribute.Enumeration<
|
||||
[
|
||||
'Tidal',
|
||||
@@ -81,16 +49,48 @@ export interface StoreAlbum extends Schema.Component {
|
||||
'Soundcloud'
|
||||
]
|
||||
>;
|
||||
url: Attribute.String;
|
||||
};
|
||||
}
|
||||
|
||||
export interface TradTraductions extends Schema.Component {
|
||||
collectionName: 'components_trad_traductions';
|
||||
info: {
|
||||
description: '';
|
||||
displayName: 'Traductions';
|
||||
icon: 'spell-check';
|
||||
};
|
||||
attributes: {
|
||||
allemand: Attribute.RichText;
|
||||
anglais: Attribute.RichText;
|
||||
espagnol: Attribute.RichText;
|
||||
francais: Attribute.RichText;
|
||||
italien: Attribute.RichText;
|
||||
};
|
||||
}
|
||||
|
||||
export interface UrlLiens extends Schema.Component {
|
||||
collectionName: 'components_url_liens';
|
||||
info: {
|
||||
description: '';
|
||||
displayName: 'Vid\u00E9o';
|
||||
icon: 'hand-pointer';
|
||||
};
|
||||
attributes: {
|
||||
plateforme: Attribute.Enumeration<
|
||||
['Youtube', 'Gad\u00E9', 'Dailymotion', 'Vimeo', 'File', 'Lbry', 'Rumble']
|
||||
>;
|
||||
url: Attribute.String;
|
||||
};
|
||||
}
|
||||
|
||||
declare module '@strapi/types' {
|
||||
export module Shared {
|
||||
export interface Components {
|
||||
'url.liens': UrlLiens;
|
||||
'difference.paroles-diff': DifferenceParolesDiff;
|
||||
'trad.traductions': TradTraductions;
|
||||
'store.album': StoreAlbum;
|
||||
'trad.traductions': TradTraductions;
|
||||
'url.liens': UrlLiens;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+640
-640
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user