/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 7ca419883cdd */ import * as z from "zod/v3"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; /** * The level of visual distinction that should be given to a result. * * @remarks */ export const SearchResultProminenceEnum = { /** * A high-confidence result that should feature prominently on the page. */ Hero: "HERO", /** * May not be the best result but should be given additional visual distinction. */ Promoted: "PROMOTED", /** * Should not be distinct from any other results. */ Standard: "STANDARD", } as const; /** * The level of visual distinction that should be given to a result. * * @remarks */ export type SearchResultProminenceEnum = OpenEnum< typeof SearchResultProminenceEnum >; /** @internal */ export const SearchResultProminenceEnum$inboundSchema: z.ZodType< SearchResultProminenceEnum, z.ZodTypeDef, unknown > = openEnums.inboundSchema(SearchResultProminenceEnum); /** @internal */ export const SearchResultProminenceEnum$outboundSchema: z.ZodType< string, z.ZodTypeDef, SearchResultProminenceEnum > = openEnums.outboundSchema(SearchResultProminenceEnum);