Skip to content

Commit

Permalink
SDK Version 4.8.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SDK Builder committed Sep 29, 2024
1 parent 7bc6160 commit a64687c
Show file tree
Hide file tree
Showing 342 changed files with 347 additions and 347 deletions.
2 changes: 1 addition & 1 deletion Documenation/.gitcommit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
067d3a92b987bd251c5c3116bf20b151491c434c
8ca334766ed0eabd675af040c71cb8b3e3963465
2 changes: 1 addition & 1 deletion Documenation/styles/version.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.sdkVersionSpan:before {
content: '4.8.9.0 Release';
content: '4.8.10.0 Release';
}

2 changes: 1 addition & 1 deletion Resources/OpenApi/openapi_v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "Emby Developer Forum",
"url": "https://emby.media/community/index.php?/forum/47-developer-api"
},
"version": "4.8.9.0"
"version": "4.8.10.0"
},
"host": "emby.media",
"basePath": "/emby",
Expand Down
2 changes: 1 addition & 1 deletion Resources/OpenApi/openapi_v3.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "Emby Developer Forum",
"url": "https://emby.media/community/index.php?/forum/47-developer-api"
},
"version": "4.8.9.0"
"version": "4.8.10.0"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion SampleCode/.gitcommit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
067d3a92b987bd251c5c3116bf20b151491c434c
8ca334766ed0eabd675af040c71cb8b3e3963465
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
<RootNamespace>Emby.ApiClient</RootNamespace>
<Version>4.8.9.0</Version>
<Version>4.8.10.0</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion SampleCode/RestApi/Clients/Emby.ApiClient/Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.8.9.0 Release
4.8.10.0 Release
2 changes: 1 addition & 1 deletion SampleCode/RestApi/Clients/Go/Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.8.9.0 Release
4.8.10.0 Release
2 changes: 1 addition & 1 deletion SampleCode/RestApi/Clients/Go/api/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ info:
contact:
name: Emby Developer Forum
url: https://emby.media/community/index.php?/forum/47-developer-api
version: 4.8.9.0
version: 4.8.10.0
externalDocs:
description: embyDEV - REST API Documentation
url: https://dev.emby.media/doc/restapi/index.html
Expand Down
2 changes: 1 addition & 1 deletion SampleCode/RestApi/Clients/Go/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var (
xmlCheck = regexp.MustCompile("(?i:[application|text]/xml)")
)

