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