Skip to content

Commit

Permalink
Update generated sources to 10.7.7 (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
jellyfin-bot authored and nielsvanvelzen committed Sep 8, 2021
1 parent a7a0209 commit 43f1cba
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 15 deletions.
16 changes: 8 additions & 8 deletions jellyfin-api/api/jellyfin-api.api

Large diffs are not rendered by default.

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.7.6"
public const val apiVersion: String = "10.7.7"
}
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ public class VideosApi(
* @param startTimeTicks Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.
* @param width Optional. The fixed horizontal resolution of the encoded video.
* @param height Optional. The fixed vertical resolution of the encoded video.
* @param maxWidth Optional. The maximum horizontal resolution of the encoded video.
* @param maxHeight Optional. The maximum vertical resolution of the encoded video.
* @param videoBitRate Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this
* will be left to encoder defaults.
* @param subtitleStreamIndex Optional. The index of the subtitle stream to use. If omitted no
Expand Down Expand Up @@ -158,6 +160,8 @@ public class VideosApi(
startTimeTicks: Long? = null,
width: Int? = null,
height: Int? = null,
maxWidth: Int? = null,
maxHeight: Int? = null,
videoBitRate: Int? = null,
subtitleStreamIndex: Int? = null,
subtitleMethod: SubtitleDeliveryMethod? = null,
Expand Down Expand Up @@ -210,6 +214,8 @@ public class VideosApi(
queryParameters["startTimeTicks"] = startTimeTicks
queryParameters["width"] = width
queryParameters["height"] = height
queryParameters["maxWidth"] = maxWidth
queryParameters["maxHeight"] = maxHeight
queryParameters["videoBitRate"] = videoBitRate
queryParameters["subtitleStreamIndex"] = subtitleStreamIndex
queryParameters["subtitleMethod"] = subtitleMethod
Expand Down Expand Up @@ -279,6 +285,8 @@ public class VideosApi(
* @param startTimeTicks Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.
* @param width Optional. The fixed horizontal resolution of the encoded video.
* @param height Optional. The fixed vertical resolution of the encoded video.
* @param maxWidth Optional. The maximum horizontal resolution of the encoded video.
* @param maxHeight Optional. The maximum vertical resolution of the encoded video.
* @param videoBitRate Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this
* will be left to encoder defaults.
* @param subtitleStreamIndex Optional. The index of the subtitle stream to use. If omitted no
Expand Down Expand Up @@ -336,6 +344,8 @@ public class VideosApi(
startTimeTicks: Long? = null,
width: Int? = null,
height: Int? = null,
maxWidth: Int? = null,
maxHeight: Int? = null,
videoBitRate: Int? = null,
subtitleStreamIndex: Int? = null,
subtitleMethod: SubtitleDeliveryMethod? = null,
Expand Down Expand Up @@ -389,6 +399,8 @@ public class VideosApi(
queryParameters["startTimeTicks"] = startTimeTicks
queryParameters["width"] = width
queryParameters["height"] = height
queryParameters["maxWidth"] = maxWidth
queryParameters["maxHeight"] = maxHeight
queryParameters["videoBitRate"] = videoBitRate
queryParameters["subtitleStreamIndex"] = subtitleStreamIndex
queryParameters["subtitleMethod"] = subtitleMethod
Expand Down Expand Up @@ -456,6 +468,8 @@ public class VideosApi(
* @param startTimeTicks Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.
* @param width Optional. The fixed horizontal resolution of the encoded video.
* @param height Optional. The fixed vertical resolution of the encoded video.
* @param maxWidth Optional. The maximum horizontal resolution of the encoded video.
* @param maxHeight Optional. The maximum vertical resolution of the encoded video.
* @param videoBitRate Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this
* will be left to encoder defaults.
* @param subtitleStreamIndex Optional. The index of the subtitle stream to use. If omitted no
Expand Down Expand Up @@ -512,6 +526,8 @@ public class VideosApi(
startTimeTicks: Long? = null,
width: Int? = null,
height: Int? = null,
maxWidth: Int? = null,
maxHeight: Int? = null,
videoBitRate: Int? = null,
subtitleStreamIndex: Int? = null,
subtitleMethod: SubtitleDeliveryMethod? = null,
Expand Down Expand Up @@ -564,6 +580,8 @@ public class VideosApi(
queryParameters["startTimeTicks"] = startTimeTicks
queryParameters["width"] = width
queryParameters["height"] = height
queryParameters["maxWidth"] = maxWidth
queryParameters["maxHeight"] = maxHeight
queryParameters["videoBitRate"] = videoBitRate
queryParameters["subtitleStreamIndex"] = subtitleStreamIndex
queryParameters["subtitleMethod"] = subtitleMethod
Expand Down Expand Up @@ -633,6 +651,8 @@ public class VideosApi(
* @param startTimeTicks Optional. Specify a starting offset, in ticks. 1 tick = 10000 ms.
* @param width Optional. The fixed horizontal resolution of the encoded video.
* @param height Optional. The fixed vertical resolution of the encoded video.
* @param maxWidth Optional. The maximum horizontal resolution of the encoded video.
* @param maxHeight Optional. The maximum vertical resolution of the encoded video.
* @param videoBitRate Optional. Specify a video bitrate to encode to, e.g. 500000. If omitted this
* will be left to encoder defaults.
* @param subtitleStreamIndex Optional. The index of the subtitle stream to use. If omitted no
Expand Down Expand Up @@ -690,6 +710,8 @@ public class VideosApi(
startTimeTicks: Long? = null,
width: Int? = null,
height: Int? = null,
maxWidth: Int? = null,
maxHeight: Int? = null,
videoBitRate: Int? = null,
subtitleStreamIndex: Int? = null,
subtitleMethod: SubtitleDeliveryMethod? = null,
Expand Down Expand Up @@ -743,6 +765,8 @@ public class VideosApi(
queryParameters["startTimeTicks"] = startTimeTicks
queryParameters["width"] = width
queryParameters["height"] = height
queryParameters["maxWidth"] = maxWidth
queryParameters["maxHeight"] = maxHeight
queryParameters["videoBitRate"] = videoBitRate
queryParameters["subtitleStreamIndex"] = subtitleStreamIndex
queryParameters["subtitleMethod"] = subtitleMethod
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public data class ConfigurationPageInfo(
@SerialName("DisplayName")
public val displayName: String? = null,
/**
* Enum ConfigurationPageType.
* Gets or sets the type of the configuration page.
*/
@SerialName("ConfigurationPageType")
public val configurationPageType: ConfigurationPageType,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public data class DisplayPreferencesDto(
@SerialName("CustomPrefs")
public val customPrefs: Map<String, String>? = null,
/**
* An enum representing the axis that should be scrolled.
* Gets or sets the scroll direction.
*/
@SerialName("ScrollDirection")
public val scrollDirection: ScrollDirection,
Expand All @@ -73,7 +73,7 @@ public data class DisplayPreferencesDto(
@SerialName("RememberSorting")
public val rememberSorting: Boolean,
/**
* An enum representing the sorting order.
* Gets or sets the sort order.
*/
@SerialName("SortOrder")
public val sortOrder: SortOrder,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public data class UserPolicy(
@SerialName("PasswordResetProviderId")
public val passwordResetProviderId: String? = null,
/**
* Enum SyncPlayUserAccessType.
* Gets or sets a value indicating what SyncPlay features the user can access.
*/
@SerialName("SyncPlayAccess")
public val syncPlayAccess: SyncPlayUserAccessType
Expand Down
4 changes: 2 additions & 2 deletions openapi.json
Git LFS file not shown

0 comments on commit 43f1cba

Please sign in to comment.