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