nestjs-temporal-core
    Preparing search index...

    Interface ScheduleUpsertResult

    Result of upserting (create-or-update) a schedule. action reports which path was taken so callers can distinguish a fresh creation from an update of a pre-existing schedule.

    interface ScheduleUpsertResult {
        action?: "created" | "updated";
        error?: Error;
        handle?: ScheduleHandle;
        scheduleId?: string;
        success: boolean;
    }

    Hierarchy (View Summary)

    Index
    action?: "created" | "updated"
    error?: Error
    handle?: ScheduleHandle
    scheduleId?: string
    success: boolean