Skip to content

Commit

Permalink
Update generated sources to 10.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jellyfin-bot authored and nielsvanvelzen committed Oct 26, 2024
1 parent fec48e1 commit 9e66cfa
Show file tree
Hide file tree
Showing 27 changed files with 36 additions and 54 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ import kotlinx.serialization.Serializable
@Serializable
public data class AuthenticationResult(
/**
* The user.
* Class UserDto.
*/
@SerialName("User")
public val user: UserDto? = null,
/**
* The session info.
* Session info DTO.
*/
@SerialName("SessionInfo")
public val sessionInfo: SessionInfoDto? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ public data class BaseItemDto(
@SerialName("ParentId")
public val parentId: UUID? = null,
/**
* The type.
* The base item kind.
*/
@SerialName("Type")
public val type: BaseItemKind,
Expand Down Expand Up @@ -509,7 +509,7 @@ public data class BaseItemDto(
@SerialName("IsoType")
public val isoType: IsoType? = null,
/**
* The type of the media.
* Media types.
*/
@SerialName("MediaType")
public val mediaType: MediaType,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public data class BaseItemPerson(
@SerialName("Role")
public val role: String? = null,
/**
* The type.
* The person kind.
*/
@SerialName("Type")
public val type: PersonKind,
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?>,
/**
* The scroll direction.
* An enum representing the axis that should be scrolled.
*/
@SerialName("ScrollDirection")
public val scrollDirection: ScrollDirection,
Expand All @@ -73,7 +73,7 @@ public data class DisplayPreferencesDto(
@SerialName("RememberSorting")
public val rememberSorting: Boolean,
/**
* The sort order.
* An enum representing the sorting order.
*/
@SerialName("SortOrder")
public val sortOrder: SortOrder,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import org.jellyfin.sdk.model.serializer.UUIDSerializer
@SerialName("LibraryChanged")
public data class LibraryChangedMessage(
/**
* The data.
* Class LibraryUpdateInfo.
*/
@SerialName("Data")
public val `data`: LibraryUpdateInfo? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public data class MediaSegmentDto(
@SerialName("ItemId")
public val itemId: UUID,
/**
* The type of content this segment defines.
* Defines the types of content an individual Jellyfin.Data.Entities.MediaSegment represents.
*/
@SerialName("Type")
public val type: MediaSegmentType,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,12 @@ public data class MediaStream(
@SerialName("Title")
public val title: String? = null,
/**
* The video range.
* An enum representing video ranges.
*/
@SerialName("VideoRange")
public val videoRange: VideoRange,
/**
* The video range type.
* An enum representing types of video ranges.
*/
@SerialName("VideoRangeType")
public val videoRangeType: VideoRangeType,
Expand Down Expand Up @@ -305,7 +305,7 @@ public data class MediaStream(
public val isAnamorphic: Boolean? = null,
) {
/**
* The audio spatial format.
* An enum representing formats of spatial audio.
*/
@SerialName("AudioSpatialFormat")
public val audioSpatialFormat: AudioSpatialFormat = AudioSpatialFormat.NONE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,17 +84,7 @@ public data class OpenLiveStreamDto(
@SerialName("AlwaysBurnInSubtitleWhenTranscoding")
public val alwaysBurnInSubtitleWhenTranscoding: 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.
* The device profile.
*/
@SerialName("DeviceProfile")
public val deviceProfile: DeviceProfile? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import org.jellyfin.sdk.model.serializer.UUIDSerializer
@SerialName("Play")
public data class PlayMessage(
/**
* The data.
* Class PlayRequest.
*/
@SerialName("Data")
public val `data`: PlayRequest? = 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.
* The device profile.
*/
@SerialName("DeviceProfile")
public val deviceProfile: DeviceProfile? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import org.jellyfin.sdk.model.serializer.UUIDSerializer
@SerialName("PackageInstallationCancelled")
public data class PluginInstallationCancelledMessage(
/**
* The data.
* Class InstallationInfo.
*/
@SerialName("Data")
public val `data`: InstallationInfo? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import org.jellyfin.sdk.model.serializer.UUIDSerializer
@SerialName("PackageInstallationCompleted")
public data class PluginInstallationCompletedMessage(
/**
* The data.
* Class InstallationInfo.
*/
@SerialName("Data")
public val `data`: InstallationInfo? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import org.jellyfin.sdk.model.serializer.UUIDSerializer
@SerialName("PackageInstallationFailed")
public data class PluginInstallationFailedMessage(
/**
* The data.
* Class InstallationInfo.
*/
@SerialName("Data")
public val `data`: InstallationInfo? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import org.jellyfin.sdk.model.serializer.UUIDSerializer
@SerialName("PackageInstalling")
public data class PluginInstallingMessage(
/**
* The data.
* Class InstallationInfo.
*/
@SerialName("Data")
public val `data`: InstallationInfo? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ import org.jellyfin.sdk.model.serializer.UUIDSerializer
@SerialName("PackageUninstalled")
public data class PluginUninstalledMessage(
/**
* The data.
* This is a serializable stub class that is used by the api to provide information about installed
* plugins.
*/
@SerialName("Data")
public val `data`: PluginInfo? = 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.
* 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 @@ -20,7 +20,7 @@ import org.jellyfin.sdk.model.serializer.UUIDSerializer
@SerialName("ScheduledTaskEnded")
public data class ScheduledTaskEndedMessage(
/**
* The data.
* Class TaskExecutionInfo.
*/
@SerialName("Data")
public val `data`: TaskResult? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public data class SearchHint(
@SerialName("BackdropImageItemId")
public val backdropImageItemId: String? = null,
/**
* The type.
* The base item kind.
*/
@SerialName("Type")
public val type: BaseItemKind,
Expand All @@ -107,7 +107,7 @@ public data class SearchHint(
@SerialName("RunTimeTicks")
public val runTimeTicks: Long? = null,
/**
* The type of the media.
* Media types.
*/
@SerialName("MediaType")
public val mediaType: MediaType,
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.
* 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.
* The shuffle mode.
*/
@SerialName("Mode")
public val mode: GroupShuffleMode,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import org.jellyfin.sdk.model.serializer.UUIDSerializer
@SerialName("SyncPlayCommand")
public data class SyncPlayCommandMessage(
/**
* The data.
* Class SendCommand.
*/
@SerialName("Data")
public val `data`: SendCommand? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import org.jellyfin.sdk.model.serializer.UUIDSerializer
@SerialName("SyncPlayGroupUpdate")
public data class SyncPlayGroupUpdateCommandMessage(
/**
* The data.
* Group update without data.
*/
@SerialName("Data")
public val `data`: GroupUpdate? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ public data class TranscodingProfile(
@SerialName("AudioCodec")
public val audioCodec: String,
/**
* The protocol.
* Media streaming protocol.
* Lowercase for backwards compatibility.
*/
@SerialName("Protocol")
public val protocol: MediaStreamProtocol,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import org.jellyfin.sdk.model.serializer.UUIDSerializer
@SerialName("UserDataChanged")
public data class UserDataChangedMessage(
/**
* The data.
* Class UserDataChangeInfo.
*/
@SerialName("Data")
public val `data`: UserDataChangeInfo? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public data class UserPolicy(
@SerialName("PasswordResetProviderId")
public val passwordResetProviderId: String,
/**
* A value indicating what SyncPlay features the user can access.
* Enum SyncPlayUserAccessType.
*/
@SerialName("SyncPlayAccess")
public val syncPlayAccess: SyncPlayUserAccessType,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import org.jellyfin.sdk.model.serializer.UUIDSerializer
@SerialName("UserUpdated")
public data class UserUpdatedMessage(
/**
* The data.
* Class UserDto.
*/
@SerialName("Data")
public val `data`: UserDto? = null,
Expand Down
4 changes: 2 additions & 2 deletions openapi.json
Git LFS file not shown

0 comments on commit 9e66cfa

Please sign in to comment.