nestjs-temporal-core
    Preparing search index...

    Interface WorkflowStartOptions

    Workflow start options with proper typing

    interface WorkflowStartOptions {
        memo?: Record<string, string | number | boolean | object>;
        searchAttributes?: TypedSearchAttributes;
        taskQueue?: string;
        workflowExecutionTimeout?: Duration;
        workflowId?: string;
        workflowIdReusePolicy?:
            | "REJECT_DUPLICATE"
            | "ALLOW_DUPLICATE"
            | "ALLOW_DUPLICATE_FAILED_ONLY";
        workflowRunTimeout?: Duration;
        workflowTaskTimeout?: Duration;
    }
    Index

    Properties

    memo?: Record<string, string | number | boolean | object>
    searchAttributes?: TypedSearchAttributes
    taskQueue?: string
    workflowExecutionTimeout?: Duration
    workflowId?: string
    workflowIdReusePolicy?:
        | "REJECT_DUPLICATE"
        | "ALLOW_DUPLICATE"
        | "ALLOW_DUPLICATE_FAILED_ONLY"
    workflowRunTimeout?: Duration
    workflowTaskTimeout?: Duration