Compare commits

...

1 Commits

Author SHA1 Message Date
speakeasybot
0d73a769fb ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.231.1 2024-04-02 00:28:18 +00:00
7 changed files with 33 additions and 24 deletions

View File

@@ -3,10 +3,10 @@ id: 16f22cbf-f23f-4419-8924-3a4b06381947
management: management:
docChecksum: a91eaf9ec1e6a3a6f4bf0571f5b18bae docChecksum: a91eaf9ec1e6a3a6f4bf0571f5b18bae
docVersion: 0.0.3 docVersion: 0.0.3
speakeasyVersion: 1.228.1 speakeasyVersion: 1.231.1
generationVersion: 2.292.0 generationVersion: 2.295.1
releaseVersion: 0.12.0 releaseVersion: 0.12.1
configChecksum: 96c0b6a9e85b7682aef0863ada1e00a7 configChecksum: 8d21b1fe71b049ddde2e7694c17c983b
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
@@ -16,7 +16,7 @@ features:
constsAndDefaults: 0.1.5 constsAndDefaults: 0.1.5
core: 3.7.0 core: 3.7.0
flattening: 2.81.1 flattening: 2.81.1
globalSecurity: 2.82.8 globalSecurity: 2.82.9
globalServerURLs: 2.82.4 globalServerURLs: 2.82.4
globals: 2.82.1 globals: 2.82.1
methodServerURLs: 2.82.1 methodServerURLs: 2.82.1

View File

@@ -288,4 +288,14 @@ Based on:
### Generated ### Generated
- [typescript v0.12.0] . - [typescript v0.12.0] .
### Releases ### Releases
- [NPM v0.12.0] https://www.npmjs.com/package/@lukehagar/plexjs/v/0.12.0 - . - [NPM v0.12.0] https://www.npmjs.com/package/@lukehagar/plexjs/v/0.12.0 - .
## 2024-04-02 00:26:20
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.231.1 (2.295.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [typescript v0.12.1] .
### Releases
- [NPM v0.12.1] https://www.npmjs.com/package/@lukehagar/plexjs/v/0.12.1 - .

View File

@@ -12,7 +12,7 @@ generation:
auth: auth:
oAuth2ClientCredentialsEnabled: false oAuth2ClientCredentialsEnabled: false
typescript: typescript:
version: 0.12.0 version: 0.12.1
additionalDependencies: additionalDependencies:
dependencies: {} dependencies: {}
devDependencies: {} devDependencies: {}

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "@lukehagar/plexjs", "name": "@lukehagar/plexjs",
"version": "0.12.0", "version": "0.12.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@lukehagar/plexjs", "name": "@lukehagar/plexjs",
"version": "0.12.0", "version": "0.12.1",
"devDependencies": { "devDependencies": {
"@types/jsonpath": "^0.2.4", "@types/jsonpath": "^0.2.4",
"@typescript-eslint/eslint-plugin": "^6.13.2", "@typescript-eslint/eslint-plugin": "^6.13.2",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@lukehagar/plexjs", "name": "@lukehagar/plexjs",
"version": "0.12.0", "version": "0.12.1",
"author": "LukeHagar", "author": "LukeHagar",
"main": "./index.js", "main": "./index.js",
"sideEffects": false, "sideEffects": false,

View File

@@ -87,7 +87,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
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.12.0", sdkVersion: "0.12.1",
genVersion: "2.292.0", genVersion: "2.295.1",
userAgent: "speakeasy-sdk/typescript 0.12.0 2.292.0 0.0.3 @lukehagar/plexjs", userAgent: "speakeasy-sdk/typescript 0.12.1 2.295.1 0.0.3 @lukehagar/plexjs",
}); });

View File

@@ -89,17 +89,16 @@ export function resolveSecurity(...options: SecurityInput[][]): SecurityState |
const option = options.find((opts) => { const option = options.find((opts) => {
return opts.every((o) => { return opts.every((o) => {
switch (true) { if (o.value == null) {
case o.value == null: return false;
return false; } else if (o.type === "http:basic") {
case o.type === "http:basic": return o.value.username != null || o.value.password != null;
return o.value.username != null || o.value.password != null; } else if (typeof o.value === "string") {
case typeof o.value === "string": return !!o.value;
return !!o.value; } else {
default: throw new Error(
throw new Error( `Unrecognized security type: ${o.type} (value type: ${typeof o.value})`
`Unrecognized security type: ${o.type} (value type: ${typeof o.value})` );
);
} }
}); });
}); });