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