@blueking/bkflow-canvas-editor 1.0.2 → 1.0.4
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/advanced.d.ts +11 -1
- package/dist/index.cjs.js +23 -23
- package/dist/index.d.ts +85 -3
- package/dist/index.esm.js +7273 -6731
- package/dist/style.css +1 -1
- package/package.json +3 -2
package/dist/advanced.d.ts
CHANGED
|
@@ -63,6 +63,16 @@ interface Activity {
|
|
|
63
63
|
action: string;
|
|
64
64
|
};
|
|
65
65
|
status?: NodeExecutionStatus;
|
|
66
|
+
/** 执行态:实际重试次数 */
|
|
67
|
+
retry?: number;
|
|
68
|
+
/** 执行态:是否被跳过 */
|
|
69
|
+
skip?: boolean;
|
|
70
|
+
/** 执行态:是否自动忽略错误 */
|
|
71
|
+
error_ignored?: boolean;
|
|
72
|
+
/** 执行态:循环执行次数 */
|
|
73
|
+
loop?: number;
|
|
74
|
+
/** 执行态:生命周期阶段 */
|
|
75
|
+
phase?: number;
|
|
66
76
|
}
|
|
67
77
|
|
|
68
78
|
interface StartEvent {
|
|
@@ -153,7 +163,7 @@ interface Variable {
|
|
|
153
163
|
show_type: 'show' | 'hide';
|
|
154
164
|
source_info: Record<string, string[]>;
|
|
155
165
|
source_tag: string;
|
|
156
|
-
source_type: 'custom' | 'component_inputs' | 'component_outputs' | 'system';
|
|
166
|
+
source_type: 'custom' | 'component_inputs' | 'component_outputs' | 'system' | 'space';
|
|
157
167
|
validation: string;
|
|
158
168
|
value?: string | number | boolean | Record<string, any>;
|
|
159
169
|
version?: string;
|