/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 4a9367ab993e */ import * as z from "zod/v4"; import { ClosedEnum } from "../../types/enums.js"; export const InboundAuthenticationType = { Webhook: "webhook", } as const; export type InboundAuthenticationType = ClosedEnum< typeof InboundAuthenticationType >; /** @internal */ export const InboundAuthenticationType$outboundSchema: z.ZodEnum< typeof InboundAuthenticationType > = z.enum(InboundAuthenticationType);