import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1ChangeValidationControllerChangeValidationRequest = { /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; changeValidationDto: components.ChangeValidationDto; }; /** * Change Validation Success */ export type ConsoleV1ChangeValidationControllerChangeValidationResponseBody = { message?: string | undefined; }; /** @internal */ export declare const ConsoleV1ChangeValidationControllerChangeValidationRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1ChangeValidationControllerChangeValidationRequest$Outbound = { "x-respect-review-settings"?: string | undefined; ChangeValidationDto: components.ChangeValidationDto$Outbound; }; /** @internal */ export declare const ConsoleV1ChangeValidationControllerChangeValidationRequest$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 ConsoleV1ChangeValidationControllerChangeValidationRequest$ { /** @deprecated use `ConsoleV1ChangeValidationControllerChangeValidationRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ChangeValidationControllerChangeValidationRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ChangeValidationControllerChangeValidationRequest$Outbound` instead. */ type Outbound = ConsoleV1ChangeValidationControllerChangeValidationRequest$Outbound; } /** @internal */ export declare const ConsoleV1ChangeValidationControllerChangeValidationResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1ChangeValidationControllerChangeValidationResponseBody$Outbound = { message?: string | undefined; }; /** @internal */ export declare const ConsoleV1ChangeValidationControllerChangeValidationResponseBody$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 ConsoleV1ChangeValidationControllerChangeValidationResponseBody$ { /** @deprecated use `ConsoleV1ChangeValidationControllerChangeValidationResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ChangeValidationControllerChangeValidationResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ChangeValidationControllerChangeValidationResponseBody$Outbound` instead. */ type Outbound = ConsoleV1ChangeValidationControllerChangeValidationResponseBody$Outbound; } //# sourceMappingURL=consolev1changevalidationcontrollerchangevalidation.d.ts.map