ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.531.4

This commit is contained in:
speakeasybot
2025-04-20 00:11:33 +00:00
parent f1b7dcb619
commit 6ebc04fe84
29 changed files with 3380 additions and 96 deletions

View File

@@ -17,7 +17,7 @@ module PlexRubySDK
# Note: This is unique in the context of the Plex server.
#
field :section_key, ::Integer, { 'path_param': { 'field_name': 'sectionKey', 'style': 'simple', 'explode': false } }
# Whether or not to include details for a section (types, filters, and sorts).
# Whether or not to include details for a section (types, filters, and sorts).
# Only exists for backwards compatibility, media providers other than the server libraries have it on always.
#
field :include_details, T.nilable(Models::Operations::IncludeDetails), { 'query_param': { 'field_name': 'includeDetails', 'style': 'form', 'explode': true } }

View File

@@ -8,7 +8,7 @@ module PlexRubySDK
module Models
module Operations
# IncludeDetails - Whether or not to include details for a section (types, filters, and sorts).
# IncludeDetails - Whether or not to include details for a section (types, filters, and sorts).
# Only exists for backwards compatibility, media providers other than the server libraries have it on always.
#
class IncludeDetails < T::Enum

View File

@@ -8,11 +8,11 @@ module PlexRubySDK
module Models
module Operations
# Level - An integer log level to write to the PMS log with.
# 0: Error
# 1: Warning
# 2: Info
# 3: Debug
# Level - An integer log level to write to the PMS log with.
# 0: Error
# 1: Warning
# 2: Info
# 3: Debug
# 4: Verbose
#
class Level < T::Enum

View File

@@ -13,11 +13,11 @@ module PlexRubySDK
extend T::Sig
include Crystalline::MetadataFields
# An integer log level to write to the PMS log with.
# 0: Error
# 1: Warning
# 2: Info
# 3: Debug
# An integer log level to write to the PMS log with.
# 0: Error
# 1: Warning
# 2: Info
# 3: Debug
# 4: Verbose
#
field :level, Models::Operations::Level, { 'query_param': { 'field_name': 'level', 'style': 'form', 'explode': true } }

View File

@@ -8,9 +8,9 @@ module PlexRubySDK
module Models
module Operations
# QueryParamForce - Force overwriting of duplicate playlists.
# By default, a playlist file uploaded with the same path will overwrite the existing playlist.
# The `force` argument is used to disable overwriting.
# QueryParamForce - Force overwriting of duplicate playlists.
# By default, a playlist file uploaded with the same path will overwrite the existing playlist.
# The `force` argument is used to disable overwriting.
# If the `force` argument is set to 0, a new playlist will be created suffixed with the date and time that the duplicate was uploaded.
#
class QueryParamForce < T::Enum

View File

@@ -13,17 +13,17 @@ module PlexRubySDK
extend T::Sig
include Crystalline::MetadataFields
# Force overwriting of duplicate playlists.
# By default, a playlist file uploaded with the same path will overwrite the existing playlist.
# The `force` argument is used to disable overwriting.
# Force overwriting of duplicate playlists.
# By default, a playlist file uploaded with the same path will overwrite the existing playlist.
# The `force` argument is used to disable overwriting.
# If the `force` argument is set to 0, a new playlist will be created suffixed with the date and time that the duplicate was uploaded.
#
field :force, Models::Operations::QueryParamForce, { 'query_param': { 'field_name': 'force', 'style': 'form', 'explode': true } }
# absolute path to a directory on the server where m3u files are stored, or the absolute path to a playlist file on the server.
# If the `path` argument is a directory, that path will be scanned for playlist files to be processed.
# Each file in that directory creates a separate playlist, with a name based on the filename of the file that created it.
# The GUID of each playlist is based on the filename.
# If the `path` argument is a file, that file will be used to create a new playlist, with the name based on the filename of the file that created it.
# absolute path to a directory on the server where m3u files are stored, or the absolute path to a playlist file on the server.
# If the `path` argument is a directory, that path will be scanned for playlist files to be processed.
# Each file in that directory creates a separate playlist, with a name based on the filename of the file that created it.
# The GUID of each playlist is based on the filename.
# If the `path` argument is a file, that file will be used to create a new playlist, with the name based on the filename of the file that created it.
# The GUID of each playlist is based on the filename.
#
field :path, ::String, { 'query_param': { 'field_name': 'path', 'style': 'form', 'explode': true } }