Endo
    Preparing search index...
    interface RecentRoom {
        displayName?: string;
        lastJoinedAt: string;
        uri: string;
    }
    Index

    Properties

    displayName?: string

    The chatroom's self-proposed-name as observed on the most recent successful join. Optional — older entries (or rooms whose name lookup failed) won't have it. Only used as a label in the picker.

    lastJoinedAt: string

    ISO-8601 wallclock of the most recent successful join. Used to sort the picker most-recent-first; also handy for users to spot a stale entry.

    uri: string

    The full ocapn://…/s/<base64url>?… sturdyref URI as the user originally pasted it. We keep the raw string rather than a parsed form so future re-joins go through the same parser path and any parser-improvement applies retroactively.