Skip to content

Commit

Permalink
Merge pull request #6 from LukeHagar/speakeasy-sdk-regen-1726501940
Browse files Browse the repository at this point in the history
chore: 🐝 Update SDK - Generate 0.3.3
  • Loading branch information
LukeHagar authored Sep 16, 2024
2 parents 1eea84e + 537b165 commit 3105b5b
Show file tree
Hide file tree
Showing 25 changed files with 101 additions and 91 deletions.
8 changes: 4 additions & 4 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ management:
docVersion: 0.0.3
speakeasyVersion: 1.397.2
generationVersion: 2.415.8
releaseVersion: 0.3.2
configChecksum: aa1242008b99b40584966bcff9193325
releaseVersion: 0.3.3
configChecksum: bbc41306a25086aeae9fd27706f2e334
repoURL: https://github.com/LukeHagar/plexruby.git
repoSubDirectory: .
installationURL: https://github.com/LukeHagar/plexruby
Expand Down Expand Up @@ -732,6 +732,7 @@ generatedFiles:
- docs/sdks/updater/README.md
- docs/sdks/video/README.md
- docs/sdks/watchlist/README.md
- lib/plex-ruby-sdk.rb
- lib/plex_ruby_sdk/activities.rb
- lib/plex_ruby_sdk/authentication.rb
- lib/plex_ruby_sdk/butler.rb
Expand Down Expand Up @@ -1443,8 +1444,7 @@ generatedFiles:
- lib/plex_ruby_sdk/utils/utils.rb
- lib/plex_ruby_sdk/video.rb
- lib/plex_ruby_sdk/watchlist.rb
- lib/plexruby.rb
- plexruby.gemspec
- plex-ruby-sdk.gemspec
- sorbet/config
- sorbet/rbi/annotations/.gitattributes
- sorbet/rbi/annotations/faraday.rbi
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: false
ruby:
version: 0.3.2
version: 0.3.3
author: LukeHagar
description: Ruby Client SDK Generated by Speakeasy
imports:
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
plexruby (0.3.2)
plex-ruby-sdk (0.3.3)
faraday
faraday-multipart
rack
Expand Down Expand Up @@ -93,7 +93,7 @@ PLATFORMS

DEPENDENCIES
minitest
plexruby!
plex-ruby-sdk!
rubocop
sorbet-runtime
tapioca
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Plex-API: An Open API Spec for interacting with Plex.tv and Plex Media Server
The SDK can be installed using [RubyGems](https://rubygems.org/):

```bash
gem install plexruby
gem install plex-ruby-sdk
```
<!-- End SDK Installation [installation] -->

Expand All @@ -39,7 +39,7 @@ gem install plexruby
### Example

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -224,7 +224,7 @@ The default server can also be overridden globally by passing a URL to the `serv

The server URL can also be overridden on a per-operation basis, provided a server list was specified for the operation. For example:
```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -269,7 +269,7 @@ This is used to track the client application and its usage
### Example

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -496,4 +496,14 @@ Based on:
### Generated
- [ruby v0.3.2] .
### Releases
- [Ruby Gems v0.3.2] https://rubygems.org/gems/plexruby/versions/0.3.2 - .
- [Ruby Gems v0.3.2] https://rubygems.org/gems/plexruby/versions/0.3.2 - .

## 2024-09-16 15:52:14
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.397.2 (2.415.8) https://github.com/speakeasy-api/speakeasy
### Generated
- [ruby v0.3.3] .
### Releases
- [Ruby Gems v0.3.3] https://rubygems.org/gems/plex-ruby-sdk/versions/0.3.3 - .
2 changes: 1 addition & 1 deletion USAGE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- Start SDK Example Usage [usage] -->
```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down
4 changes: 2 additions & 2 deletions docs/sdks/activities/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Get Server Activities
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -58,7 +58,7 @@ Cancel Server Activities
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down
8 changes: 4 additions & 4 deletions docs/sdks/authentication/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This endpoint provides the caller with a temporary token with the same access le
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -64,7 +64,7 @@ Note: requires Plex Media Server >= 1.15.4.
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -105,7 +105,7 @@ Get the User data from the provided X-Plex-Token
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -146,7 +146,7 @@ Sign in user with username and password and return user data with Plex authentic
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down
10 changes: 5 additions & 5 deletions docs/sdks/butler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Returns a list of butler tasks
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -60,7 +60,7 @@ This endpoint will attempt to start all Butler tasks that are enabled in the set
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -96,7 +96,7 @@ This endpoint will stop all currently running tasks and remove any scheduled tas
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -136,7 +136,7 @@ This endpoint will attempt to start a single Butler task that is enabled in the
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -178,7 +178,7 @@ This endpoint will stop a currently running task by name, or remove it from the
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down
4 changes: 2 additions & 2 deletions docs/sdks/hubs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Get Global Hubs filtered by the parameters provided.
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -60,7 +60,7 @@ This endpoint will return a list of library specific hubs
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down
24 changes: 12 additions & 12 deletions docs/sdks/library/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This resource returns hash values for local files
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -70,7 +70,7 @@ This endpoint will return the recently added content.
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -118,7 +118,7 @@ This allows a client to provide a rich interface around the media (e.g. allow so
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -192,7 +192,7 @@ Each type in the library comes with a set of filters and sorts, aiding in buildi
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -234,7 +234,7 @@ Delete a library using a specific section id
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -295,7 +295,7 @@ Fetches details from a specific section of the library identified by a section k
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -347,7 +347,7 @@ This endpoint Refreshes all the Metadata of the library.
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -407,7 +407,7 @@ Each type in the library comes with a set of filters and sorts, aiding in buildi
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -450,7 +450,7 @@ This endpoint will return the metadata of a library item specified with the rati
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -492,7 +492,7 @@ This endpoint will return the children of of a library item specified with the r
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -535,7 +535,7 @@ This endpoint will return the top watched content from libraries of a certain ty
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -578,7 +578,7 @@ This endpoint will return the on deck content.
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down
6 changes: 3 additions & 3 deletions docs/sdks/log/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This endpoint will write a single-line log message, including a level and source
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -83,7 +83,7 @@ Ensure each parameter is properly URL-encoded to avoid interpretation issues.
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down Expand Up @@ -129,7 +129,7 @@ This endpoint will enable all Plex Media Serverlogs to be sent to the Papertrail
### Example Usage

```ruby
require 'plexruby'
require 'plex_ruby_sdk'


s = ::PlexRubySDK::PlexAPI.new(
Expand Down
Loading

0 comments on commit 3105b5b

Please sign in to comment.