mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 04:20:46 +00:00
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.213.0
This commit is contained in:
@@ -3,10 +3,10 @@ id: 16f22cbf-f23f-4419-8924-3a4b06381947
|
||||
management:
|
||||
docChecksum: e34dac84738ebf2d447ea2b9055a6eeb
|
||||
docVersion: 0.0.3
|
||||
speakeasyVersion: 1.209.3
|
||||
generationVersion: 2.281.2
|
||||
releaseVersion: 0.10.3
|
||||
configChecksum: 53d679e5b2a184e4f2eb4a8641521f70
|
||||
speakeasyVersion: 1.213.0
|
||||
generationVersion: 2.283.1
|
||||
releaseVersion: 0.10.4
|
||||
configChecksum: 79121d7caddd1a69343bca5df91689af
|
||||
repoURL: https://github.com/LukeHagar/plexjs.git
|
||||
repoSubDirectory: .
|
||||
installationURL: https://github.com/LukeHagar/plexjs
|
||||
@@ -14,9 +14,9 @@ management:
|
||||
features:
|
||||
typescript:
|
||||
constsAndDefaults: 0.1.5
|
||||
core: 3.6.1
|
||||
core: 3.6.3
|
||||
flattening: 2.81.1
|
||||
globalSecurity: 2.82.6
|
||||
globalSecurity: 2.82.8
|
||||
globalServerURLs: 2.82.4
|
||||
methodServerURLs: 2.82.1
|
||||
nameOverrides: 2.81.1
|
||||
|
||||
10
RELEASES.md
10
RELEASES.md
@@ -259,3 +259,13 @@ Based on:
|
||||
- [typescript v0.10.3] .
|
||||
### Releases
|
||||
- [NPM v0.10.3] https://www.npmjs.com/package/@lukehagar/plexjs/v/0.10.3 - .
|
||||
|
||||
## 2024-03-20 00:25:49
|
||||
### Changes
|
||||
Based on:
|
||||
- OpenAPI Doc
|
||||
- Speakeasy CLI 1.213.0 (2.283.1) https://github.com/speakeasy-api/speakeasy
|
||||
### Generated
|
||||
- [typescript v0.10.4] .
|
||||
### Releases
|
||||
- [NPM v0.10.4] https://www.npmjs.com/package/@lukehagar/plexjs/v/0.10.4 - .
|
||||
2
gen.yaml
2
gen.yaml
@@ -12,7 +12,7 @@ generation:
|
||||
auth:
|
||||
oAuth2ClientCredentialsEnabled: false
|
||||
typescript:
|
||||
version: 0.10.3
|
||||
version: 0.10.4
|
||||
additionalDependencies:
|
||||
dependencies: {}
|
||||
devDependencies: {}
|
||||
|
||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@lukehagar/plexjs",
|
||||
"version": "0.10.3",
|
||||
"version": "0.10.4",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@lukehagar/plexjs",
|
||||
"version": "0.10.3",
|
||||
"version": "0.10.4",
|
||||
"devDependencies": {
|
||||
"@types/jsonpath": "^0.2.4",
|
||||
"@typescript-eslint/eslint-plugin": "^6.13.2",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lukehagar/plexjs",
|
||||
"version": "0.10.3",
|
||||
"version": "0.10.4",
|
||||
"author": "LukeHagar",
|
||||
"main": "./index.js",
|
||||
"sideEffects": false,
|
||||
|
||||
@@ -82,7 +82,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
||||
export const SDK_METADATA = Object.freeze({
|
||||
language: "typescript",
|
||||
openapiDocVersion: "0.0.3",
|
||||
sdkVersion: "0.10.3",
|
||||
genVersion: "2.281.2",
|
||||
userAgent: "speakeasy-sdk/typescript 0.10.3 2.281.2 0.0.3 @lukehagar/plexjs",
|
||||
sdkVersion: "0.10.4",
|
||||
genVersion: "2.283.1",
|
||||
userAgent: "speakeasy-sdk/typescript 0.10.4 2.283.1 0.0.3 @lukehagar/plexjs",
|
||||
});
|
||||
|
||||
@@ -71,10 +71,10 @@ export class ClientSDK {
|
||||
|
||||
const headers = new Headers(opHeaders);
|
||||
|
||||
const username = security?.basic.username || "";
|
||||
const password = security?.basic.password || "";
|
||||
if (username || password) {
|
||||
const encoded = stringToBase64([username, password].join(":"));
|
||||
const username = security?.basic.username;
|
||||
const password = security?.basic.password;
|
||||
if (username != null || password != null) {
|
||||
const encoded = stringToBase64([username || "", password || ""].join(":"));
|
||||
headers.set("Authorization", `Basic ${encoded}`);
|
||||
}
|
||||
|
||||
|
||||
@@ -30,21 +30,15 @@ export class SecurityError extends Error {
|
||||
}
|
||||
|
||||
export type SecurityState = {
|
||||
basic: { username: string; password?: string };
|
||||
basic: { username?: string | undefined; password?: string | undefined };
|
||||
headers: Record<string, string>;
|
||||
queryParams: Record<string, string>;
|
||||
cookies: Record<string, string>;
|
||||
};
|
||||
|
||||
type SecurityInputBasicPacked = {
|
||||
type: "http:basic";
|
||||
value: { username: string; password?: string } | null | undefined;
|
||||
};
|
||||
|
||||
type SecurityInputBasic = {
|
||||
type: "http:basic";
|
||||
value: string | null | undefined;
|
||||
fieldName: "username" | "password";
|
||||
value: { username?: string | undefined; password?: string | undefined } | null | undefined;
|
||||
};
|
||||
|
||||
type SecurityInputBearer = {
|
||||
@@ -79,7 +73,6 @@ type SecurityInputOAuth2ClientCredentials = {
|
||||
|
||||
export type SecurityInput =
|
||||
| SecurityInputBasic
|
||||
| SecurityInputBasicPacked
|
||||
| SecurityInputBearer
|
||||
| SecurityInputAPIKey
|
||||
| SecurityInputOAuth2
|
||||
@@ -94,7 +87,22 @@ export function resolveSecurity(...options: SecurityInput[][]): SecurityState |
|
||||
cookies: {},
|
||||
};
|
||||
|
||||
const option = options.find((opts) => opts.every((o) => Boolean(o.value)));
|
||||
const option = options.find((opts) => {
|
||||
return opts.every((o) => {
|
||||
switch (true) {
|
||||
case o.value == null:
|
||||
return false;
|
||||
case o.type === "http:basic":
|
||||
return o.value.username != null || o.value.password != null;
|
||||
case typeof o.value === "string":
|
||||
return !!o.value;
|
||||
default:
|
||||
throw new Error(
|
||||
`Unrecognized security type: ${o.type} (value type: ${typeof o.value})`
|
||||
);
|
||||
}
|
||||
});
|
||||
});
|
||||
if (option == null) {
|
||||
return null;
|
||||
}
|
||||
@@ -139,17 +147,13 @@ export function resolveSecurity(...options: SecurityInput[][]): SecurityState |
|
||||
return state;
|
||||
}
|
||||
|
||||
function applyBasic(state: SecurityState, spec: SecurityInputBasic | SecurityInputBasicPacked) {
|
||||
function applyBasic(state: SecurityState, spec: SecurityInputBasic) {
|
||||
if (spec.value == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ("fieldName" in spec) {
|
||||
state.basic[spec.fieldName] = spec.value;
|
||||
} else {
|
||||
state.basic = spec.value;
|
||||
}
|
||||
}
|
||||
|
||||
function applyBearer(
|
||||
state: SecurityState,
|
||||
@@ -168,6 +172,10 @@ function applyBearer(
|
||||
}
|
||||
export function resolveGlobalSecurity(security: Partial<components.Security> | null | undefined) {
|
||||
return resolveSecurity([
|
||||
{ value: security?.accessToken, fieldName: "X-Plex-Token", type: "apiKey:header" },
|
||||
{
|
||||
fieldName: "X-Plex-Token",
|
||||
type: "apiKey:header",
|
||||
value: security?.accessToken,
|
||||
},
|
||||
]);
|
||||
}
|
||||
|
||||
@@ -116,6 +116,7 @@ export namespace AddPlaylistContentsResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<AddPlaylistContentsErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace ApplyUpdatesResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<ApplyUpdatesErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -119,6 +119,7 @@ export namespace CancelServerActivitiesResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<CancelServerActivitiesErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace CheckForUpdatesResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<CheckForUpdatesErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -119,6 +119,7 @@ export namespace ClearPlaylistContentsResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<ClearPlaylistContentsErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace CreatePlaylistResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<CreatePlaylistErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace DeleteLibraryResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<DeleteLibraryErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace DeletePlaylistResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<DeletePlaylistErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace EnablePaperTrailResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<EnablePaperTrailErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -116,6 +116,7 @@ export namespace GetAvailableClientsResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetAvailableClientsErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetButlerTasksResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetButlerTasksErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetDevicesResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetDevicesErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetFileHashResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetFileHashErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetGlobalHubsResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetGlobalHubsErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetLibrariesResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetLibrariesErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetLibraryResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetLibraryErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetLibraryHubsResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetLibraryHubsErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetMetadataResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetMetadataErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -116,6 +116,7 @@ export namespace GetMetadataChildrenResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetMetadataChildrenErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetMyPlexAccountResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetMyPlexAccountErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetOnDeckResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetOnDeckErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetPinResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetPinErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetPlaylistResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetPlaylistErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -116,6 +116,7 @@ export namespace GetPlaylistContentsResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetPlaylistContentsErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetPlaylistsResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetPlaylistsErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetRecentlyAddedResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetRecentlyAddedErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetResizedPhotoResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetResizedPhotoErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetSearchResultsResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetSearchResultsErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -116,6 +116,7 @@ export namespace GetServerActivitiesResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetServerActivitiesErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -119,6 +119,7 @@ export namespace GetServerCapabilitiesResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<Errors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetServerIdentityResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetServerIdentityErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetServerListResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetServerListErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -116,6 +116,7 @@ export namespace GetServerPreferencesResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetServerPreferencesErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetSessionHistoryResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetSessionHistoryErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetSessionsResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetSessionsErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -129,6 +129,7 @@ export namespace GetSourceConnectionInformationResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetSourceConnectionInformationErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetStatisticsResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetStatisticsErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetTimelineResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetTimelineErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetTokenResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetTokenErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -116,6 +116,7 @@ export namespace GetTranscodeSessionsResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetTranscodeSessionsErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetTransientTokenResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetTransientTokenErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace GetUpdateStatusResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<GetUpdateStatusErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace LogLineResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<LogLineErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace LogMultiLineResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<LogMultiLineErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace MarkPlayedResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<MarkPlayedErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace MarkUnplayedResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<MarkUnplayedErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace PerformSearchResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<PerformSearchErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace PerformVoiceSearchResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<PerformVoiceSearchErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace RefreshLibraryResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<RefreshLibraryErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace StartAllTasksResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<StartAllTasksErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace StartTaskResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<StartTaskErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -120,6 +120,7 @@ export namespace StartUniversalTranscodeResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<StartUniversalTranscodeErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace StopAllTasksResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<StopAllTasksErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace StopTaskResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<StopTaskErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -116,6 +116,7 @@ export namespace StopTranscodeSessionResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<StopTranscodeSessionErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace UpdatePlaylistResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<UpdatePlaylistErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace UpdatePlayProgressResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<UpdatePlayProgressErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
@@ -115,6 +115,7 @@ export namespace UploadPlaylistResponseBody$ {
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
errors?: Array<UploadPlaylistErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
|
||||
Reference in New Issue
Block a user