import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKError } from "./sdkerror.js"; import { SDKValidationError } from "./sdkvalidationerror.js"; /** * Internal server error */ export type GetJwtFromKeyAuthApiKeyResponseResponseBodyData = { /** * Error message describing why the request failed. */ message: string; }; /** * Internal server error */ export declare class GetJwtFromKeyAuthApiKeyResponseResponseBody extends SDKError { /** The original data that was passed to this error instance. */ data$: GetJwtFromKeyAuthApiKeyResponseResponseBodyData; constructor(err: GetJwtFromKeyAuthApiKeyResponseResponseBodyData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized */ export type GetJwtFromKeyAuthApiKeyResponseBodyData = { /** * Error message describing why the request failed. */ message: string; }; /** * Unauthorized */ export declare class GetJwtFromKeyAuthApiKeyResponseBody extends SDKError { /** The original data that was passed to this error instance. */ data$: GetJwtFromKeyAuthApiKeyResponseBodyData; constructor(err: GetJwtFromKeyAuthApiKeyResponseBodyData, httpMeta: { response: Response; request: Request; body: string; }); } export type Details = { /** * Dot-path of the invalid field in the request body. */ path: string; /** * Validation error message for the field. */ message: string; }; /** * Invalid request body */ export type GetJwtFromKeyResponseBodyData = { /** * Top-level validation error summary for the request body. */ message: string; /** * List of field-level validation errors. */ details: Array
; }; /** * Invalid request body */ export declare class GetJwtFromKeyResponseBody extends SDKError { /** * List of field-level validation errors. */ details: Array
; /** The original data that was passed to this error instance. */ data$: GetJwtFromKeyResponseBodyData; constructor(err: GetJwtFromKeyResponseBodyData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetJwtFromKeyAuthApiKeyResponseResponseBody$inboundSchema: z.ZodType; /** @internal */ export type GetJwtFromKeyAuthApiKeyResponseResponseBody$Outbound = { message: string; }; /** @internal */ export declare const GetJwtFromKeyAuthApiKeyResponseResponseBody$outboundSchema: z.ZodType; /** @internal */ export declare const GetJwtFromKeyAuthApiKeyResponseBody$inboundSchema: z.ZodType; /** @internal */ export type GetJwtFromKeyAuthApiKeyResponseBody$Outbound = { message: string; }; /** @internal */ export declare const GetJwtFromKeyAuthApiKeyResponseBody$outboundSchema: z.ZodType; /** @internal */ export declare const Details$inboundSchema: z.ZodType; /** @internal */ export type Details$Outbound = { path: string; message: string; }; /** @internal */ export declare const Details$outboundSchema: z.ZodType; export declare function detailsToJSON(details: Details): string; export declare function detailsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetJwtFromKeyResponseBody$inboundSchema: z.ZodType; /** @internal */ export type GetJwtFromKeyResponseBody$Outbound = { message: string; details: Array; }; /** @internal */ export declare const GetJwtFromKeyResponseBody$outboundSchema: z.ZodType; //# sourceMappingURL=getjwtfromkey.d.ts.map