ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.615.2

This commit is contained in:
speakeasybot
2025-09-15 00:13:35 +00:00
parent 442b11c11a
commit ed63eb13b9
12 changed files with 45 additions and 29 deletions

View File

@@ -8,7 +8,7 @@ dotenv.config();
* Example usage of the @lukehagar/plexjs SDK
*
* To run this example from the examples directory:
* npm run build && npx tsx serverGetServerCapabilities.ts
* npm run build && npx tsx serverGetServerCapabilities.example.ts
*/
import { PlexAPI } from "@lukehagar/plexjs";
@@ -18,7 +18,7 @@ const plexAPI = new PlexAPI({
});
async function main() {
const result = await plexAPI.getServerCapabilities();
const result = await plexAPI.server.getServerCapabilities();
console.log(result);
}