nestjs-temporal-core
    Preparing search index...

    Type Alias ScheduleAction

    ScheduleAction: ScheduleOptionsAction & {
        retryPolicy?: RetryPolicy | Record<string, unknown>;
    }

    Schedule action — Temporal SDK's ScheduleOptionsAction from @temporalio/client extended with the back-compat retryPolicy alias. Currently only startWorkflow actions are supported (matches the SDK).

    Type Declaration

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

      Use retry. Kept for backward compatibility; forwarded to retry at runtime. Typed loosely so prior Record<string, unknown> usages still compile.