import z from 'zod'; export enum EnumValues { Keyword = 'keyword', Semantic = 'semantic', Question = 'question', } export const zSearchTypes = z.nativeEnum(EnumValues); export type SearchTypes = z.infer;