Merge pull request #102 from nielsvanvelzen/openapi-change-models-package

Change generated models package to org.jellyfin.apiclient.model.api
This commit is contained in:
Bill Thornton 2020-09-11 11:25:59 -04:00 committed by GitHub
commit 5e87381b8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
288 changed files with 397 additions and 397 deletions

View File

@ -12,7 +12,7 @@ import kotlin.Int
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.ActivityLogEntryQueryResult
import org.jellyfin.apiclient.model.api.ActivityLogEntryQueryResult
class ActivityLogApi(
private val api: KtorClient

View File

@ -11,7 +11,7 @@ import kotlin.Int
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
class AlbumsApi(
private val api: KtorClient

View File

@ -10,7 +10,7 @@ import kotlin.String
import kotlin.Unit
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.AuthenticationInfoQueryResult
import org.jellyfin.apiclient.model.api.AuthenticationInfoQueryResult
class ApiKeyApi(
private val api: KtorClient

View File

@ -13,8 +13,8 @@ import kotlin.Int
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDto
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.BaseItemDto
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
class ArtistsApi(
private val api: KtorClient

View File

@ -16,8 +16,8 @@ import kotlin.String
import kotlin.collections.Map
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.EncodingContext
import org.jellyfin.apiclient.model.SubtitleDeliveryMethod
import org.jellyfin.apiclient.model.api.EncodingContext
import org.jellyfin.apiclient.model.api.SubtitleDeliveryMethod
class AudioApi(
private val api: KtorClient

View File

@ -9,7 +9,7 @@ import kotlin.Any
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BrandingOptions
import org.jellyfin.apiclient.model.api.BrandingOptions
class BrandingApi(
private val api: KtorClient

View File

@ -13,8 +13,8 @@ import kotlin.String
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.ChannelFeatures
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.ChannelFeatures
class ChannelsApi(
private val api: KtorClient

View File

@ -12,7 +12,7 @@ import kotlin.String
import kotlin.Unit
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.CollectionCreationResult
import org.jellyfin.apiclient.model.api.CollectionCreationResult
class CollectionApi(
private val api: KtorClient

View File

@ -11,9 +11,9 @@ import kotlin.String
import kotlin.Unit
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.MediaEncoderPathDto
import org.jellyfin.apiclient.model.MetadataOptions
import org.jellyfin.apiclient.model.ServerConfiguration
import org.jellyfin.apiclient.model.api.MediaEncoderPathDto
import org.jellyfin.apiclient.model.api.MetadataOptions
import org.jellyfin.apiclient.model.api.ServerConfiguration
class ConfigurationApi(
private val api: KtorClient

View File

@ -11,8 +11,8 @@ import kotlin.String
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.ConfigurationPageInfo
import org.jellyfin.apiclient.model.ConfigurationPageType
import org.jellyfin.apiclient.model.api.ConfigurationPageInfo
import org.jellyfin.apiclient.model.api.ConfigurationPageType
class DashboardApi(
private val api: KtorClient

View File

@ -12,9 +12,9 @@ import kotlin.String
import kotlin.Unit
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.DeviceInfo
import org.jellyfin.apiclient.model.DeviceInfoQueryResult
import org.jellyfin.apiclient.model.DeviceOptions
import org.jellyfin.apiclient.model.api.DeviceInfo
import org.jellyfin.apiclient.model.api.DeviceInfoQueryResult
import org.jellyfin.apiclient.model.api.DeviceOptions
class DevicesApi(
private val api: KtorClient

View File

@ -11,7 +11,7 @@ import kotlin.String
import kotlin.Unit
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.DisplayPreferencesDto
import org.jellyfin.apiclient.model.api.DisplayPreferencesDto
class DisplayPreferencesApi(
private val api: KtorClient

View File

@ -11,8 +11,8 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.DeviceProfile
import org.jellyfin.apiclient.model.DeviceProfileInfo
import org.jellyfin.apiclient.model.api.DeviceProfile
import org.jellyfin.apiclient.model.api.DeviceProfileInfo
class DlnaApi(
private val api: KtorClient

View File

@ -10,7 +10,7 @@ import kotlin.Any
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.ControlResponse
import org.jellyfin.apiclient.model.api.ControlResponse
class DlnaServerApi(
private val api: KtorClient

View File

@ -16,8 +16,8 @@ import kotlin.String
import kotlin.collections.Map
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.EncodingContext
import org.jellyfin.apiclient.model.SubtitleDeliveryMethod
import org.jellyfin.apiclient.model.api.EncodingContext
import org.jellyfin.apiclient.model.api.SubtitleDeliveryMethod
class DynamicHlsApi(
private val api: KtorClient

View File

@ -13,9 +13,9 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.DefaultDirectoryBrowserInfoDto
import org.jellyfin.apiclient.model.FileSystemEntryInfo
import org.jellyfin.apiclient.model.ValidatePathDto
import org.jellyfin.apiclient.model.api.DefaultDirectoryBrowserInfoDto
import org.jellyfin.apiclient.model.api.FileSystemEntryInfo
import org.jellyfin.apiclient.model.api.ValidatePathDto
class EnvironmentApi(
private val api: KtorClient

View File

@ -11,8 +11,8 @@ import kotlin.Boolean
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.QueryFilters
import org.jellyfin.apiclient.model.QueryFiltersLegacy
import org.jellyfin.apiclient.model.api.QueryFilters
import org.jellyfin.apiclient.model.api.QueryFiltersLegacy
class FilterApi(
private val api: KtorClient

View File

@ -13,8 +13,8 @@ import kotlin.Int
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDto
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.BaseItemDto
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
class GenresApi(
private val api: KtorClient

View File

@ -16,8 +16,8 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.ImageInfo
import org.jellyfin.apiclient.model.ImageType
import org.jellyfin.apiclient.model.api.ImageInfo
import org.jellyfin.apiclient.model.api.ImageType
class ImageApi(
private val api: KtorClient

View File

@ -11,7 +11,7 @@ import kotlin.String
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.ImageByNameInfo
import org.jellyfin.apiclient.model.api.ImageByNameInfo
class ImageByNameApi(
private val api: KtorClient

View File

@ -12,7 +12,7 @@ import kotlin.Int
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
class InstantMixApi(
private val api: KtorClient

View File

@ -14,17 +14,17 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.AlbumInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.ArtistInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.BookInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.BoxSetInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.ExternalIdInfo
import org.jellyfin.apiclient.model.MovieInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.MusicVideoInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.PersonLookupInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.RemoteSearchResult
import org.jellyfin.apiclient.model.SeriesInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.TrailerInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.api.AlbumInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.api.ArtistInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.api.BookInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.api.BoxSetInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.api.ExternalIdInfo
import org.jellyfin.apiclient.model.api.MovieInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.api.MusicVideoInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.api.PersonLookupInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.api.RemoteSearchResult
import org.jellyfin.apiclient.model.api.SeriesInfoRemoteSearchQuery
import org.jellyfin.apiclient.model.api.TrailerInfoRemoteSearchQuery
class ItemLookupApi(
private val api: KtorClient

View File

@ -12,7 +12,7 @@ import kotlin.String
import kotlin.Unit
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.MetadataRefreshMode
import org.jellyfin.apiclient.model.api.MetadataRefreshMode
class ItemRefreshApi(
private val api: KtorClient

View File

@ -11,8 +11,8 @@ import kotlin.String
import kotlin.Unit
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDto
import org.jellyfin.apiclient.model.MetadataEditorInfo
import org.jellyfin.apiclient.model.api.BaseItemDto
import org.jellyfin.apiclient.model.api.MetadataEditorInfo
class ItemUpdateApi(
private val api: KtorClient

View File

@ -14,7 +14,7 @@ import kotlin.Int
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
class ItemsApi(
private val api: KtorClient

View File

@ -16,13 +16,13 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.AllThemeMediaResult
import org.jellyfin.apiclient.model.BaseItemDto
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.ItemCounts
import org.jellyfin.apiclient.model.LibraryOptionsResultDto
import org.jellyfin.apiclient.model.MediaUpdateInfoDto
import org.jellyfin.apiclient.model.ThemeMediaResult
import org.jellyfin.apiclient.model.api.AllThemeMediaResult
import org.jellyfin.apiclient.model.api.BaseItemDto
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.ItemCounts
import org.jellyfin.apiclient.model.api.LibraryOptionsResultDto
import org.jellyfin.apiclient.model.api.MediaUpdateInfoDto
import org.jellyfin.apiclient.model.api.ThemeMediaResult
class LibraryApi(
private val api: KtorClient

View File

@ -12,11 +12,11 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.AddVirtualFolderDto
import org.jellyfin.apiclient.model.MediaPathDto
import org.jellyfin.apiclient.model.MediaPathInfo
import org.jellyfin.apiclient.model.UpdateLibraryOptionsDto
import org.jellyfin.apiclient.model.VirtualFolderInfo
import org.jellyfin.apiclient.model.api.AddVirtualFolderDto
import org.jellyfin.apiclient.model.api.MediaPathDto
import org.jellyfin.apiclient.model.api.MediaPathInfo
import org.jellyfin.apiclient.model.api.UpdateLibraryOptionsDto
import org.jellyfin.apiclient.model.api.VirtualFolderInfo
class LibraryStructureApi(
private val api: KtorClient

View File

@ -17,23 +17,23 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDto
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.ChannelMappingOptionsDto
import org.jellyfin.apiclient.model.ChannelType
import org.jellyfin.apiclient.model.GetProgramsDto
import org.jellyfin.apiclient.model.GuideInfo
import org.jellyfin.apiclient.model.ListingsProviderInfo
import org.jellyfin.apiclient.model.LiveTvInfo
import org.jellyfin.apiclient.model.NameIdPair
import org.jellyfin.apiclient.model.RecordingStatus
import org.jellyfin.apiclient.model.SeriesTimerInfoDto
import org.jellyfin.apiclient.model.SeriesTimerInfoDtoQueryResult
import org.jellyfin.apiclient.model.SortOrder
import org.jellyfin.apiclient.model.TimerInfoDto
import org.jellyfin.apiclient.model.TimerInfoDtoQueryResult
import org.jellyfin.apiclient.model.TunerChannelMapping
import org.jellyfin.apiclient.model.TunerHostInfo
import org.jellyfin.apiclient.model.api.BaseItemDto
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.ChannelMappingOptionsDto
import org.jellyfin.apiclient.model.api.ChannelType
import org.jellyfin.apiclient.model.api.GetProgramsDto
import org.jellyfin.apiclient.model.api.GuideInfo
import org.jellyfin.apiclient.model.api.ListingsProviderInfo
import org.jellyfin.apiclient.model.api.LiveTvInfo
import org.jellyfin.apiclient.model.api.NameIdPair
import org.jellyfin.apiclient.model.api.RecordingStatus
import org.jellyfin.apiclient.model.api.SeriesTimerInfoDto
import org.jellyfin.apiclient.model.api.SeriesTimerInfoDtoQueryResult
import org.jellyfin.apiclient.model.api.SortOrder
import org.jellyfin.apiclient.model.api.TimerInfoDto
import org.jellyfin.apiclient.model.api.TimerInfoDtoQueryResult
import org.jellyfin.apiclient.model.api.TunerChannelMapping
import org.jellyfin.apiclient.model.api.TunerHostInfo
class LiveTvApi(
private val api: KtorClient

View File

@ -10,10 +10,10 @@ import kotlin.String
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.CountryInfo
import org.jellyfin.apiclient.model.CultureDto
import org.jellyfin.apiclient.model.LocalizationOption
import org.jellyfin.apiclient.model.ParentalRating
import org.jellyfin.apiclient.model.api.CountryInfo
import org.jellyfin.apiclient.model.api.CultureDto
import org.jellyfin.apiclient.model.api.LocalizationOption
import org.jellyfin.apiclient.model.api.ParentalRating
class LocalizationApi(
private val api: KtorClient

View File

@ -15,10 +15,10 @@ import kotlin.String
import kotlin.Unit
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.DeviceProfileDto
import org.jellyfin.apiclient.model.LiveStreamResponse
import org.jellyfin.apiclient.model.OpenLiveStreamDto
import org.jellyfin.apiclient.model.PlaybackInfoResponse
import org.jellyfin.apiclient.model.api.DeviceProfileDto
import org.jellyfin.apiclient.model.api.LiveStreamResponse
import org.jellyfin.apiclient.model.api.OpenLiveStreamDto
import org.jellyfin.apiclient.model.api.PlaybackInfoResponse
class MediaInfoApi(
private val api: KtorClient

View File

@ -12,7 +12,7 @@ import kotlin.String
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.RecommendationDto
import org.jellyfin.apiclient.model.api.RecommendationDto
class MoviesApi(
private val api: KtorClient

View File

@ -13,8 +13,8 @@ import kotlin.Int
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDto
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.BaseItemDto
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
class MusicGenresApi(
private val api: KtorClient

View File

@ -11,11 +11,11 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.NameIdPair
import org.jellyfin.apiclient.model.NotificationLevel
import org.jellyfin.apiclient.model.NotificationResultDto
import org.jellyfin.apiclient.model.NotificationTypeInfo
import org.jellyfin.apiclient.model.NotificationsSummaryDto
import org.jellyfin.apiclient.model.api.NameIdPair
import org.jellyfin.apiclient.model.api.NotificationLevel
import org.jellyfin.apiclient.model.api.NotificationResultDto
import org.jellyfin.apiclient.model.api.NotificationTypeInfo
import org.jellyfin.apiclient.model.api.NotificationsSummaryDto
class NotificationsApi(
private val api: KtorClient

View File

@ -12,8 +12,8 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.PackageInfo
import org.jellyfin.apiclient.model.RepositoryInfo
import org.jellyfin.apiclient.model.api.PackageInfo
import org.jellyfin.apiclient.model.api.RepositoryInfo
class PackageApi(
private val api: KtorClient

View File

@ -13,8 +13,8 @@ import kotlin.Int
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDto
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.BaseItemDto
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
class PersonsApi(
private val api: KtorClient

View File

@ -13,9 +13,9 @@ import kotlin.String
import kotlin.Unit
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.CreatePlaylistDto
import org.jellyfin.apiclient.model.PlaylistCreationResult
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.CreatePlaylistDto
import org.jellyfin.apiclient.model.api.PlaylistCreationResult
class PlaylistsApi(
private val api: KtorClient

View File

@ -15,12 +15,12 @@ import kotlin.String
import kotlin.Unit
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.PlayMethod
import org.jellyfin.apiclient.model.PlaybackProgressInfo
import org.jellyfin.apiclient.model.PlaybackStartInfo
import org.jellyfin.apiclient.model.PlaybackStopInfo
import org.jellyfin.apiclient.model.RepeatMode
import org.jellyfin.apiclient.model.UserItemDataDto
import org.jellyfin.apiclient.model.api.PlayMethod
import org.jellyfin.apiclient.model.api.PlaybackProgressInfo
import org.jellyfin.apiclient.model.api.PlaybackStartInfo
import org.jellyfin.apiclient.model.api.PlaybackStopInfo
import org.jellyfin.apiclient.model.api.RepeatMode
import org.jellyfin.apiclient.model.api.UserItemDataDto
class PlaystateApi(
private val api: KtorClient

View File

@ -13,10 +13,10 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BasePluginConfiguration
import org.jellyfin.apiclient.model.MbRegistrationRecord
import org.jellyfin.apiclient.model.PluginInfo
import org.jellyfin.apiclient.model.PluginSecurityInfo
import org.jellyfin.apiclient.model.api.BasePluginConfiguration
import org.jellyfin.apiclient.model.api.MbRegistrationRecord
import org.jellyfin.apiclient.model.api.PluginInfo
import org.jellyfin.apiclient.model.api.PluginSecurityInfo
class PluginsApi(
private val api: KtorClient

View File

@ -12,8 +12,8 @@ import kotlin.String
import kotlin.Unit
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.QuickConnectResult
import org.jellyfin.apiclient.model.QuickConnectState
import org.jellyfin.apiclient.model.api.QuickConnectResult
import org.jellyfin.apiclient.model.api.QuickConnectState
class QuickConnectApi(
private val api: KtorClient

View File

@ -15,9 +15,9 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.ImageProviderInfo
import org.jellyfin.apiclient.model.ImageType
import org.jellyfin.apiclient.model.RemoteImageResult
import org.jellyfin.apiclient.model.api.ImageProviderInfo
import org.jellyfin.apiclient.model.api.ImageType
import org.jellyfin.apiclient.model.api.RemoteImageResult
class RemoteImageApi(
private val api: KtorClient

View File

@ -12,9 +12,9 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.IScheduledTaskWorker
import org.jellyfin.apiclient.model.TaskInfo
import org.jellyfin.apiclient.model.TaskTriggerInfo
import org.jellyfin.apiclient.model.api.IScheduledTaskWorker
import org.jellyfin.apiclient.model.api.TaskInfo
import org.jellyfin.apiclient.model.api.TaskTriggerInfo
class ScheduledTasksApi(
private val api: KtorClient

View File

@ -12,7 +12,7 @@ import kotlin.Int
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.SearchHintResult
import org.jellyfin.apiclient.model.api.SearchHintResult
class SearchApi(
private val api: KtorClient

View File

@ -15,12 +15,12 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.ClientCapabilities
import org.jellyfin.apiclient.model.GeneralCommand
import org.jellyfin.apiclient.model.NameIdPair
import org.jellyfin.apiclient.model.PlayCommand
import org.jellyfin.apiclient.model.PlaystateRequest
import org.jellyfin.apiclient.model.SessionInfo
import org.jellyfin.apiclient.model.api.ClientCapabilities
import org.jellyfin.apiclient.model.api.GeneralCommand
import org.jellyfin.apiclient.model.api.NameIdPair
import org.jellyfin.apiclient.model.api.PlayCommand
import org.jellyfin.apiclient.model.api.PlaystateRequest
import org.jellyfin.apiclient.model.api.SessionInfo
class SessionApi(
private val api: KtorClient

View File

@ -10,9 +10,9 @@ import kotlin.String
import kotlin.Unit
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.StartupConfigurationDto
import org.jellyfin.apiclient.model.StartupRemoteAccessDto
import org.jellyfin.apiclient.model.StartupUserDto
import org.jellyfin.apiclient.model.api.StartupConfigurationDto
import org.jellyfin.apiclient.model.api.StartupRemoteAccessDto
import org.jellyfin.apiclient.model.api.StartupUserDto
class StartupApi(
private val api: KtorClient

View File

@ -13,8 +13,8 @@ import kotlin.Int
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDto
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.BaseItemDto
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
class StudiosApi(
private val api: KtorClient

View File

@ -16,7 +16,7 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.RemoteSubtitleInfo
import org.jellyfin.apiclient.model.api.RemoteSubtitleInfo
class SubtitleApi(
private val api: KtorClient

View File

@ -12,7 +12,7 @@ import kotlin.Int
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
class SuggestionsApi(
private val api: KtorClient

View File

@ -16,7 +16,7 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.GroupInfoView
import org.jellyfin.apiclient.model.api.GroupInfoView
class SyncPlayApi(
private val api: KtorClient

View File

@ -11,11 +11,11 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.EndPointInfo
import org.jellyfin.apiclient.model.LogFile
import org.jellyfin.apiclient.model.PublicSystemInfo
import org.jellyfin.apiclient.model.SystemInfo
import org.jellyfin.apiclient.model.WakeOnLanInfo
import org.jellyfin.apiclient.model.api.EndPointInfo
import org.jellyfin.apiclient.model.api.LogFile
import org.jellyfin.apiclient.model.api.PublicSystemInfo
import org.jellyfin.apiclient.model.api.SystemInfo
import org.jellyfin.apiclient.model.api.WakeOnLanInfo
class SystemApi(
private val api: KtorClient

View File

@ -9,7 +9,7 @@ import kotlin.Any
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.UtcTimeResponse
import org.jellyfin.apiclient.model.api.UtcTimeResponse
class TimeSyncApi(
private val api: KtorClient

View File

@ -14,7 +14,7 @@ import kotlin.Int
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
class TrailersApi(
private val api: KtorClient

View File

@ -12,7 +12,7 @@ import kotlin.Int
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
class TvShowsApi(
private val api: KtorClient

View File

@ -13,17 +13,17 @@ import kotlin.Unit
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.AuthenticateUserByName
import org.jellyfin.apiclient.model.AuthenticationResult
import org.jellyfin.apiclient.model.CreateUserByName
import org.jellyfin.apiclient.model.ForgotPasswordResult
import org.jellyfin.apiclient.model.PinRedeemResult
import org.jellyfin.apiclient.model.QuickConnectDto
import org.jellyfin.apiclient.model.UpdateUserEasyPassword
import org.jellyfin.apiclient.model.UpdateUserPassword
import org.jellyfin.apiclient.model.UserConfiguration
import org.jellyfin.apiclient.model.UserDto
import org.jellyfin.apiclient.model.UserPolicy
import org.jellyfin.apiclient.model.api.AuthenticateUserByName
import org.jellyfin.apiclient.model.api.AuthenticationResult
import org.jellyfin.apiclient.model.api.CreateUserByName
import org.jellyfin.apiclient.model.api.ForgotPasswordResult
import org.jellyfin.apiclient.model.api.PinRedeemResult
import org.jellyfin.apiclient.model.api.QuickConnectDto
import org.jellyfin.apiclient.model.api.UpdateUserEasyPassword
import org.jellyfin.apiclient.model.api.UpdateUserPassword
import org.jellyfin.apiclient.model.api.UserConfiguration
import org.jellyfin.apiclient.model.api.UserDto
import org.jellyfin.apiclient.model.api.UserPolicy
class UserApi(
private val api: KtorClient

View File

@ -13,9 +13,9 @@ import kotlin.String
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDto
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.UserItemDataDto
import org.jellyfin.apiclient.model.api.BaseItemDto
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.UserItemDataDto
class UserLibraryApi(
private val api: KtorClient

View File

@ -12,8 +12,8 @@ import kotlin.String
import kotlin.collections.List
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.SpecialViewOptionDto
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.SpecialViewOptionDto
class UserViewsApi(
private val api: KtorClient

View File

@ -16,8 +16,8 @@ import kotlin.String
import kotlin.collections.Map
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.EncodingContext
import org.jellyfin.apiclient.model.SubtitleDeliveryMethod
import org.jellyfin.apiclient.model.api.EncodingContext
import org.jellyfin.apiclient.model.api.SubtitleDeliveryMethod
class VideoHlsApi(
private val api: KtorClient

View File

@ -17,9 +17,9 @@ import kotlin.Unit
import kotlin.collections.Map
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.EncodingContext
import org.jellyfin.apiclient.model.SubtitleDeliveryMethod
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.EncodingContext
import org.jellyfin.apiclient.model.api.SubtitleDeliveryMethod
class VideosApi(
private val api: KtorClient

View File

@ -12,8 +12,8 @@ import kotlin.Int
import kotlin.String
import org.jellyfin.apiclient.api.client.KtorClient
import org.jellyfin.apiclient.api.client.Response
import org.jellyfin.apiclient.model.BaseItemDto
import org.jellyfin.apiclient.model.BaseItemDtoQueryResult
import org.jellyfin.apiclient.model.api.BaseItemDto
import org.jellyfin.apiclient.model.api.BaseItemDtoQueryResult
class YearsApi(
private val api: KtorClient

View File

@ -1,7 +1,7 @@
package org.jellyfin.apiclient.api.client.extensions
import org.jellyfin.apiclient.api.operations.UserApi
import org.jellyfin.apiclient.model.AuthenticateUserByName
import org.jellyfin.apiclient.model.api.AuthenticateUserByName
/**
* Extension function for the authenticateUserByName operation that accepts the username and password directly

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.util.UUID
import kotlin.Double

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.time.LocalDateTime
import java.util.UUID

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import kotlin.Int
import kotlin.collections.List

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
/**
* Add virtual folder dto.

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.time.LocalDateTime
import kotlin.Boolean

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.util.UUID
import kotlin.Boolean

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
data class AllThemeMediaResult(
val themeVideosResult: ThemeMediaResult,

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
enum class Architecture {
X_86,

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.time.LocalDateTime
import kotlin.Boolean

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.util.UUID
import kotlin.Boolean

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import kotlin.String

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.time.LocalDateTime
import java.util.UUID

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import kotlin.Int
import kotlin.collections.List

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import kotlin.String

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.time.LocalDateTime
import java.util.UUID

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.time.LocalDateTime
import java.util.UUID

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import kotlin.Int
import kotlin.collections.List

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import kotlin.String
import kotlin.collections.Map

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
/**
* Class BasePluginConfiguration.

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.time.LocalDateTime
import kotlin.Boolean

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.util.UUID
import kotlin.Boolean

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.time.LocalDateTime
import kotlin.Boolean

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.util.UUID
import kotlin.Boolean

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import kotlin.String

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import kotlin.Boolean
import kotlin.Int

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
enum class ChannelItemSortField {
NAME,

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import kotlin.String
import kotlin.collections.List

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
enum class ChannelMediaContentType {
CLIP,

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
enum class ChannelMediaType {
AUDIO,

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
/**
* Enum ChannelType.

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.time.LocalDateTime
import kotlin.Long

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import kotlin.Boolean
import kotlin.String

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import kotlin.String
import kotlin.collections.List

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
enum class CodecType {
VIDEO,

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.util.UUID

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import kotlin.Boolean
import kotlin.String

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
/**
* Enum ConfigurationPageType.

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import kotlin.String
import kotlin.collections.List

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import kotlin.Boolean
import kotlin.String

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import kotlin.String

View File

@ -3,7 +3,7 @@
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.apiclient.model
package org.jellyfin.apiclient.model.api
import java.util.UUID
import kotlin.String

Some files were not shown because too many files have changed in this diff Show More