/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: af4f0b0a39e6 */ import * as z from "zod/v3"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; /** * The type of entity. */ export const EntityType = { Person: "PERSON", Project: "PROJECT", Customer: "CUSTOMER", } as const; /** * The type of entity. */ export type EntityType = OpenEnum; /** @internal */ export const EntityType$inboundSchema: z.ZodType< EntityType, z.ZodTypeDef, unknown > = openEnums.inboundSchema(EntityType); /** @internal */ export const EntityType$outboundSchema: z.ZodType< string, z.ZodTypeDef, EntityType > = openEnums.outboundSchema(EntityType);