/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Reason for the dependency */ export const DependencyReasonEnum = { LayoutRequiredForWorkflow: "LAYOUT_REQUIRED_FOR_WORKFLOW", LayoutExistsInTarget: "LAYOUT_EXISTS_IN_TARGET", } as const; /** * Reason for the dependency */ export type DependencyReasonEnum = ClosedEnum; /** @internal */ export const DependencyReasonEnum$inboundSchema: z.ZodNativeEnum< typeof DependencyReasonEnum > = z.nativeEnum(DependencyReasonEnum);