@blueking/bkflow-canvas-editor 1.0.2 → 1.0.3

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.
@@ -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 {