ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.158.0

This commit is contained in:
speakeasybot
2024-01-31 15:06:37 +00:00
parent d13b68791f
commit 493f095bf8
13 changed files with 766 additions and 39 deletions

View File

@@ -96,7 +96,8 @@ type PlexAPI struct {
Library *Library
// Submit logs to the Log Handler for Plex Media Server
//
Log *Log
Log *Log
Plex *Plex
// Playlists are ordered collections of media. They can be dumb (just a list of media) or smart (based on a media query, such as "all albums from 2017").
// They can be organized in (optionally nesting) folders.
// Retrieving a playlist, or its items, will trigger a refresh of its metadata.
@@ -259,9 +260,9 @@ func New(opts ...SDKOption) *PlexAPI {
sdkConfiguration: sdkConfiguration{
Language: "go",
OpenAPIDocVersion: "0.0.3",
SDKVersion: "0.3.3",
GenVersion: "2.237.3",
UserAgent: "speakeasy-sdk/go 0.3.3 2.237.3 0.0.3 PlexAPI",
SDKVersion: "0.4.0",
GenVersion: "2.239.4",
UserAgent: "speakeasy-sdk/go 0.4.0 2.239.4 0.0.3 PlexAPI",
ServerDefaults: []map[string]string{
{
"protocol": "http",
@@ -303,6 +304,8 @@ func New(opts ...SDKOption) *PlexAPI {
sdk.Log = newLog(sdk.sdkConfiguration)
sdk.Plex = newPlex(sdk.sdkConfiguration)
sdk.Playlists = newPlaylists(sdk.sdkConfiguration)
sdk.Security = newSecurity(sdk.sdkConfiguration)