import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1KeysControllerGenUpdateRequest = { id: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; keyUpdateContractDto: components.KeyUpdateContractDto; }; /** * Key updated successfully */ export type ConsoleV1KeysControllerGenUpdateResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: components.KeyDto; }; /** @internal */ export declare const ConsoleV1KeysControllerGenUpdateRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1KeysControllerGenUpdateRequest$Outbound = { id: string; "x-respect-review-settings"?: string | undefined; KeyUpdateContractDto: components.KeyUpdateContractDto$Outbound; }; /** @internal */ export declare const ConsoleV1KeysControllerGenUpdateRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConsoleV1KeysControllerGenUpdateRequest$ { /** @deprecated use `ConsoleV1KeysControllerGenUpdateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1KeysControllerGenUpdateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1KeysControllerGenUpdateRequest$Outbound` instead. */ type Outbound = ConsoleV1KeysControllerGenUpdateRequest$Outbound; } /** @internal */ export declare const ConsoleV1KeysControllerGenUpdateResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1KeysControllerGenUpdateResponseBody$Outbound = { message: string; data: components.KeyDto$Outbound; }; /** @internal */ export declare const ConsoleV1KeysControllerGenUpdateResponseBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConsoleV1KeysControllerGenUpdateResponseBody$ { /** @deprecated use `ConsoleV1KeysControllerGenUpdateResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1KeysControllerGenUpdateResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1KeysControllerGenUpdateResponseBody$Outbound` instead. */ type Outbound = ConsoleV1KeysControllerGenUpdateResponseBody$Outbound; } //# sourceMappingURL=consolev1keyscontrollergenupdate.d.ts.map