MCPcopy Index your code
hub / github.com/simstudioai/sim / assertNoReservedStartOutputFields

Function assertNoReservedStartOutputFields

apps/sim/executor/utils/start-block.ts:203–214  ·  view source on GitHub ↗
(
  output: NormalizedBlockOutput,
  block: SerializedBlock
)

Source from the content-addressed store, hash-verified

201}
202
203function assertNoReservedStartOutputFields(
204 output: NormalizedBlockOutput,
205 block: SerializedBlock
206): void {
207 const reservedFieldNames = collectExecutionControlFieldNames(Object.keys(output))
208
209 if (reservedFieldNames.length === 0) {
210 return
211 }
212
213 throwReservedStartOutputFieldsError(block, reservedFieldNames, 'runtime input')
214}
215
216function pathConsumesInputFormat(
217 path: StartBlockPath,

Callers 1

buildStartBlockOutputFunction · 0.85

Tested by

no test coverage detected