genkitx-temporal
    Preparing search index...

    Interface TemporalFlowConfig<I, O>

    Configuration for defineTemporalFlow. Mirrors the shape Genkit itself accepts for defineFlow, with an optional name override used as the Temporal workflow lookup key (defaults to the flow name).

    interface TemporalFlowConfig<I extends z.ZodTypeAny, O extends z.ZodTypeAny> {
        inputSchema?: I;
        name: string;
        outputSchema?: O;
        temporalName?: string;
    }

    Type Parameters

    • I extends z.ZodTypeAny
    • O extends z.ZodTypeAny
    Index

    Properties

    inputSchema?: I
    name: string
    outputSchema?: O
    temporalName?: string

    Override the name used in Temporal's flow registry. Defaults to name.