nestjs-temporal-core
    Preparing search index...

    Interface ScheduleOperationResult

    Shared result for schedule mutation operations. All five operations (pause, unpause, trigger, delete, update) share this exact shape.

    interface ScheduleOperationResult {
        error?: Error;
        scheduleId: string;
        success: boolean;
    }
    Index
    error?: Error
    scheduleId: string
    success: boolean