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