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