operation.mjs 385 Bytes
const OPERATION_TASK_STATUS_VALUES = [
  "pending",
  "in_progress",
  "pending_test",
  "failed",
  "rework",
  "completed",
  "skipped"
];
const OPERATION_TASK_ACTION_VALUES = [
  "start",
  "complete_assembly",
  "complete_rework",
  "submit_test",
  "skip"
];

export { OPERATION_TASK_ACTION_VALUES as O, OPERATION_TASK_STATUS_VALUES as a };
//# sourceMappingURL=operation.mjs.map