/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: be24f900d31f */ import * as z from "zod/v3"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; /** * The reason for inclusion of clusteredResults. */ export const ClusterTypeEnum = { Similar: "SIMILAR", Freshness: "FRESHNESS", Title: "TITLE", Content: "CONTENT", None: "NONE", ThreadReply: "THREAD_REPLY", ThreadRoot: "THREAD_ROOT", Prefix: "PREFIX", Suffix: "SUFFIX", AuthorPrefix: "AUTHOR_PREFIX", AuthorSuffix: "AUTHOR_SUFFIX", } as const; /** * The reason for inclusion of clusteredResults. */ export type ClusterTypeEnum = OpenEnum; /** @internal */ export const ClusterTypeEnum$inboundSchema: z.ZodType< ClusterTypeEnum, z.ZodTypeDef, unknown > = openEnums.inboundSchema(ClusterTypeEnum); /** @internal */ export const ClusterTypeEnum$outboundSchema: z.ZodType< string, z.ZodTypeDef, ClusterTypeEnum > = openEnums.outboundSchema(ClusterTypeEnum);