@nocobase/plugin-flow-engine 2.1.0-beta.36 → 2.1.0-beta.37

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.
@@ -4538,6 +4538,7 @@ declare const _default: {
4538
4538
  skillSettings: {
4539
4539
  type: string;
4540
4540
  nullable: boolean;
4541
+ description: string;
4541
4542
  properties: {
4542
4543
  skills: {
4543
4544
  type: string;
@@ -83,10 +83,7 @@ export declare const flowSurfaceExamples: {
83
83
  }[];
84
84
  };
85
85
  autoSend: boolean;
86
- skillSettings: {
87
- skills: any[];
88
- tools: any[];
89
- };
86
+ skillSettings: any;
90
87
  model: any;
91
88
  webSearch: boolean;
92
89
  }[];
@@ -149,10 +146,7 @@ export declare const flowSurfaceExamples: {
149
146
  }[];
150
147
  };
151
148
  autoSend: boolean;
152
- skillSettings: {
153
- skills: any[];
154
- tools: any[];
155
- };
149
+ skillSettings: any;
156
150
  model: any;
157
151
  webSearch: boolean;
158
152
  }[];
@@ -183,10 +177,7 @@ export declare const flowSurfaceExamples: {
183
177
  }[];
184
178
  };
185
179
  autoSend: boolean;
186
- skillSettings: {
187
- skills: any[];
188
- tools: any[];
189
- };
180
+ skillSettings: any;
190
181
  model: any;
191
182
  webSearch: boolean;
192
183
  }[];
@@ -1285,10 +1276,7 @@ export declare const flowSurfaceExamples: {
1285
1276
  }[];
1286
1277
  };
1287
1278
  autoSend: boolean;
1288
- skillSettings: {
1289
- skills: any[];
1290
- tools: any[];
1291
- };
1279
+ skillSettings: any;
1292
1280
  model: any;
1293
1281
  webSearch: boolean;
1294
1282
  }[];
@@ -1418,10 +1406,7 @@ export declare const flowSurfaceExamples: {
1418
1406
  }[];
1419
1407
  };
1420
1408
  autoSend: boolean;
1421
- skillSettings: {
1422
- skills: any[];
1423
- tools: any[];
1424
- };
1409
+ skillSettings: any;
1425
1410
  model: any;
1426
1411
  webSearch: boolean;
1427
1412
  }[];
@@ -67,7 +67,7 @@ const makeAIEmployeeActionSettings = (target = "self") => ({
67
67
  workContext: [{ type: "flow-model", target }]
68
68
  },
69
69
  autoSend: false,
70
- skillSettings: { skills: [], tools: [] },
70
+ skillSettings: null,
71
71
  model: null,
72
72
  webSearch: false
73
73
  }
@@ -5428,6 +5428,7 @@ const schemas = {
5428
5428
  skillSettings: {
5429
5429
  type: "object",
5430
5430
  nullable: true,
5431
+ description: "Task-level skill/tool override. Omit or use null to inherit the AI employee preset. Unversioned empty skills/tools arrays are normalized to null for compatibility; use skillsVersion/toolsVersion when intentionally disabling all skills/tools.",
5431
5432
  properties: {
5432
5433
  skills: {
5433
5434
  type: "array",
@@ -4538,6 +4538,7 @@ declare const _default: {
4538
4538
  skillSettings: {
4539
4539
  type: string;
4540
4540
  nullable: boolean;
4541
+ description: string;
4541
4542
  properties: {
4542
4543
  skills: {
4543
4544
  type: string;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "displayName.zh-CN": "前端流引擎",
5
5
  "description": "",
6
6
  "description.zh-CN": "",
7
- "version": "2.1.0-beta.36",
7
+ "version": "2.1.0-beta.37",
8
8
  "main": "./dist/server/index.js",
9
9
  "license": "Apache-2.0",
10
10
  "devDependencies": {
@@ -26,5 +26,5 @@
26
26
  "@nocobase/test": "2.x",
27
27
  "@nocobase/utils": "2.x"
28
28
  },
29
- "gitHead": "397d45c744f6eb48b3a0cd785c87cbf1257c3513"
29
+ "gitHead": "7132e5b83ecc0e42b54715eaf1429c72bcef34ae"
30
30
  }