nestjs-temporal-core
    Preparing search index...

    Type Alias ScheduleWorkflowAction

    ScheduleWorkflowAction: ScheduleOptionsStartWorkflowAction<Workflow> & {
        retryPolicy?: RetryPolicy | Record<string, unknown>;
    }

    Schedule workflow action — Temporal SDK's ScheduleOptionsStartWorkflowAction<Workflow> extended with a back-compat retryPolicy alias.

    Prefer SDK's retry field. The legacy retryPolicy field is accepted and forwarded to retry at runtime.

    Type Declaration

    • OptionalretryPolicy?: RetryPolicy | Record<string, unknown>

      Use retry (maps to Temporal's RetryPolicy). Kept for backward compatibility; at runtime this is forwarded to retry. Typed loosely so prior Record<string, unknown> usages still compile.