/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const EntityChangeBehaviour = { Carry: "carry", Drop: "drop", Add: "add", } as const; export type EntityChangeBehaviour = OpenEnum; /** @internal */ export const EntityChangeBehaviour$inboundSchema: z.ZodMiniType< EntityChangeBehaviour, unknown > = openEnums.inboundSchema(EntityChangeBehaviour); /** @internal */ export const EntityChangeBehaviour$outboundSchema: z.ZodMiniType< string, EntityChangeBehaviour > = openEnums.outboundSchema(EntityChangeBehaviour);