// @generated — do not edit import { defineLifecycle } from "@tailor-platform/erp-kit/core"; export const inventorySupplyPlanLifecycle = defineLifecycle({ update: { from: ["OPEN"], to: "OPEN" }, consume: { from: ["OPEN"], to: "OPEN" }, close: { from: ["OPEN"], to: "CLOSED" }, }); export type InventorySupplyPlanStatus = typeof inventorySupplyPlanLifecycle.states[number];