( subBlocks: Record<string, SubBlockWithValue> | undefined )
| 184 | } |
| 185 | |
| 186 | function getUnifiedStartOutputs( |
| 187 | subBlocks: Record<string, SubBlockWithValue> | undefined |
| 188 | ): OutputDefinition { |
| 189 | const outputs = { ...UNIFIED_START_OUTPUTS } |
| 190 | const normalizedInputFormat = normalizeInputFormatValue(subBlocks?.inputFormat?.value) |
| 191 | return applyInputFormatFields(normalizedInputFormat, outputs) |
| 192 | } |
| 193 | |
| 194 | function getLegacyStarterOutputs( |
| 195 | subBlocks: Record<string, SubBlockWithValue> | undefined |
no test coverage detected