import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1TargetAppControllerGenUpdateRequest = { /** * id */ id: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; updateTargetAppDto: components.UpdateTargetAppDto; }; /** * Update Target App Success */ export type ConsoleV1TargetAppControllerGenUpdateResponseBody = { message?: string | undefined; }; /** @internal */ export declare const ConsoleV1TargetAppControllerGenUpdateRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1TargetAppControllerGenUpdateRequest$Outbound = { id: string; "x-respect-review-settings"?: string | undefined; UpdateTargetAppDto: components.UpdateTargetAppDto$Outbound; }; /** @internal */ export declare const ConsoleV1TargetAppControllerGenUpdateRequest$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 ConsoleV1TargetAppControllerGenUpdateRequest$ { /** @deprecated use `ConsoleV1TargetAppControllerGenUpdateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TargetAppControllerGenUpdateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TargetAppControllerGenUpdateRequest$Outbound` instead. */ type Outbound = ConsoleV1TargetAppControllerGenUpdateRequest$Outbound; } /** @internal */ export declare const ConsoleV1TargetAppControllerGenUpdateResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1TargetAppControllerGenUpdateResponseBody$Outbound = { message?: string | undefined; }; /** @internal */ export declare const ConsoleV1TargetAppControllerGenUpdateResponseBody$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 ConsoleV1TargetAppControllerGenUpdateResponseBody$ { /** @deprecated use `ConsoleV1TargetAppControllerGenUpdateResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TargetAppControllerGenUpdateResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TargetAppControllerGenUpdateResponseBody$Outbound` instead. */ type Outbound = ConsoleV1TargetAppControllerGenUpdateResponseBody$Outbound; } //# sourceMappingURL=consolev1targetappcontrollergenupdate.d.ts.map