work-order.mjs
387 Bytes
const WORK_ORDER_STATUS_VALUES = [
"draft",
"pending_dispatch",
"running",
"paused",
"pending_qc",
"completed",
"closed"
];
const WORK_ORDER_TRANSITION_ACTION_VALUES = [
"create",
"edit_draft",
"dispatch",
"pause",
"resume",
"close"
];
export { WORK_ORDER_TRANSITION_ACTION_VALUES as W, WORK_ORDER_STATUS_VALUES as a };
//# sourceMappingURL=work-order.mjs.map