import * as z from "zod"; export type CompleteExternalUploadRequestBody = { /** * Optionally set this to true if the upload is for a private message. */ forPrivateMessage?: string | undefined; /** * Optionally set this to true if the upload is for a site setting. */ forSiteSetting?: string | undefined; /** * Optionally set this to true if the upload was pasted into the upload area. This will convert PNG files to JPEG. */ pasted?: string | undefined; /** * The unique identifier returned in the original /generate-presigned-put request. */ uniqueIdentifier: string; }; /** * external upload initialized */ export type CompleteExternalUploadResponseBody = { dominantColor?: string | null | undefined; extension: string; filesize: number; height: number; humanFilesize: string; id: number; originalFilename: string; retainHours: string | null; shortPath: string; shortUrl: string; thumbnailHeight: number; thumbnailWidth: number; url: string; width: number; }; /** @internal */ export declare const CompleteExternalUploadRequestBody$inboundSchema: z.ZodType; /** @internal */ export type CompleteExternalUploadRequestBody$Outbound = { for_private_message?: string | undefined; for_site_setting?: string | undefined; pasted?: string | undefined; unique_identifier: string; }; /** @internal */ export declare const CompleteExternalUploadRequestBody$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 CompleteExternalUploadRequestBody$ { /** @deprecated use `CompleteExternalUploadRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CompleteExternalUploadRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CompleteExternalUploadRequestBody$Outbound` instead. */ type Outbound = CompleteExternalUploadRequestBody$Outbound; } /** @internal */ export declare const CompleteExternalUploadResponseBody$inboundSchema: z.ZodType; /** @internal */ export type CompleteExternalUploadResponseBody$Outbound = { dominant_color?: string | null | undefined; extension: string; filesize: number; height: number; human_filesize: string; id: number; original_filename: string; retain_hours: string | null; short_path: string; short_url: string; thumbnail_height: number; thumbnail_width: number; url: string; width: number; }; /** @internal */ export declare const CompleteExternalUploadResponseBody$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 CompleteExternalUploadResponseBody$ { /** @deprecated use `CompleteExternalUploadResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CompleteExternalUploadResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CompleteExternalUploadResponseBody$Outbound` instead. */ type Outbound = CompleteExternalUploadResponseBody$Outbound; } //# sourceMappingURL=completeexternalupload.d.ts.map