/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 4a31db61953f */ import * as z from "zod/v4"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const OutboundAuthenticationType = { Oauth2: "oauth2", Bearer: "bearer", None: "none", } as const; export type OutboundAuthenticationType = OpenEnum< typeof OutboundAuthenticationType >; /** @internal */ export const OutboundAuthenticationType$inboundSchema: z.ZodType< OutboundAuthenticationType, unknown > = openEnums.inboundSchema(OutboundAuthenticationType); /** @internal */ export const OutboundAuthenticationType$outboundSchema: z.ZodType< string, OutboundAuthenticationType > = openEnums.outboundSchema(OutboundAuthenticationType);