ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.129.1

This commit is contained in:
speakeasybot
2024-01-01 15:12:41 +00:00
parent f200bc563f
commit 9b02d27d5e
20 changed files with 424 additions and 85 deletions

View File

@@ -21,7 +21,7 @@ Returns a list of butler tasks
### Example Usage
```typescript
import { PlexAPI } from "plexjs";
import { PlexAPI } from "@lukehagar/plexjs";
async function run() {
const sdk = new PlexAPI({
@@ -70,7 +70,7 @@ This endpoint will attempt to start all Butler tasks that are enabled in the set
### Example Usage
```typescript
import { PlexAPI } from "plexjs";
import { PlexAPI } from "@lukehagar/plexjs";
async function run() {
const sdk = new PlexAPI({
@@ -115,7 +115,7 @@ This endpoint will stop all currently running tasks and remove any scheduled tas
### Example Usage
```typescript
import { PlexAPI } from "plexjs";
import { PlexAPI } from "@lukehagar/plexjs";
async function run() {
const sdk = new PlexAPI({
@@ -164,8 +164,8 @@ This endpoint will attempt to start a single Butler task that is enabled in the
### Example Usage
```typescript
import { PlexAPI } from "plexjs";
import { TaskName } from "plexjs/models/operations";
import { PlexAPI } from "@lukehagar/plexjs";
import { TaskName } from "@lukehagar/plexjs/models/operations";
async function run() {
const sdk = new PlexAPI({
@@ -213,8 +213,8 @@ This endpoint will stop a currently running task by name, or remove it from the
### Example Usage
```typescript
import { PlexAPI } from "plexjs";
import { PathParamTaskName } from "plexjs/models/operations";
import { PlexAPI } from "@lukehagar/plexjs";
import { PathParamTaskName } from "@lukehagar/plexjs/models/operations";
async function run() {
const sdk = new PlexAPI({