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