/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import * as openEnums from "../types/enums.js"; import { OpenEnum } from "../types/enums.js"; /** * Channel route scope. Local scope requires haiId. */ export const ChannelScope = { Global: "global", Local: "local", } as const; /** * Channel route scope. Local scope requires haiId. */ export type ChannelScope = OpenEnum; /** @internal */ export const ChannelScope$inboundSchema: z.ZodMiniType = openEnums.inboundSchema(ChannelScope); /** @internal */ export const ChannelScope$outboundSchema: z.ZodMiniType = openEnums.outboundSchema(ChannelScope);