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