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