import * as z from "zod"; /** * Schema for updating user information. */ export type UserUpdateDto = { /** * Update the user's role. Can be 'Admin', 'Read Only', 'Member', or any custom role name. */ role?: string | undefined; /** * Update the user's first name. */ firstName?: string | undefined; /** * Update the user's last name. */ lastName?: string | undefined; }; /** @internal */ export declare const UserUpdateDto$inboundSchema: z.ZodType; /** @internal */ export type UserUpdateDto$Outbound = { role?: string | undefined; firstName?: string | undefined; lastName?: string | undefined; }; /** @internal */ export declare const UserUpdateDto$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 UserUpdateDto$ { /** @deprecated use `UserUpdateDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UserUpdateDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UserUpdateDto$Outbound` instead. */ type Outbound = UserUpdateDto$Outbound; } //# sourceMappingURL=userupdatedto.d.ts.map