/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 2086f6a291b7 */ import * as z from "zod/v4"; import { ClosedEnum } from "../../types/enums.js"; export const AuthDirection = { Inbound: "inbound", Outbound: "outbound", } as const; export type AuthDirection = ClosedEnum; /** @internal */ export const AuthDirection$outboundSchema: z.ZodEnum = z .enum(AuthDirection);