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