import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1ExperimentsControllerGenMakeDecisionRequest = { /** * id */ id: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; experimentStatusUpdateDto: components.ExperimentStatusUpdateDto; }; /** * Make Experiment Decision Success */ export type ConsoleV1ExperimentsControllerGenMakeDecisionResponseBody = { message?: string | undefined; }; /** @internal */ export declare const ConsoleV1ExperimentsControllerGenMakeDecisionRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1ExperimentsControllerGenMakeDecisionRequest$Outbound = { id: string; "x-respect-review-settings"?: string | undefined; ExperimentStatusUpdateDto: components.ExperimentStatusUpdateDto$Outbound; }; /** @internal */ export declare const ConsoleV1ExperimentsControllerGenMakeDecisionRequest$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 ConsoleV1ExperimentsControllerGenMakeDecisionRequest$ { /** @deprecated use `ConsoleV1ExperimentsControllerGenMakeDecisionRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenMakeDecisionRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenMakeDecisionRequest$Outbound` instead. */ type Outbound = ConsoleV1ExperimentsControllerGenMakeDecisionRequest$Outbound; } /** @internal */ export declare const ConsoleV1ExperimentsControllerGenMakeDecisionResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1ExperimentsControllerGenMakeDecisionResponseBody$Outbound = { message?: string | undefined; }; /** @internal */ export declare const ConsoleV1ExperimentsControllerGenMakeDecisionResponseBody$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 ConsoleV1ExperimentsControllerGenMakeDecisionResponseBody$ { /** @deprecated use `ConsoleV1ExperimentsControllerGenMakeDecisionResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenMakeDecisionResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenMakeDecisionResponseBody$Outbound` instead. */ type Outbound = ConsoleV1ExperimentsControllerGenMakeDecisionResponseBody$Outbound; } //# sourceMappingURL=consolev1experimentscontrollergenmakedecision.d.ts.map