Files
api.pawol.nu/types/generated/components.d.ts
T
cedric c62b54fba7
Déploiement API BETA / build (push) Successful in 2m9s
Déploiement API PROD / build (push) Successful in 2m5s
Déploiement API BETA / deploy (push) Successful in 46s
Déploiement API PROD / deploy (push) Successful in 52s
feat: add stems links field (kDrive/NIYAJ) to paroles
2026-07-03 14:14:57 +04:00

146 lines
3.5 KiB
TypeScript

import type { Schema, Struct } from '@strapi/strapi';
export interface DifferenceParolesDiff extends Struct.ComponentSchema {
collectionName: 'components_diff_paroles_diffs';
info: {
description: '';
displayName: 'Paroles diff';
icon: 'american-sign-language-interpreting';
};
attributes: {
admin_user: Schema.Attribute.Relation<'oneToOne', 'admin::user'>;
date: Schema.Attribute.DateTime;
jsonDiff: Schema.Attribute.JSON;
paroles: Schema.Attribute.RichText;
sources: Schema.Attribute.Enumeration<
[
'transcription',
'francais',
'anglais',
'espagnol',
'allemand',
'italien',
]
>;
};
}
export interface SocialRezoSosyal extends Struct.ComponentSchema {
collectionName: 'components_social_rezo_sosyal';
info: {
description: '';
displayName: 'R\u00E9zo Sosyal';
icon: 'earth';
};
attributes: {
plateforme: Schema.Attribute.Enumeration<
[
'Mastodon',
'Peertube',
'Pixelfed',
'Funkwhale',
'Bluesky',
'Instagram',
'Youtube',
'Tiktok',
'Spotify',
'Deezer',
'Applemusic',
'Bandcamp',
'Soundcloud',
'Facebook',
'Twitter',
'Linktree',
'SiteWeb',
]
> &
Schema.Attribute.Required;
url: Schema.Attribute.String & Schema.Attribute.Required;
};
}
export interface StemLyen extends Struct.ComponentSchema {
collectionName: 'components_stem_lyens';
info: {
description: '';
displayName: 'Stems';
icon: 'database';
};
attributes: {
plateforme: Schema.Attribute.Enumeration<['kDrive', 'NIYAJ']> &
Schema.Attribute.Required;
url: Schema.Attribute.String & Schema.Attribute.Required;
};
}
export interface StoreAlbum extends Struct.ComponentSchema {
collectionName: 'components_store_albums';
info: {
description: '';
displayName: 'Album';
icon: 'music';
};
attributes: {
plateforme: Schema.Attribute.Enumeration<
[
'Tidal',
'Spotify',
'Deezer',
'Qobuz',
'Youtubemusic',
'Applemusic',
'Amazon',
'Soundcloud',
]
>;
url: Schema.Attribute.String;
};
}
export interface TradTraductions extends Struct.ComponentSchema {
collectionName: 'components_trad_traductions';
info: {
description: '';
displayName: 'Traductions';
icon: 'spell-check';
};
attributes: {
allemand: Schema.Attribute.RichText;
anglais: Schema.Attribute.RichText;
coreen: Schema.Attribute.RichText;
espagnol: Schema.Attribute.RichText;
francais: Schema.Attribute.RichText;
italien: Schema.Attribute.RichText;
japonais: Schema.Attribute.RichText;
portugais: Schema.Attribute.RichText;
};
}
export interface UrlLiens extends Struct.ComponentSchema {
collectionName: 'components_url_liens';
info: {
description: '';
displayName: 'Vid\u00E9o';
icon: 'hand-pointer';
};
attributes: {
plateforme: Schema.Attribute.Enumeration<
['Youtube', 'Gad\u00E9', 'Dailymotion', 'Vimeo', 'File', 'Lbry', 'Rumble']
>;
url: Schema.Attribute.String;
};
}
declare module '@strapi/strapi' {
export module Public {
export interface ComponentSchemas {
'difference.paroles-diff': DifferenceParolesDiff;
'social.rezo-sosyal': SocialRezoSosyal;
'stem.lyen': StemLyen;
'store.album': StoreAlbum;
'trad.traductions': TradTraductions;
'url.liens': UrlLiens;
}
}
}