chore(openapi+web): regenerate v1.json and SPA API types after main merge

This commit is contained in:
2026-07-04 07:55:05 +02:00
parent 06355b7590
commit 7bd694394a
2 changed files with 531 additions and 4 deletions
+99 -3
View File
@@ -21,6 +21,10 @@ export interface components {
"isExternalUrl"?: boolean;
"hasContentType"?: boolean;
"urlWithContentType"?: null | string;
};
"ArtworkUploadResponseModel": {
"path": string;
"contentType": string;
};
"BulkDeleteChannelsRequest": {
"channelIds": null | Array<number>;
@@ -35,6 +39,24 @@ export interface components {
};
"BulkRenumberChannelsRequest": {
"channels": null | Array<components["schemas"]["BulkRenumberChannelRequest"]>;
};
"ChannelGuideChannelResponseModel": {
"number": string;
"name": string;
"programmes": Array<components["schemas"]["ChannelGuideProgrammeResponseModel"]>;
};
"ChannelGuideProgrammeResponseModel": {
"start": string;
"stop": string;
"title": string;
"subTitle": null | string;
"category": null | string;
"fillerKind": components["schemas"]["FillerKind"];
};
"ChannelGuideResponseModel": {
"start": string;
"end": string;
"channels": Array<components["schemas"]["ChannelGuideChannelResponseModel"]>;
};
"ChannelIdleBehavior": "StopOnDisconnect" | "KeepRunning";
"ChannelMusicVideoCreditsMode": "None" | "GenerateSubtitles";
@@ -221,6 +243,10 @@ export interface components {
"FFmpegProfileVideoFormat": "None" | "H264" | "Hevc" | "Mpeg2Video" | "Av1" | "Copy";
"FillerKind": "None" | "PreRoll" | "MidRoll" | "PostRoll" | "Tail" | "Fallback" | "GuideMode" | "DecoDefault";
"FillerMode": "None" | "Duration" | "Count" | "Pad" | "RandomCount";
"FillerPresetResponseModel": {
"id": number;
"name": null | string;
};
"FillerPresetViewModel": {
"id": number;
"name": null | string;
@@ -242,6 +268,10 @@ export interface components {
"FillWithGroupMode": "None" | "FillWithOrderedGroups" | "FillWithShuffledGroups";
"FilterMode": "HardwareIfPossible" | "Software";
"FixedStartTimeBehavior": "Strict" | "Flexible";
"GraphicsElementResponseModel": {
"id": number;
"name": null | string;
};
"GraphicsElementViewModel": {
"id": number;
"name": null | string;
@@ -249,11 +279,23 @@ export interface components {
};
"GuideMode": "Normal" | "Filler";
"HardwareAccelerationKind": "None" | "Qsv" | "Nvenc" | "Vaapi" | "VideoToolbox" | "Amf" | "V4l2m2m" | "Rkmpp";
"HealthCheckResponseModel": {
"title": string;
"status": string;
"detail": string;
"link": null | string;
};
"HlsSessionModel": {
"channelNumber": null | string;
"state": null | string;
"transcodedUntil": string;
"lastAccess": string;
};
"IFormFile": string;
"LibraryMediaKind": "Movies" | "Shows" | "MusicVideos" | "OtherVideos" | "Songs" | "Images" | "RemoteStreams";
"LibraryScanStatusResponseModel": {
"libraryId": number;
"percent": number;
};
"MarathonGroupBy": "None" | "Show" | "Season" | "Artist" | "Album" | "Director";
"MediaCollectionViewModel": {
@@ -270,6 +312,20 @@ export interface components {
"hasMediaInfo"?: boolean;
};
"MediaItemState": "Normal" | "FileNotFound" | "Unavailable" | "RemoteOnly";
"MediaSourceLibraryResponseModel": {
"id": number;
"name": string;
"mediaKind": components["schemas"]["LibraryMediaKind"];
"lastScan": null | string;
"itemCount": number;
};
"MediaSourceResponseModel": {
"id": number;
"kind": string;
"name": string;
"connectionAddress": null | string;
"libraries": Array<components["schemas"]["MediaSourceLibraryResponseModel"]>;
};
"MultiCollectionItemViewModel": {
"multiCollectionId": number;
"collection": components["schemas"]["MediaCollectionViewModel"];
@@ -294,23 +350,54 @@ export interface components {
"name": null | string;
};
"NormalizeLoudnessMode": "Off" | "LoudNorm";
"PagedPlayoutItemsResponseModel": {
"totalCount": number;
"page": null | Array<components["schemas"]["PlayoutItemResponseModel"]>;
};
"PagedPlayoutsResponseModel": {
"totalCount": number;
"page": null | Array<components["schemas"]["PlayoutListItemResponseModel"]>;
};
"PlaybackOrder": "None" | "Chronological" | "Random" | "Shuffle" | "ShuffleInOrder" | "MultiEpisodeShuffle" | "SeasonEpisode" | "RandomRotation" | "Marathon";
"PlaylistViewModel": {
"id": number;
"playlistGroupId": number;
"name": null | string;
"isSystem": boolean;
};
"PlayoutBuildMode": "Continue" | "Refresh" | "Reset";
"PlayoutBuildStatusResponseModel": {
"lastBuild": string;
"success": boolean;
"message": null | string;
};
"PlayoutItemResponseModel": {
"title": null | string;
"start": string;
"finish": string;
"duration": null | string;
"fillerKind": null | components["schemas"]["FillerKind"];
};
"PlayoutListItemResponseModel": {
"id": number;
"channelNumber": string;
"channelName": string;
"scheduleKind": components["schemas"]["PlayoutScheduleKind"];
"scheduleName": string;
"dailyRebuildTime": null | string;
"buildStatus": null | components["schemas"]["PlayoutBuildStatusResponseModel"];
};
"PlayoutMode": "Flood" | "One" | "Multiple" | "Duration";
"PlayoutResponseModel": {
"id": number;
"scheduleKind": components["schemas"]["PlayoutScheduleKind"];
"channelName": null | string;
"channelNumber": null | string;
"channelName": string;
"channelNumber": string;
"playoutMode": components["schemas"]["ChannelPlayoutMode"];
"scheduleName": null | string;
"scheduleName": string;
"scheduleFile": null | string;
"dailyRebuildTime": null | string;
"buildStatus": null | components["schemas"]["PlayoutBuildStatusResponseModel"];
};
"PlayoutScheduleKind": "None" | "Classic" | "Block" | "Sequential" | "Scripted" | "ExternalJson";
"ProblemDetails": {
@@ -319,6 +406,10 @@ export interface components {
"status"?: null | number;
"detail"?: null | string;
"instance"?: null | string;
};
"ProgramScheduleItemsWithDurationViewModel": {
"items": null | Array<components["schemas"]["ProgramScheduleItemViewModel"]>;
"totalDurationEstimate": null | string;
};
"ProgramScheduleItemViewModel": {
"id"?: number;
@@ -355,6 +446,7 @@ export interface components {
"preferredAudioTitle"?: null | string;
"preferredSubtitleLanguageCode"?: null | string;
"subtitleMode"?: null | components["schemas"]["ChannelSubtitleMode"];
"durationEstimate"?: null | string;
"name"?: null | string;
};
"ProgramScheduleViewModel": {
@@ -523,6 +615,10 @@ export interface components {
};
"VaapiDriver": "Default" | "iHD" | "i965" | "RadeonSI" | "Nouveau";
"WatermarkLocation": number;
"WatermarkResponseModel": {
"id": number;
"name": null | string;
};
"WatermarkSize": number;
"WatermarkViewModel": {
"id": number;