videosphere
    Preparing search index...
    • Returns whether a temp-slot livestream should be promoted to the main key slot now.

      Parameters

      • input: {
            tempCandidate: { scheduledStartTime: string };
            currentMainSlotStream: Pick<
                Livestream,
                "status"
                | "keySlot"
                | "scheduledStartTime"
                | "youtubeLifecycleStatus",
            >;
            promotionWindowMs?: number;
        }

        Next temp candidate, the current main-slot holder (if any), and optional lead time.

      • now: Date

        Current time (injected for testability).

      Returns boolean

      True when the main slot is free and the candidate start is within the promotion window.