fix(front): updated generated types

This commit is contained in:
ArneBo 2025-04-03 15:44:14 +02:00
parent 2bcc674197
commit f0ce854dd0
1 changed files with 5 additions and 1 deletions

View File

@ -6487,6 +6487,7 @@ export interface components {
/** Format: uri */
readonly url: string;
readonly downloads_count: number;
readonly subscriptions_count: number;
};
ChannelCreate: {
name: string;
@ -8423,6 +8424,7 @@ export interface components {
PatchedPlaylistRequest: {
name?: string;
privacy_level?: components["schemas"]["PrivacyLevelEnum"];
description?: string | null;
};
PatchedRadioRequest: {
is_public?: boolean;
@ -8475,6 +8477,7 @@ export interface components {
readonly album_covers: string[];
readonly duration: number;
readonly is_playable: boolean;
description?: string | null;
};
PlaylistAddManyRequest: {
tracks: number[];
@ -8483,6 +8486,7 @@ export interface components {
PlaylistRequest: {
name: string;
privacy_level?: components["schemas"]["PrivacyLevelEnum"];
description?: string | null;
};
PlaylistTrack: {
readonly track: string;
@ -8864,7 +8868,7 @@ export interface components {
channel?: string;
/** @default pending */
import_status: components["schemas"]["ImportStatusEnum"];
privacy_level: components["schemas"]["LibraryPrivacyLevelEnum"];
privacy_level?: components["schemas"]["LibraryPrivacyLevelEnum"];
import_metadata?: unknown;
import_reference?: string;
source?: string | null;