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!**
# Dev Containers Quick Start

View File

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

View File

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

View File

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

View File

@@ -38,25 +38,25 @@ The SDK can be installed with either [npm](https://www.npmjs.com/), [pnpm](https
### NPM
```bash
npm add <UNSET>
npm add https://github.com/LukeHagar/Prowlarr-TS-SDK
```
### PNPM
```bash
pnpm add <UNSET>
pnpm add https://github.com/LukeHagar/Prowlarr-TS-SDK
```
### Bun
```bash
bun add <UNSET>
bun add https://github.com/LukeHagar/Prowlarr-TS-SDK
```
### Yarn
```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
# 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",
"version": "0.0.1",
"version": "0.0.2",
"exports": {
".": "./src/index.ts",
"./models/errors": "./src/models/errors/index.ts",

4
package-lock.json generated
View File

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

View File

@@ -1,6 +1,6 @@
{
"name": "prowlarr",
"version": "0.0.1",
"version": "0.0.2",
"author": "Speakeasy",
"type": "module",
"bin": {
@@ -22,6 +22,10 @@
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/LukeHagar/Prowlarr-TS-SDK.git"
},
"scripts": {
"lint": "eslint --cache --max-warnings=0 src",
"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 = {
language: "typescript",
openapiDocVersion: "1.0.0",
sdkVersion: "0.0.1",
genVersion: "2.604.2",
userAgent: "speakeasy-sdk/typescript 0.0.1 2.604.2 1.0.0 prowlarr",
sdkVersion: "0.0.2",
genVersion: "2.604.4",
userAgent: "speakeasy-sdk/typescript 0.0.2 2.604.4 1.0.0 prowlarr",
} as const;

View File

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

View File

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