ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.580.1

This commit is contained in:
speakeasybot
2025-07-10 00:13:20 +00:00
parent a7ec77cd04
commit fe48f93ccb
109 changed files with 1509 additions and 279 deletions

View File

@@ -0,0 +1,24 @@
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
/**
* Example usage of the @lukehagar/plexjs SDK
*
* To run this example from the examples directory:
* npm run build && npx tsx serverGetServerCapabilities.ts
*/
import { PlexAPI } from "@lukehagar/plexjs";
const plexAPI = new PlexAPI({
accessToken: "<YOUR_API_KEY_HERE>",
});
async function main() {
const result = await plexAPI.getServerCapabilities();
console.log(result);
}
main().catch(console.error);