@aipper/aiws-spec 0.0.48 → 0.0.49

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aipper/aiws-spec",
3
- "version": "0.0.48",
3
+ "version": "0.0.49",
4
4
  "description": "AIWS spec and templates (single source of truth).",
5
5
  "type": "module",
6
6
  "files": [
@@ -13,10 +13,10 @@ description: `aiws finish` 的收尾入口(finish_resume_required)
13
13
 
14
14
  ```bash
15
15
  if [[ -x "./node_modules/.bin/aiws" ]]; then
16
- ./node_modules/.bin/aiws finish
16
+ ./node_modules/.bin/aiws change finish --push
17
17
  elif command -v aiws >/dev/null 2>&1; then
18
- aiws finish
18
+ aiws change finish --push
19
19
  else
20
- npx @aipper/aiws finish
20
+ npx @aipper/aiws change finish --push
21
21
  fi
22
22
  ```