mirror of
https://github.com/jellyfin/jellyfin-sdk-kotlin.git
synced 2024-11-23 22:09:53 +00:00
Update generated sources to 10.8.13
This commit is contained in:
parent
5ee0bbbd0b
commit
2bcd42d330
@ -8,5 +8,5 @@ package org.jellyfin.sdk.api.info
|
||||
import kotlin.String
|
||||
|
||||
public object ApiConstants {
|
||||
public const val apiVersion: String = "10.8.12"
|
||||
public const val apiVersion: String = "10.8.13"
|
||||
}
|
||||
|
@ -8,6 +8,7 @@ package org.jellyfin.sdk.api.operations
|
||||
import io.ktor.utils.io.ByteReadChannel
|
||||
import kotlin.Any
|
||||
import kotlin.Boolean
|
||||
import kotlin.Deprecated
|
||||
import kotlin.String
|
||||
import kotlin.Unit
|
||||
import kotlin.collections.buildMap
|
||||
@ -92,6 +93,7 @@ public class ConfigurationApi(
|
||||
/**
|
||||
* Updates the path to the media encoder.
|
||||
*/
|
||||
@Deprecated("This member is deprecated and may be removed in the future")
|
||||
public suspend fun updateMediaEncoderPath(`data`: MediaEncoderPathDto): Response<Unit> {
|
||||
val pathParameters = emptyMap<String, Any?>()
|
||||
val queryParameters = emptyMap<String, Any?>()
|
||||
|
@ -252,7 +252,7 @@ public data class BaseItemDto(
|
||||
@SerialName("ParentId")
|
||||
public val parentId: UUID? = null,
|
||||
/**
|
||||
* The base item kind.
|
||||
* The type.
|
||||
*/
|
||||
@SerialName("Type")
|
||||
public val type: BaseItemKind,
|
||||
|
@ -52,7 +52,17 @@ public data class ClientCapabilitiesDto(
|
||||
@SerialName("SupportsSync")
|
||||
public val supportsSync: Boolean,
|
||||
/**
|
||||
* The device profile.
|
||||
* 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.
|
||||
*/
|
||||
@SerialName("DeviceProfile")
|
||||
public val deviceProfile: DeviceProfile? = null,
|
||||
|
@ -58,7 +58,7 @@ public data class DisplayPreferencesDto(
|
||||
@SerialName("CustomPrefs")
|
||||
public val customPrefs: Map<String, String?>,
|
||||
/**
|
||||
* An enum representing the axis that should be scrolled.
|
||||
* The scroll direction.
|
||||
*/
|
||||
@SerialName("ScrollDirection")
|
||||
public val scrollDirection: ScrollDirection,
|
||||
@ -73,7 +73,7 @@ public data class DisplayPreferencesDto(
|
||||
@SerialName("RememberSorting")
|
||||
public val rememberSorting: Boolean,
|
||||
/**
|
||||
* An enum representing the sorting order.
|
||||
* The sort order.
|
||||
*/
|
||||
@SerialName("SortOrder")
|
||||
public val sortOrder: SortOrder,
|
||||
|
@ -79,7 +79,17 @@ public data class OpenLiveStreamDto(
|
||||
@SerialName("EnableDirectStream")
|
||||
public val enableDirectStream: Boolean? = null,
|
||||
/**
|
||||
* The device profile.
|
||||
* 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.
|
||||
*/
|
||||
@SerialName("DeviceProfile")
|
||||
public val deviceProfile: DeviceProfile? = null,
|
||||
|
@ -63,7 +63,17 @@ public data class PlaybackInfoDto(
|
||||
@SerialName("LiveStreamId")
|
||||
public val liveStreamId: String? = null,
|
||||
/**
|
||||
* The device profile.
|
||||
* 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.
|
||||
*/
|
||||
@SerialName("DeviceProfile")
|
||||
public val deviceProfile: DeviceProfile? = null,
|
||||
|
@ -25,7 +25,7 @@ public data class QueueRequestDto(
|
||||
@SerialName("ItemIds")
|
||||
public val itemIds: List<UUID>,
|
||||
/**
|
||||
* The mode in which to add the new items.
|
||||
* Enum GroupQueueMode.
|
||||
*/
|
||||
@SerialName("Mode")
|
||||
public val mode: GroupQueueMode,
|
||||
|
@ -83,8 +83,7 @@ public data class SessionInfo(
|
||||
@SerialName("DeviceType")
|
||||
public val deviceType: String? = null,
|
||||
/**
|
||||
* This is strictly used as a data transfer object from the api layer.
|
||||
* This holds information about a BaseItem in a format that is convenient for the client.
|
||||
* The now playing item.
|
||||
*/
|
||||
@SerialName("NowPlayingItem")
|
||||
public val nowPlayingItem: BaseItemDto? = null,
|
||||
|
@ -14,7 +14,7 @@ import kotlinx.serialization.Serializable
|
||||
@Serializable
|
||||
public data class SetRepeatModeRequestDto(
|
||||
/**
|
||||
* The repeat mode.
|
||||
* Enum GroupRepeatMode.
|
||||
*/
|
||||
@SerialName("Mode")
|
||||
public val mode: GroupRepeatMode,
|
||||
|
@ -14,7 +14,7 @@ import kotlinx.serialization.Serializable
|
||||
@Serializable
|
||||
public data class SetShuffleModeRequestDto(
|
||||
/**
|
||||
* The shuffle mode.
|
||||
* Enum GroupShuffleMode.
|
||||
*/
|
||||
@SerialName("Mode")
|
||||
public val mode: GroupShuffleMode,
|
||||
|
@ -111,7 +111,7 @@ public data class UserPolicy(
|
||||
@SerialName("PasswordResetProviderId")
|
||||
public val passwordResetProviderId: String? = null,
|
||||
/**
|
||||
* Enum SyncPlayUserAccessType.
|
||||
* A value indicating what SyncPlay features the user can access.
|
||||
*/
|
||||
@SerialName("SyncPlayAccess")
|
||||
public val syncPlayAccess: SyncPlayUserAccessType,
|
||||
|
4
openapi.json
vendored
4
openapi.json
vendored
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e201de93d227c2debe932a56895acdd8163d04c27622099bb7b526b283d02e38
|
||||
size 1613353
|
||||
oid sha256:7fc2ccc2479d66bf16ab7eb2d5205b0cffbbc5593dc70ae7d3c0e6942f6e3809
|
||||
size 1619454
|
||||
|
Loading…
Reference in New Issue
Block a user