// APIClient manages communication with the Emby Server REST API API v4.8.9.0
// APIClient manages communication with the Emby Server REST API API v4.8.10.0
// In most cases there should be only one, shared, APIClient.
type APIClient struct {
cfg *Configuration
Expand Down
2 changes: 1 addition & 1 deletion SampleCode/RestApi/Clients/Go/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func NewConfiguration() *Configuration {
cfg := &Configuration{
BasePath: "http://emby.media/emby",
DefaultHeader: make(map[string]string),
UserAgent: "/4.8.9.0/go",
UserAgent: "/4.8.10.0/go",
}
return cfg
}
Expand Down
2 changes: 1 addition & 1 deletion SampleCode/RestApi/Clients/Java/Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.8.9.0 Release
4.8.10.0 Release
2 changes: 1 addition & 1 deletion SampleCode/RestApi/Clients/Java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'media.emby'
version = '4.8.9.0'
version = '4.8.10.0'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion SampleCode/RestApi/Clients/Java/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "media.emby",
name := "embyclient-rest-java",
version := "4.8.9.0",
version := "4.8.10.0",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
2 changes: 1 addition & 1 deletion SampleCode/RestApi/Clients/Java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>embyclient-rest-java</artifactId>
<packaging>jar</packaging>
<name>embyclient-rest-java</name>
<version>4.8.9.0</version>
<version>4.8.10.0</version>
<url>https://dev.emby.media</url>
<description>Swagger Java</description>
<prerequisites>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public ApiClient() {
json = new JSON();

// Set default User-Agent.
setUserAgent("/4.8.9.0/java");
setUserAgent("/4.8.10.0/java");

// Setup authentications (key: authentication name, value: authentication).
authentications = new HashMap<String, Authentication>();
Expand Down
2 changes: 1 addition & 1 deletion SampleCode/RestApi/Clients/JavaScript/Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.8.9.0 Release
4.8.10.0 Release
2 changes: 1 addition & 1 deletion SampleCode/RestApi/Clients/JavaScript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "EmbyClient.JavaScript",
"version": "4.8.9.0",
"version": "4.8.10.0",
"description": "A client library for accessing Emby Server via REST API",
"license": "Unlicense",
"main": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion SampleCode/RestApi/Clients/JavaScript/src/ApiClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import querystring from "querystring";

/**
* @module ApiClient
* @version 4.8.9.0
* @version 4.8.10.0
*/

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import QueryResultActivityLogEntry from '../model/QueryResultActivityLogEntry';
/**
* ActivityLogService service.
* @module EmbyClient.JavaScript/ActivityLogServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class ActivityLogServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import QueryResultBaseItemDto from '../model/QueryResultBaseItemDto';
/**
* ArtistsService service.
* @module EmbyClient.JavaScript/ArtistsServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class ArtistsServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import SubtitleDeliveryMethod from '../model/SubtitleDeliveryMethod';
/**
* AudioService service.
* @module EmbyClient.JavaScript/AudioServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class AudioServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import MBBackupApiRestoreOptions from '../model/MBBackupApiRestoreOptions';
/**
* BackupApi service.
* @module EmbyClient.JavaScript/BackupApiApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class BackupApiApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import RokuMetadataApiThumbnailSetInfo from '../model/RokuMetadataApiThumbnailSe
/**
* BifService service.
* @module EmbyClient.JavaScript/BifServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class BifServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import BrandingBrandingOptions from '../model/BrandingBrandingOptions';
/**
* BrandingService service.
* @module EmbyClient.JavaScript/BrandingServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class BrandingServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import QueryResultBaseItemDto from '../model/QueryResultBaseItemDto';
/**
* ChannelService service.
* @module EmbyClient.JavaScript/ChannelServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class ChannelServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import MediaEncodingCodecParameterContext from '../model/MediaEncodingCodecParam
/**
* CodecParameterService service.
* @module EmbyClient.JavaScript/CodecParameterServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class CodecParameterServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import CollectionsCollectionCreationResult from '../model/CollectionsCollectionC
/**
* CollectionService service.
* @module EmbyClient.JavaScript/CollectionServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class CollectionServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import ServerConfiguration from '../model/ServerConfiguration';
/**
* ConfigurationService service.
* @module EmbyClient.JavaScript/ConfigurationServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class ConfigurationServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import ConnectUserLinkResult from '../model/ConnectUserLinkResult';
/**
* ConnectService service.
* @module EmbyClient.JavaScript/ConnectServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class ConnectServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import QueryResultDevicesDeviceInfo from '../model/QueryResultDevicesDeviceInfo'
/**
* DeviceService service.
* @module EmbyClient.JavaScript/DeviceServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class DeviceServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import DisplayPreferences from '../model/DisplayPreferences';
/**
* DisplayPreferencesService service.
* @module EmbyClient.JavaScript/DisplayPreferencesServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class DisplayPreferencesServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import ApiClient from "../ApiClient";
/**
* DlnaServerService service.
* @module EmbyClient.JavaScript/DlnaServerServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class DlnaServerServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import DlnaProfilesDlnaProfile from '../model/DlnaProfilesDlnaProfile';
/**
* DlnaService service.
* @module EmbyClient.JavaScript/DlnaServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class DlnaServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import SubtitleDeliveryMethod from '../model/SubtitleDeliveryMethod';
/**
* DynamicHlsService service.
* @module EmbyClient.JavaScript/DynamicHlsServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class DynamicHlsServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import VideoCodecBase from '../model/VideoCodecBase';
/**
* EncodingInfoService service.
* @module EmbyClient.JavaScript/EncodingInfoServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class EncodingInfoServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import ValidatePath from '../model/ValidatePath';
/**
* EnvironmentService service.
* @module EmbyClient.JavaScript/EnvironmentServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class EnvironmentServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import FeatureInfo from '../model/FeatureInfo';
/**
* FeatureService service.
* @module EmbyClient.JavaScript/FeatureServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class FeatureServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import EditObjectContainer from '../model/EditObjectContainer';
/**
* FfmpegOptionsService service.
* @module EmbyClient.JavaScript/FfmpegOptionsServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class FfmpegOptionsServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import QueryResultBaseItemDto from '../model/QueryResultBaseItemDto';
/**
* GameGenresService service.
* @module EmbyClient.JavaScript/GameGenresServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class GameGenresServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import UIViewInfo from '../model/UIViewInfo';
/**
* GenericUIApiService service.
* @module EmbyClient.JavaScript/GenericUIApiServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class GenericUIApiServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import QueryResultBaseItemDto from '../model/QueryResultBaseItemDto';
/**
* GenresService service.
* @module EmbyClient.JavaScript/GenresServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class GenresServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import ApiClient from "../ApiClient";
/**
* HlsSegmentService service.
* @module EmbyClient.JavaScript/HlsSegmentServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class HlsSegmentServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import ImageType from '../model/ImageType';
/**
* ImageService service.
* @module EmbyClient.JavaScript/ImageServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class ImageServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import QueryResultBaseItemDto from '../model/QueryResultBaseItemDto';
/**
* InstantMixService service.
* @module EmbyClient.JavaScript/InstantMixServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class InstantMixServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import RemoteSearchResult from '../model/RemoteSearchResult';
/**
* ItemLookupService service.
* @module EmbyClient.JavaScript/ItemLookupServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class ItemLookupServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import MetadataRefreshMode from '../model/MetadataRefreshMode';
/**
* ItemRefreshService service.
* @module EmbyClient.JavaScript/ItemRefreshServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class ItemRefreshServiceApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import MetadataEditorInfo from '../model/MetadataEditorInfo';
/**
* ItemUpdateService service.
* @module EmbyClient.JavaScript/ItemUpdateServiceApi
* @version 4.8.9.0
* @version 4.8.10.0
*/
export default class ItemUpdateServiceApi {

Expand Down
Loading

0 comments on commit a64687c

Please sign in to comment.