output-sdk
    Preparing search index...

    Type Alias WorkflowInvocationConfiguration<Context>

    Configuration for workflow invocations.

    Allows overriding Temporal Activity options for this workflow.

    type WorkflowInvocationConfiguration<
        Context extends WorkflowContext = WorkflowContext,
    > = {
        context?: DeepPartial<Context>;
        detached?: boolean;
        options?: TemporalActivityOptions;
    }

    Type Parameters

    Index

    Properties

    context?: DeepPartial<Context>

    Allow to overwrite properties of the "context" of workflows when called in tests environments.

    detached?: boolean

    Configures whether this workflow runs detached. Detached workflows called without explicitly awaiting the result are "fire-and-forget" and may outlive the parent.

    options?: TemporalActivityOptions

    Temporal activity options for this invocation (overrides the workflow's default activity options).