ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.542.1

This commit is contained in:
speakeasybot
2025-05-05 00:33:15 +00:00
parent c0e915da8b
commit 37569715a6
13 changed files with 60 additions and 30 deletions

View File

@@ -52,7 +52,7 @@ public class PlexAPI {
/**
* The full address of your Plex Server
*/
"{protocol}://{ip}:{port}",
"https://10.10.10.47:32400",
};
/**

View File

@@ -42,8 +42,8 @@ class SDKConfiguration {
} };
private static final String LANGUAGE = "java";
public static final String OPENAPI_DOC_VERSION = "0.0.3";
public static final String SDK_VERSION = "0.16.1";
public static final String GEN_VERSION = "2.595.4";
public static final String SDK_VERSION = "0.16.2";
public static final String GEN_VERSION = "2.597.9";
private static final String BASE_PACKAGE = "dev.plexapi.sdk";
public static final String USER_AGENT =
String.format("speakeasy-sdk/%s %s %s %s %s",

View File

@@ -132,6 +132,9 @@ public class GetAllLibrariesDirectory {
@JsonProperty("contentChangedAt")
private long contentChangedAt;
/**
* The Plex library visibility setting
*/
@JsonInclude(Include.NON_ABSENT)
@JsonProperty("hidden")
private Optional<? extends Hidden> hidden;
@@ -376,6 +379,9 @@ public class GetAllLibrariesDirectory {
return contentChangedAt;
}
/**
* The Plex library visibility setting
*/
@SuppressWarnings("unchecked")
@JsonIgnore
public Optional<Hidden> hidden() {
@@ -563,12 +569,18 @@ public class GetAllLibrariesDirectory {
return this;
}
/**
* The Plex library visibility setting
*/
public GetAllLibrariesDirectory withHidden(Hidden hidden) {
Utils.checkNotNull(hidden, "hidden");
this.hidden = Optional.ofNullable(hidden);
return this;
}
/**
* The Plex library visibility setting
*/
public GetAllLibrariesDirectory withHidden(Optional<? extends Hidden> hidden) {
Utils.checkNotNull(hidden, "hidden");
this.hidden = hidden;
@@ -887,12 +899,18 @@ public class GetAllLibrariesDirectory {
return this;
}
/**
* The Plex library visibility setting
*/
public Builder hidden(Hidden hidden) {
Utils.checkNotNull(hidden, "hidden");
this.hidden = Optional.ofNullable(hidden);
return this;
}
/**
* The Plex library visibility setting
*/
public Builder hidden(Optional<? extends Hidden> hidden) {
Utils.checkNotNull(hidden, "hidden");
this.hidden = hidden;

View File

@@ -10,11 +10,12 @@ import java.util.Optional;
/**
* Hidden
*
* <p>UNKNOWN
* <p>The Plex library visibility setting
*/
public enum Hidden {
Disable(0),
Enable(1);
Visible(0),
ExcludeHomeScreen(1),
ExcludeHomeScreenAndGlobalSearch(2);
@JsonValue
private final int value;