@digitalsee-ai/rcs 1.0.16 → 1.1.1
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/Canvas/NextConfigModalWrapper.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Canvas/actionItemToNodeData.d.ts +14 -0
- package/dist/components/digitalsee/workflow/Canvas/constants.d.ts +1 -14
- package/dist/components/digitalsee/workflow/Canvas/constants.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Canvas/hooks/classicNodeAddConnection.d.ts +31 -0
- package/dist/components/digitalsee/workflow/Canvas/hooks/classicNodeAddConnection.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Canvas/hooks/createNodeAddHandlerNext.d.ts +5 -16
- package/dist/components/digitalsee/workflow/Canvas/hooks/useNodeAddCallback.d.ts +5 -17
- package/dist/components/digitalsee/workflow/Canvas/hooks/useWorkflowCanvasState.d.ts +3 -1
- package/dist/components/digitalsee/workflow/Handles/CustomHandle.d.ts +3 -0
- package/dist/components/digitalsee/workflow/Handles/customHandleConnectable.d.ts +35 -0
- package/dist/components/digitalsee/workflow/Handles/customHandleConnectable.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Nodes/ActionNode.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Nodes/ConditionNode.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Nodes/NextNodeFactory.d.ts +2 -1
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextBaseNode.d.ts +2 -1
- package/dist/components/digitalsee/workflow/Nodes/NodeFactory.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Nodes/SuperBaseNode.d.ts +8 -3
- package/dist/components/digitalsee/workflow/Nodes/SwitchNode.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Nodes/classicNodePackageNodes.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Nodes/classicNodePackagePortLayout.d.ts +23 -0
- package/dist/components/digitalsee/workflow/Nodes/classicNodePackagePortLayout.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Nodes/components/NextNodeOperations.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Nodes/useClassicNodePackagePorts.d.ts +26 -0
- package/dist/components/digitalsee/workflow/Nodes/useClassicNodePackagePorts.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/NodesConfig/ActionNodeConfig/index.d.ts +2 -0
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/index.d.ts +4 -2
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/index.d.ts +2 -0
- package/dist/components/digitalsee/workflow/NodesConfig/submitPayload.d.ts +23 -0
- package/dist/components/digitalsee/workflow/NodesConfig/submitPayload.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/components/ActionItem.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/components/EntryTypeSelector.d.ts +8 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/components/NodeCardList.d.ts +19 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/hooks/useActions.d.ts +2 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/hooks/useCategories.d.ts +7 -4
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/hooks/useConnectableNodeSelector.d.ts +40 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/hooks/useNavigation.d.ts +4 -2
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/hooks/useNavigation.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/hooks/useNodeActionState.d.ts +30 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/hooks/useNodeSelectorPresentation.d.ts +24 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/types.d.ts +26 -6
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/connectableActionLoader.d.ts +16 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/connectableActionLoader.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/connectableFallback.d.ts +2 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/connectableFallback.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/connectableQuery.d.ts +40 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/connectableQuery.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/connectableResponse.d.ts +35 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/connectableResponse.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/dataTransformers.d.ts +13 -2
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/filterEdgeInsertActions.d.ts +62 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/filterEdgeInsertActions.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/nodeAddContext.d.ts +26 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/nodeAddContext.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/queryParams.d.ts +18 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/queryParams.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Panels/SimpleNodeSelectorPanel/index.d.ts +2 -1
- package/dist/components/digitalsee/workflow/api/connectable.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/api/connectable.types.d.ts +75 -0
- package/dist/components/digitalsee/workflow/api/dip.types.d.ts +38 -4
- package/dist/components/digitalsee/workflow/api/index.d.ts +11 -2
- package/dist/components/digitalsee/workflow/config/defaultCanvasEngineConfig.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/config/defaultNodeSelectorConfig.d.ts +9 -0
- package/dist/components/digitalsee/workflow/enums/canvas.d.ts +5 -2
- package/dist/components/digitalsee/workflow/enums/node.d.ts +4 -0
- package/dist/components/digitalsee/workflow/events/eventBus.d.ts +2 -12
- package/dist/components/digitalsee/workflow/hooks/use-nodes-interaction.d.ts +1 -1
- package/dist/components/digitalsee/workflow/hooks/usePanel.d.ts +3 -17
- package/dist/components/digitalsee/workflow/index.d.ts +2 -1
- package/dist/components/digitalsee/workflow/store/panelSlice.d.ts +122 -25
- package/dist/components/digitalsee/workflow/types/Node.d.ts +1 -1
- package/dist/components/digitalsee/workflow/types/NodeAddContext.d.ts +31 -0
- package/dist/components/digitalsee/workflow/types/engine.d.ts +17 -0
- package/dist/components/digitalsee/workflow/utils/classicNodeActionIdentity.d.ts +7 -0
- package/dist/components/digitalsee/workflow/utils/classicNodeActionIdentity.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/utils/classicNodePackageConnection.d.ts +28 -0
- package/dist/components/digitalsee/workflow/utils/classicNodePackageConnection.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/utils/classicNodePackageGraphValidation.d.ts +29 -0
- package/dist/components/digitalsee/workflow/utils/classicNodePackageGraphValidation.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/utils/compatiblePortSelection.d.ts +79 -0
- package/dist/components/digitalsee/workflow/utils/compatiblePortSelection.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/utils/mcpCanvas.d.ts +33 -0
- package/dist/components/digitalsee/workflow/utils/mcpCanvas.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/utils/nextNodeSchemaCache.d.ts +8 -0
- package/dist/components/digitalsee/workflow/utils/nodeDataFormatter.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/utils/portConnectionValidationMessages.d.ts +48 -0
- package/dist/components/digitalsee/workflow/utils/portConnectionValidationMessages.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/utils/portConnectionValidator.d.ts +66 -0
- package/dist/components/digitalsee/workflow/utils/portConnectionValidator.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/utils/workflowConnectionValidator.d.ts +20 -0
- package/dist/components/digitalsee/workflow/utils/workflowConnectionValidator.test.d.ts +1 -0
- package/dist/locales/en-US/link/flow.d.ts +22 -0
- package/dist/locales/en-US.d.ts +22 -0
- package/dist/locales/zh-CN/link/flow.d.ts +22 -0
- package/dist/locales/zh-CN.d.ts +22 -0
- package/dist/locales/zh-TW/link/flow.d.ts +22 -0
- package/dist/locales/zh-TW.d.ts +22 -0
- package/dist/rcs.css +1 -1
- package/dist/rcs.es.js +19972 -17600
- package/dist/rcs.es.js.map +1 -1
- package/dist/rcs.umd.js +60 -60
- package/dist/rcs.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { DipPortSchema } from '../api/dip.types';
|
|
2
|
+
export declare const DEFAULT_PORT_CONNECTION_TYPE = "main";
|
|
3
|
+
/** 已完成运行时默认值归一化的端口 Schema。 */
|
|
4
|
+
export interface NormalizedDipPortSchema extends DipPortSchema {
|
|
5
|
+
type: string;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* 校验器所需的最小节点结构,可直接接收 ReactFlow Node。
|
|
9
|
+
*
|
|
10
|
+
* 节点 schema key 必须放在 data.action_key/actionKey/nodeKey/node_key 中;
|
|
11
|
+
* ReactFlow 的 node.type 只是渲染类型,不能作为连接白名单身份。
|
|
12
|
+
*/
|
|
13
|
+
export interface PortConnectionNode {
|
|
14
|
+
id: string;
|
|
15
|
+
data?: Record<string, unknown> | null;
|
|
16
|
+
}
|
|
17
|
+
/** 校验器所需的最小边结构,可直接接收 ReactFlow Edge。 */
|
|
18
|
+
export interface PortConnectionEdge {
|
|
19
|
+
id?: string;
|
|
20
|
+
source: string;
|
|
21
|
+
target: string;
|
|
22
|
+
sourceHandle?: string | null;
|
|
23
|
+
targetHandle?: string | null;
|
|
24
|
+
}
|
|
25
|
+
export interface PortConnectionValidationOptions {
|
|
26
|
+
/**
|
|
27
|
+
* 显式兼容旧 CLASSIC handle:source `output`、target `input` 映射到 Schema `main`。
|
|
28
|
+
* nodepackage 节点必须保持默认 false,避免把真实的 `input/output/main` 端口混为一谈。
|
|
29
|
+
*/
|
|
30
|
+
allowLegacyMainHandleAliases?: boolean;
|
|
31
|
+
}
|
|
32
|
+
export interface ValidatePortConnectionInput {
|
|
33
|
+
sourceNode?: PortConnectionNode | null;
|
|
34
|
+
targetNode?: PortConnectionNode | null;
|
|
35
|
+
sourceHandle?: string | null;
|
|
36
|
+
targetHandle?: string | null;
|
|
37
|
+
/** 源节点的 output Schema 列表。 */
|
|
38
|
+
sourcePorts?: readonly DipPortSchema[] | null;
|
|
39
|
+
/** 目标节点的 input Schema 列表。 */
|
|
40
|
+
targetPorts?: readonly DipPortSchema[] | null;
|
|
41
|
+
/** 当前画布已有边;新建边本身不应提前加入此列表。 */
|
|
42
|
+
edges?: readonly PortConnectionEdge[] | null;
|
|
43
|
+
options?: PortConnectionValidationOptions;
|
|
44
|
+
}
|
|
45
|
+
export type PortConnectionValidationCode = 'VALID' | 'SOURCE_NODE_NOT_FOUND' | 'TARGET_NODE_NOT_FOUND' | 'SOURCE_PORT_NOT_FOUND' | 'TARGET_PORT_NOT_FOUND' | 'PORT_TYPE_MISMATCH' | 'SOURCE_NODE_NOT_ALLOWED' | 'TARGET_NODE_NOT_ALLOWED' | 'SOURCE_NODE_DENIED' | 'TARGET_NODE_DENIED' | 'SOURCE_MAX_CONNECTIONS_REACHED' | 'TARGET_MAX_CONNECTIONS_REACHED' | 'SELF_CONNECTION_NOT_ALLOWED';
|
|
46
|
+
export interface PortConnectionValidationResult {
|
|
47
|
+
valid: boolean;
|
|
48
|
+
code: PortConnectionValidationCode;
|
|
49
|
+
/** 可直接用于调试的中文兜底原因;界面层应优先按 code 映射 i18n 文案。 */
|
|
50
|
+
reason: string;
|
|
51
|
+
sourcePort: NormalizedDipPortSchema | null;
|
|
52
|
+
targetPort: NormalizedDipPortSchema | null;
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* 将端口运行时默认值和 ACM SNAKE_CASE 响应统一为内部 camelCase,不修改原始对象。
|
|
56
|
+
*/
|
|
57
|
+
export declare const normalizePortSchema: (port: DipPortSchema) => NormalizedDipPortSchema;
|
|
58
|
+
/** 从 ReactFlow 节点 data 中解析用于黑白名单判断的 NodePackage schema key。 */
|
|
59
|
+
export declare const getPortConnectionNodeIdentity: (node?: PortConnectionNode | null) => string | null;
|
|
60
|
+
/**
|
|
61
|
+
* 按 NodePackage PortSchema 校验一条准备创建的连接。
|
|
62
|
+
*
|
|
63
|
+
* 本函数拒绝直接自连,但不校验多节点环路、MCP 等画布专项规则;调用方应按
|
|
64
|
+
* “通用图结构规则 → Schema 规则 → 专项规则”的顺序组合。
|
|
65
|
+
*/
|
|
66
|
+
export declare const validatePortConnection: ({ sourceNode, targetNode, sourceHandle, targetHandle, sourcePorts, targetPorts, edges, options, }: ValidatePortConnectionInput) => PortConnectionValidationResult;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EngineMode } from '../enums/workflow';
|
|
2
|
+
import { EdgeConfig, EdgeRulesConfig, NodeSelectorConnectableConfig } from '../types/engine';
|
|
3
|
+
import { Edge, IsValidConnection, Node } from '@xyflow/react';
|
|
4
|
+
interface ValidateWorkflowConnectionInput {
|
|
5
|
+
edge: EdgeConfig;
|
|
6
|
+
nodes: Node[];
|
|
7
|
+
edges: Edge[];
|
|
8
|
+
engineMode?: EngineMode;
|
|
9
|
+
connectable?: Pick<NodeSelectorConnectableConfig, 'enabled' | 'debug'>;
|
|
10
|
+
validators?: EdgeRulesConfig['validators'];
|
|
11
|
+
nativeIsValidConnection?: IsValidConnection;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* 校验一条准备创建的画布连接。
|
|
15
|
+
*
|
|
16
|
+
* 手动拖线与程序化新增都传入各自的节点/边快照,从而复用 NodePackage、MCP、
|
|
17
|
+
* 宿主 edgeRules 和 ReactFlow native validator。边中插入可由调用方先从快照移除旧边。
|
|
18
|
+
*/
|
|
19
|
+
export declare function validateWorkflowConnection({ edge, nodes, edges, engineMode, connectable, validators, nativeIsValidConnection, }: ValidateWorkflowConnectionInput): boolean;
|
|
20
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -145,6 +145,28 @@ declare const _default: {
|
|
|
145
145
|
'link.flow.force_online_confirm': string;
|
|
146
146
|
'link.flow.offline_success': string;
|
|
147
147
|
'link.flow.operation_title': string;
|
|
148
|
+
'link.flow.connectable.category_unavailable': string;
|
|
149
|
+
'link.flow.connectable.connector_unavailable': string;
|
|
150
|
+
'link.flow.connectable.action_unavailable': string;
|
|
151
|
+
'link.flow.connectable.load_failed': string;
|
|
152
|
+
'link.flow.connectable.no_compatible_nodes': string;
|
|
153
|
+
'link.flow.connectable.no_compatible_input': string;
|
|
154
|
+
'link.flow.connectable.no_compatible_output': string;
|
|
155
|
+
'link.flow.connectable.no_bidirectional_compatible_port': string;
|
|
156
|
+
'link.flow.connectable.schema_unavailable': string;
|
|
157
|
+
'link.flow.connectable.existing_edge_invalid': string;
|
|
158
|
+
'link.flow.connectable.validation.source_node_not_found': string;
|
|
159
|
+
'link.flow.connectable.validation.target_node_not_found': string;
|
|
160
|
+
'link.flow.connectable.validation.source_port_not_found': string;
|
|
161
|
+
'link.flow.connectable.validation.target_port_not_found': string;
|
|
162
|
+
'link.flow.connectable.validation.port_type_mismatch': string;
|
|
163
|
+
'link.flow.connectable.validation.source_node_not_allowed': string;
|
|
164
|
+
'link.flow.connectable.validation.target_node_not_allowed': string;
|
|
165
|
+
'link.flow.connectable.validation.source_node_denied': string;
|
|
166
|
+
'link.flow.connectable.validation.target_node_denied': string;
|
|
167
|
+
'link.flow.connectable.validation.source_max_connections_reached': string;
|
|
168
|
+
'link.flow.connectable.validation.target_max_connections_reached': string;
|
|
169
|
+
'link.flow.connectable.validation.self_connection_not_allowed': string;
|
|
148
170
|
'link.flow.switch.condition_one': string;
|
|
149
171
|
'link.flow.switch.condition_two': string;
|
|
150
172
|
'link.flow.switch.condition_n': string;
|
package/dist/locales/en-US.d.ts
CHANGED
|
@@ -145,6 +145,28 @@ declare const _default: {
|
|
|
145
145
|
'link.flow.force_online_confirm': string;
|
|
146
146
|
'link.flow.offline_success': string;
|
|
147
147
|
'link.flow.operation_title': string;
|
|
148
|
+
'link.flow.connectable.category_unavailable': string;
|
|
149
|
+
'link.flow.connectable.connector_unavailable': string;
|
|
150
|
+
'link.flow.connectable.action_unavailable': string;
|
|
151
|
+
'link.flow.connectable.load_failed': string;
|
|
152
|
+
'link.flow.connectable.no_compatible_nodes': string;
|
|
153
|
+
'link.flow.connectable.no_compatible_input': string;
|
|
154
|
+
'link.flow.connectable.no_compatible_output': string;
|
|
155
|
+
'link.flow.connectable.no_bidirectional_compatible_port': string;
|
|
156
|
+
'link.flow.connectable.schema_unavailable': string;
|
|
157
|
+
'link.flow.connectable.existing_edge_invalid': string;
|
|
158
|
+
'link.flow.connectable.validation.source_node_not_found': string;
|
|
159
|
+
'link.flow.connectable.validation.target_node_not_found': string;
|
|
160
|
+
'link.flow.connectable.validation.source_port_not_found': string;
|
|
161
|
+
'link.flow.connectable.validation.target_port_not_found': string;
|
|
162
|
+
'link.flow.connectable.validation.port_type_mismatch': string;
|
|
163
|
+
'link.flow.connectable.validation.source_node_not_allowed': string;
|
|
164
|
+
'link.flow.connectable.validation.target_node_not_allowed': string;
|
|
165
|
+
'link.flow.connectable.validation.source_node_denied': string;
|
|
166
|
+
'link.flow.connectable.validation.target_node_denied': string;
|
|
167
|
+
'link.flow.connectable.validation.source_max_connections_reached': string;
|
|
168
|
+
'link.flow.connectable.validation.target_max_connections_reached': string;
|
|
169
|
+
'link.flow.connectable.validation.self_connection_not_allowed': string;
|
|
148
170
|
'link.flow.switch.condition_one': string;
|
|
149
171
|
'link.flow.switch.condition_two': string;
|
|
150
172
|
'link.flow.switch.condition_n': string;
|
|
@@ -145,6 +145,28 @@ declare const _default: {
|
|
|
145
145
|
'link.flow.force_online_confirm': string;
|
|
146
146
|
'link.flow.offline_success': string;
|
|
147
147
|
'link.flow.operation_title': string;
|
|
148
|
+
'link.flow.connectable.category_unavailable': string;
|
|
149
|
+
'link.flow.connectable.connector_unavailable': string;
|
|
150
|
+
'link.flow.connectable.action_unavailable': string;
|
|
151
|
+
'link.flow.connectable.load_failed': string;
|
|
152
|
+
'link.flow.connectable.no_compatible_nodes': string;
|
|
153
|
+
'link.flow.connectable.no_compatible_input': string;
|
|
154
|
+
'link.flow.connectable.no_compatible_output': string;
|
|
155
|
+
'link.flow.connectable.no_bidirectional_compatible_port': string;
|
|
156
|
+
'link.flow.connectable.schema_unavailable': string;
|
|
157
|
+
'link.flow.connectable.existing_edge_invalid': string;
|
|
158
|
+
'link.flow.connectable.validation.source_node_not_found': string;
|
|
159
|
+
'link.flow.connectable.validation.target_node_not_found': string;
|
|
160
|
+
'link.flow.connectable.validation.source_port_not_found': string;
|
|
161
|
+
'link.flow.connectable.validation.target_port_not_found': string;
|
|
162
|
+
'link.flow.connectable.validation.port_type_mismatch': string;
|
|
163
|
+
'link.flow.connectable.validation.source_node_not_allowed': string;
|
|
164
|
+
'link.flow.connectable.validation.target_node_not_allowed': string;
|
|
165
|
+
'link.flow.connectable.validation.source_node_denied': string;
|
|
166
|
+
'link.flow.connectable.validation.target_node_denied': string;
|
|
167
|
+
'link.flow.connectable.validation.source_max_connections_reached': string;
|
|
168
|
+
'link.flow.connectable.validation.target_max_connections_reached': string;
|
|
169
|
+
'link.flow.connectable.validation.self_connection_not_allowed': string;
|
|
148
170
|
'link.flow.switch.condition_one': string;
|
|
149
171
|
'link.flow.switch.condition_two': string;
|
|
150
172
|
'link.flow.switch.condition_n': string;
|
package/dist/locales/zh-CN.d.ts
CHANGED
|
@@ -145,6 +145,28 @@ declare const _default: {
|
|
|
145
145
|
'link.flow.force_online_confirm': string;
|
|
146
146
|
'link.flow.offline_success': string;
|
|
147
147
|
'link.flow.operation_title': string;
|
|
148
|
+
'link.flow.connectable.category_unavailable': string;
|
|
149
|
+
'link.flow.connectable.connector_unavailable': string;
|
|
150
|
+
'link.flow.connectable.action_unavailable': string;
|
|
151
|
+
'link.flow.connectable.load_failed': string;
|
|
152
|
+
'link.flow.connectable.no_compatible_nodes': string;
|
|
153
|
+
'link.flow.connectable.no_compatible_input': string;
|
|
154
|
+
'link.flow.connectable.no_compatible_output': string;
|
|
155
|
+
'link.flow.connectable.no_bidirectional_compatible_port': string;
|
|
156
|
+
'link.flow.connectable.schema_unavailable': string;
|
|
157
|
+
'link.flow.connectable.existing_edge_invalid': string;
|
|
158
|
+
'link.flow.connectable.validation.source_node_not_found': string;
|
|
159
|
+
'link.flow.connectable.validation.target_node_not_found': string;
|
|
160
|
+
'link.flow.connectable.validation.source_port_not_found': string;
|
|
161
|
+
'link.flow.connectable.validation.target_port_not_found': string;
|
|
162
|
+
'link.flow.connectable.validation.port_type_mismatch': string;
|
|
163
|
+
'link.flow.connectable.validation.source_node_not_allowed': string;
|
|
164
|
+
'link.flow.connectable.validation.target_node_not_allowed': string;
|
|
165
|
+
'link.flow.connectable.validation.source_node_denied': string;
|
|
166
|
+
'link.flow.connectable.validation.target_node_denied': string;
|
|
167
|
+
'link.flow.connectable.validation.source_max_connections_reached': string;
|
|
168
|
+
'link.flow.connectable.validation.target_max_connections_reached': string;
|
|
169
|
+
'link.flow.connectable.validation.self_connection_not_allowed': string;
|
|
148
170
|
'link.flow.switch.condition_one': string;
|
|
149
171
|
'link.flow.switch.condition_two': string;
|
|
150
172
|
'link.flow.switch.condition_n': string;
|
|
@@ -144,6 +144,28 @@ declare const _default: {
|
|
|
144
144
|
'link.flow.force_online_confirm': string;
|
|
145
145
|
'link.flow.offline_success': string;
|
|
146
146
|
'link.flow.operation_title': string;
|
|
147
|
+
'link.flow.connectable.category_unavailable': string;
|
|
148
|
+
'link.flow.connectable.connector_unavailable': string;
|
|
149
|
+
'link.flow.connectable.action_unavailable': string;
|
|
150
|
+
'link.flow.connectable.load_failed': string;
|
|
151
|
+
'link.flow.connectable.no_compatible_nodes': string;
|
|
152
|
+
'link.flow.connectable.no_compatible_input': string;
|
|
153
|
+
'link.flow.connectable.no_compatible_output': string;
|
|
154
|
+
'link.flow.connectable.no_bidirectional_compatible_port': string;
|
|
155
|
+
'link.flow.connectable.schema_unavailable': string;
|
|
156
|
+
'link.flow.connectable.existing_edge_invalid': string;
|
|
157
|
+
'link.flow.connectable.validation.source_node_not_found': string;
|
|
158
|
+
'link.flow.connectable.validation.target_node_not_found': string;
|
|
159
|
+
'link.flow.connectable.validation.source_port_not_found': string;
|
|
160
|
+
'link.flow.connectable.validation.target_port_not_found': string;
|
|
161
|
+
'link.flow.connectable.validation.port_type_mismatch': string;
|
|
162
|
+
'link.flow.connectable.validation.source_node_not_allowed': string;
|
|
163
|
+
'link.flow.connectable.validation.target_node_not_allowed': string;
|
|
164
|
+
'link.flow.connectable.validation.source_node_denied': string;
|
|
165
|
+
'link.flow.connectable.validation.target_node_denied': string;
|
|
166
|
+
'link.flow.connectable.validation.source_max_connections_reached': string;
|
|
167
|
+
'link.flow.connectable.validation.target_max_connections_reached': string;
|
|
168
|
+
'link.flow.connectable.validation.self_connection_not_allowed': string;
|
|
147
169
|
'link.flow.switch.condition_one': string;
|
|
148
170
|
'link.flow.switch.condition_two': string;
|
|
149
171
|
'link.flow.switch.condition_n': string;
|
package/dist/locales/zh-TW.d.ts
CHANGED
|
@@ -144,6 +144,28 @@ declare const _default: {
|
|
|
144
144
|
'link.flow.force_online_confirm': string;
|
|
145
145
|
'link.flow.offline_success': string;
|
|
146
146
|
'link.flow.operation_title': string;
|
|
147
|
+
'link.flow.connectable.category_unavailable': string;
|
|
148
|
+
'link.flow.connectable.connector_unavailable': string;
|
|
149
|
+
'link.flow.connectable.action_unavailable': string;
|
|
150
|
+
'link.flow.connectable.load_failed': string;
|
|
151
|
+
'link.flow.connectable.no_compatible_nodes': string;
|
|
152
|
+
'link.flow.connectable.no_compatible_input': string;
|
|
153
|
+
'link.flow.connectable.no_compatible_output': string;
|
|
154
|
+
'link.flow.connectable.no_bidirectional_compatible_port': string;
|
|
155
|
+
'link.flow.connectable.schema_unavailable': string;
|
|
156
|
+
'link.flow.connectable.existing_edge_invalid': string;
|
|
157
|
+
'link.flow.connectable.validation.source_node_not_found': string;
|
|
158
|
+
'link.flow.connectable.validation.target_node_not_found': string;
|
|
159
|
+
'link.flow.connectable.validation.source_port_not_found': string;
|
|
160
|
+
'link.flow.connectable.validation.target_port_not_found': string;
|
|
161
|
+
'link.flow.connectable.validation.port_type_mismatch': string;
|
|
162
|
+
'link.flow.connectable.validation.source_node_not_allowed': string;
|
|
163
|
+
'link.flow.connectable.validation.target_node_not_allowed': string;
|
|
164
|
+
'link.flow.connectable.validation.source_node_denied': string;
|
|
165
|
+
'link.flow.connectable.validation.target_node_denied': string;
|
|
166
|
+
'link.flow.connectable.validation.source_max_connections_reached': string;
|
|
167
|
+
'link.flow.connectable.validation.target_max_connections_reached': string;
|
|
168
|
+
'link.flow.connectable.validation.self_connection_not_allowed': string;
|
|
147
169
|
'link.flow.switch.condition_one': string;
|
|
148
170
|
'link.flow.switch.condition_two': string;
|
|
149
171
|
'link.flow.switch.condition_n': string;
|