nestjs-temporal-core
    Preparing search index...

    Interface WorkflowProxyConfig

    Configuration for a typed workflow proxy created by WorkflowProxyFactory.

    const config: WorkflowProxyConfig = {
    workflowType: 'orderWorkflow',
    taskQueue: 'orders',
    };
    interface WorkflowProxyConfig {
        taskQueue?: string;
        workflowType: string;
    }
    Index

    Properties

    taskQueue?: string

    Optional task queue override. Falls back to the module-level default when omitted.

    workflowType: string

    Temporal workflow type name (must match the registered workflow function name).