/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 6c54afefbaa5 */ import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * The type of resources to include in the archive. "image" for images, "video" for videos, "raw" for non-media files, or "all" for mixed types. */ export const ArchiveResourceType = { Image: "image", Video: "video", Raw: "raw", All: "all", } as const; /** * The type of resources to include in the archive. "image" for images, "video" for videos, "raw" for non-media files, or "all" for mixed types. */ export type ArchiveResourceType = ClosedEnum; export const ArchiveResourceType$zodSchema = z.enum([ "image", "video", "raw", "all", ]).describe( "The type of resources to include in the archive. \"image\" for images, \"video\" for videos, \"raw\" for non-media files, or \"all\" for mixed types.", );