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