mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-09 20:47:47 +00:00
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.295.1
This commit is contained in:
@@ -56,13 +56,7 @@ export class GetServerCapabilitiesResponseBody extends Error {
|
||||
|
||||
/** @internal */
|
||||
export namespace Errors$ {
|
||||
export type Inbound = {
|
||||
code?: number | undefined;
|
||||
message?: string | undefined;
|
||||
status?: number | undefined;
|
||||
};
|
||||
|
||||
export const inboundSchema: z.ZodType<Errors, z.ZodTypeDef, Inbound> = z
|
||||
export const inboundSchema: z.ZodType<Errors, z.ZodTypeDef, unknown> = z
|
||||
.object({
|
||||
code: z.number().optional(),
|
||||
message: z.string().optional(),
|
||||
@@ -99,15 +93,10 @@ export namespace Errors$ {
|
||||
|
||||
/** @internal */
|
||||
export namespace GetServerCapabilitiesResponseBody$ {
|
||||
export type Inbound = {
|
||||
errors?: Array<Errors$.Inbound> | undefined;
|
||||
RawResponse?: Response | undefined;
|
||||
};
|
||||
|
||||
export const inboundSchema: z.ZodType<
|
||||
GetServerCapabilitiesResponseBody,
|
||||
z.ZodTypeDef,
|
||||
Inbound
|
||||
unknown
|
||||
> = z
|
||||
.object({
|
||||
errors: z.array(z.lazy(() => Errors$.inboundSchema)).optional(),
|
||||
|
||||
Reference in New Issue
Block a user