()
| 34 | * input-format / response-format sub-blocks and when adding rows in the editor. |
| 35 | */ |
| 36 | export function createDefaultInputFormatField(): InputFormatFieldState { |
| 37 | return { |
| 38 | id: generateId(), |
| 39 | name: '', |
| 40 | type: 'string', |
| 41 | value: '', |
| 42 | collapsed: false, |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Whether an input-format field type denotes a file input. Matches the canonical |
no test coverage detected