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