From 986ff3bd4916e40f17d9384c52ffb04adbfdf464 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 2 Jun 2013 20:27:31 -0400 Subject: [PATCH] updated nuget --- MediaBrowser.Model/ApiClient/IApiClient.cs | 98 +++++++++++----------- Nuget/MediaBrowser.Common.Internal.nuspec | 4 +- Nuget/MediaBrowser.Common.nuspec | 2 +- Nuget/MediaBrowser.Server.Core.nuspec | 4 +- 4 files changed, 54 insertions(+), 54 deletions(-) diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index c7d584f810..4c8d47bc3e 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -14,7 +14,7 @@ using System.Collections.Generic; using System.IO; using System.Threading.Tasks; -namespace MediaBrowser.ApiInteraction +namespace MediaBrowser.Model.ApiClient { public interface IApiClient : IDisposable { @@ -23,7 +23,7 @@ namespace MediaBrowser.ApiInteraction /// /// The URL. /// Task{Stream}. - /// url + /// url Task GetImageStreamAsync(string url); /// @@ -32,7 +32,7 @@ namespace MediaBrowser.ApiInteraction /// The id. /// The user id. /// Task{BaseItemDto}. - /// id + /// id Task GetItemAsync(string id, string userId); /// @@ -41,7 +41,7 @@ namespace MediaBrowser.ApiInteraction /// The item id. /// The user id. /// Task{System.String[]}. - /// id + /// id Task GetIntrosAsync(string itemId, string userId); /// @@ -49,7 +49,7 @@ namespace MediaBrowser.ApiInteraction /// /// The user id. /// Task{BaseItemDto}. - /// userId + /// userId Task GetRootFolderAsync(string userId); /// @@ -69,7 +69,7 @@ namespace MediaBrowser.ApiInteraction /// /// The query. /// Task{ItemsResult}. - /// query + /// query Task GetItemsAsync(ItemQuery query); /// @@ -77,7 +77,7 @@ namespace MediaBrowser.ApiInteraction /// /// The query. /// Task{ItemsResult}. - /// userId + /// userId Task GetPeopleAsync(PersonsQuery query); /// @@ -85,7 +85,7 @@ namespace MediaBrowser.ApiInteraction /// /// The query. /// Task{ItemsResult}. - /// userId + /// userId Task GetArtistsAsync(ArtistsQuery query); /// @@ -93,7 +93,7 @@ namespace MediaBrowser.ApiInteraction /// /// The name. /// Task{BaseItemDto}. - /// userId + /// userId Task GetStudioAsync(string name); /// @@ -101,7 +101,7 @@ namespace MediaBrowser.ApiInteraction /// /// The name. /// Task{BaseItemDto}. - /// userId + /// userId Task GetGenreAsync(string name); /// @@ -109,7 +109,7 @@ namespace MediaBrowser.ApiInteraction /// /// The name. /// Task{BaseItemDto}. - /// name + /// name Task GetArtistAsync(string name); /// @@ -131,7 +131,7 @@ namespace MediaBrowser.ApiInteraction /// /// The name. /// Task{BaseItemDto}. - /// userId + /// userId Task GetPersonAsync(string name); /// @@ -139,7 +139,7 @@ namespace MediaBrowser.ApiInteraction /// /// The year. /// Task{BaseItemDto}. - /// userId + /// userId Task GetYearAsync(int year); /// @@ -165,7 +165,7 @@ namespace MediaBrowser.ApiInteraction /// /// The id. /// Task{TaskInfo}. - /// id + /// id Task GetScheduledTaskAsync(Guid id); /// @@ -173,7 +173,7 @@ namespace MediaBrowser.ApiInteraction /// /// The id. /// Task{UserDto}. - /// id + /// id Task GetUserAsync(string id); /// @@ -195,7 +195,7 @@ namespace MediaBrowser.ApiInteraction /// /// The location. /// Task{WeatherInfo}. - /// location + /// location Task GetWeatherInfoAsync(string location); /// @@ -204,7 +204,7 @@ namespace MediaBrowser.ApiInteraction /// The user id. /// The item id. /// Task{ItemsResult}. - /// query + /// query Task GetLocalTrailersAsync(string userId, string itemId); /// @@ -213,7 +213,7 @@ namespace MediaBrowser.ApiInteraction /// The user id. /// The item id. /// Task{BaseItemDto[]}. - /// userId + /// userId Task GetSpecialFeaturesAsync(string userId, string itemId); /// @@ -238,7 +238,7 @@ namespace MediaBrowser.ApiInteraction /// The user id. /// if set to true [was played]. /// Task. - /// itemId + /// itemId Task UpdatePlayedStatusAsync(string itemId, string userId, bool wasPlayed); /// @@ -248,7 +248,7 @@ namespace MediaBrowser.ApiInteraction /// The user id. /// if set to true [is favorite]. /// Task. - /// itemId + /// itemId Task UpdateFavoriteStatusAsync(string itemId, string userId, bool isFavorite); /// @@ -257,7 +257,7 @@ namespace MediaBrowser.ApiInteraction /// The item id. /// The user id. /// Task{UserItemDataDto}. - /// itemId + /// itemId Task ReportPlaybackStartAsync(string itemId, string userId); /// @@ -268,7 +268,7 @@ namespace MediaBrowser.ApiInteraction /// The position ticks. /// if set to true [is paused]. /// Task{UserItemDataDto}. - /// itemId + /// itemId Task ReportPlaybackProgressAsync(string itemId, string userId, long? positionTicks, bool isPaused); /// @@ -278,7 +278,7 @@ namespace MediaBrowser.ApiInteraction /// The user id. /// The position ticks. /// Task{UserItemDataDto}. - /// itemId + /// itemId Task ReportPlaybackStoppedAsync(string itemId, string userId, long? positionTicks); /// @@ -298,7 +298,7 @@ namespace MediaBrowser.ApiInteraction /// The session id. /// The request. /// Task. - /// + /// /// sessionId /// or /// request @@ -311,7 +311,7 @@ namespace MediaBrowser.ApiInteraction /// The item id. /// The user id. /// Task{UserItemDataDto}. - /// itemId + /// itemId Task ClearUserItemRatingAsync(string itemId, string userId); /// @@ -321,7 +321,7 @@ namespace MediaBrowser.ApiInteraction /// The user id. /// if set to true [likes]. /// Task. - /// itemId + /// itemId Task UpdateUserItemRatingAsync(string itemId, string userId, bool likes); /// @@ -330,7 +330,7 @@ namespace MediaBrowser.ApiInteraction /// The user id. /// The sha1 hash. /// Task. - /// userId + /// userId Task AuthenticateUserAsync(string userId, byte[] sha1Hash); /// @@ -338,7 +338,7 @@ namespace MediaBrowser.ApiInteraction /// /// The configuration. /// Task. - /// configuration + /// configuration Task UpdateServerConfigurationAsync(ServerConfiguration configuration); /// @@ -347,7 +347,7 @@ namespace MediaBrowser.ApiInteraction /// The id. /// The triggers. /// Task{RequestResult}. - /// id + /// id Task UpdateScheduledTaskTriggersAsync(Guid id, TaskTriggerInfo[] triggers); /// @@ -431,7 +431,7 @@ namespace MediaBrowser.ApiInteraction /// The item. /// The options. /// System.String. - /// item + /// item string GetImageUrl(BaseItemDto item, ImageOptions options); /// @@ -440,7 +440,7 @@ namespace MediaBrowser.ApiInteraction /// The Id of the item /// The options. /// System.String. - /// itemId + /// itemId string GetImageUrl(string itemId, ImageOptions options); /// @@ -449,7 +449,7 @@ namespace MediaBrowser.ApiInteraction /// The user. /// The options. /// System.String. - /// user + /// user string GetUserImageUrl(UserDto user, ImageOptions options); /// @@ -458,7 +458,7 @@ namespace MediaBrowser.ApiInteraction /// The Id of the user /// The options. /// System.String. - /// userId + /// userId string GetUserImageUrl(string userId, ImageOptions options); /// @@ -467,7 +467,7 @@ namespace MediaBrowser.ApiInteraction /// The item. /// The options. /// System.String. - /// item + /// item string GetPersonImageUrl(BaseItemPerson item, ImageOptions options); /// @@ -476,7 +476,7 @@ namespace MediaBrowser.ApiInteraction /// The item. /// The options. /// System.String. - /// item + /// item string GetPersonImageUrl(BaseItemDto item, ImageOptions options); /// @@ -485,7 +485,7 @@ namespace MediaBrowser.ApiInteraction /// The name of the person /// The options. /// System.String. - /// name + /// name string GetPersonImageUrl(string name, ImageOptions options); /// @@ -494,7 +494,7 @@ namespace MediaBrowser.ApiInteraction /// The item. /// The options. /// System.String. - /// item + /// item string GetYearImageUrl(BaseItemDto item, ImageOptions options); /// @@ -511,7 +511,7 @@ namespace MediaBrowser.ApiInteraction /// The item. /// The options. /// System.String. - /// item + /// item string GetGenreImageUrl(BaseItemDto item, ImageOptions options); /// @@ -520,7 +520,7 @@ namespace MediaBrowser.ApiInteraction /// The name. /// The options. /// System.String. - /// name + /// name string GetGenreImageUrl(string name, ImageOptions options); /// @@ -529,7 +529,7 @@ namespace MediaBrowser.ApiInteraction /// The item. /// The options. /// System.String. - /// item + /// item string GetStudioImageUrl(BaseItemDto item, ImageOptions options); /// @@ -538,7 +538,7 @@ namespace MediaBrowser.ApiInteraction /// The name. /// The options. /// System.String. - /// name + /// name string GetStudioImageUrl(string name, ImageOptions options); /// @@ -547,7 +547,7 @@ namespace MediaBrowser.ApiInteraction /// The item. /// The options. /// System.String. - /// item + /// item /// or /// options string GetArtistImageUrl(BaseItemDto item, ImageOptions options); @@ -558,7 +558,7 @@ namespace MediaBrowser.ApiInteraction /// The name. /// The options. /// System.String. - /// name + /// name string GetArtistImageUrl(string name, ImageOptions options); /// @@ -567,7 +567,7 @@ namespace MediaBrowser.ApiInteraction /// A given item. /// The options. /// System.String[][]. - /// item + /// item string[] GetBackdropImageUrls(BaseItemDto item, ImageOptions options); /// @@ -576,7 +576,7 @@ namespace MediaBrowser.ApiInteraction /// A given item. /// The options. /// System.String. - /// item + /// item string GetLogoImageUrl(BaseItemDto item, ImageOptions options); /// @@ -584,7 +584,7 @@ namespace MediaBrowser.ApiInteraction /// /// The options. /// System.String. - /// options + /// options string GetAudioStreamUrl(StreamOptions options); /// @@ -592,7 +592,7 @@ namespace MediaBrowser.ApiInteraction /// /// The options. /// System.String. - /// options + /// options string GetVideoStreamUrl(VideoStreamOptions options); /// @@ -600,7 +600,7 @@ namespace MediaBrowser.ApiInteraction /// /// The options. /// System.String. - /// options + /// options string GetHlsAudioStreamUrl(StreamOptions options); /// @@ -608,7 +608,7 @@ namespace MediaBrowser.ApiInteraction /// /// The options. /// System.String. - /// options + /// options string GetHlsVideoStreamUrl(VideoStreamOptions options); } } \ No newline at end of file diff --git a/Nuget/MediaBrowser.Common.Internal.nuspec b/Nuget/MediaBrowser.Common.Internal.nuspec index f88374b9a4..5f315d3030 100644 --- a/Nuget/MediaBrowser.Common.Internal.nuspec +++ b/Nuget/MediaBrowser.Common.Internal.nuspec @@ -2,7 +2,7 @@ MediaBrowser.Common.Internal - 3.0.109 + 3.0.110 MediaBrowser.Common.Internal Luke ebr,Luke,scottisafool @@ -12,7 +12,7 @@ Contains common components shared by Media Browser Theatre and Media Browser Server. Not intended for plugin developer consumption. Copyright © Media Browser 2013 - + diff --git a/Nuget/MediaBrowser.Common.nuspec b/Nuget/MediaBrowser.Common.nuspec index 30b5f49747..5bf6815b99 100644 --- a/Nuget/MediaBrowser.Common.nuspec +++ b/Nuget/MediaBrowser.Common.nuspec @@ -2,7 +2,7 @@ MediaBrowser.Common - 3.0.109 + 3.0.110 MediaBrowser.Common Media Browser Team ebr,Luke,scottisafool diff --git a/Nuget/MediaBrowser.Server.Core.nuspec b/Nuget/MediaBrowser.Server.Core.nuspec index f6f14bf9ff..87e137845a 100644 --- a/Nuget/MediaBrowser.Server.Core.nuspec +++ b/Nuget/MediaBrowser.Server.Core.nuspec @@ -2,7 +2,7 @@ MediaBrowser.Server.Core - 3.0.109 + 3.0.110 Media Browser.Server.Core Media Browser Team ebr,Luke,scottisafool @@ -12,7 +12,7 @@ Contains core components required to build plugins for Media Browser Server. Copyright © Media Browser 2013 - +