// @generated — do not edit import { defineLifecycle } from "@tailor-platform/erp-kit/core"; export const currencyLifecycle = defineLifecycle({ deactivate: { from: ["ACTIVE"], to: "INACTIVE" }, activate: { from: ["INACTIVE"], to: "ACTIVE" }, }); export type CurrencyStatus = typeof currencyLifecycle.states[number];