Skip to content

Commit

Permalink
Update OpenAPI to 10.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsvanvelzen committed Sep 25, 2022
1 parent 48c2e4c commit 8d2ed57
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 39 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ package org.jellyfin.sdk.api.info
import kotlin.String

public object ApiConstants {
public const val apiVersion: String = "10.8.4"
public const val apiVersion: String = "10.8.5"
}
1 change: 1 addition & 0 deletions jellyfin-model/api/jellyfin-model.api
Original file line number Diff line number Diff line change
Expand Up @@ -5699,6 +5699,7 @@ public final class org/jellyfin/sdk/model/api/MediaStream$Companion {
public final class org/jellyfin/sdk/model/api/MediaStreamType : java/lang/Enum {
public static final field AUDIO Lorg/jellyfin/sdk/model/api/MediaStreamType;
public static final field Companion Lorg/jellyfin/sdk/model/api/MediaStreamType$Companion;
public static final field DATA Lorg/jellyfin/sdk/model/api/MediaStreamType;
public static final field EMBEDDED_IMAGE Lorg/jellyfin/sdk/model/api/MediaStreamType;
public static final field SUBTITLE Lorg/jellyfin/sdk/model/api/MediaStreamType;
public static final field VIDEO Lorg/jellyfin/sdk/model/api/MediaStreamType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,7 @@ public data class ClientCapabilitiesDto(
@SerialName("SupportsSync")
public val supportsSync: Boolean,
/**
* A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which
* content a certain device is able to play.
*
*
* Specifically, it defines the supported containers
* (`P:MediaBrowser.Model.Dlna.DeviceProfile.ContainerProfiles`) and
* codecs (`P:MediaBrowser.Model.Dlna.DeviceProfile.CodecProfiles`) (video and/or audio, including
* codec profiles and levels)
* the device is able to direct play (without transcoding or remuxing),
* as well as which containers/codecs to transcode to
* (`P:MediaBrowser.Model.Dlna.DeviceProfile.TranscodingProfiles`) in case it isn't.
* Gets or sets the device profile.
*/
@SerialName("DeviceProfile")
public val deviceProfile: DeviceProfile? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ public enum class MediaStreamType(
SUBTITLE("Subtitle"),
@SerialName("EmbeddedImage")
EMBEDDED_IMAGE("EmbeddedImage"),
@SerialName("Data")
DATA("Data"),
;

public override fun toString(): String = serialName
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,17 +79,7 @@ public data class OpenLiveStreamDto(
@SerialName("EnableDirectStream")
public val enableDirectStream: Boolean? = null,
/**
* A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which
* content a certain device is able to play.
*
*
* Specifically, it defines the supported containers
* (`P:MediaBrowser.Model.Dlna.DeviceProfile.ContainerProfiles`) and
* codecs (`P:MediaBrowser.Model.Dlna.DeviceProfile.CodecProfiles`) (video and/or audio, including
* codec profiles and levels)
* the device is able to direct play (without transcoding or remuxing),
* as well as which containers/codecs to transcode to
* (`P:MediaBrowser.Model.Dlna.DeviceProfile.TranscodingProfiles`) in case it isn't.
* Gets or sets the device profile.
*/
@SerialName("DeviceProfile")
public val deviceProfile: DeviceProfile? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,17 +63,7 @@ public data class PlaybackInfoDto(
@SerialName("LiveStreamId")
public val liveStreamId: String? = null,
/**
* A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which
* content a certain device is able to play.
*
*
* Specifically, it defines the supported containers
* (`P:MediaBrowser.Model.Dlna.DeviceProfile.ContainerProfiles`) and
* codecs (`P:MediaBrowser.Model.Dlna.DeviceProfile.CodecProfiles`) (video and/or audio, including
* codec profiles and levels)
* the device is able to direct play (without transcoding or remuxing),
* as well as which containers/codecs to transcode to
* (`P:MediaBrowser.Model.Dlna.DeviceProfile.TranscodingProfiles`) in case it isn't.
* Gets or sets the device profile.
*/
@SerialName("DeviceProfile")
public val deviceProfile: DeviceProfile? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public data class QueueRequestDto(
@SerialName("ItemIds")
public val itemIds: List<UUID>,
/**
* Enum GroupQueueMode.
* Gets or sets the mode in which to add the new items.
*/
@SerialName("Mode")
public val mode: GroupQueueMode,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import kotlinx.serialization.Serializable
@Serializable
public data class SetRepeatModeRequestDto(
/**
* Enum GroupRepeatMode.
* Gets or sets the repeat mode.
*/
@SerialName("Mode")
public val mode: GroupRepeatMode,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import kotlinx.serialization.Serializable
@Serializable
public data class SetShuffleModeRequestDto(
/**
* Enum GroupShuffleMode.
* Gets or sets the shuffle mode.
*/
@SerialName("Mode")
public val mode: GroupShuffleMode,
Expand Down
4 changes: 2 additions & 2 deletions openapi.json
Git LFS file not shown

0 comments on commit 8d2ed57

Please sign in to comment.