/* * 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 SubType = { User: "user", Organization: "organization", } as const; export type SubType = OpenEnum; /** @internal */ export const SubType$inboundSchema: z.ZodMiniType = openEnums .inboundSchema(SubType); /** @internal */ export const SubType$outboundSchema: z.ZodMiniType = openEnums .outboundSchema(SubType);