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