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