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