/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 684aad0f1e8e */ import * as z from "zod/v4"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const OAuth2GrantType = { AuthorizationCode: "authorization_code", ClientCredentials: "client_credentials", } as const; export type OAuth2GrantType = OpenEnum; /** @internal */ export const OAuth2GrantType$inboundSchema: z.ZodType< OAuth2GrantType, unknown > = openEnums.inboundSchema(OAuth2GrantType);