@digitalsee-ai/rcs 1.1.3-hotfix → 1.1.3-hotfix4
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/dist/components/digitalsee/workflow/coverage/acceptanceManifest.d.ts +30 -0
- package/dist/components/digitalsee/workflow/coverage/acceptanceManifest.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/coverage/runtimeCoverage.d.ts +34 -0
- package/dist/rcs.es.js +16813 -15865
- package/dist/rcs.umd.js +61 -58
- package/package.json +1 -1
- package/dist/rcs.es.js.map +0 -1
- package/dist/rcs.umd.js.map +0 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { DynamicFormField } from '../../../dynamic-form/types/form-schema';
|
|
2
|
+
import { DynamicFormFields, NodeStatus, NodeType } from '../enums/node';
|
|
3
|
+
export declare const AI_FLOW_ACCEPTANCE_MANIFEST_VERSION = "1.0.0";
|
|
4
|
+
export declare const AI_FLOW_ACCEPTANCE_COVERAGE_VERSION = "2026.07.23-local";
|
|
5
|
+
export type AcceptanceSurface = {
|
|
6
|
+
id: string;
|
|
7
|
+
title: string;
|
|
8
|
+
source: string[];
|
|
9
|
+
uxEntry: string;
|
|
10
|
+
storyId: string;
|
|
11
|
+
tests: string[];
|
|
12
|
+
states: string[];
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* 当前本地验收口径的源码功能分母。
|
|
16
|
+
*
|
|
17
|
+
* 数量来自实际运行时枚举与 DynamicForm 注册类型,不以文档手写数量代替。
|
|
18
|
+
*/
|
|
19
|
+
export declare const AI_FLOW_SOURCE_DENOMINATORS: {
|
|
20
|
+
readonly runtimeNodes: NodeType[];
|
|
21
|
+
readonly nodeStatuses: NodeStatus[];
|
|
22
|
+
readonly classicFields: DynamicFormFields[];
|
|
23
|
+
readonly nodeSchemaFields: DynamicFormField[];
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* 源码功能、UX 入口、Story 与自动化证据的版本化对应关系。
|
|
27
|
+
*
|
|
28
|
+
* 每一项至少提供一个真实本地页面入口、一个 Storybook 入口和一组测试证据。
|
|
29
|
+
*/
|
|
30
|
+
export declare const AI_FLOW_ACCEPTANCE_SURFACES: AcceptanceSurface[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export type CoverageGroup = {
|
|
2
|
+
key: string;
|
|
3
|
+
title: string;
|
|
4
|
+
description: string;
|
|
5
|
+
items: string[];
|
|
6
|
+
source: string;
|
|
7
|
+
};
|
|
8
|
+
export declare const AI_FLOW_COVERAGE_GROUPS: CoverageGroup[];
|
|
9
|
+
export declare const AI_FLOW_EXPECTED_COUNTS: {
|
|
10
|
+
readonly nodes: number;
|
|
11
|
+
readonly statuses: number;
|
|
12
|
+
readonly nodeSchemaFields: number;
|
|
13
|
+
readonly registeredNodeSchemaFields: number;
|
|
14
|
+
readonly classicFields: number;
|
|
15
|
+
};
|
|
16
|
+
export declare const AI_FLOW_COMPONENT_AREAS: readonly [{
|
|
17
|
+
readonly name: "画布骨架";
|
|
18
|
+
readonly components: readonly ["顶部栏", "保存/上线", "网格背景", "缩放控制", "MiniMap", "快速操作", "加载与错误态"];
|
|
19
|
+
}, {
|
|
20
|
+
readonly name: "节点与连线";
|
|
21
|
+
readonly components: readonly ["18 种节点注册", "9 种状态", "主端口", "AI 子端口", "分支端口", "连线操作"];
|
|
22
|
+
}, {
|
|
23
|
+
readonly name: "节点选择";
|
|
24
|
+
readonly components: readonly ["搜索", "分类筛选", "连接器卡片", "动作展开", "空态", "加载态"];
|
|
25
|
+
}, {
|
|
26
|
+
readonly name: "配置工作区";
|
|
27
|
+
readonly components: readonly ["变量树", "参数配置", "设置/错误处理", "节点测试", "账号与凭据", "在线 IDE", "执行管控", "模板设置"];
|
|
28
|
+
}, {
|
|
29
|
+
readonly name: "配置字段";
|
|
30
|
+
readonly components: readonly ["32 种 NodeSchema 字段", "19 种 Classic 字段", "条件显示", "校验", "动态选项", "变量插入"];
|
|
31
|
+
}, {
|
|
32
|
+
readonly name: "运行与调试";
|
|
33
|
+
readonly components: readonly ["节点测试", "忽略调试", "结果查看", "全流程检查", "调试面板", "成功/失败反馈"];
|
|
34
|
+
}];
|