Variable: NoInputSchema
constNoInputSchema:ZodObject<{ },$strip>
Defined in: packages/workflow-engine/src/core/schema-helpers.ts:24
Constant for stages that don't need sequential input Use when a stage receives data from workflowContext instead of the input parameter
Example
export const myStage: Stage<
typeof NoInputSchema, // Explicit: this stage uses workflowContext
typeof OutputSchema,
typeof ConfigSchema
> = {
inputSchema: NoInputSchema,
// ...
};