/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * An [RFC 6750](https://www.rfc-editor.org/rfc/rfc6750#section-6.1) token type. */ export const TokenType = { Bearer: "Bearer", } as const; /** * An [RFC 6750](https://www.rfc-editor.org/rfc/rfc6750#section-6.1) token type. */ export type TokenType = ClosedEnum; /** @internal */ export const TokenType$inboundSchema: z.ZodNativeEnum = z .nativeEnum(TokenType); /** @internal */ export const TokenType$outboundSchema: z.ZodNativeEnum = TokenType$inboundSchema;