Title-scoped PR research workspace response.

interface PrTitleResearchResponse {
    generated_at: string;
    publication_matches: PrTitleMatch[];
    readiness: {
        gaps: string[];
        score: number;
        strengths: string[];
    };
    stories: PrStory[];
    story_summary: {
        count: number;
        publication_count: number;
        with_known_author: number;
    };
    suggested_next_steps: string[];
    title: {
        demo_url?: null | string;
        description?: null | string;
        genres?: string[];
        id: string;
        itch_url?: null | string;
        name: string;
        platforms?: string[];
        short_description?: null | string;
        slug?: null | string;
        steam_url?: null | string;
        video_url?: null | string;
        website_url?: null | string;
    };
}

Properties

generated_at: string
publication_matches: PrTitleMatch[]
readiness: {
    gaps: string[];
    score: number;
    strengths: string[];
}

Type declaration

  • gaps: string[]
  • score: number
  • strengths: string[]
stories: PrStory[]
story_summary: {
    count: number;
    publication_count: number;
    with_known_author: number;
}

Type declaration

  • count: number
  • publication_count: number
  • with_known_author: number
suggested_next_steps: string[]
title: {
    demo_url?: null | string;
    description?: null | string;
    genres?: string[];
    id: string;
    itch_url?: null | string;
    name: string;
    platforms?: string[];
    short_description?: null | string;
    slug?: null | string;
    steam_url?: null | string;
    video_url?: null | string;
    website_url?: null | string;
}

Type declaration

  • Optional demo_url?: null | string
  • Optional description?: null | string
  • Optional genres?: string[]
  • id: string
  • Optional itch_url?: null | string
  • name: string
  • Optional platforms?: string[]
  • Optional short_description?: null | string
  • Optional slug?: null | string
  • Optional steam_url?: null | string
  • Optional video_url?: null | string
  • Optional website_url?: null | string

Generated using TypeDoc