ai-project-manage-cli 3.0.2 → 3.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +1 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -364,9 +364,8 @@ async function runPull(requirementId) {
364
364
  {
365
365
  id: req.id,
366
366
  status: req.status,
367
- ...req.urgency != null && req.urgency !== "" ? { urgency: req.urgency } : {},
368
367
  title: req.title,
369
- ...req.pauseReason != null && req.pauseReason.trim() !== "" ? { pauseReason: req.pauseReason } : {},
368
+ env: req.envName || "",
370
369
  tasks: tasksForStatusYaml(data.tasks ?? [])
371
370
  },
372
371
  { lineWidth: 0 }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-project-manage-cli",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "命令行工具:后续用于调用平台后端 API 完成运维与自动化操作",
5
5
  "type": "module",
6
6
  "private": false,