nestjs-temporal-core
    Preparing search index...

    Interface StartWorkflowOptions

    Options for starting Temporal workflows. Extends base workflow start options with custom properties.

    const options: StartWorkflowOptions = {
    taskQueue: 'orders',
    workflowId: `order-${orderId}`,
    signal: {
    name: 'start',
    args: [initialData]
    }
    };
    interface StartWorkflowOptions {
        signal?: { args?: unknown[]; name: string };
        taskQueue: string;
        workflowId?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    signal?: { args?: unknown[]; name: string }
    taskQueue: string
    workflowId?: string