import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1GateOverridesControllerGenUpdateRequest = { /** * id */ id: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; updateOverridesContractDto: components.UpdateOverridesContractDto; }; /** * Update Gate Override Success */ export type ConsoleV1GateOverridesControllerGenUpdateResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; /** * Contract for overrides */ data: components.OverrideDto; }; /** @internal */ export declare const ConsoleV1GateOverridesControllerGenUpdateRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1GateOverridesControllerGenUpdateRequest$Outbound = { id: string; "x-respect-review-settings"?: string | undefined; UpdateOverridesContractDto: components.UpdateOverridesContractDto$Outbound; }; /** @internal */ export declare const ConsoleV1GateOverridesControllerGenUpdateRequest$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 ConsoleV1GateOverridesControllerGenUpdateRequest$ { /** @deprecated use `ConsoleV1GateOverridesControllerGenUpdateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1GateOverridesControllerGenUpdateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1GateOverridesControllerGenUpdateRequest$Outbound` instead. */ type Outbound = ConsoleV1GateOverridesControllerGenUpdateRequest$Outbound; } /** @internal */ export declare const ConsoleV1GateOverridesControllerGenUpdateResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1GateOverridesControllerGenUpdateResponseBody$Outbound = { message: string; data: components.OverrideDto$Outbound; }; /** @internal */ export declare const ConsoleV1GateOverridesControllerGenUpdateResponseBody$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 ConsoleV1GateOverridesControllerGenUpdateResponseBody$ { /** @deprecated use `ConsoleV1GateOverridesControllerGenUpdateResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1GateOverridesControllerGenUpdateResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1GateOverridesControllerGenUpdateResponseBody$Outbound` instead. */ type Outbound = ConsoleV1GateOverridesControllerGenUpdateResponseBody$Outbound; } //# sourceMappingURL=consolev1gateoverridescontrollergenupdate.d.ts.map