/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; export const InheritanceAction = { Add: "add", Remove: "remove", } as const; export type InheritanceAction = ClosedEnum; /** @internal */ export const InheritanceAction$outboundSchema: z.ZodMiniEnum< typeof InheritanceAction > = z.enum(InheritanceAction);