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