/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Type of change */ export const DiffActionEnum = { Added: "added", Modified: "modified", Deleted: "deleted", Unchanged: "unchanged", Moved: "moved", } as const; /** * Type of change */ export type DiffActionEnum = ClosedEnum; /** @internal */ export const DiffActionEnum$inboundSchema: z.ZodNativeEnum< typeof DiffActionEnum > = z.nativeEnum(DiffActionEnum);