/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 11ea3e94c956 */ import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * The status of a person. */ export const PersonStatus = { Active: "active", Hidden: "hidden", } as const; /** * The status of a person. */ export type PersonStatus = ClosedEnum; export const PersonStatus$zodSchema = z.enum([ "active", "hidden", ]).describe("The status of a person.");