mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 12:37:46 +00:00
ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.129.1
This commit is contained in:
155
src/models/errors/startuniversaltranscode.ts
Normal file
155
src/models/errors/startuniversaltranscode.ts
Normal file
@@ -0,0 +1,155 @@
|
||||
/*
|
||||
* Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
||||
*/
|
||||
|
||||
import { z } from "zod";
|
||||
|
||||
export type StartUniversalTranscodeErrors = {
|
||||
code?: number | undefined;
|
||||
message?: string | undefined;
|
||||
status?: number | undefined;
|
||||
};
|
||||
|
||||
/**
|
||||
* Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
*/
|
||||
export type StartUniversalTranscodeResponseBodyData = {
|
||||
errors?: Array<StartUniversalTranscodeErrors> | undefined;
|
||||
/**
|
||||
* Raw HTTP response; suitable for custom response parsing
|
||||
*/
|
||||
rawResponse?: Response | undefined;
|
||||
};
|
||||
|
||||
/**
|
||||
* Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
*/
|
||||
export class StartUniversalTranscodeResponseBody extends Error {
|
||||
errors?: Array<StartUniversalTranscodeErrors> | undefined;
|
||||
/**
|
||||
* Raw HTTP response; suitable for custom response parsing
|
||||
*/
|
||||
rawResponse?: Response | undefined;
|
||||
|
||||
/** The original data that was passed to this error instance. */
|
||||
data$: StartUniversalTranscodeResponseBodyData;
|
||||
|
||||
constructor(err: StartUniversalTranscodeResponseBodyData, options?: ErrorOptions) {
|
||||
super("", options);
|
||||
this.data$ = err;
|
||||
|
||||
if (err.errors != null) {
|
||||
this.errors = err.errors;
|
||||
}
|
||||
if (err.rawResponse != null) {
|
||||
this.rawResponse = err.rawResponse;
|
||||
}
|
||||
|
||||
const msg = "message" in err && typeof err.message === "string" ? err.message : "";
|
||||
const { rawResponse, ...data } = err;
|
||||
const content = JSON.stringify(data);
|
||||
this.message = [msg, content].filter(Boolean).join("\n");
|
||||
|
||||
this.name = "StartUniversalTranscodeResponseBody";
|
||||
}
|
||||
}
|
||||
|
||||
/** @internal */
|
||||
export namespace StartUniversalTranscodeErrors$ {
|
||||
export type Inbound = {
|
||||
code?: number | undefined;
|
||||
message?: string | undefined;
|
||||
status?: number | undefined;
|
||||
};
|
||||
|
||||
export const inboundSchema: z.ZodType<StartUniversalTranscodeErrors, z.ZodTypeDef, Inbound> = z
|
||||
.object({
|
||||
code: z.number().optional(),
|
||||
message: z.string().optional(),
|
||||
status: z.number().optional(),
|
||||
})
|
||||
.transform((v) => {
|
||||
return {
|
||||
...(v.code === undefined ? null : { code: v.code }),
|
||||
...(v.message === undefined ? null : { message: v.message }),
|
||||
...(v.status === undefined ? null : { status: v.status }),
|
||||
};
|
||||
});
|
||||
|
||||
export type Outbound = {
|
||||
code?: number | undefined;
|
||||
message?: string | undefined;
|
||||
status?: number | undefined;
|
||||
};
|
||||
|
||||
export const outboundSchema: z.ZodType<Outbound, z.ZodTypeDef, StartUniversalTranscodeErrors> =
|
||||
z
|
||||
.object({
|
||||
code: z.number().optional(),
|
||||
message: z.string().optional(),
|
||||
status: z.number().optional(),
|
||||
})
|
||||
.transform((v) => {
|
||||
return {
|
||||
...(v.code === undefined ? null : { code: v.code }),
|
||||
...(v.message === undefined ? null : { message: v.message }),
|
||||
...(v.status === undefined ? null : { status: v.status }),
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
/** @internal */
|
||||
export namespace StartUniversalTranscodeResponseBody$ {
|
||||
export type Inbound = {
|
||||
errors?: Array<StartUniversalTranscodeErrors$.Inbound> | undefined;
|
||||
RawResponse?: Response | undefined;
|
||||
};
|
||||
|
||||
export const inboundSchema: z.ZodType<
|
||||
StartUniversalTranscodeResponseBody,
|
||||
z.ZodTypeDef,
|
||||
Inbound
|
||||
> = z
|
||||
.object({
|
||||
errors: z.array(z.lazy(() => StartUniversalTranscodeErrors$.inboundSchema)).optional(),
|
||||
RawResponse: z.instanceof(Response).optional(),
|
||||
})
|
||||
.transform((v) => {
|
||||
return new StartUniversalTranscodeResponseBody({
|
||||
...(v.errors === undefined ? null : { errors: v.errors }),
|
||||
...(v.RawResponse === undefined ? null : { rawResponse: v.RawResponse }),
|
||||
});
|
||||
});
|
||||
export type Outbound = {
|
||||
errors?: Array<StartUniversalTranscodeErrors$.Outbound> | undefined;
|
||||
RawResponse?: never | undefined;
|
||||
};
|
||||
|
||||
export const outboundSchema: z.ZodType<
|
||||
Outbound,
|
||||
z.ZodTypeDef,
|
||||
StartUniversalTranscodeResponseBody
|
||||
> = z
|
||||
.instanceof(StartUniversalTranscodeResponseBody)
|
||||
.transform((v) => v.data$)
|
||||
.pipe(
|
||||
z
|
||||
.object({
|
||||
errors: z
|
||||
.array(z.lazy(() => StartUniversalTranscodeErrors$.outboundSchema))
|
||||
.optional(),
|
||||
rawResponse: z
|
||||
.instanceof(Response)
|
||||
.transform(() => {
|
||||
throw new Error("Response cannot be serialized");
|
||||
})
|
||||
.optional(),
|
||||
})
|
||||
.transform((v) => {
|
||||
return {
|
||||
...(v.errors === undefined ? null : { errors: v.errors }),
|
||||
...(v.rawResponse === undefined ? null : { RawResponse: v.rawResponse }),
|
||||
};
|
||||
})
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user