@gencode/web 0.6.0 → 0.6.2

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/CHANGELOG.md +16 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @gencode/web
2
2
 
3
+ ## 0.6.2
4
+
5
+ ### Patch Changes
6
+
7
+ - bc161b3: Expose the current user data root on plugin hook context as `ctx.dataDir`. Plugin hooks can now distinguish the persistent AIMax data directory from the effective working directory exposed as `ctx.workspaceDir`, which may point to `--project-dir` when a run is scoped to a specific repository.
8
+ - d77a70b: 插件现在可以通过 `api.hitl.pause()` 发起持久化人工确认,并通过 `api.hitl.isPause()` 识别暂停信号。插件只需使用 `@gencode/plugin-sdk` 的类型,不再需要运行时引入 `@gencode/agents`;请求 ID、当前会话 ID 和创建时间由 AIMax 自动补齐,现有暂停、恢复与外部事件行为保持不变。
9
+ - Updated dependencies [bc161b3]
10
+ - Updated dependencies [d77a70b]
11
+ - @gencode/console@0.6.2
12
+
13
+ ## 0.6.1
14
+
15
+ ### Patch Changes
16
+
17
+ - @gencode/console@0.6.1
18
+
3
19
  ## 0.6.0
4
20
 
5
21
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/web",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -13,8 +13,8 @@
13
13
  "CHANGELOG.md"
14
14
  ],
15
15
  "dependencies": {
16
- "@gencode/shared": "0.6.0",
17
- "@gencode/console": "0.6.0"
16
+ "@gencode/console": "0.6.2",
17
+ "@gencode/shared": "0.6.0"
18
18
  },
19
19
  "devDependencies": {},
20
20
  "scripts": {