import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceRequest = { /** * Name of the assignment source */ name: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; assignmentSourcePartialUpdateDto: components.AssignmentSourcePartialUpdateDto; }; /** * Patch Assignment Source response */ export type ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: components.AssignmentSourceContractDto; }; /** @internal */ export declare const ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceRequest$Outbound = { name: string; "x-respect-review-settings"?: string | undefined; AssignmentSourcePartialUpdateDto: components.AssignmentSourcePartialUpdateDto$Outbound; }; /** @internal */ export declare const ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceRequest$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 ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceRequest$ { /** @deprecated use `ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceRequest$Outbound` instead. */ type Outbound = ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceRequest$Outbound; } /** @internal */ export declare const ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceResponseBody$Outbound = { message: string; data: components.AssignmentSourceContractDto$Outbound; }; /** @internal */ export declare const ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceResponseBody$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 ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceResponseBody$ { /** @deprecated use `ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceResponseBody$Outbound` instead. */ type Outbound = ConsoleV1ExperimentsControllerGenUpdateAssignmentSourceResponseBody$Outbound; } //# sourceMappingURL=consolev1experimentscontrollergenupdateassignmentsource.d.ts.map