![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
igdb-api-types
Advanced tools
TypeScript type definitions for IGDB API endpoint responses.
All types are generated automatically by parsing the IGDB API docs page.
npm run build
- generate type definitions.
/**
* Video Games!
*
* https://api.igdb.com/v4/games
* @see https://api-docs.igdb.com/#game
*/
export interface Game {
id: number;
/** The PEGI rating */
age_ratings?: number[] | AgeRating[];
/** Rating based on external critic scores */
aggregated_rating?: number;
/** Number of external critic scores */
aggregated_rating_count?: number;
/** Alternative names for this game */
alternative_names?: number[] | AlternativeName[];
/** Artworks of this game */
artworks?: number[] | Artwork[];
/** The bundles this game is a part of */
bundles?: number[] | Game[];
/** The category of this game */
category?: GameCategory;
/** Hash of the object */
checksum?: string;
/** The series the game belongs to */
collection?: number | Collection;
/** The cover of this game */
cover?: number | Cover;
/** Date this was initially added to the IGDB database */
created_at?: number;
/** DLCs for this game */
dlcs?: number[] | Game[];
/** Expanded games of this game */
expanded_games?: number[] | Game[];
/** Expansions of this game */
expansions?: number[] | Game[];
/** External IDs this game has on other services */
external_games?: number[] | ExternalGame[];
/** The first release date for this game */
first_release_date?: number;
/** Number of people following a game */
follows?: number;
/** Forks of this game */
forks?: number[] | Game[];
/** The main franchise */
franchise?: number | Franchise;
/** Other franchises the game belongs to */
franchises?: number[] | Franchise[];
/** The game engine used in this game */
game_engines?: number[] | GameEngine[];
/** Modes of gameplay */
game_modes?: number[] | GameMode[];
/** Genres of the game */
genres?: number[] | Genre[];
/** Number of follows a game gets before release */
hypes?: number;
/** Companies who developed this game */
involved_companies?: number[] | InvolvedCompany[];
/** Associated keywords */
keywords?: number[] | Keyword[];
/** Multiplayer modes for this game */
multiplayer_modes?: number[] | MultiplayerMode[];
name?: string;
/** If a DLC, expansion or part of a bundle, this is the main game or bundle */
parent_game?: number | Game;
/** Platforms this game was released on */
platforms?: number[] | Platform[];
/** The main perspective of the player */
player_perspectives?: number[] | PlayerPerspective[];
/** Ports of this game */
ports?: number[] | Game[];
/** Average IGDB user rating */
rating?: number;
/** Total number of IGDB user ratings */
rating_count?: number;
/** Release dates of this game */
release_dates?: number[] | ReleaseDate[];
/** Remakes of this game */
remakes?: number[] | Game[];
/** Remasters of this game */
remasters?: number[] | Game[];
/** Screenshots of this game */
screenshots?: number[] | Screenshot[];
/** Similar games */
similar_games?: number[] | Game[];
/** A url-safe, unique, lower-case version of the name */
slug?: string;
/** Standalone expansions of this game */
standalone_expansions?: number[] | Game[];
/** The status of the games release */
status?: GameStatus;
/** A short description of a games story */
storyline?: string;
/** A description of the game */
summary?: string;
/** Related entities in the IGDB API */
tags?: number[];
/** Themes of the game */
themes?: number[] | Theme[];
/** Average rating based on both IGDB user and external critic scores */
total_rating?: number;
/** Total number of user and external critic scores */
total_rating_count?: number;
/** The last date this entry was updated in the IGDB database */
updated_at?: number;
/** The website address (URL) of the item */
url?: string;
/** If a version, this is the main game */
version_parent?: number | Game;
/** Title of this version (i.e Gold edition) */
version_title?: string;
/** Videos of this game */
videos?: number[] | GameVideo[];
/** Websites associated with this game */
websites?: number[] | Website[];
}
/** @see https://api-docs.igdb.com/#game-enums */
export enum GameCategory {
main_game = 0,
dlc_addon = 1,
expansion = 2,
bundle = 3,
standalone_expansion = 4,
mod = 5,
episode = 6,
season = 7,
remake = 8,
remaster = 9,
expanded_game = 10,
port = 11,
fork = 12,
}
/** @see https://api-docs.igdb.com/#game-enums */
export enum GameStatus {
released = 0,
alpha = 2,
beta = 3,
early_access = 4,
offline = 5,
cancelled = 6,
rumored = 7,
delisted = 8,
}
FAQs
TypeScript type definitions for IGDB API endpoint responses
The npm package igdb-api-types receives a total of 4 weekly downloads. As such, igdb-api-types popularity was classified as not popular.
We found that igdb-api-types demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.