ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.487.0

This commit is contained in:
speakeasybot
2025-02-07 00:10:35 +00:00
parent 6db5d8fb30
commit d2a1c188d5
38 changed files with 1619 additions and 27 deletions

View File

@@ -154,6 +154,7 @@ type PlexAPI struct {
// Updates to the status can be observed via the Event API.
//
Updater *Updater
Users *Users
sdkConfiguration sdkConfiguration
}
@@ -298,9 +299,9 @@ func New(opts ...SDKOption) *PlexAPI {
sdkConfiguration: sdkConfiguration{
Language: "go",
OpenAPIDocVersion: "0.0.3",
SDKVersion: "0.17.4",
GenVersion: "2.503.2",
UserAgent: "speakeasy-sdk/go 0.17.4 2.503.2 0.0.3 github.com/LukeHagar/plexgo",
SDKVersion: "0.18.0",
GenVersion: "2.506.0",
UserAgent: "speakeasy-sdk/go 0.18.0 2.506.0 0.0.3 github.com/LukeHagar/plexgo",
ServerDefaults: []map[string]string{
{
"protocol": "https",
@@ -359,5 +360,7 @@ func New(opts ...SDKOption) *PlexAPI {
sdk.Updater = newUpdater(sdk.sdkConfiguration)
sdk.Users = newUsers(sdk.sdkConfiguration)
return sdk
}