// @generated — do not edit import { defineLifecycle } from "@tailor-platform/erp-kit/core"; export const destinationDeliveryLogLifecycle = defineLifecycle({ AdapterSuccess: { from: ["PENDING"], to: "SENT" }, AdapterError: { from: ["PENDING"], to: "FAILED" }, }); export type DestinationDeliveryLogStatus = typeof destinationDeliveryLogLifecycle.states[number];