// @generated — do not edit import { defineLifecycle } from "@tailor-platform/erp-kit/core"; export const shiftPlacementLifecycle = defineLifecycle({ supersede: { from: ["ACTIVE"], to: "SUPERSEDED" }, release: { from: ["ACTIVE"], to: "CANCELLED" }, }); export type ShiftPlacementStatus = typeof shiftPlacementLifecycle.states[number];