ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.546.2

This commit is contained in:
speakeasybot
2025-05-19 00:33:47 +00:00
parent 5994271d04
commit 785a2b3be0
12 changed files with 52 additions and 21 deletions

View File

@@ -1,4 +1,9 @@
<div align="center">
<a href="https://codespaces.new/LukeHagar/Prowlarr-TS-SDK.git/tree/main"><img src="https://github.com/codespaces/badge.svg" /></a>
</div>
<br>
> **Remember to shutdown a GitHub Codespace when it is not in use!** > **Remember to shutdown a GitHub Codespace when it is not in use!**
# Dev Containers Quick Start # Dev Containers Quick Start

View File

@@ -3,10 +3,12 @@ id: dcd1d874-ad0d-475e-9c83-6083a087fb17
management: management:
docChecksum: 9f92220db0dc81897b8a47c86bfd4b04 docChecksum: 9f92220db0dc81897b8a47c86bfd4b04
docVersion: 1.0.0 docVersion: 1.0.0
speakeasyVersion: 1.546.1 speakeasyVersion: 1.546.2
generationVersion: 2.604.2 generationVersion: 2.604.4
releaseVersion: 0.0.1 releaseVersion: 0.0.2
configChecksum: 34755fbe88f40a507b248ec6a6774196 configChecksum: 99440153394327071804c9b6be469242
repoURL: https://github.com/LukeHagar/Prowlarr-TS-SDK.git
installationURL: https://github.com/LukeHagar/Prowlarr-TS-SDK
features: features:
typescript: typescript:
additionalDependencies: 0.1.0 additionalDependencies: 0.1.0

View File

@@ -19,7 +19,7 @@ generation:
oAuth2ClientCredentialsEnabled: true oAuth2ClientCredentialsEnabled: true
oAuth2PasswordEnabled: true oAuth2PasswordEnabled: true
typescript: typescript:
version: 0.0.1 version: 0.0.2
additionalDependencies: additionalDependencies:
dependencies: {} dependencies: {}
devDependencies: {} devDependencies: {}

View File

@@ -1,10 +1,21 @@
speakeasyVersion: 1.546.1 speakeasyVersion: 1.546.2
sources: {} sources:
Prowlarr:
sourceNamespace: prowlarr
sourceRevisionDigest: sha256:2447bc493a5cae6d77cb39bb251a689947c143b0d248bfb70841d676a625b6ee
sourceBlobDigest: sha256:aabc67353440edc8bb6dc6730997ba4f966c33d09cd7b7484469094ba2542305
tags:
- latest
- speakeasy-sdk-regen-1747433296
- 1.0.0
targets: targets:
prowlarr: prowlarr:
source: Prowlarr source: Prowlarr
sourceNamespace: prowlarr
sourceRevisionDigest: sha256:2447bc493a5cae6d77cb39bb251a689947c143b0d248bfb70841d676a625b6ee
sourceBlobDigest: sha256:aabc67353440edc8bb6dc6730997ba4f966c33d09cd7b7484469094ba2542305
codeSamplesNamespace: prowlarr-typescript-code-samples codeSamplesNamespace: prowlarr-typescript-code-samples
codeSamplesRevisionDigest: sha256:7afc8f22dd3763349bcacd94c8ea523e1f5414b3feaa39a6c30c85fd7e687643 codeSamplesRevisionDigest: sha256:0fcea86138a124e88b2687b9a1926e313e555489ea7cd7f3a3a17929ee4bba95
workflow: workflow:
workflowVersion: 1.0.0 workflowVersion: 1.0.0
speakeasyVersion: latest speakeasyVersion: latest

View File

@@ -38,25 +38,25 @@ The SDK can be installed with either [npm](https://www.npmjs.com/), [pnpm](https
### NPM ### NPM
```bash ```bash
npm add <UNSET> npm add https://github.com/LukeHagar/Prowlarr-TS-SDK
``` ```
### PNPM ### PNPM
```bash ```bash
pnpm add <UNSET> pnpm add https://github.com/LukeHagar/Prowlarr-TS-SDK
``` ```
### Bun ### Bun
```bash ```bash
bun add <UNSET> bun add https://github.com/LukeHagar/Prowlarr-TS-SDK
``` ```
### Yarn ### Yarn
```bash ```bash
yarn add <UNSET> zod yarn add https://github.com/LukeHagar/Prowlarr-TS-SDK zod
# Note that Yarn does not install peer dependencies automatically. You will need # Note that Yarn does not install peer dependencies automatically. You will need
# to install zod as shown above. # to install zod as shown above.

9
RELEASES.md Normal file
View File

@@ -0,0 +1,9 @@
## 2025-05-19 00:32:29
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.546.2 (2.604.4) https://github.com/speakeasy-api/speakeasy
### Generated
- [typescript v0.0.2] .

View File

@@ -2,7 +2,7 @@
{ {
"name": "prowlarr", "name": "prowlarr",
"version": "0.0.1", "version": "0.0.2",
"exports": { "exports": {
".": "./src/index.ts", ".": "./src/index.ts",
"./models/errors": "./src/models/errors/index.ts", "./models/errors": "./src/models/errors/index.ts",

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "prowlarr", "name": "prowlarr",
"version": "0.0.1", "version": "0.0.2",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "prowlarr", "name": "prowlarr",
"version": "0.0.1", "version": "0.0.2",
"bin": { "bin": {
"mcp": "bin/mcp-server.js" "mcp": "bin/mcp-server.js"
}, },

View File

@@ -1,6 +1,6 @@
{ {
"name": "prowlarr", "name": "prowlarr",
"version": "0.0.1", "version": "0.0.2",
"author": "Speakeasy", "author": "Speakeasy",
"type": "module", "type": "module",
"bin": { "bin": {
@@ -22,6 +22,10 @@
} }
}, },
"sideEffects": false, "sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/LukeHagar/Prowlarr-TS-SDK.git"
},
"scripts": { "scripts": {
"lint": "eslint --cache --max-warnings=0 src", "lint": "eslint --cache --max-warnings=0 src",
"build:mcp": "bun src/mcp-server/build.mts", "build:mcp": "bun src/mcp-server/build.mts",

View File

@@ -80,7 +80,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
export const SDK_METADATA = { export const SDK_METADATA = {
language: "typescript", language: "typescript",
openapiDocVersion: "1.0.0", openapiDocVersion: "1.0.0",
sdkVersion: "0.0.1", sdkVersion: "0.0.2",
genVersion: "2.604.2", genVersion: "2.604.4",
userAgent: "speakeasy-sdk/typescript 0.0.1 2.604.2 1.0.0 prowlarr", userAgent: "speakeasy-sdk/typescript 0.0.2 2.604.4 1.0.0 prowlarr",
} as const; } as const;

View File

@@ -19,7 +19,7 @@ const routes = buildRouteMap({
export const app = buildApplication(routes, { export const app = buildApplication(routes, {
name: "mcp", name: "mcp",
versionInfo: { versionInfo: {
currentVersion: "0.0.1", currentVersion: "0.0.2",
}, },
}); });

View File

@@ -154,7 +154,7 @@ export function createMCPServer(deps: {
}) { }) {
const server = new McpServer({ const server = new McpServer({
name: "Prowlarr", name: "Prowlarr",
version: "0.0.1", version: "0.0.2",
}); });
const client = new ProwlarrCore({ const client = new ProwlarrCore({