plex_ruby_sdk 0.17.0 → 0.17.1
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.
- checksums.yaml +4 -4
- data/lib/plex_ruby_sdk/models/errors/get_watch_list_badrequest.rb +1 -1
- data/lib/plex_ruby_sdk/models/errors/get_watch_list_errors.rb +1 -1
- data/lib/plex_ruby_sdk/models/errors/get_watch_list_unauthorized.rb +1 -1
- data/lib/plex_ruby_sdk/models/errors/get_watch_list_watchlist_errors.rb +1 -1
- data/lib/plex_ruby_sdk/models/operations/filter.rb +1 -1
- data/lib/plex_ruby_sdk/models/operations/get_watch_list_request.rb +1 -1
- data/lib/plex_ruby_sdk/models/operations/get_watch_list_response.rb +1 -1
- data/lib/plex_ruby_sdk/models/operations/get_watch_list_responsebody.rb +1 -1
- data/lib/plex_ruby_sdk/models/operations/image.rb +1 -1
- data/lib/plex_ruby_sdk/models/operations/includecollections.rb +1 -1
- data/lib/plex_ruby_sdk/models/operations/includeexternalmedia.rb +1 -1
- data/lib/plex_ruby_sdk/models/operations/libtype.rb +1 -1
- data/lib/plex_ruby_sdk/models/operations/metadata.rb +1 -1
- data/lib/plex_ruby_sdk/sdkconfiguration.rb +3 -3
- data/lib/plex_ruby_sdk/watchlist.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e9f410c8946cc8179053bf58c0f517439813665626116a99a12a2231c818d364
|
4
|
+
data.tar.gz: 42b9047d4357e95fef9f6030c3a3bed5d4523f2529be838a1f00e2b40b77759a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6391759fb9237247994e41035e6131521043791e3909017390e1d18678d6900da0e16c53947f196fd065b84fd0a744215eb89f029599e9b26ecae1874a1c5a9d
|
7
|
+
data.tar.gz: 968f22ca30590b108b766d680ed595a7750a5065f7aed915dd65c2dfb78959ea109e8eb5839ddcc10ff93ae1466ba8b169f6674483b3008e832a06d1f6f873aa
|
@@ -8,7 +8,7 @@ module PlexRubySDK
|
|
8
8
|
module Models
|
9
9
|
module Errors
|
10
10
|
GET_WATCH_LIST_BAD_REQUEST_SERVERS = [
|
11
|
-
'https://
|
11
|
+
'https://discover.provider.plex.tv'
|
12
12
|
].freeze
|
13
13
|
|
14
14
|
# Bad Request - A parameter was not specified, or was specified incorrectly.
|
@@ -8,7 +8,7 @@ module PlexRubySDK
|
|
8
8
|
module Models
|
9
9
|
module Errors
|
10
10
|
GET_WATCH_LIST_UNAUTHORIZED_SERVERS = [
|
11
|
-
'https://
|
11
|
+
'https://discover.provider.plex.tv'
|
12
12
|
].freeze
|
13
13
|
|
14
14
|
# Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
@@ -8,7 +8,7 @@ module PlexRubySDK
|
|
8
8
|
module Models
|
9
9
|
module Operations
|
10
10
|
LIBTYPE_SERVERS = [
|
11
|
-
'https://
|
11
|
+
'https://discover.provider.plex.tv'
|
12
12
|
].freeze
|
13
13
|
|
14
14
|
# Libtype - The type of library to filter. Can be "movie" or "show", or all if not present.
|
@@ -14,7 +14,7 @@ module PlexRubySDK
|
|
14
14
|
extend T::Sig
|
15
15
|
|
16
16
|
SERVERS = [
|
17
|
-
'
|
17
|
+
'{protocol}://{ip}:{port}', # 1 - The full address of your Plex Server
|
18
18
|
].freeze
|
19
19
|
# Contains the list of servers available to the SDK
|
20
20
|
|
@@ -66,9 +66,9 @@ module PlexRubySDK
|
|
66
66
|
end
|
67
67
|
@language = 'ruby'
|
68
68
|
@openapi_doc_version = '0.0.3'
|
69
|
-
@sdk_version = '0.17.
|
69
|
+
@sdk_version = '0.17.1'
|
70
70
|
@gen_version = '2.570.4'
|
71
|
-
@user_agent = 'speakeasy-sdk/ruby 0.17.
|
71
|
+
@user_agent = 'speakeasy-sdk/ruby 0.17.1 2.570.4 0.0.3 plex_ruby_sdk'
|
72
72
|
end
|
73
73
|
|
74
74
|
sig { returns([String, T::Hash[Symbol, String]]) }
|
@@ -17,7 +17,7 @@ module PlexRubySDK
|
|
17
17
|
|
18
18
|
# GET_WATCH_LIST_SERVERS contains the list of server urls available to the SDK.
|
19
19
|
GET_WATCH_LIST_SERVERS = [
|
20
|
-
'https://
|
20
|
+
'https://discover.provider.plex.tv', # The plex discover provider server
|
21
21
|
].freeze
|
22
22
|
# API Calls that perform operations with Plex Media Server Watchlists
|
23
23
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: plex_ruby_sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.17.
|
4
|
+
version: 0.17.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- LukeHagar
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-09-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|