/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: b7dbcb9b65cf */ import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; /** * Layout density for portal content. */ export const DeploymentPortalDensity = { Comfortable: "comfortable", Compact: "compact", } as const; /** * Layout density for portal content. */ export type DeploymentPortalDensity = ClosedEnum< typeof DeploymentPortalDensity >; /** @internal */ export const DeploymentPortalDensity$inboundSchema: z.ZodEnum< typeof DeploymentPortalDensity > = z.enum(DeploymentPortalDensity); /** @internal */ export const DeploymentPortalDensity$outboundSchema: z.ZodEnum< typeof DeploymentPortalDensity > = DeploymentPortalDensity$inboundSchema;