DotLinkResponseDto: {
    computedAt: string | null;
    isStale: boolean;
    items: {
        authorName: string | null;
        createdAt: string;
        index: number;
        isResolved: boolean;
        myFeedback: {
            review: string | null;
            type: "POSITIVE" | "NEGATIVE";
        } | null;
        postId: string;
        spaceId: string;
        spaceName: string;
        title: string;
    }[];
    status: "pending" | "ready" | "failed";
}