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