import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1GatesControllerGenFullUpdateRequest = { /** * id */ id: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; gateFullUpdateDto: components.GateFullUpdateDto; }; /** * Update gate response */ export type ConsoleV1GatesControllerGenFullUpdateResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: components.ExternalGateDto; }; /** @internal */ export declare const ConsoleV1GatesControllerGenFullUpdateRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1GatesControllerGenFullUpdateRequest$Outbound = { id: string; "x-respect-review-settings"?: string | undefined; GateFullUpdateDto: components.GateFullUpdateDto$Outbound; }; /** @internal */ export declare const ConsoleV1GatesControllerGenFullUpdateRequest$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 ConsoleV1GatesControllerGenFullUpdateRequest$ { /** @deprecated use `ConsoleV1GatesControllerGenFullUpdateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1GatesControllerGenFullUpdateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1GatesControllerGenFullUpdateRequest$Outbound` instead. */ type Outbound = ConsoleV1GatesControllerGenFullUpdateRequest$Outbound; } /** @internal */ export declare const ConsoleV1GatesControllerGenFullUpdateResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1GatesControllerGenFullUpdateResponseBody$Outbound = { message: string; data: components.ExternalGateDto$Outbound; }; /** @internal */ export declare const ConsoleV1GatesControllerGenFullUpdateResponseBody$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 ConsoleV1GatesControllerGenFullUpdateResponseBody$ { /** @deprecated use `ConsoleV1GatesControllerGenFullUpdateResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1GatesControllerGenFullUpdateResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1GatesControllerGenFullUpdateResponseBody$Outbound` instead. */ type Outbound = ConsoleV1GatesControllerGenFullUpdateResponseBody$Outbound; } //# sourceMappingURL=consolev1gatescontrollergenfullupdate.d.ts.map