@aalis/core 0.1.3 → 0.2.0

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/config.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/config.d.ts CHANGED
@@ -3,14 +3,14 @@ import type { ConfigSchema } from './types/index.js';
3
3
  /**
4
4
  * Aalis 应用配置(基础设施字段)
5
5
  *
6
- * 仅声明 core 自身管理的字段。业务字段(owners / agent / dangerousPolicy 等)
6
+ * 仅声明 core 自身管理的字段。业务字段(owners / agent / restrictedCapabilities 等)
7
7
  * 由对应 plugin 通过 declaration merging 注入:
8
8
  *
9
9
  * ```ts
10
10
  * declare module '@aalis/core' {
11
11
  * interface AalisConfig {
12
12
  * owners?: Array<{ platform: string; userId: string }>;
13
- * defaultAuthority?: number;
13
+ * restrictedCapabilities?: string[];
14
14
  * }
15
15
  * }
16
16
  * ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aalis/core",
3
- "version": "0.1.3",
3
+ "version": "0.2.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "aalis": {