/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Group of the UI Schema */ export const UiSchemaGroupEnum = { InApp: "IN_APP", Email: "EMAIL", Digest: "DIGEST", Delay: "DELAY", Throttle: "THROTTLE", Sms: "SMS", Chat: "CHAT", Push: "PUSH", Skip: "SKIP", Layout: "LAYOUT", HttpRequest: "HTTP_REQUEST", } as const; /** * Group of the UI Schema */ export type UiSchemaGroupEnum = ClosedEnum; /** @internal */ export const UiSchemaGroupEnum$inboundSchema: z.ZodNativeEnum< typeof UiSchemaGroupEnum > = z.nativeEnum(UiSchemaGroupEnum);