@jellyfin/sdk 0.13.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.nvmrc +1 -0
- package/.openapi-generator-ignore +2 -0
- package/CHANGELOG.md +24 -2
- package/README.md +52 -27
- package/eslint.config.mjs +118 -0
- package/lib/api.d.ts +30 -8
- package/lib/api.js +79 -14
- package/lib/constants.d.ts +11 -0
- package/lib/constants.js +13 -0
- package/lib/generated-client/api/{artists-api.d.ts → artist-api.d.ts} +38 -173
- package/lib/generated-client/api/{artists-api.js → artist-api.js} +39 -33
- package/lib/generated-client/api/audio-api.d.ts +295 -450
- package/lib/generated-client/api/audio-api.js +332 -64
- package/lib/generated-client/api/authentication-api.d.ts +517 -0
- package/lib/generated-client/api/authentication-api.js +870 -0
- package/lib/generated-client/api/backup-api.d.ts +0 -22
- package/lib/generated-client/api/backup-api.js +5 -11
- package/lib/generated-client/api/branding-api.d.ts +0 -9
- package/lib/generated-client/api/branding-api.js +4 -10
- package/lib/generated-client/api/{channels-api.d.ts → channel-api.d.ts} +32 -95
- package/lib/generated-client/api/{channels-api.js → channel-api.js} +35 -41
- package/lib/generated-client/api/collection-api.d.ts +0 -31
- package/lib/generated-client/api/collection-api.js +4 -10
- package/lib/generated-client/api/{devices-api.d.ts → device-api.d.ts} +48 -81
- package/lib/generated-client/api/{devices-api.js → device-api.js} +46 -54
- package/lib/generated-client/api/{display-preferences-api.d.ts → display-preference-api.d.ts} +20 -46
- package/lib/generated-client/api/{display-preferences-api.js → display-preference-api.js} +22 -28
- package/lib/generated-client/api/environment-api.d.ts +0 -60
- package/lib/generated-client/api/environment-api.js +6 -75
- package/lib/generated-client/api/filter-api.d.ts +0 -40
- package/lib/generated-client/api/filter-api.js +3 -9
- package/lib/generated-client/api/{genres-api.d.ts → genre-api.d.ts} +20 -72
- package/lib/generated-client/api/{genres-api.js → genre-api.js} +22 -28
- package/lib/generated-client/api/image-api.d.ts +4 -1007
- package/lib/generated-client/api/image-api.js +42 -48
- package/lib/generated-client/api/instant-mix-api.d.ts +8 -245
- package/lib/generated-client/api/instant-mix-api.js +16 -121
- package/lib/generated-client/api/item-lookup-api.d.ts +0 -65
- package/lib/generated-client/api/item-lookup-api.js +12 -18
- package/lib/generated-client/api/item-update-api.d.ts +0 -25
- package/lib/generated-client/api/item-update-api.js +4 -10
- package/lib/generated-client/api/library-api.d.ts +1239 -327
- package/lib/generated-client/api/library-api.js +1307 -95
- package/lib/generated-client/api/library-structure-api.d.ts +0 -62
- package/lib/generated-client/api/library-structure-api.js +9 -15
- package/lib/generated-client/api/live-tv-api.d.ts +0 -622
- package/lib/generated-client/api/live-tv-api.js +39 -320
- package/lib/generated-client/api/localization-api.d.ts +0 -10
- package/lib/generated-client/api/localization-api.js +5 -11
- package/lib/generated-client/api/{lyrics-api.d.ts → lyric-api.d.ts} +44 -89
- package/lib/generated-client/api/{lyrics-api.js → lyric-api.js} +42 -48
- package/lib/generated-client/api/media-info-api.d.ts +4 -91
- package/lib/generated-client/api/media-info-api.js +10 -16
- package/lib/generated-client/api/{media-segments-api.d.ts → media-segment-api.d.ts} +14 -27
- package/lib/generated-client/api/{media-segments-api.js → media-segment-api.js} +17 -23
- package/lib/generated-client/api/{movies-api.d.ts → movie-api.d.ts} +14 -33
- package/lib/generated-client/api/{movies-api.js → movie-api.js} +17 -23
- package/lib/generated-client/api/music-genre-api.d.ts +85 -0
- package/lib/generated-client/api/music-genre-api.js +121 -0
- package/lib/generated-client/api/{persons-api.d.ts → person-api.d.ts} +52 -64
- package/lib/generated-client/api/{persons-api.js → person-api.js} +51 -32
- package/lib/generated-client/api/{playlists-api.d.ts → playlist-api.d.ts} +86 -185
- package/lib/generated-client/api/{playlists-api.js → playlist-api.js} +80 -81
- package/lib/generated-client/api/plugin-api.d.ts +743 -0
- package/lib/generated-client/api/plugin-api.js +1186 -0
- package/lib/generated-client/api/remote-image-api.d.ts +0 -35
- package/lib/generated-client/api/remote-image-api.js +4 -10
- package/lib/generated-client/api/{scheduled-tasks-api.d.ts → scheduled-task-api.d.ts} +38 -73
- package/lib/generated-client/api/{scheduled-tasks-api.js → scheduled-task-api.js} +37 -43
- package/lib/generated-client/api/search-api.d.ts +0 -45
- package/lib/generated-client/api/search-api.js +2 -8
- package/lib/generated-client/api/session-api.d.ts +163 -181
- package/lib/generated-client/api/session-api.js +262 -123
- package/lib/generated-client/api/{tv-shows-api.d.ts → show-api.d.ts} +34 -156
- package/lib/generated-client/api/{tv-shows-api.js → show-api.js} +36 -47
- package/lib/generated-client/api/startup-api.d.ts +20 -25
- package/lib/generated-client/api/startup-api.js +28 -14
- package/lib/generated-client/api/{studios-api.d.ts → studio-api.d.ts} +20 -70
- package/lib/generated-client/api/{studios-api.js → studio-api.js} +22 -28
- package/lib/generated-client/api/subtitle-api.d.ts +0 -114
- package/lib/generated-client/api/subtitle-api.js +11 -17
- package/lib/generated-client/api/{suggestions-api.d.ts → suggestion-api.d.ts} +14 -35
- package/lib/generated-client/api/{suggestions-api.js → suggestion-api.js} +17 -23
- package/lib/generated-client/api/sync-play-api.d.ts +0 -96
- package/lib/generated-client/api/sync-play-api.js +23 -29
- package/lib/generated-client/api/system-api.d.ts +420 -20
- package/lib/generated-client/api/system-api.js +659 -18
- package/lib/generated-client/api/{trailers-api.d.ts → trailer-api.d.ts} +32 -193
- package/lib/generated-client/api/{trailers-api.js → trailer-api.js} +35 -27
- package/lib/generated-client/api/{trickplay-api.d.ts → trick-play-api.d.ts} +20 -46
- package/lib/generated-client/api/{trickplay-api.js → trick-play-api.js} +22 -28
- package/lib/generated-client/api/user-api.d.ts +0 -249
- package/lib/generated-client/api/user-api.js +11 -277
- package/lib/generated-client/api/user-data-api.d.ts +429 -0
- package/lib/generated-client/api/{user-library-api.js → user-data-api.js} +149 -324
- package/lib/generated-client/api/{user-views-api.d.ts → user-view-api.d.ts} +20 -42
- package/lib/generated-client/api/{user-views-api.js → user-view-api.js} +22 -28
- package/lib/generated-client/api/{videos-api.d.ts → video-api.d.ts} +111 -533
- package/lib/generated-client/api/{videos-api.js → video-api.js} +141 -101
- package/lib/generated-client/api/{years-api.d.ts → year-api.d.ts} +20 -66
- package/lib/generated-client/api/{years-api.js → year-api.js} +22 -28
- package/lib/generated-client/api.d.ts +23 -38
- package/lib/generated-client/base.d.ts +0 -24
- package/lib/generated-client/base.js +0 -15
- package/lib/generated-client/common.d.ts +4 -35
- package/lib/generated-client/common.js +15 -26
- package/lib/generated-client/configuration.d.ts +24 -17
- package/lib/generated-client/configuration.js +8 -2
- package/lib/generated-client/index.js +25 -39
- package/lib/generated-client/models/access-schedule.d.ts +0 -15
- package/lib/generated-client/models/activity-log-entry-message.d.ts +0 -11
- package/lib/generated-client/models/activity-log-entry-query-result.d.ts +0 -8
- package/lib/generated-client/models/activity-log-entry-start-message.d.ts +1 -10
- package/lib/generated-client/models/activity-log-entry-stop-message.d.ts +0 -7
- package/lib/generated-client/models/activity-log-entry.d.ts +0 -25
- package/lib/generated-client/models/activity-log-sort-by.d.ts +23 -0
- package/lib/generated-client/models/{architecture.d.ts → activity-log-sort-by.js} +13 -11
- package/lib/generated-client/models/add-virtual-folder-dto.d.ts +0 -7
- package/lib/generated-client/models/album-info-remote-search-query.d.ts +0 -19
- package/lib/generated-client/models/album-info.d.ts +1 -49
- package/lib/generated-client/models/all-theme-media-result.d.ts +0 -20
- package/lib/generated-client/models/artist-info-remote-search-query.d.ts +0 -19
- package/lib/generated-client/models/artist-info.d.ts +0 -44
- package/lib/generated-client/models/audio-spatial-format.d.ts +0 -2
- package/lib/generated-client/models/audio-spatial-format.js +0 -2
- package/lib/generated-client/models/authenticate-user-by-name.d.ts +0 -6
- package/lib/generated-client/models/authentication-info-query-result.d.ts +0 -8
- package/lib/generated-client/models/authentication-info.d.ts +0 -35
- package/lib/generated-client/models/authentication-result.d.ts +0 -16
- package/lib/generated-client/models/backup-manifest-dto.d.ts +5 -20
- package/lib/generated-client/models/backup-options-dto.d.ts +0 -10
- package/lib/generated-client/models/backup-restore-request-dto.d.ts +1 -5
- package/lib/generated-client/models/base-item-dto-image-blur-hashes.d.ts +14 -81
- package/lib/generated-client/models/base-item-dto-query-result.d.ts +0 -8
- package/lib/generated-client/models/base-item-dto.d.ts +6 -456
- package/lib/generated-client/models/base-item-kind.d.ts +0 -2
- package/lib/generated-client/models/base-item-kind.js +0 -2
- package/lib/generated-client/models/base-item-person-image-blur-hashes.d.ts +13 -80
- package/lib/generated-client/models/base-item-person.d.ts +0 -20
- package/lib/generated-client/models/book-info-remote-search-query.d.ts +0 -19
- package/lib/generated-client/models/book-info.d.ts +2 -40
- package/lib/generated-client/models/box-set-info-remote-search-query.d.ts +0 -19
- package/lib/generated-client/models/box-set-info.d.ts +1 -37
- package/lib/generated-client/models/branding-options-dto.d.ts +1 -9
- package/lib/generated-client/models/buffer-request-dto.d.ts +0 -10
- package/lib/generated-client/models/cast-receiver-application.d.ts +2 -8
- package/lib/generated-client/models/channel-features.d.ts +0 -29
- package/lib/generated-client/models/channel-item-sort-field.d.ts +0 -5
- package/lib/generated-client/models/channel-item-sort-field.js +0 -5
- package/lib/generated-client/models/channel-mapping-options-dto.d.ts +2 -12
- package/lib/generated-client/models/channel-media-content-type.d.ts +0 -5
- package/lib/generated-client/models/channel-media-content-type.js +0 -5
- package/lib/generated-client/models/channel-media-type.d.ts +0 -5
- package/lib/generated-client/models/channel-media-type.js +0 -5
- package/lib/generated-client/models/channel-type.d.ts +0 -2
- package/lib/generated-client/models/channel-type.js +0 -2
- package/lib/generated-client/models/chapter-info.d.ts +0 -18
- package/lib/generated-client/models/client-capabilities-dto.d.ts +0 -19
- package/lib/generated-client/models/client-log-document-response-dto.d.ts +0 -4
- package/lib/generated-client/models/codec-profile.d.ts +0 -17
- package/lib/generated-client/models/codec-type.d.ts +1 -3
- package/lib/generated-client/models/codec-type.js +1 -3
- package/lib/generated-client/models/collection-creation-result.d.ts +0 -10
- package/lib/generated-client/models/collection-type-options.d.ts +0 -2
- package/lib/generated-client/models/collection-type-options.js +0 -2
- package/lib/generated-client/models/collection-type.d.ts +0 -2
- package/lib/generated-client/models/collection-type.js +0 -2
- package/lib/generated-client/models/configuration-page-info.d.ts +0 -14
- package/lib/generated-client/models/container-profile.d.ts +0 -13
- package/lib/generated-client/models/country-info.d.ts +0 -10
- package/lib/generated-client/models/create-playlist-dto.d.ts +1 -18
- package/lib/generated-client/models/create-user-by-name.d.ts +0 -6
- package/lib/generated-client/models/culture-dto.d.ts +0 -15
- package/lib/generated-client/models/custom-database-option.d.ts +2 -8
- package/lib/generated-client/models/custom-database-options.d.ts +3 -13
- package/lib/generated-client/models/database-configuration-options.d.ts +1 -15
- package/lib/generated-client/models/database-locking-behavior-types.d.ts +0 -2
- package/lib/generated-client/models/database-locking-behavior-types.js +0 -2
- package/lib/generated-client/models/day-of-week.d.ts +0 -5
- package/lib/generated-client/models/day-of-week.js +0 -5
- package/lib/generated-client/models/day-pattern.d.ts +1 -3
- package/lib/generated-client/models/day-pattern.js +1 -3
- package/lib/generated-client/models/default-directory-browser-info-dto.d.ts +0 -4
- package/lib/generated-client/models/deinterlace-method.d.ts +0 -2
- package/lib/generated-client/models/deinterlace-method.js +0 -2
- package/lib/generated-client/models/device-info-dto-query-result.d.ts +0 -8
- package/lib/generated-client/models/device-info-dto.d.ts +0 -27
- package/lib/generated-client/models/device-options-dto.d.ts +0 -8
- package/lib/generated-client/models/device-profile.d.ts +1 -25
- package/lib/generated-client/models/direct-play-profile.d.ts +0 -13
- package/lib/generated-client/models/display-preferences-dto.d.ts +0 -36
- package/lib/generated-client/models/dlna-profile-type.d.ts +0 -5
- package/lib/generated-client/models/dlna-profile-type.js +0 -5
- package/lib/generated-client/models/down-mix-stereo-algorithms.d.ts +0 -2
- package/lib/generated-client/models/down-mix-stereo-algorithms.js +0 -2
- package/lib/generated-client/models/dynamic-day-of-week.d.ts +0 -2
- package/lib/generated-client/models/dynamic-day-of-week.js +0 -2
- package/lib/generated-client/models/embedded-subtitle-options.d.ts +0 -2
- package/lib/generated-client/models/embedded-subtitle-options.js +0 -2
- package/lib/generated-client/models/encoder-preset.d.ts +0 -2
- package/lib/generated-client/models/encoder-preset.js +0 -2
- package/lib/generated-client/models/encoding-context.d.ts +1 -3
- package/lib/generated-client/models/encoding-context.js +1 -3
- package/lib/generated-client/models/encoding-options.d.ts +6 -117
- package/lib/generated-client/models/end-point-info.d.ts +0 -15
- package/lib/generated-client/models/external-id-info.d.ts +0 -11
- package/lib/generated-client/models/external-id-media-type.d.ts +0 -2
- package/lib/generated-client/models/external-id-media-type.js +0 -2
- package/lib/generated-client/models/external-url.d.ts +0 -9
- package/lib/generated-client/models/extra-type.d.ts +0 -5
- package/lib/generated-client/models/extra-type.js +0 -5
- package/lib/generated-client/models/file-system-entry-info.d.ts +0 -11
- package/lib/generated-client/models/file-system-entry-type.d.ts +0 -2
- package/lib/generated-client/models/file-system-entry-type.js +0 -2
- package/lib/generated-client/models/folder-storage-dto.d.ts +1 -13
- package/lib/generated-client/models/font-file.d.ts +0 -10
- package/lib/generated-client/models/force-keep-alive-message.d.ts +0 -11
- package/lib/generated-client/models/forgot-password-action.d.ts +0 -5
- package/lib/generated-client/models/forgot-password-action.js +0 -5
- package/lib/generated-client/models/forgot-password-dto.d.ts +0 -4
- package/lib/generated-client/models/forgot-password-pin-dto.d.ts +0 -4
- package/lib/generated-client/models/forgot-password-result.d.ts +0 -14
- package/lib/generated-client/models/general-command-message.d.ts +0 -14
- package/lib/generated-client/models/general-command-type.d.ts +0 -2
- package/lib/generated-client/models/general-command-type.js +0 -2
- package/lib/generated-client/models/general-command.d.ts +1 -21
- package/lib/generated-client/models/get-programs-dto.d.ts +0 -56
- package/lib/generated-client/models/group-info-dto.d.ts +0 -15
- package/lib/generated-client/models/group-queue-mode.d.ts +0 -2
- package/lib/generated-client/models/group-queue-mode.js +0 -2
- package/lib/generated-client/models/group-repeat-mode.d.ts +0 -2
- package/lib/generated-client/models/group-repeat-mode.js +0 -2
- package/lib/generated-client/models/group-shuffle-mode.d.ts +0 -2
- package/lib/generated-client/models/group-shuffle-mode.js +0 -2
- package/lib/generated-client/models/group-state-type.d.ts +0 -2
- package/lib/generated-client/models/group-state-type.js +0 -2
- package/lib/generated-client/models/group-state-update.d.ts +0 -12
- package/lib/generated-client/models/group-update-type.d.ts +0 -2
- package/lib/generated-client/models/group-update-type.js +0 -2
- package/lib/generated-client/models/group-update.d.ts +0 -1
- package/lib/generated-client/models/guide-info.d.ts +0 -9
- package/lib/generated-client/models/hardware-acceleration-type.d.ts +0 -2
- package/lib/generated-client/models/hardware-acceleration-type.js +0 -2
- package/lib/generated-client/models/{notification-level.d.ts → hls-audio-seek-strategy.d.ts} +5 -8
- package/lib/generated-client/models/{transcoding-info.js → hls-audio-seek-strategy.js} +8 -2
- package/lib/generated-client/models/ignore-wait-request-dto.d.ts +0 -4
- package/lib/generated-client/models/image-format.d.ts +0 -2
- package/lib/generated-client/models/image-format.js +0 -2
- package/lib/generated-client/models/image-info.d.ts +0 -21
- package/lib/generated-client/models/image-option.d.ts +0 -14
- package/lib/generated-client/models/image-orientation.d.ts +0 -5
- package/lib/generated-client/models/image-orientation.js +0 -5
- package/lib/generated-client/models/image-provider-info.d.ts +0 -6
- package/lib/generated-client/models/image-resolution.d.ts +0 -2
- package/lib/generated-client/models/image-resolution.js +0 -2
- package/lib/generated-client/models/image-saving-convention.d.ts +1 -3
- package/lib/generated-client/models/image-saving-convention.js +1 -3
- package/lib/generated-client/models/image-type.d.ts +0 -2
- package/lib/generated-client/models/image-type.js +0 -2
- package/lib/generated-client/models/inbound-keep-alive-message.d.ts +0 -7
- package/lib/generated-client/models/inbound-web-socket-message.d.ts +0 -1
- package/lib/generated-client/models/index.d.ts +2 -2
- package/lib/generated-client/models/index.js +2 -1
- package/lib/generated-client/models/installation-info.d.ts +0 -19
- package/lib/generated-client/models/iplugin.d.ts +0 -16
- package/lib/generated-client/models/iso-type.d.ts +0 -2
- package/lib/generated-client/models/iso-type.js +0 -2
- package/lib/generated-client/models/item-counts.d.ts +0 -26
- package/lib/generated-client/models/item-fields.d.ts +0 -2
- package/lib/generated-client/models/item-fields.js +0 -2
- package/lib/generated-client/models/item-filter.d.ts +0 -2
- package/lib/generated-client/models/item-filter.js +0 -2
- package/lib/generated-client/models/item-sort-by.d.ts +0 -2
- package/lib/generated-client/models/item-sort-by.js +0 -2
- package/lib/generated-client/models/join-group-request-dto.d.ts +0 -4
- package/lib/generated-client/models/keep-until.d.ts +0 -5
- package/lib/generated-client/models/keep-until.js +0 -5
- package/lib/generated-client/models/library-changed-message.d.ts +0 -14
- package/lib/generated-client/models/library-option-info-dto.d.ts +0 -6
- package/lib/generated-client/models/library-options-result-dto.d.ts +0 -14
- package/lib/generated-client/models/library-options.d.ts +0 -207
- package/lib/generated-client/models/library-storage-dto.d.ts +3 -11
- package/lib/generated-client/models/library-type-options-dto.d.ts +4 -12
- package/lib/generated-client/models/library-update-info.d.ts +0 -22
- package/lib/generated-client/models/listings-provider-info.d.ts +0 -95
- package/lib/generated-client/models/live-stream-response.d.ts +0 -10
- package/lib/generated-client/models/live-tv-info.d.ts +0 -11
- package/lib/generated-client/models/live-tv-options.d.ts +0 -80
- package/lib/generated-client/models/live-tv-service-info.d.ts +0 -24
- package/lib/generated-client/models/live-tv-service-status.d.ts +1 -3
- package/lib/generated-client/models/live-tv-service-status.js +1 -3
- package/lib/generated-client/models/localization-option.d.ts +0 -15
- package/lib/generated-client/models/location-type.d.ts +0 -2
- package/lib/generated-client/models/location-type.js +0 -2
- package/lib/generated-client/models/log-file.d.ts +1 -14
- package/lib/generated-client/models/log-level.d.ts +0 -5
- package/lib/generated-client/models/log-level.js +0 -5
- package/lib/generated-client/models/lyric-dto.d.ts +0 -9
- package/lib/generated-client/models/lyric-line-cue.d.ts +0 -10
- package/lib/generated-client/models/lyric-line.d.ts +0 -8
- package/lib/generated-client/models/lyric-metadata.d.ts +0 -22
- package/lib/generated-client/models/media-attachment.d.ts +0 -16
- package/lib/generated-client/models/media-path-dto.d.ts +0 -11
- package/lib/generated-client/models/media-path-info.d.ts +0 -10
- package/lib/generated-client/models/media-protocol.d.ts +0 -5
- package/lib/generated-client/models/media-protocol.js +0 -5
- package/lib/generated-client/models/media-segment-dto-query-result.d.ts +0 -8
- package/lib/generated-client/models/media-segment-dto.d.ts +0 -15
- package/lib/generated-client/models/media-segment-type.d.ts +0 -2
- package/lib/generated-client/models/media-segment-type.js +0 -2
- package/lib/generated-client/models/media-source-info.d.ts +1 -228
- package/lib/generated-client/models/media-source-type.d.ts +1 -3
- package/lib/generated-client/models/media-source-type.js +1 -3
- package/lib/generated-client/models/media-stream-protocol.d.ts +1 -3
- package/lib/generated-client/models/media-stream-protocol.js +1 -3
- package/lib/generated-client/models/media-stream-type.d.ts +0 -2
- package/lib/generated-client/models/media-stream-type.js +0 -2
- package/lib/generated-client/models/media-stream.d.ts +7 -176
- package/lib/generated-client/models/media-type.d.ts +0 -2
- package/lib/generated-client/models/media-type.js +0 -2
- package/lib/generated-client/models/media-update-info-dto.d.ts +0 -4
- package/lib/generated-client/models/media-update-info-path-dto.d.ts +1 -7
- package/lib/generated-client/models/media-url.d.ts +0 -15
- package/lib/generated-client/models/message-command.d.ts +4 -12
- package/lib/generated-client/models/metadata-configuration.d.ts +0 -10
- package/lib/generated-client/models/metadata-editor-info.d.ts +0 -17
- package/lib/generated-client/models/metadata-field.d.ts +0 -2
- package/lib/generated-client/models/metadata-field.js +0 -2
- package/lib/generated-client/models/metadata-options.d.ts +0 -37
- package/lib/generated-client/models/metadata-refresh-mode.d.ts +0 -5
- package/lib/generated-client/models/metadata-refresh-mode.js +0 -5
- package/lib/generated-client/models/move-playlist-item-request-dto.d.ts +0 -6
- package/lib/generated-client/models/movie-info-remote-search-query.d.ts +0 -19
- package/lib/generated-client/models/movie-info.d.ts +1 -37
- package/lib/generated-client/models/music-video-info-remote-search-query.d.ts +0 -19
- package/lib/generated-client/models/music-video-info.d.ts +0 -44
- package/lib/generated-client/models/name-guid-pair.d.ts +0 -15
- package/lib/generated-client/models/name-id-pair.d.ts +0 -9
- package/lib/generated-client/models/name-value-pair.d.ts +0 -9
- package/lib/generated-client/models/network-configuration.d.ts +1 -49
- package/lib/generated-client/models/new-group-request-dto.d.ts +0 -4
- package/lib/generated-client/models/next-item-request-dto.d.ts +0 -4
- package/lib/generated-client/models/open-live-stream-dto.d.ts +0 -33
- package/lib/generated-client/models/outbound-keep-alive-message.d.ts +0 -9
- package/lib/generated-client/models/outbound-web-socket-message.d.ts +0 -1
- package/lib/generated-client/models/package-info.d.ts +1 -19
- package/lib/generated-client/models/parental-rating-score.d.ts +0 -6
- package/lib/generated-client/models/parental-rating.d.ts +0 -11
- package/lib/generated-client/models/path-substitution.d.ts +0 -6
- package/lib/generated-client/models/person-kind.d.ts +1 -2
- package/lib/generated-client/models/person-kind.js +2 -3
- package/lib/generated-client/models/person-lookup-info-remote-search-query.d.ts +0 -19
- package/lib/generated-client/models/person-lookup-info.d.ts +1 -37
- package/lib/generated-client/models/pin-redeem-result.d.ts +0 -9
- package/lib/generated-client/models/ping-request-dto.d.ts +0 -4
- package/lib/generated-client/models/play-access.d.ts +1 -3
- package/lib/generated-client/models/play-access.js +1 -3
- package/lib/generated-client/models/play-command.d.ts +0 -2
- package/lib/generated-client/models/play-command.js +0 -2
- package/lib/generated-client/models/play-message.d.ts +0 -14
- package/lib/generated-client/models/play-method.d.ts +1 -3
- package/lib/generated-client/models/play-method.js +1 -3
- package/lib/generated-client/models/play-queue-update-reason.d.ts +0 -2
- package/lib/generated-client/models/play-queue-update-reason.js +0 -2
- package/lib/generated-client/models/play-queue-update.d.ts +0 -27
- package/lib/generated-client/models/play-request-dto.d.ts +0 -8
- package/lib/generated-client/models/play-request.d.ts +0 -33
- package/lib/generated-client/models/playback-error-code.d.ts +1 -3
- package/lib/generated-client/models/playback-error-code.js +1 -3
- package/lib/generated-client/models/playback-info-dto.d.ts +0 -37
- package/lib/generated-client/models/playback-info-response.d.ts +0 -11
- package/lib/generated-client/models/playback-order.d.ts +0 -2
- package/lib/generated-client/models/playback-order.js +0 -2
- package/lib/generated-client/models/playback-progress-info.d.ts +0 -71
- package/lib/generated-client/models/playback-request-type.d.ts +0 -2
- package/lib/generated-client/models/playback-request-type.js +0 -2
- package/lib/generated-client/models/playback-start-info.d.ts +0 -71
- package/lib/generated-client/models/playback-stop-info.d.ts +0 -36
- package/lib/generated-client/models/player-state-info.d.ts +0 -38
- package/lib/generated-client/models/playlist-creation-result.d.ts +0 -10
- package/lib/generated-client/models/playlist-dto.d.ts +2 -10
- package/lib/generated-client/models/playlist-user-permissions.d.ts +0 -6
- package/lib/generated-client/models/playstate-command.d.ts +0 -2
- package/lib/generated-client/models/playstate-command.js +0 -2
- package/lib/generated-client/models/playstate-message.d.ts +0 -14
- package/lib/generated-client/models/playstate-request.d.ts +2 -13
- package/lib/generated-client/models/plugin-info.d.ts +0 -21
- package/lib/generated-client/models/plugin-installation-cancelled-message.d.ts +0 -14
- package/lib/generated-client/models/plugin-installation-completed-message.d.ts +0 -14
- package/lib/generated-client/models/plugin-installation-failed-message.d.ts +0 -14
- package/lib/generated-client/models/plugin-installing-message.d.ts +0 -14
- package/lib/generated-client/models/plugin-status.d.ts +0 -2
- package/lib/generated-client/models/plugin-status.js +0 -2
- package/lib/generated-client/models/plugin-uninstalled-message.d.ts +0 -14
- package/lib/generated-client/models/previous-item-request-dto.d.ts +0 -4
- package/lib/generated-client/models/problem-details.d.ts +0 -30
- package/lib/generated-client/models/process-priority-class.d.ts +0 -5
- package/lib/generated-client/models/process-priority-class.js +0 -5
- package/lib/generated-client/models/profile-condition-type.d.ts +0 -5
- package/lib/generated-client/models/profile-condition-type.js +0 -5
- package/lib/generated-client/models/profile-condition-value.d.ts +1 -5
- package/lib/generated-client/models/profile-condition-value.js +2 -6
- package/lib/generated-client/models/profile-condition.d.ts +0 -25
- package/lib/generated-client/models/program-audio.d.ts +0 -5
- package/lib/generated-client/models/program-audio.js +0 -5
- package/lib/generated-client/models/public-system-info.d.ts +0 -19
- package/lib/generated-client/models/query-filters-legacy.d.ts +0 -25
- package/lib/generated-client/models/query-filters.d.ts +3 -15
- package/lib/generated-client/models/queue-item.d.ts +3 -9
- package/lib/generated-client/models/queue-request-dto.d.ts +0 -9
- package/lib/generated-client/models/quick-connect-dto.d.ts +0 -4
- package/lib/generated-client/models/quick-connect-result.d.ts +0 -18
- package/lib/generated-client/models/rating-type.d.ts +1 -3
- package/lib/generated-client/models/rating-type.js +1 -3
- package/lib/generated-client/models/ready-request-dto.d.ts +0 -10
- package/lib/generated-client/models/recommendation-dto.d.ts +0 -25
- package/lib/generated-client/models/recommendation-type.d.ts +0 -5
- package/lib/generated-client/models/recommendation-type.js +0 -5
- package/lib/generated-client/models/recording-status.d.ts +0 -5
- package/lib/generated-client/models/recording-status.js +0 -5
- package/lib/generated-client/models/refresh-progress-message.d.ts +0 -11
- package/lib/generated-client/models/remote-image-info.d.ts +0 -28
- package/lib/generated-client/models/remote-image-result.d.ts +0 -8
- package/lib/generated-client/models/remote-lyric-info-dto.d.ts +3 -14
- package/lib/generated-client/models/remote-search-result.d.ts +3 -59
- package/lib/generated-client/models/remote-subtitle-info.d.ts +0 -85
- package/lib/generated-client/models/remove-from-playlist-request-dto.d.ts +0 -8
- package/lib/generated-client/models/repeat-mode.d.ts +1 -3
- package/lib/generated-client/models/repeat-mode.js +1 -3
- package/lib/generated-client/models/repository-info.d.ts +0 -8
- package/lib/generated-client/models/restart-required-message.d.ts +0 -9
- package/lib/generated-client/models/scheduled-task-ended-message.d.ts +0 -14
- package/lib/generated-client/models/scheduled-tasks-info-message.d.ts +0 -11
- package/lib/generated-client/models/scheduled-tasks-info-start-message.d.ts +1 -10
- package/lib/generated-client/models/scheduled-tasks-info-stop-message.d.ts +0 -7
- package/lib/generated-client/models/scroll-direction.d.ts +0 -2
- package/lib/generated-client/models/scroll-direction.js +0 -2
- package/lib/generated-client/models/search-hint-result.d.ts +0 -6
- package/lib/generated-client/models/search-hint.d.ts +0 -66
- package/lib/generated-client/models/seek-request-dto.d.ts +0 -4
- package/lib/generated-client/models/send-command-type.d.ts +0 -2
- package/lib/generated-client/models/send-command-type.js +0 -2
- package/lib/generated-client/models/send-command.d.ts +0 -17
- package/lib/generated-client/models/series-info-remote-search-query.d.ts +0 -19
- package/lib/generated-client/models/series-info.d.ts +1 -37
- package/lib/generated-client/models/series-status.d.ts +0 -2
- package/lib/generated-client/models/series-status.js +0 -2
- package/lib/generated-client/models/series-timer-cancelled-message.d.ts +0 -14
- package/lib/generated-client/models/series-timer-created-message.d.ts +0 -14
- package/lib/generated-client/models/series-timer-info-dto-query-result.d.ts +0 -8
- package/lib/generated-client/models/series-timer-info-dto.d.ts +1 -91
- package/lib/generated-client/models/server-configuration.d.ts +3 -180
- package/lib/generated-client/models/server-discovery-info.d.ts +0 -10
- package/lib/generated-client/models/server-restarting-message.d.ts +0 -9
- package/lib/generated-client/models/server-shutting-down-message.d.ts +0 -9
- package/lib/generated-client/models/session-info-dto.d.ts +1 -80
- package/lib/generated-client/models/session-message-type.d.ts +0 -2
- package/lib/generated-client/models/session-message-type.js +0 -2
- package/lib/generated-client/models/session-user-info.d.ts +0 -6
- package/lib/generated-client/models/sessions-message.d.ts +0 -11
- package/lib/generated-client/models/sessions-start-message.d.ts +1 -10
- package/lib/generated-client/models/sessions-stop-message.d.ts +0 -7
- package/lib/generated-client/models/set-channel-mapping-dto.d.ts +0 -8
- package/lib/generated-client/models/set-playlist-item-request-dto.d.ts +0 -4
- package/lib/generated-client/models/set-repeat-mode-request-dto.d.ts +0 -7
- package/lib/generated-client/models/set-shuffle-mode-request-dto.d.ts +0 -7
- package/lib/generated-client/models/song-info.d.ts +0 -54
- package/lib/generated-client/models/sort-order.d.ts +0 -2
- package/lib/generated-client/models/sort-order.js +0 -2
- package/lib/generated-client/models/special-view-option-dto.d.ts +0 -6
- package/lib/generated-client/models/startup-configuration-dto.d.ts +0 -10
- package/lib/generated-client/models/startup-remote-access-dto.d.ts +0 -11
- package/lib/generated-client/models/startup-user-dto.d.ts +0 -6
- package/lib/generated-client/models/subtitle-delivery-method.d.ts +0 -2
- package/lib/generated-client/models/subtitle-delivery-method.js +0 -2
- package/lib/generated-client/models/subtitle-playback-mode.d.ts +0 -2
- package/lib/generated-client/models/subtitle-playback-mode.js +0 -2
- package/lib/generated-client/models/subtitle-profile.d.ts +0 -15
- package/lib/generated-client/models/sync-play-command-message.d.ts +0 -14
- package/lib/generated-client/models/sync-play-group-does-not-exist-update.d.ts +0 -14
- package/lib/generated-client/models/sync-play-group-joined-update.d.ts +0 -17
- package/lib/generated-client/models/sync-play-group-left-update.d.ts +0 -14
- package/lib/generated-client/models/sync-play-group-update-message.d.ts +0 -14
- package/lib/generated-client/models/sync-play-library-access-denied-update.d.ts +0 -14
- package/lib/generated-client/models/sync-play-not-in-group-update.d.ts +0 -14
- package/lib/generated-client/models/sync-play-play-queue-update.d.ts +0 -17
- package/lib/generated-client/models/sync-play-queue-item.d.ts +0 -6
- package/lib/generated-client/models/sync-play-state-update.d.ts +0 -17
- package/lib/generated-client/models/sync-play-user-access-type.d.ts +0 -2
- package/lib/generated-client/models/sync-play-user-access-type.js +0 -2
- package/lib/generated-client/models/sync-play-user-joined-update.d.ts +0 -14
- package/lib/generated-client/models/sync-play-user-left-update.d.ts +0 -14
- package/lib/generated-client/models/system-info.d.ts +0 -62
- package/lib/generated-client/models/system-storage-dto.d.ts +8 -47
- package/lib/generated-client/models/task-completion-status.d.ts +0 -2
- package/lib/generated-client/models/task-completion-status.js +0 -2
- package/lib/generated-client/models/task-info.d.ts +0 -28
- package/lib/generated-client/models/task-result.d.ts +0 -21
- package/lib/generated-client/models/task-state.d.ts +0 -2
- package/lib/generated-client/models/task-state.js +0 -2
- package/lib/generated-client/models/task-trigger-info-type.d.ts +0 -2
- package/lib/generated-client/models/task-trigger-info-type.js +0 -2
- package/lib/generated-client/models/task-trigger-info.d.ts +0 -18
- package/lib/generated-client/models/theme-media-result.d.ts +0 -10
- package/lib/generated-client/models/timer-cancelled-message.d.ts +0 -14
- package/lib/generated-client/models/timer-created-message.d.ts +0 -14
- package/lib/generated-client/models/timer-event-info.d.ts +0 -15
- package/lib/generated-client/models/timer-info-dto-query-result.d.ts +0 -8
- package/lib/generated-client/models/timer-info-dto.d.ts +0 -76
- package/lib/generated-client/models/tonemapping-algorithm.d.ts +0 -2
- package/lib/generated-client/models/tonemapping-algorithm.js +0 -2
- package/lib/generated-client/models/tonemapping-mode.d.ts +0 -2
- package/lib/generated-client/models/tonemapping-mode.js +0 -2
- package/lib/generated-client/models/tonemapping-range.d.ts +0 -2
- package/lib/generated-client/models/tonemapping-range.js +0 -2
- package/lib/generated-client/models/trailer-info-remote-search-query.d.ts +0 -19
- package/lib/generated-client/models/trailer-info.d.ts +1 -37
- package/lib/generated-client/models/transcode-reason.d.ts +1 -5
- package/lib/generated-client/models/transcode-reason.js +2 -6
- package/lib/generated-client/models/transcode-seek-info.d.ts +1 -3
- package/lib/generated-client/models/transcode-seek-info.js +1 -3
- package/lib/generated-client/models/transcoding-info.d.ts +2 -34
- package/lib/generated-client/models/transcoding-profile.d.ts +3 -50
- package/lib/generated-client/models/transport-stream-timestamp.d.ts +1 -3
- package/lib/generated-client/models/transport-stream-timestamp.js +1 -3
- package/lib/generated-client/models/trickplay-info-dto.d.ts +0 -16
- package/lib/generated-client/models/trickplay-options.d.ts +1 -33
- package/lib/generated-client/models/trickplay-scan-behavior.d.ts +0 -2
- package/lib/generated-client/models/trickplay-scan-behavior.js +0 -2
- package/lib/generated-client/models/tuner-channel-mapping.d.ts +0 -25
- package/lib/generated-client/models/tuner-host-info.d.ts +0 -85
- package/lib/generated-client/models/type-options.d.ts +2 -35
- package/lib/generated-client/models/unrated-item.d.ts +0 -2
- package/lib/generated-client/models/unrated-item.js +0 -2
- package/lib/generated-client/models/update-library-options-dto.d.ts +0 -9
- package/lib/generated-client/models/update-media-path-request-dto.d.ts +0 -9
- package/lib/generated-client/models/update-playlist-dto.d.ts +0 -10
- package/lib/generated-client/models/update-playlist-user-dto.d.ts +0 -4
- package/lib/generated-client/models/update-user-item-data-dto.d.ts +0 -24
- package/lib/generated-client/models/update-user-password.d.ts +0 -10
- package/lib/generated-client/models/upload-subtitle-dto.d.ts +0 -12
- package/lib/generated-client/models/user-configuration.d.ts +0 -70
- package/lib/generated-client/models/user-data-change-info.d.ts +1 -7
- package/lib/generated-client/models/user-data-changed-message.d.ts +0 -14
- package/lib/generated-client/models/user-deleted-message.d.ts +0 -11
- package/lib/generated-client/models/user-dto.d.ts +6 -40
- package/lib/generated-client/models/user-item-data-dto.d.ts +1 -25
- package/lib/generated-client/models/user-policy.d.ts +0 -201
- package/lib/generated-client/models/user-updated-message.d.ts +0 -14
- package/lib/generated-client/models/utc-time-response.d.ts +0 -6
- package/lib/generated-client/models/validate-path-dto.d.ts +0 -8
- package/lib/generated-client/models/version-info.d.ts +0 -20
- package/lib/generated-client/models/video-range-type.d.ts +0 -2
- package/lib/generated-client/models/video-range-type.js +0 -2
- package/lib/generated-client/models/video-range.d.ts +0 -2
- package/lib/generated-client/models/video-range.js +0 -2
- package/lib/generated-client/models/video-type.d.ts +0 -2
- package/lib/generated-client/models/video-type.js +0 -2
- package/lib/generated-client/models/video3-dformat.d.ts +0 -5
- package/lib/generated-client/models/video3-dformat.js +0 -5
- package/lib/generated-client/models/virtual-folder-info.d.ts +0 -30
- package/lib/generated-client/models/web-socket-message.d.ts +0 -1
- package/lib/generated-client/models/xbmc-metadata-options.d.ts +0 -30
- package/lib/index.js +1 -1
- package/lib/models/api/image-request-parameters.d.ts +1 -1
- package/lib/models/device-info.d.ts +1 -0
- package/lib/utils/api/{videos-api.d.ts → artist-api.d.ts} +2 -2
- package/lib/utils/api/{movies-api.js → artist-api.js} +4 -4
- package/lib/utils/api/authentication-api.d.ts +8 -0
- package/lib/utils/api/authentication-api.js +35 -0
- package/lib/utils/api/{tmdb-api.d.ts → backup-api.d.ts} +2 -2
- package/lib/utils/api/backup-api.js +13 -0
- package/lib/utils/api/{artists-api.d.ts → channel-api.d.ts} +2 -2
- package/lib/utils/api/{artists-api.js → channel-api.js} +4 -4
- package/lib/utils/api/{movies-api.d.ts → device-api.d.ts} +2 -2
- package/lib/utils/api/{lyrics-api.js → device-api.js} +4 -4
- package/lib/utils/api/display-preference-api.d.ts +8 -0
- package/lib/utils/api/display-preference-api.js +12 -0
- package/lib/utils/api/{items-api.d.ts → genre-api.d.ts} +2 -2
- package/lib/utils/api/{items-api.js → genre-api.js} +4 -4
- package/lib/utils/api/index.d.ts +24 -38
- package/lib/utils/api/index.js +24 -38
- package/lib/utils/api/library-api.d.ts +14 -2
- package/lib/utils/api/library-api.js +17 -1
- package/lib/utils/api/{years-api.d.ts → lyric-api.d.ts} +2 -2
- package/lib/utils/api/{years-api.js → lyric-api.js} +4 -4
- package/lib/utils/api/{activity-log-api.d.ts → media-segment-api.d.ts} +2 -2
- package/lib/utils/api/{quick-connect-api.js → media-segment-api.js} +4 -4
- package/lib/utils/api/movie-api.d.ts +8 -0
- package/lib/utils/api/movie-api.js +12 -0
- package/lib/utils/api/{dynamic-hls-api.d.ts → music-genre-api.d.ts} +2 -2
- package/lib/utils/api/{dynamic-hls-api.js → music-genre-api.js} +4 -4
- package/lib/utils/api/{genres-api.d.ts → person-api.d.ts} +2 -2
- package/lib/utils/api/{genres-api.js → person-api.js} +4 -4
- package/lib/utils/api/{trailers-api.d.ts → playlist-api.d.ts} +2 -2
- package/lib/utils/api/{channels-api.js → playlist-api.js} +4 -4
- package/lib/utils/api/{lyrics-api.d.ts → plugin-api.d.ts} +2 -2
- package/lib/utils/api/{videos-api.js → plugin-api.js} +4 -4
- package/lib/utils/api/scheduled-task-api.d.ts +8 -0
- package/lib/utils/api/{configuration-api.js → scheduled-task-api.js} +4 -4
- package/lib/utils/api/session-api.js +3 -1
- package/lib/utils/api/show-api.d.ts +8 -0
- package/lib/utils/api/{tmdb-api.js → show-api.js} +4 -4
- package/lib/utils/api/studio-api.d.ts +8 -0
- package/lib/utils/api/studio-api.js +12 -0
- package/lib/utils/api/{hls-segment-api.d.ts → suggestion-api.d.ts} +2 -2
- package/lib/utils/api/{hls-segment-api.js → suggestion-api.js} +4 -4
- package/lib/utils/api/{package-api.d.ts → trailer-api.d.ts} +2 -2
- package/lib/utils/api/{devices-api.js → trailer-api.js} +4 -4
- package/lib/utils/api/{dashboard-api.d.ts → trick-play-api.d.ts} +2 -2
- package/lib/utils/api/{dashboard-api.js → trick-play-api.js} +4 -4
- package/lib/utils/api/user-api.js +1 -26
- package/lib/utils/api/{api-key-api.d.ts → user-data-api.d.ts} +2 -2
- package/lib/utils/api/{time-sync-api.js → user-data-api.js} +4 -4
- package/lib/utils/api/{channels-api.d.ts → user-view-api.d.ts} +2 -2
- package/lib/utils/api/{trailers-api.js → user-view-api.js} +4 -4
- package/lib/utils/api/video-api.d.ts +8 -0
- package/lib/utils/api/video-api.js +12 -0
- package/lib/utils/api/year-api.d.ts +8 -0
- package/lib/utils/api/year-api.js +12 -0
- package/lib/utils/index.js +2 -2
- package/lib/utils/url/index.d.ts +1 -0
- package/lib/utils/url/index.js +4 -1
- package/lib/utils/versioning.d.ts +12 -1
- package/lib/utils/versioning.js +44 -13
- package/lib/versions.d.ts +1 -1
- package/lib/versions.js +1 -1
- package/lib/websocket/constants.d.ts +24 -0
- package/lib/websocket/constants.js +42 -0
- package/lib/websocket/index.d.ts +8 -0
- package/lib/websocket/index.js +3 -0
- package/lib/{utils/api/client-log-api.d.ts → websocket/models.d.ts} +6 -3
- package/lib/websocket/models.js +16 -0
- package/lib/websocket/types.d.ts +37 -0
- package/lib/websocket/types.js +42 -0
- package/lib/websocket/websocket-service.d.ts +142 -0
- package/lib/websocket/websocket-service.js +296 -0
- package/package.json +20 -17
- package/lib/generated-client/api/activity-log-api.d.ts +0 -110
- package/lib/generated-client/api/activity-log-api.js +0 -135
- package/lib/generated-client/api/api-key-api.d.ts +0 -161
- package/lib/generated-client/api/api-key-api.js +0 -245
- package/lib/generated-client/api/client-log-api.d.ts +0 -86
- package/lib/generated-client/api/client-log-api.js +0 -117
- package/lib/generated-client/api/configuration-api.d.ts +0 -292
- package/lib/generated-client/api/configuration-api.js +0 -442
- package/lib/generated-client/api/dashboard-api.d.ts +0 -132
- package/lib/generated-client/api/dashboard-api.js +0 -182
- package/lib/generated-client/api/dlna-api.d.ts +0 -292
- package/lib/generated-client/api/dlna-server-api.d.ts +0 -784
- package/lib/generated-client/api/dynamic-hls-api.d.ts +0 -4261
- package/lib/generated-client/api/dynamic-hls-api.js +0 -3025
- package/lib/generated-client/api/hls-segment-api.d.ts +0 -325
- package/lib/generated-client/api/hls-segment-api.js +0 -415
- package/lib/generated-client/api/image-by-name-api.d.ts +0 -292
- package/lib/generated-client/api/item-refresh-api.d.ts +0 -126
- package/lib/generated-client/api/item-refresh-api.js +0 -143
- package/lib/generated-client/api/items-api.d.ts +0 -1052
- package/lib/generated-client/api/items-api.js +0 -835
- package/lib/generated-client/api/music-genres-api.d.ts +0 -286
- package/lib/generated-client/api/music-genres-api.js +0 -278
- package/lib/generated-client/api/notifications-api.d.ts +0 -332
- package/lib/generated-client/api/package-api.d.ts +0 -315
- package/lib/generated-client/api/package-api.js +0 -455
- package/lib/generated-client/api/playstate-api.d.ts +0 -679
- package/lib/generated-client/api/playstate-api.js +0 -789
- package/lib/generated-client/api/plugins-api.d.ts +0 -473
- package/lib/generated-client/api/plugins-api.js +0 -663
- package/lib/generated-client/api/quick-connect-api.d.ts +0 -198
- package/lib/generated-client/api/quick-connect-api.js +0 -305
- package/lib/generated-client/api/time-sync-api.d.ts +0 -69
- package/lib/generated-client/api/time-sync-api.js +0 -109
- package/lib/generated-client/api/tmdb-api.d.ts +0 -69
- package/lib/generated-client/api/tmdb-api.js +0 -111
- package/lib/generated-client/api/universal-audio-api.d.ts +0 -420
- package/lib/generated-client/api/universal-audio-api.js +0 -364
- package/lib/generated-client/api/user-library-api.d.ts +0 -657
- package/lib/generated-client/api/video-attachments-api.d.ts +0 -101
- package/lib/generated-client/api/video-attachments-api.js +0 -126
- package/lib/generated-client/models/admin-notification-dto.d.ts +0 -42
- package/lib/generated-client/models/base-item.d.ts +0 -84
- package/lib/generated-client/models/branding-options.d.ts +0 -35
- package/lib/generated-client/models/client-capabilities.d.ts +0 -76
- package/lib/generated-client/models/config-image-types.d.ts +0 -59
- package/lib/generated-client/models/control-response.d.ts +0 -37
- package/lib/generated-client/models/device-identification.d.ts +0 -72
- package/lib/generated-client/models/device-info-query-result.d.ts +0 -36
- package/lib/generated-client/models/device-info.d.ts +0 -84
- package/lib/generated-client/models/device-options.d.ts +0 -35
- package/lib/generated-client/models/device-profile-info.d.ts +0 -36
- package/lib/generated-client/models/device-profile-type.d.ts +0 -20
- package/lib/generated-client/models/dlna-options.d.ts +0 -83
- package/lib/generated-client/models/ffmpeg-location.d.ts +0 -22
- package/lib/generated-client/models/group-info-dto-group-update.d.ts +0 -37
- package/lib/generated-client/models/group-state-update-group-update.d.ts +0 -37
- package/lib/generated-client/models/hardware-encoding-type.d.ts +0 -25
- package/lib/generated-client/models/header-match-type.d.ts +0 -21
- package/lib/generated-client/models/http-header-info.d.ts +0 -36
- package/lib/generated-client/models/image-by-name-info.d.ts +0 -47
- package/lib/generated-client/models/media-encoder-path-dto.d.ts +0 -29
- package/lib/generated-client/models/notification-dto.d.ts +0 -66
- package/lib/generated-client/models/notification-option.d.ts +0 -54
- package/lib/generated-client/models/notification-options.d.ts +0 -24
- package/lib/generated-client/models/notification-result-dto.d.ts +0 -30
- package/lib/generated-client/models/notification-type-info.d.ts +0 -47
- package/lib/generated-client/models/notifications-summary-dto.d.ts +0 -30
- package/lib/generated-client/models/object-group-update.d.ts +0 -36
- package/lib/generated-client/models/play-queue-update-group-update.d.ts +0 -37
- package/lib/generated-client/models/response-profile.d.ts +0 -61
- package/lib/generated-client/models/send-to-user-type.d.ts +0 -21
- package/lib/generated-client/models/session-info.d.ts +0 -199
- package/lib/generated-client/models/string-group-update.d.ts +0 -36
- package/lib/generated-client/models/subtitle-options.d.ts +0 -71
- package/lib/generated-client/models/sync-play-group-update-command-message.d.ts +0 -37
- package/lib/generated-client/models/trickplay-info.d.ts +0 -65
- package/lib/generated-client/models/update-user-easy-password.d.ts +0 -35
- package/lib/generated-client/models/wake-on-lan-info.d.ts +0 -29
- package/lib/generated-client/models/xml-attribute.d.ts +0 -29
- package/lib/utils/api/activity-log-api.js +0 -12
- package/lib/utils/api/api-key-api.js +0 -12
- package/lib/utils/api/client-log-api.js +0 -12
- package/lib/utils/api/configuration-api.d.ts +0 -8
- package/lib/utils/api/devices-api.d.ts +0 -8
- package/lib/utils/api/display-preferences-api.d.ts +0 -8
- package/lib/utils/api/display-preferences-api.js +0 -12
- package/lib/utils/api/item-refresh-api.d.ts +0 -8
- package/lib/utils/api/item-refresh-api.js +0 -12
- package/lib/utils/api/media-segments-api.d.ts +0 -8
- package/lib/utils/api/media-segments-api.js +0 -12
- package/lib/utils/api/music-genres-api.d.ts +0 -8
- package/lib/utils/api/music-genres-api.js +0 -12
- package/lib/utils/api/package-api.js +0 -12
- package/lib/utils/api/persons-api.d.ts +0 -8
- package/lib/utils/api/persons-api.js +0 -12
- package/lib/utils/api/playlists-api.d.ts +0 -8
- package/lib/utils/api/playlists-api.js +0 -12
- package/lib/utils/api/playstate-api.d.ts +0 -8
- package/lib/utils/api/playstate-api.js +0 -12
- package/lib/utils/api/plugins-api.d.ts +0 -8
- package/lib/utils/api/plugins-api.js +0 -12
- package/lib/utils/api/quick-connect-api.d.ts +0 -8
- package/lib/utils/api/scheduled-tasks-api.d.ts +0 -8
- package/lib/utils/api/scheduled-tasks-api.js +0 -12
- package/lib/utils/api/studios-api.d.ts +0 -8
- package/lib/utils/api/studios-api.js +0 -12
- package/lib/utils/api/suggestions-api.d.ts +0 -8
- package/lib/utils/api/suggestions-api.js +0 -12
- package/lib/utils/api/time-sync-api.d.ts +0 -8
- package/lib/utils/api/trickplay-api.d.ts +0 -8
- package/lib/utils/api/trickplay-api.js +0 -12
- package/lib/utils/api/tv-shows-api.d.ts +0 -8
- package/lib/utils/api/tv-shows-api.js +0 -12
- package/lib/utils/api/universal-audio-api.d.ts +0 -8
- package/lib/utils/api/universal-audio-api.js +0 -12
- package/lib/utils/api/user-library-api.d.ts +0 -8
- package/lib/utils/api/user-library-api.js +0 -12
- package/lib/utils/api/user-views-api.d.ts +0 -8
- package/lib/utils/api/user-views-api.js +0 -12
- package/lib/utils/api/video-attachments-api.d.ts +0 -8
- package/lib/utils/api/video-attachments-api.js +0 -12
|
@@ -16,7 +16,6 @@ import type { BackupOptionsDto } from '../models';
|
|
|
16
16
|
import type { BackupRestoreRequestDto } from '../models';
|
|
17
17
|
/**
|
|
18
18
|
* BackupApi - axios parameter creator
|
|
19
|
-
* @export
|
|
20
19
|
*/
|
|
21
20
|
export declare const BackupApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
21
|
/**
|
|
@@ -53,7 +52,6 @@ export declare const BackupApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
53
52
|
};
|
|
54
53
|
/**
|
|
55
54
|
* BackupApi - functional programming interface
|
|
56
|
-
* @export
|
|
57
55
|
*/
|
|
58
56
|
export declare const BackupApiFp: (configuration?: Configuration) => {
|
|
59
57
|
/**
|
|
@@ -90,7 +88,6 @@ export declare const BackupApiFp: (configuration?: Configuration) => {
|
|
|
90
88
|
};
|
|
91
89
|
/**
|
|
92
90
|
* BackupApi - factory interface
|
|
93
|
-
* @export
|
|
94
91
|
*/
|
|
95
92
|
export declare const BackupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
96
93
|
/**
|
|
@@ -127,48 +124,33 @@ export declare const BackupApiFactory: (configuration?: Configuration, basePath?
|
|
|
127
124
|
};
|
|
128
125
|
/**
|
|
129
126
|
* Request parameters for createBackup operation in BackupApi.
|
|
130
|
-
* @export
|
|
131
|
-
* @interface BackupApiCreateBackupRequest
|
|
132
127
|
*/
|
|
133
128
|
export interface BackupApiCreateBackupRequest {
|
|
134
129
|
/**
|
|
135
130
|
* The backup options.
|
|
136
|
-
* @type {BackupOptionsDto}
|
|
137
|
-
* @memberof BackupApiCreateBackup
|
|
138
131
|
*/
|
|
139
132
|
readonly backupOptionsDto?: BackupOptionsDto;
|
|
140
133
|
}
|
|
141
134
|
/**
|
|
142
135
|
* Request parameters for getBackup operation in BackupApi.
|
|
143
|
-
* @export
|
|
144
|
-
* @interface BackupApiGetBackupRequest
|
|
145
136
|
*/
|
|
146
137
|
export interface BackupApiGetBackupRequest {
|
|
147
138
|
/**
|
|
148
139
|
* The data to start a restore process.
|
|
149
|
-
* @type {string}
|
|
150
|
-
* @memberof BackupApiGetBackup
|
|
151
140
|
*/
|
|
152
141
|
readonly path: string;
|
|
153
142
|
}
|
|
154
143
|
/**
|
|
155
144
|
* Request parameters for startRestoreBackup operation in BackupApi.
|
|
156
|
-
* @export
|
|
157
|
-
* @interface BackupApiStartRestoreBackupRequest
|
|
158
145
|
*/
|
|
159
146
|
export interface BackupApiStartRestoreBackupRequest {
|
|
160
147
|
/**
|
|
161
148
|
* The data to start a restore process.
|
|
162
|
-
* @type {BackupRestoreRequestDto}
|
|
163
|
-
* @memberof BackupApiStartRestoreBackup
|
|
164
149
|
*/
|
|
165
150
|
readonly backupRestoreRequestDto: BackupRestoreRequestDto;
|
|
166
151
|
}
|
|
167
152
|
/**
|
|
168
153
|
* BackupApi - object-oriented interface
|
|
169
|
-
* @export
|
|
170
|
-
* @class BackupApi
|
|
171
|
-
* @extends {BaseAPI}
|
|
172
154
|
*/
|
|
173
155
|
export declare class BackupApi extends BaseAPI {
|
|
174
156
|
/**
|
|
@@ -177,7 +159,6 @@ export declare class BackupApi extends BaseAPI {
|
|
|
177
159
|
* @param {BackupApiCreateBackupRequest} requestParameters Request parameters.
|
|
178
160
|
* @param {*} [options] Override http request option.
|
|
179
161
|
* @throws {RequiredError}
|
|
180
|
-
* @memberof BackupApi
|
|
181
162
|
*/
|
|
182
163
|
createBackup(requestParameters?: BackupApiCreateBackupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BackupManifestDto, any, {}>>;
|
|
183
164
|
/**
|
|
@@ -186,7 +167,6 @@ export declare class BackupApi extends BaseAPI {
|
|
|
186
167
|
* @param {BackupApiGetBackupRequest} requestParameters Request parameters.
|
|
187
168
|
* @param {*} [options] Override http request option.
|
|
188
169
|
* @throws {RequiredError}
|
|
189
|
-
* @memberof BackupApi
|
|
190
170
|
*/
|
|
191
171
|
getBackup(requestParameters: BackupApiGetBackupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BackupManifestDto, any, {}>>;
|
|
192
172
|
/**
|
|
@@ -194,7 +174,6 @@ export declare class BackupApi extends BaseAPI {
|
|
|
194
174
|
* @summary Gets a list of all currently present backups in the backup directory.
|
|
195
175
|
* @param {*} [options] Override http request option.
|
|
196
176
|
* @throws {RequiredError}
|
|
197
|
-
* @memberof BackupApi
|
|
198
177
|
*/
|
|
199
178
|
listBackups(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BackupManifestDto[], any, {}>>;
|
|
200
179
|
/**
|
|
@@ -203,7 +182,6 @@ export declare class BackupApi extends BaseAPI {
|
|
|
203
182
|
* @param {BackupApiStartRestoreBackupRequest} requestParameters Request parameters.
|
|
204
183
|
* @param {*} [options] Override http request option.
|
|
205
184
|
* @throws {RequiredError}
|
|
206
|
-
* @memberof BackupApi
|
|
207
185
|
*/
|
|
208
186
|
startRestoreBackup(requestParameters: BackupApiStartRestoreBackupRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
209
187
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import globalAxios from 'axios';
|
|
2
2
|
import { assertParamExists, DUMMY_BASE_URL, setApiKeyToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common.js';
|
|
3
|
-
import {
|
|
3
|
+
import { BaseAPI, operationServerMap, BASE_PATH } from '../base.js';
|
|
4
4
|
|
|
5
5
|
/* tslint:disable */
|
|
6
6
|
/* eslint-disable */
|
|
@@ -16,7 +16,6 @@ import { operationServerMap, BaseAPI, BASE_PATH } from '../base.js';
|
|
|
16
16
|
*/
|
|
17
17
|
/**
|
|
18
18
|
* BackupApi - axios parameter creator
|
|
19
|
-
* @export
|
|
20
19
|
*/
|
|
21
20
|
const BackupApiAxiosParamCreator = function (configuration) {
|
|
22
21
|
return {
|
|
@@ -41,6 +40,7 @@ const BackupApiAxiosParamCreator = function (configuration) {
|
|
|
41
40
|
// authentication CustomAuthentication required
|
|
42
41
|
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
43
42
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
43
|
+
localVarHeaderParameter['Accept'] = 'application/json,application/json; profile=CamelCase,application/json; profile=PascalCase,text/html';
|
|
44
44
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
45
45
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
46
46
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -75,6 +75,7 @@ const BackupApiAxiosParamCreator = function (configuration) {
|
|
|
75
75
|
if (path !== undefined) {
|
|
76
76
|
localVarQueryParameter['path'] = path;
|
|
77
77
|
}
|
|
78
|
+
localVarHeaderParameter['Accept'] = 'application/json,application/json; profile=CamelCase,application/json; profile=PascalCase,text/html';
|
|
78
79
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
79
80
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
80
81
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -102,6 +103,7 @@ const BackupApiAxiosParamCreator = function (configuration) {
|
|
|
102
103
|
const localVarQueryParameter = {};
|
|
103
104
|
// authentication CustomAuthentication required
|
|
104
105
|
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
106
|
+
localVarHeaderParameter['Accept'] = 'application/json,application/json; profile=CamelCase,application/json; profile=PascalCase,text/html';
|
|
105
107
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
106
108
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
107
109
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -133,6 +135,7 @@ const BackupApiAxiosParamCreator = function (configuration) {
|
|
|
133
135
|
// authentication CustomAuthentication required
|
|
134
136
|
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
135
137
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
138
|
+
localVarHeaderParameter['Accept'] = 'application/json,application/json; profile=CamelCase,application/json; profile=PascalCase,text/html';
|
|
136
139
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
137
140
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
138
141
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -146,7 +149,6 @@ const BackupApiAxiosParamCreator = function (configuration) {
|
|
|
146
149
|
};
|
|
147
150
|
/**
|
|
148
151
|
* BackupApi - functional programming interface
|
|
149
|
-
* @export
|
|
150
152
|
*/
|
|
151
153
|
const BackupApiFp = function (configuration) {
|
|
152
154
|
const localVarAxiosParamCreator = BackupApiAxiosParamCreator(configuration);
|
|
@@ -210,7 +212,6 @@ const BackupApiFp = function (configuration) {
|
|
|
210
212
|
};
|
|
211
213
|
/**
|
|
212
214
|
* BackupApi - factory interface
|
|
213
|
-
* @export
|
|
214
215
|
*/
|
|
215
216
|
const BackupApiFactory = function (configuration, basePath, axios) {
|
|
216
217
|
const localVarFp = BackupApiFp(configuration);
|
|
@@ -258,9 +259,6 @@ const BackupApiFactory = function (configuration, basePath, axios) {
|
|
|
258
259
|
};
|
|
259
260
|
/**
|
|
260
261
|
* BackupApi - object-oriented interface
|
|
261
|
-
* @export
|
|
262
|
-
* @class BackupApi
|
|
263
|
-
* @extends {BaseAPI}
|
|
264
262
|
*/
|
|
265
263
|
class BackupApi extends BaseAPI {
|
|
266
264
|
/**
|
|
@@ -269,7 +267,6 @@ class BackupApi extends BaseAPI {
|
|
|
269
267
|
* @param {BackupApiCreateBackupRequest} requestParameters Request parameters.
|
|
270
268
|
* @param {*} [options] Override http request option.
|
|
271
269
|
* @throws {RequiredError}
|
|
272
|
-
* @memberof BackupApi
|
|
273
270
|
*/
|
|
274
271
|
createBackup(requestParameters = {}, options) {
|
|
275
272
|
return BackupApiFp(this.configuration).createBackup(requestParameters.backupOptionsDto, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -280,7 +277,6 @@ class BackupApi extends BaseAPI {
|
|
|
280
277
|
* @param {BackupApiGetBackupRequest} requestParameters Request parameters.
|
|
281
278
|
* @param {*} [options] Override http request option.
|
|
282
279
|
* @throws {RequiredError}
|
|
283
|
-
* @memberof BackupApi
|
|
284
280
|
*/
|
|
285
281
|
getBackup(requestParameters, options) {
|
|
286
282
|
return BackupApiFp(this.configuration).getBackup(requestParameters.path, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -290,7 +286,6 @@ class BackupApi extends BaseAPI {
|
|
|
290
286
|
* @summary Gets a list of all currently present backups in the backup directory.
|
|
291
287
|
* @param {*} [options] Override http request option.
|
|
292
288
|
* @throws {RequiredError}
|
|
293
|
-
* @memberof BackupApi
|
|
294
289
|
*/
|
|
295
290
|
listBackups(options) {
|
|
296
291
|
return BackupApiFp(this.configuration).listBackups(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -301,7 +296,6 @@ class BackupApi extends BaseAPI {
|
|
|
301
296
|
* @param {BackupApiStartRestoreBackupRequest} requestParameters Request parameters.
|
|
302
297
|
* @param {*} [options] Override http request option.
|
|
303
298
|
* @throws {RequiredError}
|
|
304
|
-
* @memberof BackupApi
|
|
305
299
|
*/
|
|
306
300
|
startRestoreBackup(requestParameters, options) {
|
|
307
301
|
return BackupApiFp(this.configuration).startRestoreBackup(requestParameters.backupRestoreRequestDto, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -14,7 +14,6 @@ import { type RequestArgs, BaseAPI } from '../base';
|
|
|
14
14
|
import type { BrandingOptionsDto } from '../models';
|
|
15
15
|
/**
|
|
16
16
|
* BrandingApi - axios parameter creator
|
|
17
|
-
* @export
|
|
18
17
|
*/
|
|
19
18
|
export declare const BrandingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20
19
|
/**
|
|
@@ -41,7 +40,6 @@ export declare const BrandingApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
41
40
|
};
|
|
42
41
|
/**
|
|
43
42
|
* BrandingApi - functional programming interface
|
|
44
|
-
* @export
|
|
45
43
|
*/
|
|
46
44
|
export declare const BrandingApiFp: (configuration?: Configuration) => {
|
|
47
45
|
/**
|
|
@@ -68,7 +66,6 @@ export declare const BrandingApiFp: (configuration?: Configuration) => {
|
|
|
68
66
|
};
|
|
69
67
|
/**
|
|
70
68
|
* BrandingApi - factory interface
|
|
71
|
-
* @export
|
|
72
69
|
*/
|
|
73
70
|
export declare const BrandingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
74
71
|
/**
|
|
@@ -95,9 +92,6 @@ export declare const BrandingApiFactory: (configuration?: Configuration, basePat
|
|
|
95
92
|
};
|
|
96
93
|
/**
|
|
97
94
|
* BrandingApi - object-oriented interface
|
|
98
|
-
* @export
|
|
99
|
-
* @class BrandingApi
|
|
100
|
-
* @extends {BaseAPI}
|
|
101
95
|
*/
|
|
102
96
|
export declare class BrandingApi extends BaseAPI {
|
|
103
97
|
/**
|
|
@@ -105,7 +99,6 @@ export declare class BrandingApi extends BaseAPI {
|
|
|
105
99
|
* @summary Gets branding css.
|
|
106
100
|
* @param {*} [options] Override http request option.
|
|
107
101
|
* @throws {RequiredError}
|
|
108
|
-
* @memberof BrandingApi
|
|
109
102
|
*/
|
|
110
103
|
getBrandingCss(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
111
104
|
/**
|
|
@@ -113,7 +106,6 @@ export declare class BrandingApi extends BaseAPI {
|
|
|
113
106
|
* @summary Gets branding css.
|
|
114
107
|
* @param {*} [options] Override http request option.
|
|
115
108
|
* @throws {RequiredError}
|
|
116
|
-
* @memberof BrandingApi
|
|
117
109
|
*/
|
|
118
110
|
getBrandingCss2(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
119
111
|
/**
|
|
@@ -121,7 +113,6 @@ export declare class BrandingApi extends BaseAPI {
|
|
|
121
113
|
* @summary Gets branding configuration.
|
|
122
114
|
* @param {*} [options] Override http request option.
|
|
123
115
|
* @throws {RequiredError}
|
|
124
|
-
* @memberof BrandingApi
|
|
125
116
|
*/
|
|
126
117
|
getBrandingOptions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BrandingOptionsDto, any, {}>>;
|
|
127
118
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import globalAxios from 'axios';
|
|
2
2
|
import { DUMMY_BASE_URL, setSearchParams, toPathString, createRequestFunction } from '../common.js';
|
|
3
|
-
import {
|
|
3
|
+
import { BaseAPI, operationServerMap, BASE_PATH } from '../base.js';
|
|
4
4
|
|
|
5
5
|
/* tslint:disable */
|
|
6
6
|
/* eslint-disable */
|
|
@@ -16,7 +16,6 @@ import { operationServerMap, BaseAPI, BASE_PATH } from '../base.js';
|
|
|
16
16
|
*/
|
|
17
17
|
/**
|
|
18
18
|
* BrandingApi - axios parameter creator
|
|
19
|
-
* @export
|
|
20
19
|
*/
|
|
21
20
|
const BrandingApiAxiosParamCreator = function (configuration) {
|
|
22
21
|
return {
|
|
@@ -37,6 +36,7 @@ const BrandingApiAxiosParamCreator = function (configuration) {
|
|
|
37
36
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
38
37
|
const localVarHeaderParameter = {};
|
|
39
38
|
const localVarQueryParameter = {};
|
|
39
|
+
localVarHeaderParameter['Accept'] = 'text/css,application/json,application/json; profile=CamelCase,application/json; profile=PascalCase,text/html';
|
|
40
40
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
41
41
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
42
42
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -62,6 +62,7 @@ const BrandingApiAxiosParamCreator = function (configuration) {
|
|
|
62
62
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
63
63
|
const localVarHeaderParameter = {};
|
|
64
64
|
const localVarQueryParameter = {};
|
|
65
|
+
localVarHeaderParameter['Accept'] = 'text/css,application/json,application/json; profile=CamelCase,application/json; profile=PascalCase,text/html';
|
|
65
66
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
66
67
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
67
68
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -87,6 +88,7 @@ const BrandingApiAxiosParamCreator = function (configuration) {
|
|
|
87
88
|
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
88
89
|
const localVarHeaderParameter = {};
|
|
89
90
|
const localVarQueryParameter = {};
|
|
91
|
+
localVarHeaderParameter['Accept'] = 'application/json,application/json; profile=CamelCase,application/json; profile=PascalCase,text/html';
|
|
90
92
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
91
93
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
92
94
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
@@ -99,7 +101,6 @@ const BrandingApiAxiosParamCreator = function (configuration) {
|
|
|
99
101
|
};
|
|
100
102
|
/**
|
|
101
103
|
* BrandingApi - functional programming interface
|
|
102
|
-
* @export
|
|
103
104
|
*/
|
|
104
105
|
const BrandingApiFp = function (configuration) {
|
|
105
106
|
const localVarAxiosParamCreator = BrandingApiAxiosParamCreator(configuration);
|
|
@@ -147,7 +148,6 @@ const BrandingApiFp = function (configuration) {
|
|
|
147
148
|
};
|
|
148
149
|
/**
|
|
149
150
|
* BrandingApi - factory interface
|
|
150
|
-
* @export
|
|
151
151
|
*/
|
|
152
152
|
const BrandingApiFactory = function (configuration, basePath, axios) {
|
|
153
153
|
const localVarFp = BrandingApiFp(configuration);
|
|
@@ -183,9 +183,6 @@ const BrandingApiFactory = function (configuration, basePath, axios) {
|
|
|
183
183
|
};
|
|
184
184
|
/**
|
|
185
185
|
* BrandingApi - object-oriented interface
|
|
186
|
-
* @export
|
|
187
|
-
* @class BrandingApi
|
|
188
|
-
* @extends {BaseAPI}
|
|
189
186
|
*/
|
|
190
187
|
class BrandingApi extends BaseAPI {
|
|
191
188
|
/**
|
|
@@ -193,7 +190,6 @@ class BrandingApi extends BaseAPI {
|
|
|
193
190
|
* @summary Gets branding css.
|
|
194
191
|
* @param {*} [options] Override http request option.
|
|
195
192
|
* @throws {RequiredError}
|
|
196
|
-
* @memberof BrandingApi
|
|
197
193
|
*/
|
|
198
194
|
getBrandingCss(options) {
|
|
199
195
|
return BrandingApiFp(this.configuration).getBrandingCss(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -203,7 +199,6 @@ class BrandingApi extends BaseAPI {
|
|
|
203
199
|
* @summary Gets branding css.
|
|
204
200
|
* @param {*} [options] Override http request option.
|
|
205
201
|
* @throws {RequiredError}
|
|
206
|
-
* @memberof BrandingApi
|
|
207
202
|
*/
|
|
208
203
|
getBrandingCss2(options) {
|
|
209
204
|
return BrandingApiFp(this.configuration).getBrandingCss2(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -213,7 +208,6 @@ class BrandingApi extends BaseAPI {
|
|
|
213
208
|
* @summary Gets branding configuration.
|
|
214
209
|
* @param {*} [options] Override http request option.
|
|
215
210
|
* @throws {RequiredError}
|
|
216
|
-
* @memberof BrandingApi
|
|
217
211
|
*/
|
|
218
212
|
getBrandingOptions(options) {
|
|
219
213
|
return BrandingApiFp(this.configuration).getBrandingOptions(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -18,10 +18,9 @@ import type { ItemFilter } from '../models';
|
|
|
18
18
|
import type { ItemSortBy } from '../models';
|
|
19
19
|
import type { SortOrder } from '../models';
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
22
|
-
* @export
|
|
21
|
+
* ChannelApi - axios parameter creator
|
|
23
22
|
*/
|
|
24
|
-
export declare const
|
|
23
|
+
export declare const ChannelApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
25
24
|
/**
|
|
26
25
|
*
|
|
27
26
|
* @summary Get all channel features.
|
|
@@ -81,10 +80,9 @@ export declare const ChannelsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
81
80
|
getLatestChannelItems: (userId?: string, startIndex?: number, limit?: number, filters?: Array<ItemFilter>, fields?: Array<ItemFields>, channelIds?: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
82
81
|
};
|
|
83
82
|
/**
|
|
84
|
-
*
|
|
85
|
-
* @export
|
|
83
|
+
* ChannelApi - functional programming interface
|
|
86
84
|
*/
|
|
87
|
-
export declare const
|
|
85
|
+
export declare const ChannelApiFp: (configuration?: Configuration) => {
|
|
88
86
|
/**
|
|
89
87
|
*
|
|
90
88
|
* @summary Get all channel features.
|
|
@@ -144,10 +142,9 @@ export declare const ChannelsApiFp: (configuration?: Configuration) => {
|
|
|
144
142
|
getLatestChannelItems(userId?: string, startIndex?: number, limit?: number, filters?: Array<ItemFilter>, fields?: Array<ItemFields>, channelIds?: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BaseItemDtoQueryResult>>;
|
|
145
143
|
};
|
|
146
144
|
/**
|
|
147
|
-
*
|
|
148
|
-
* @export
|
|
145
|
+
* ChannelApi - factory interface
|
|
149
146
|
*/
|
|
150
|
-
export declare const
|
|
147
|
+
export declare const ChannelApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
151
148
|
/**
|
|
152
149
|
*
|
|
153
150
|
* @summary Get all channel features.
|
|
@@ -158,245 +155,185 @@ export declare const ChannelsApiFactory: (configuration?: Configuration, basePat
|
|
|
158
155
|
/**
|
|
159
156
|
*
|
|
160
157
|
* @summary Get channel features.
|
|
161
|
-
* @param {
|
|
158
|
+
* @param {ChannelApiGetChannelFeaturesRequest} requestParameters Request parameters.
|
|
162
159
|
* @param {*} [options] Override http request option.
|
|
163
160
|
* @throws {RequiredError}
|
|
164
161
|
*/
|
|
165
|
-
getChannelFeatures(requestParameters:
|
|
162
|
+
getChannelFeatures(requestParameters: ChannelApiGetChannelFeaturesRequest, options?: RawAxiosRequestConfig): AxiosPromise<ChannelFeatures>;
|
|
166
163
|
/**
|
|
167
164
|
*
|
|
168
165
|
* @summary Get channel items.
|
|
169
|
-
* @param {
|
|
166
|
+
* @param {ChannelApiGetChannelItemsRequest} requestParameters Request parameters.
|
|
170
167
|
* @param {*} [options] Override http request option.
|
|
171
168
|
* @throws {RequiredError}
|
|
172
169
|
*/
|
|
173
|
-
getChannelItems(requestParameters:
|
|
170
|
+
getChannelItems(requestParameters: ChannelApiGetChannelItemsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BaseItemDtoQueryResult>;
|
|
174
171
|
/**
|
|
175
172
|
*
|
|
176
173
|
* @summary Gets available channels.
|
|
177
|
-
* @param {
|
|
174
|
+
* @param {ChannelApiGetChannelsRequest} requestParameters Request parameters.
|
|
178
175
|
* @param {*} [options] Override http request option.
|
|
179
176
|
* @throws {RequiredError}
|
|
180
177
|
*/
|
|
181
|
-
getChannels(requestParameters?:
|
|
178
|
+
getChannels(requestParameters?: ChannelApiGetChannelsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BaseItemDtoQueryResult>;
|
|
182
179
|
/**
|
|
183
180
|
*
|
|
184
181
|
* @summary Gets latest channel items.
|
|
185
|
-
* @param {
|
|
182
|
+
* @param {ChannelApiGetLatestChannelItemsRequest} requestParameters Request parameters.
|
|
186
183
|
* @param {*} [options] Override http request option.
|
|
187
184
|
* @throws {RequiredError}
|
|
188
185
|
*/
|
|
189
|
-
getLatestChannelItems(requestParameters?:
|
|
186
|
+
getLatestChannelItems(requestParameters?: ChannelApiGetLatestChannelItemsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BaseItemDtoQueryResult>;
|
|
190
187
|
};
|
|
191
188
|
/**
|
|
192
|
-
* Request parameters for getChannelFeatures operation in
|
|
193
|
-
* @export
|
|
194
|
-
* @interface ChannelsApiGetChannelFeaturesRequest
|
|
189
|
+
* Request parameters for getChannelFeatures operation in ChannelApi.
|
|
195
190
|
*/
|
|
196
|
-
export interface
|
|
191
|
+
export interface ChannelApiGetChannelFeaturesRequest {
|
|
197
192
|
/**
|
|
198
193
|
* Channel id.
|
|
199
|
-
* @type {string}
|
|
200
|
-
* @memberof ChannelsApiGetChannelFeatures
|
|
201
194
|
*/
|
|
202
195
|
readonly channelId: string;
|
|
203
196
|
}
|
|
204
197
|
/**
|
|
205
|
-
* Request parameters for getChannelItems operation in
|
|
206
|
-
* @export
|
|
207
|
-
* @interface ChannelsApiGetChannelItemsRequest
|
|
198
|
+
* Request parameters for getChannelItems operation in ChannelApi.
|
|
208
199
|
*/
|
|
209
|
-
export interface
|
|
200
|
+
export interface ChannelApiGetChannelItemsRequest {
|
|
210
201
|
/**
|
|
211
202
|
* Channel Id.
|
|
212
|
-
* @type {string}
|
|
213
|
-
* @memberof ChannelsApiGetChannelItems
|
|
214
203
|
*/
|
|
215
204
|
readonly channelId: string;
|
|
216
205
|
/**
|
|
217
206
|
* Optional. Folder Id.
|
|
218
|
-
* @type {string}
|
|
219
|
-
* @memberof ChannelsApiGetChannelItems
|
|
220
207
|
*/
|
|
221
208
|
readonly folderId?: string;
|
|
222
209
|
/**
|
|
223
210
|
* Optional. User Id.
|
|
224
|
-
* @type {string}
|
|
225
|
-
* @memberof ChannelsApiGetChannelItems
|
|
226
211
|
*/
|
|
227
212
|
readonly userId?: string;
|
|
228
213
|
/**
|
|
229
214
|
* Optional. The record index to start at. All items with a lower index will be dropped from the results.
|
|
230
|
-
* @type {number}
|
|
231
|
-
* @memberof ChannelsApiGetChannelItems
|
|
232
215
|
*/
|
|
233
216
|
readonly startIndex?: number;
|
|
234
217
|
/**
|
|
235
218
|
* Optional. The maximum number of records to return.
|
|
236
|
-
* @type {number}
|
|
237
|
-
* @memberof ChannelsApiGetChannelItems
|
|
238
219
|
*/
|
|
239
220
|
readonly limit?: number;
|
|
240
221
|
/**
|
|
241
222
|
* Optional. Sort Order - Ascending,Descending.
|
|
242
|
-
* @type {Array<SortOrder>}
|
|
243
|
-
* @memberof ChannelsApiGetChannelItems
|
|
244
223
|
*/
|
|
245
224
|
readonly sortOrder?: Array<SortOrder>;
|
|
246
225
|
/**
|
|
247
226
|
* Optional. Specify additional filters to apply.
|
|
248
|
-
* @type {Array<ItemFilter>}
|
|
249
|
-
* @memberof ChannelsApiGetChannelItems
|
|
250
227
|
*/
|
|
251
228
|
readonly filters?: Array<ItemFilter>;
|
|
252
229
|
/**
|
|
253
230
|
* Optional. Specify one or more sort orders, comma delimited. Options: Album, AlbumArtist, Artist, Budget, CommunityRating, CriticRating, DateCreated, DatePlayed, PlayCount, PremiereDate, ProductionYear, SortName, Random, Revenue, Runtime.
|
|
254
|
-
* @type {Array<ItemSortBy>}
|
|
255
|
-
* @memberof ChannelsApiGetChannelItems
|
|
256
231
|
*/
|
|
257
232
|
readonly sortBy?: Array<ItemSortBy>;
|
|
258
233
|
/**
|
|
259
234
|
* Optional. Specify additional fields of information to return in the output.
|
|
260
|
-
* @type {Array<ItemFields>}
|
|
261
|
-
* @memberof ChannelsApiGetChannelItems
|
|
262
235
|
*/
|
|
263
236
|
readonly fields?: Array<ItemFields>;
|
|
264
237
|
}
|
|
265
238
|
/**
|
|
266
|
-
* Request parameters for getChannels operation in
|
|
267
|
-
* @export
|
|
268
|
-
* @interface ChannelsApiGetChannelsRequest
|
|
239
|
+
* Request parameters for getChannels operation in ChannelApi.
|
|
269
240
|
*/
|
|
270
|
-
export interface
|
|
241
|
+
export interface ChannelApiGetChannelsRequest {
|
|
271
242
|
/**
|
|
272
243
|
* User Id to filter by. Use System.Guid.Empty to not filter by user.
|
|
273
|
-
* @type {string}
|
|
274
|
-
* @memberof ChannelsApiGetChannels
|
|
275
244
|
*/
|
|
276
245
|
readonly userId?: string;
|
|
277
246
|
/**
|
|
278
247
|
* Optional. The record index to start at. All items with a lower index will be dropped from the results.
|
|
279
|
-
* @type {number}
|
|
280
|
-
* @memberof ChannelsApiGetChannels
|
|
281
248
|
*/
|
|
282
249
|
readonly startIndex?: number;
|
|
283
250
|
/**
|
|
284
251
|
* Optional. The maximum number of records to return.
|
|
285
|
-
* @type {number}
|
|
286
|
-
* @memberof ChannelsApiGetChannels
|
|
287
252
|
*/
|
|
288
253
|
readonly limit?: number;
|
|
289
254
|
/**
|
|
290
255
|
* Optional. Filter by channels that support getting latest items.
|
|
291
|
-
* @type {boolean}
|
|
292
|
-
* @memberof ChannelsApiGetChannels
|
|
293
256
|
*/
|
|
294
257
|
readonly supportsLatestItems?: boolean;
|
|
295
258
|
/**
|
|
296
259
|
* Optional. Filter by channels that support media deletion.
|
|
297
|
-
* @type {boolean}
|
|
298
|
-
* @memberof ChannelsApiGetChannels
|
|
299
260
|
*/
|
|
300
261
|
readonly supportsMediaDeletion?: boolean;
|
|
301
262
|
/**
|
|
302
263
|
* Optional. Filter by channels that are favorite.
|
|
303
|
-
* @type {boolean}
|
|
304
|
-
* @memberof ChannelsApiGetChannels
|
|
305
264
|
*/
|
|
306
265
|
readonly isFavorite?: boolean;
|
|
307
266
|
}
|
|
308
267
|
/**
|
|
309
|
-
* Request parameters for getLatestChannelItems operation in
|
|
310
|
-
* @export
|
|
311
|
-
* @interface ChannelsApiGetLatestChannelItemsRequest
|
|
268
|
+
* Request parameters for getLatestChannelItems operation in ChannelApi.
|
|
312
269
|
*/
|
|
313
|
-
export interface
|
|
270
|
+
export interface ChannelApiGetLatestChannelItemsRequest {
|
|
314
271
|
/**
|
|
315
272
|
* Optional. User Id.
|
|
316
|
-
* @type {string}
|
|
317
|
-
* @memberof ChannelsApiGetLatestChannelItems
|
|
318
273
|
*/
|
|
319
274
|
readonly userId?: string;
|
|
320
275
|
/**
|
|
321
276
|
* Optional. The record index to start at. All items with a lower index will be dropped from the results.
|
|
322
|
-
* @type {number}
|
|
323
|
-
* @memberof ChannelsApiGetLatestChannelItems
|
|
324
277
|
*/
|
|
325
278
|
readonly startIndex?: number;
|
|
326
279
|
/**
|
|
327
280
|
* Optional. The maximum number of records to return.
|
|
328
|
-
* @type {number}
|
|
329
|
-
* @memberof ChannelsApiGetLatestChannelItems
|
|
330
281
|
*/
|
|
331
282
|
readonly limit?: number;
|
|
332
283
|
/**
|
|
333
284
|
* Optional. Specify additional filters to apply.
|
|
334
|
-
* @type {Array<ItemFilter>}
|
|
335
|
-
* @memberof ChannelsApiGetLatestChannelItems
|
|
336
285
|
*/
|
|
337
286
|
readonly filters?: Array<ItemFilter>;
|
|
338
287
|
/**
|
|
339
288
|
* Optional. Specify additional fields of information to return in the output.
|
|
340
|
-
* @type {Array<ItemFields>}
|
|
341
|
-
* @memberof ChannelsApiGetLatestChannelItems
|
|
342
289
|
*/
|
|
343
290
|
readonly fields?: Array<ItemFields>;
|
|
344
291
|
/**
|
|
345
292
|
* Optional. Specify one or more channel id\'s, comma delimited.
|
|
346
|
-
* @type {Array<string>}
|
|
347
|
-
* @memberof ChannelsApiGetLatestChannelItems
|
|
348
293
|
*/
|
|
349
294
|
readonly channelIds?: Array<string>;
|
|
350
295
|
}
|
|
351
296
|
/**
|
|
352
|
-
*
|
|
353
|
-
* @export
|
|
354
|
-
* @class ChannelsApi
|
|
355
|
-
* @extends {BaseAPI}
|
|
297
|
+
* ChannelApi - object-oriented interface
|
|
356
298
|
*/
|
|
357
|
-
export declare class
|
|
299
|
+
export declare class ChannelApi extends BaseAPI {
|
|
358
300
|
/**
|
|
359
301
|
*
|
|
360
302
|
* @summary Get all channel features.
|
|
361
303
|
* @param {*} [options] Override http request option.
|
|
362
304
|
* @throws {RequiredError}
|
|
363
|
-
* @memberof ChannelsApi
|
|
364
305
|
*/
|
|
365
306
|
getAllChannelFeatures(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ChannelFeatures[], any, {}>>;
|
|
366
307
|
/**
|
|
367
308
|
*
|
|
368
309
|
* @summary Get channel features.
|
|
369
|
-
* @param {
|
|
310
|
+
* @param {ChannelApiGetChannelFeaturesRequest} requestParameters Request parameters.
|
|
370
311
|
* @param {*} [options] Override http request option.
|
|
371
312
|
* @throws {RequiredError}
|
|
372
|
-
* @memberof ChannelsApi
|
|
373
313
|
*/
|
|
374
|
-
getChannelFeatures(requestParameters:
|
|
314
|
+
getChannelFeatures(requestParameters: ChannelApiGetChannelFeaturesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ChannelFeatures, any, {}>>;
|
|
375
315
|
/**
|
|
376
316
|
*
|
|
377
317
|
* @summary Get channel items.
|
|
378
|
-
* @param {
|
|
318
|
+
* @param {ChannelApiGetChannelItemsRequest} requestParameters Request parameters.
|
|
379
319
|
* @param {*} [options] Override http request option.
|
|
380
320
|
* @throws {RequiredError}
|
|
381
|
-
* @memberof ChannelsApi
|
|
382
321
|
*/
|
|
383
|
-
getChannelItems(requestParameters:
|
|
322
|
+
getChannelItems(requestParameters: ChannelApiGetChannelItemsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseItemDtoQueryResult, any, {}>>;
|
|
384
323
|
/**
|
|
385
324
|
*
|
|
386
325
|
* @summary Gets available channels.
|
|
387
|
-
* @param {
|
|
326
|
+
* @param {ChannelApiGetChannelsRequest} requestParameters Request parameters.
|
|
388
327
|
* @param {*} [options] Override http request option.
|
|
389
328
|
* @throws {RequiredError}
|
|
390
|
-
* @memberof ChannelsApi
|
|
391
329
|
*/
|
|
392
|
-
getChannels(requestParameters?:
|
|
330
|
+
getChannels(requestParameters?: ChannelApiGetChannelsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseItemDtoQueryResult, any, {}>>;
|
|
393
331
|
/**
|
|
394
332
|
*
|
|
395
333
|
* @summary Gets latest channel items.
|
|
396
|
-
* @param {
|
|
334
|
+
* @param {ChannelApiGetLatestChannelItemsRequest} requestParameters Request parameters.
|
|
397
335
|
* @param {*} [options] Override http request option.
|
|
398
336
|
* @throws {RequiredError}
|
|
399
|
-
* @memberof ChannelsApi
|
|
400
337
|
*/
|
|
401
|
-
getLatestChannelItems(requestParameters?:
|
|
338
|
+
getLatestChannelItems(requestParameters?: ChannelApiGetLatestChannelItemsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseItemDtoQueryResult, any, {}>>;
|
|
402
339
|
}
|