import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; export declare const UpdateAvatarType: { readonly Uploaded: "uploaded"; readonly Custom: "custom"; readonly Gravatar: "gravatar"; readonly System: "system"; }; export type UpdateAvatarType = ClosedEnum; export type UpdateAvatarRequestBody = { type: UpdateAvatarType; uploadId: number; }; export type UpdateAvatarRequest = { requestBody?: UpdateAvatarRequestBody | undefined; username: string; }; /** * avatar updated */ export type UpdateAvatarResponseBody = { success: string; }; /** @internal */ export declare const UpdateAvatarType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const UpdateAvatarType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace UpdateAvatarType$ { /** @deprecated use `UpdateAvatarType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Uploaded: "uploaded"; readonly Custom: "custom"; readonly Gravatar: "gravatar"; readonly System: "system"; }>; /** @deprecated use `UpdateAvatarType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Uploaded: "uploaded"; readonly Custom: "custom"; readonly Gravatar: "gravatar"; readonly System: "system"; }>; } /** @internal */ export declare const UpdateAvatarRequestBody$inboundSchema: z.ZodType; /** @internal */ export type UpdateAvatarRequestBody$Outbound = { type: string; upload_id: number; }; /** @internal */ export declare const UpdateAvatarRequestBody$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 UpdateAvatarRequestBody$ { /** @deprecated use `UpdateAvatarRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateAvatarRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateAvatarRequestBody$Outbound` instead. */ type Outbound = UpdateAvatarRequestBody$Outbound; } /** @internal */ export declare const UpdateAvatarRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateAvatarRequest$Outbound = { RequestBody?: UpdateAvatarRequestBody$Outbound | undefined; username: string; }; /** @internal */ export declare const UpdateAvatarRequest$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 UpdateAvatarRequest$ { /** @deprecated use `UpdateAvatarRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateAvatarRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateAvatarRequest$Outbound` instead. */ type Outbound = UpdateAvatarRequest$Outbound; } /** @internal */ export declare const UpdateAvatarResponseBody$inboundSchema: z.ZodType; /** @internal */ export type UpdateAvatarResponseBody$Outbound = { success: string; }; /** @internal */ export declare const UpdateAvatarResponseBody$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 UpdateAvatarResponseBody$ { /** @deprecated use `UpdateAvatarResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateAvatarResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateAvatarResponseBody$Outbound` instead. */ type Outbound = UpdateAvatarResponseBody$Outbound; } //# sourceMappingURL=updateavatar.d.ts.map