// @generated — do not edit import { defineLifecycle } from "@tailor-platform/erp-kit/core"; export const notificationEventLifecycle = defineLifecycle({ dispatch: { from: ["PENDING"], to: "DISPATCHED" }, dispatchNoDelivery: { from: ["PENDING"], to: "NO_DELIVERY" }, }); export type NotificationEventStatus = typeof notificationEventLifecycle.states[number];