// @generated — do not edit import { defineLifecycle } from "@tailor-platform/erp-kit/core"; export const inboundShipmentLifecycle = defineLifecycle({ update: { from: ["DRAFT"], to: "DRAFT" }, cancel: { from: ["DRAFT"], to: "CANCELLED" }, post: { from: ["DRAFT"], to: "POSTED" }, }); export type InboundShipmentStatus = typeof inboundShipmentLifecycle.states[number];