ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.513.4

This commit is contained in:
speakeasybot
2025-03-09 00:26:13 +00:00
parent 26e1ac258e
commit 8194abfa99
114 changed files with 8170 additions and 11121 deletions

View File

@@ -1000,36 +1000,6 @@ actions:
}
}
}
- target: $["paths"]["/library/onDeck"]["get"]
update:
x-codeSamples:
- lang: java
label: getOnDeck
source: |-
package hello.world;
import dev.plexapi.plexapi.PlexAPI;
import dev.plexapi.plexapi.models.errors.GetOnDeckBadRequest;
import dev.plexapi.plexapi.models.errors.GetOnDeckUnauthorized;
import dev.plexapi.plexapi.models.operations.GetOnDeckResponse;
import java.lang.Exception;
public class Application {
public static void main(String[] args) throws GetOnDeckBadRequest, GetOnDeckUnauthorized, Exception {
PlexAPI sdk = PlexAPI.builder()
.accessToken("<YOUR_API_KEY_HERE>")
.build();
GetOnDeckResponse res = sdk.library().getOnDeck()
.call();
if (res.object().isPresent()) {
// handle response
}
}
}
- target: $["paths"]["/library/recentlyAdded"]["get"]
update:
x-codeSamples: