@@ -320,29 +320,23 @@ export enum ConditionDataTableHeaderKeys {
320
320
VALUE = 'val' ,
321
321
}
322
322
323
- export type InputOutputVariablesErrorObj = Record < InputOutputVariablesHeaderKeys , DynamicDataTableCellValidationState >
323
+ type InputOutputVariablesErrorObj = Record < InputOutputVariablesHeaderKeys , DynamicDataTableCellValidationState >
324
+ type ConditionDetailsErrorObj = Record < ConditionDataTableHeaderKeys , DynamicDataTableCellValidationState >
324
325
325
- export type ConditionDetailsErrorObj = Record < ConditionDataTableHeaderKeys , DynamicDataTableCellValidationState >
326
+ interface StepDetailTaskErrorObj {
327
+ inputVariables ?: Record < number , InputOutputVariablesErrorObj >
328
+ outputVariables ?: Record < number , InputOutputVariablesErrorObj >
329
+ isInputVariablesValid ?: boolean
330
+ isOutputVariablesValid ?: boolean
331
+ conditionDetails ?: Record < number , ConditionDetailsErrorObj >
332
+ isConditionDetailsValid ?: boolean
333
+ }
326
334
327
335
export interface TaskErrorObj {
328
336
isValid : boolean
329
337
name : ErrorObj
330
- inlineStepDetail ?: {
331
- inputVariables ?: Record < number , InputOutputVariablesErrorObj >
332
- outputVariables ?: Record < number , InputOutputVariablesErrorObj >
333
- isInputVariablesValid ?: boolean
334
- isOutputVariablesValid ?: boolean
335
- conditionDetails ?: Record < number , ConditionDetailsErrorObj >
336
- isConditionDetailsValid ?: boolean
337
- }
338
- pluginRefStepDetail ?: {
339
- inputVariables ?: Record < number , InputOutputVariablesErrorObj >
340
- outputVariables ?: Record < number , InputOutputVariablesErrorObj >
341
- isInputVariablesValid ?: boolean
342
- isOutputVariablesValid ?: boolean
343
- conditionDetails ?: Record < number , ConditionDetailsErrorObj >
344
- isConditionDetailsValid ?: boolean
345
- }
338
+ inlineStepDetail ?: StepDetailTaskErrorObj
339
+ pluginRefStepDetail ?: StepDetailTaskErrorObj
346
340
}
347
341
export interface FormErrorObjectType {
348
342
name : ErrorObj
0 commit comments