ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.133.1

This commit is contained in:
speakeasybot
2024-01-05 19:51:55 +00:00
parent e5abca0f3c
commit f306faa1ff
7 changed files with 24 additions and 20 deletions

View File

@@ -1,19 +1,19 @@
lockVersion: 2.0.0 lockVersion: 2.0.0
id: 16f22cbf-f23f-4419-8924-3a4b06381947 id: 16f22cbf-f23f-4419-8924-3a4b06381947
management: management:
docChecksum: 550154cf1b4d0c237436fb18c418b5db docChecksum: 34d22936f2456c2c461abdfc773e3fc4
docVersion: 0.0.3 docVersion: 0.0.3
speakeasyVersion: internal speakeasyVersion: internal
generationVersion: 2.225.2 generationVersion: 2.228.1
releaseVersion: 0.3.0 releaseVersion: 0.3.1
configChecksum: 03bc1554ced01bb60e8383b315b7625f configChecksum: 708deaec8a7918d4523ce16e1e18874a
repoURL: https://github.com/LukeHagar/plexjs.git repoURL: https://github.com/LukeHagar/plexjs.git
repoSubDirectory: . repoSubDirectory: .
installationURL: https://github.com/LukeHagar/plexjs installationURL: https://github.com/LukeHagar/plexjs
published: true published: true
features: features:
typescript: typescript:
core: 3.4.1 core: 3.4.2
flattening: 2.81.1 flattening: 2.81.1
globalSecurity: 2.82.2 globalSecurity: 2.82.2
globalServerURLs: 2.82.1 globalServerURLs: 2.82.1

View File

@@ -202,8 +202,7 @@ You can override the default server globally by passing a server index to the `s
| # | Server | Variables | | # | Server | Variables |
| - | ------ | --------- | | - | ------ | --------- |
| 0 | `http://10.10.10.47:32400` | None | | 0 | `{protocol}://{ip}:{port}` | `protocol` (default is `http`), `ip` (default is `10.10.10.47`), `port` (default is `32400`) |
| 1 | `{protocol}://{ip}:{port}` | `protocol` (default is `http`), `ip` (default is `10.10.10.47`), `port` (default is `32400`) |

View File

@@ -38,4 +38,14 @@ Based on:
### Generated ### Generated
- [typescript v0.3.0] . - [typescript v0.3.0] .
### Releases ### Releases
- [NPM v0.3.0] https://www.npmjs.com/package/@lukehagar/plexjs/v/0.3.0 - . - [NPM v0.3.0] https://www.npmjs.com/package/@lukehagar/plexjs/v/0.3.0 - .
## 2024-01-05 19:51:02
### Changes
Based on:
- OpenAPI Doc 0.0.3
- Speakeasy CLI 1.133.1 (2.228.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [typescript v0.3.1] .
### Releases
- [NPM v0.3.1] https://www.npmjs.com/package/@lukehagar/plexjs/v/0.3.1 - .

View File

@@ -8,7 +8,7 @@ generation:
fixes: fixes:
nameResolutionDec2023: false nameResolutionDec2023: false
typescript: typescript:
version: 0.3.0 version: 0.3.1
author: LukeHagar author: LukeHagar
clientServerStatusCodesAsErrors: true clientServerStatusCodesAsErrors: true
flattenGlobalSecurity: true flattenGlobalSecurity: true

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "@lukehagar/plexjs", "name": "@lukehagar/plexjs",
"version": "0.3.0", "version": "0.3.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@lukehagar/plexjs", "name": "@lukehagar/plexjs",
"version": "0.3.0", "version": "0.3.1",
"dependencies": { "dependencies": {
"decimal.js": "^10.4.3", "decimal.js": "^10.4.3",
"jsonpath": "^1.1.1" "jsonpath": "^1.1.1"

View File

@@ -1,7 +1,7 @@
{ {
"type": "commonjs", "type": "commonjs",
"name": "@lukehagar/plexjs", "name": "@lukehagar/plexjs",
"version": "0.3.0", "version": "0.3.1",
"author": "LukeHagar", "author": "LukeHagar",
"main": "./index.js", "main": "./index.js",
"sideEffects": false, "sideEffects": false,

View File

@@ -10,10 +10,6 @@ import { RetryConfig } from "./retries";
* Contains the list of servers available to the SDK * Contains the list of servers available to the SDK
*/ */
export const ServerList = [ export const ServerList = [
/**
* The full address of your Plex Server
*/
"http://10.10.10.47:32400",
/** /**
* The full address of your Plex Server * The full address of your Plex Server
*/ */
@@ -62,7 +58,6 @@ export function serverURLFromOptions(options: SDKOptions): URL {
let serverURL = options.serverURL; let serverURL = options.serverURL;
const serverParams = [ const serverParams = [
{},
{ {
protocol: options.protocol?.toString() ?? "http", protocol: options.protocol?.toString() ?? "http",
ip: options.ip?.toString() ?? "10.10.10.47", ip: options.ip?.toString() ?? "10.10.10.47",
@@ -84,7 +79,7 @@ export function serverURLFromOptions(options: SDKOptions): URL {
export const SDK_METADATA = Object.freeze({ export const SDK_METADATA = Object.freeze({
language: "typescript", language: "typescript",
openapiDocVersion: "0.0.3", openapiDocVersion: "0.0.3",
sdkVersion: "0.3.0", sdkVersion: "0.3.1",
genVersion: "2.225.2", genVersion: "2.228.1",
userAgent: "speakeasy-sdk/typescript 0.3.0 2.225.2 0.0.3 @lukehagar/plexjs", userAgent: "speakeasy-sdk/typescript 0.3.1 2.228.1 0.0.3 @lukehagar/plexjs",
}); });