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