/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: af4f0b0a39e6 */ import * as z from "zod/v4"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; /** * The type of entity, used to share a library. */ export const EntityType = { User: "User", Workspace: "Workspace", Org: "Org", } as const; /** * The type of entity, used to share a library. */ export type EntityType = OpenEnum; /** @internal */ export const EntityType$outboundSchema: z.ZodType = openEnums.outboundSchema(EntityType);