igdb-ts
Version:
Unofficial IGDB API TypeScript wrapper.
711 lines • 65.1 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.GameCategory = exports.GameStatus = exports.GamesReferenceFields = exports.GameReferenceFields = exports.DevelopedGameReferenceFields = exports.PublishedGameReferenceFields = exports.StandaloneExpansionsGameReferenceFields = exports.SimilarGamesGameReferenceFields = exports.RemastersGameReferenceFields = exports.RemakesGameReferenceFields = exports.PortsGameReferenceFields = exports.ForksGameReferenceFields = exports.ExpansionsGameReferenceFields = exports.ExpandedGamesGameReferenceFields = exports.DLCsGameReferenceFields = exports.BundlesGameReferenceFields = exports.GameFields = void 0;
var GameFields;
(function (GameFields) {
GameFields["ID"] = "id";
GameFields["CHECKSUM"] = "checksum";
GameFields["AGE_RATINGS"] = "age_ratings";
GameFields["AGGREGRATED_RATING"] = "aggregrated_rating";
GameFields["AGGREGRATED_RATING_COUNT"] = "aggregrated_rating_count";
GameFields["ALTERNATIVE_NAMES"] = "alternative_names";
GameFields["ARTWORKS"] = "artworks";
GameFields["BUNDLES"] = "bundles";
GameFields["CATEGORY"] = "category";
GameFields["COLLECTION"] = "collection";
GameFields["COVER"] = "cover";
GameFields["CREATED_AT"] = "created_at";
GameFields["DLCS"] = "dlcs";
GameFields["EXPANDED_GAMES"] = "expanded_games";
GameFields["EXPANSIONS"] = "expansions";
GameFields["EXTERNAL_GAMES"] = "external_games";
GameFields["FIRST_RELEASE_DATE"] = "first_release_date";
GameFields["FOLLOWS"] = "follows";
GameFields["FORKS"] = "forks";
GameFields["FRANCHISE"] = "franchise";
GameFields["FRANCHISES"] = "franchises";
GameFields["GAME_ENGINES"] = "game_engines";
GameFields["GAME_MODES"] = "game_modes";
GameFields["GENRES"] = "genres";
GameFields["HYPES"] = "hypes";
GameFields["INVOLVED_COMPANIES"] = "involved_companies";
GameFields["KEYWORDS"] = "keywords";
GameFields["MULTIPLAYER_MODES"] = "multiplayer_modes";
GameFields["NAME"] = "name";
GameFields["PARENT_GAME"] = "parent_game";
GameFields["PLATFORMS"] = "platforms";
GameFields["PLAYER_PERSPECTIVES"] = "player_perspectives";
GameFields["PORTS"] = "ports";
GameFields["RATING"] = "rating";
GameFields["RATING_COUNT"] = "rating_count";
GameFields["RELEASE_DATES"] = "release_dates";
GameFields["REMAKES"] = "remakes";
GameFields["REMASTERS"] = "remasters";
GameFields["SCREENSHOTS"] = "screenshots";
GameFields["SIMILAR_GAMES"] = "similar_games";
GameFields["SLUG"] = "slug";
GameFields["STANDALONE_EXPANSIONS"] = "standalone_expansions";
GameFields["STATUS"] = "status";
GameFields["STORYLINE"] = "storyline";
GameFields["SUMMARY"] = "summary";
GameFields["TAGS"] = "tags";
GameFields["THEMES"] = "themes";
GameFields["TOTAL_RATING"] = "total_rating";
GameFields["TOTAL_RATING_COUNT"] = "total_rating_count";
GameFields["UPDATED_AT"] = "updated_at";
GameFields["URL"] = "url";
GameFields["VERSION_PARENT"] = "version_parent";
GameFields["VERSION_TITLE"] = "version_title";
GameFields["VIDEOS"] = "videos";
GameFields["WEBSITES"] = "websites";
})(GameFields = exports.GameFields || (exports.GameFields = {}));
/**
* Self Referenced from [Game]({@link Game.ts}) - bundles field
*/
var BundlesGameReferenceFields;
(function (BundlesGameReferenceFields) {
BundlesGameReferenceFields["ID"] = "bundles.id";
BundlesGameReferenceFields["CHECKSUM"] = "bundles.checksum";
BundlesGameReferenceFields["AGE_RATINGS"] = "bundles.age_ratings";
BundlesGameReferenceFields["AGGREGRATED_RATING"] = "bundles.aggregrated_rating";
BundlesGameReferenceFields["AGGREGRATED_RATING_COUNT"] = "bundles.aggregrated_rating_count";
BundlesGameReferenceFields["ALTERNATIVE_NAMES"] = "bundles.alternative_names";
BundlesGameReferenceFields["ARTWORKS"] = "bundles.artworks";
BundlesGameReferenceFields["BUNDLES"] = "bundles.bundles";
BundlesGameReferenceFields["CATEGORY"] = "bundles.category";
BundlesGameReferenceFields["COLLECTION"] = "bundles.collection";
BundlesGameReferenceFields["COVER"] = "bundles.cover";
BundlesGameReferenceFields["CREATED_AT"] = "bundles.created_at";
BundlesGameReferenceFields["DLCS"] = "bundles.dlcs";
BundlesGameReferenceFields["EXPANDED_GAMES"] = "bundles.expanded_games";
BundlesGameReferenceFields["EXPANSIONS"] = "bundles.expansions";
BundlesGameReferenceFields["EXTERNAL_GAMES"] = "bundles.external_games";
BundlesGameReferenceFields["FIRST_RELEASE_DATE"] = "bundles.first_release_date";
BundlesGameReferenceFields["FOLLOWS"] = "bundles.follows";
BundlesGameReferenceFields["FORKS"] = "bundles.forks";
BundlesGameReferenceFields["FRANCHISE"] = "bundles.franchise";
BundlesGameReferenceFields["FRANCHISES"] = "bundles.franchises";
BundlesGameReferenceFields["GAME_ENGINES"] = "bundles.game_engines";
BundlesGameReferenceFields["GAME_MODES"] = "bundles.game_modes";
BundlesGameReferenceFields["GENRES"] = "bundles.genres";
BundlesGameReferenceFields["HYPES"] = "bundles.hypes";
BundlesGameReferenceFields["INVOLVED_COMPANIES"] = "bundles.involved_companies";
BundlesGameReferenceFields["KEYWORDS"] = "bundles.keywords";
BundlesGameReferenceFields["MULTIPLAYER_MODES"] = "bundles.multiplayer_modes";
BundlesGameReferenceFields["NAME"] = "bundles.name";
BundlesGameReferenceFields["PARENT_GAME"] = "bundles.parent_game";
BundlesGameReferenceFields["PLATFORMS"] = "bundles.platforms";
BundlesGameReferenceFields["PLAYER_PERSPECTIVES"] = "bundles.player_perspectives";
BundlesGameReferenceFields["PORTS"] = "bundles.ports";
BundlesGameReferenceFields["RATING"] = "bundles.rating";
BundlesGameReferenceFields["RATING_COUNT"] = "bundles.rating_count";
BundlesGameReferenceFields["RELEASE_DATES"] = "bundles.release_dates";
BundlesGameReferenceFields["REMAKES"] = "bundles.remakes";
BundlesGameReferenceFields["REMASTERS"] = "bundles.remasters";
BundlesGameReferenceFields["SCREENSHOTS"] = "bundles.screenshots";
BundlesGameReferenceFields["SIMILAR_GAMES"] = "bundles.similar_games";
BundlesGameReferenceFields["SLUG"] = "bundles.slug";
BundlesGameReferenceFields["STANDALONE_EXPANSIONS"] = "bundles.standalone_expansions";
BundlesGameReferenceFields["STATUS"] = "bundles.status";
BundlesGameReferenceFields["STORYLINE"] = "bundles.storyline";
BundlesGameReferenceFields["SUMMARY"] = "bundles.summary";
BundlesGameReferenceFields["TAGS"] = "bundles.tags";
BundlesGameReferenceFields["THEMES"] = "bundles.themes";
BundlesGameReferenceFields["TOTAL_RATING"] = "bundles.total_rating";
BundlesGameReferenceFields["TOTAL_RATING_COUNT"] = "bundles.total_rating_count";
BundlesGameReferenceFields["UPDATED_AT"] = "bundles.updated_at";
BundlesGameReferenceFields["URL"] = "bundles.url";
BundlesGameReferenceFields["VERSION_PARENT"] = "bundles.version_parent";
BundlesGameReferenceFields["VERSION_TITLE"] = "bundles.version_title";
BundlesGameReferenceFields["VIDEOS"] = "bundles.videos";
BundlesGameReferenceFields["WEBSITES"] = "bundles.websites";
})(BundlesGameReferenceFields = exports.BundlesGameReferenceFields || (exports.BundlesGameReferenceFields = {}));
/**
* Self Referenced from [Game]({@link Game.ts}) - dlcs field
*/
var DLCsGameReferenceFields;
(function (DLCsGameReferenceFields) {
DLCsGameReferenceFields["ID"] = "dlcs.id";
DLCsGameReferenceFields["CHECKSUM"] = "dlcs.checksum";
DLCsGameReferenceFields["AGE_RATINGS"] = "dlcs.age_ratings";
DLCsGameReferenceFields["AGGREGRATED_RATING"] = "dlcs.aggregrated_rating";
DLCsGameReferenceFields["AGGREGRATED_RATING_COUNT"] = "dlcs.aggregrated_rating_count";
DLCsGameReferenceFields["ALTERNATIVE_NAMES"] = "dlcs.alternative_names";
DLCsGameReferenceFields["ARTWORKS"] = "dlcs.artworks";
DLCsGameReferenceFields["BUNDLES"] = "dlcs.bundles";
DLCsGameReferenceFields["CATEGORY"] = "dlcs.category";
DLCsGameReferenceFields["COLLECTION"] = "dlcs.collection";
DLCsGameReferenceFields["COVER"] = "dlcs.cover";
DLCsGameReferenceFields["CREATED_AT"] = "dlcs.created_at";
DLCsGameReferenceFields["DLCS"] = "dlcs.dlcs";
DLCsGameReferenceFields["EXPANDED_GAMES"] = "dlcs.expanded_games";
DLCsGameReferenceFields["EXPANSIONS"] = "dlcs.expansions";
DLCsGameReferenceFields["EXTERNAL_GAMES"] = "dlcs.external_games";
DLCsGameReferenceFields["FIRST_RELEASE_DATE"] = "dlcs.first_release_date";
DLCsGameReferenceFields["FOLLOWS"] = "dlcs.follows";
DLCsGameReferenceFields["FORKS"] = "dlcs.forks";
DLCsGameReferenceFields["FRANCHISE"] = "dlcs.franchise";
DLCsGameReferenceFields["FRANCHISES"] = "dlcs.franchises";
DLCsGameReferenceFields["GAME_ENGINES"] = "dlcs.game_engines";
DLCsGameReferenceFields["GAME_MODES"] = "dlcs.game_modes";
DLCsGameReferenceFields["GENRES"] = "dlcs.genres";
DLCsGameReferenceFields["HYPES"] = "dlcs.hypes";
DLCsGameReferenceFields["INVOLVED_COMPANIES"] = "dlcs.involved_companies";
DLCsGameReferenceFields["KEYWORDS"] = "dlcs.keywords";
DLCsGameReferenceFields["MULTIPLAYER_MODES"] = "dlcs.multiplayer_modes";
DLCsGameReferenceFields["NAME"] = "dlcs.name";
DLCsGameReferenceFields["PARENT_GAME"] = "dlcs.parent_game";
DLCsGameReferenceFields["PLATFORMS"] = "dlcs.platforms";
DLCsGameReferenceFields["PLAYER_PERSPECTIVES"] = "dlcs.player_perspectives";
DLCsGameReferenceFields["PORTS"] = "dlcs.ports";
DLCsGameReferenceFields["RATING"] = "dlcs.rating";
DLCsGameReferenceFields["RATING_COUNT"] = "dlcs.rating_count";
DLCsGameReferenceFields["RELEASE_DATES"] = "dlcs.release_dates";
DLCsGameReferenceFields["REMAKES"] = "dlcs.remakes";
DLCsGameReferenceFields["REMASTERS"] = "dlcs.remasters";
DLCsGameReferenceFields["SCREENSHOTS"] = "dlcs.screenshots";
DLCsGameReferenceFields["SIMILAR_GAMES"] = "dlcs.similar_games";
DLCsGameReferenceFields["SLUG"] = "dlcs.slug";
DLCsGameReferenceFields["STANDALONE_EXPANSIONS"] = "dlcs.standalone_expansions";
DLCsGameReferenceFields["STATUS"] = "dlcs.status";
DLCsGameReferenceFields["STORYLINE"] = "dlcs.storyline";
DLCsGameReferenceFields["SUMMARY"] = "dlcs.summary";
DLCsGameReferenceFields["TAGS"] = "dlcs.tags";
DLCsGameReferenceFields["THEMES"] = "dlcs.themes";
DLCsGameReferenceFields["TOTAL_RATING"] = "dlcs.total_rating";
DLCsGameReferenceFields["TOTAL_RATING_COUNT"] = "dlcs.total_rating_count";
DLCsGameReferenceFields["UPDATED_AT"] = "dlcs.updated_at";
DLCsGameReferenceFields["URL"] = "dlcs.url";
DLCsGameReferenceFields["VERSION_PARENT"] = "dlcs.version_parent";
DLCsGameReferenceFields["VERSION_TITLE"] = "dlcs.version_title";
DLCsGameReferenceFields["VIDEOS"] = "dlcs.videos";
DLCsGameReferenceFields["WEBSITES"] = "dlcs.websites";
})(DLCsGameReferenceFields = exports.DLCsGameReferenceFields || (exports.DLCsGameReferenceFields = {}));
/**
* Self Referenced from [Game]({@link Game.ts}) - expanded_games field
*/
var ExpandedGamesGameReferenceFields;
(function (ExpandedGamesGameReferenceFields) {
ExpandedGamesGameReferenceFields["ID"] = "expanded_games.id";
ExpandedGamesGameReferenceFields["CHECKSUM"] = "expanded_games.checksum";
ExpandedGamesGameReferenceFields["AGE_RATINGS"] = "expanded_games.age_ratings";
ExpandedGamesGameReferenceFields["AGGREGRATED_RATING"] = "expanded_games.aggregrated_rating";
ExpandedGamesGameReferenceFields["AGGREGRATED_RATING_COUNT"] = "expanded_games.aggregrated_rating_count";
ExpandedGamesGameReferenceFields["ALTERNATIVE_NAMES"] = "expanded_games.alternative_names";
ExpandedGamesGameReferenceFields["ARTWORKS"] = "expanded_games.artworks";
ExpandedGamesGameReferenceFields["BUNDLES"] = "expanded_games.bundles";
ExpandedGamesGameReferenceFields["CATEGORY"] = "expanded_games.category";
ExpandedGamesGameReferenceFields["COLLECTION"] = "expanded_games.collection";
ExpandedGamesGameReferenceFields["COVER"] = "expanded_games.cover";
ExpandedGamesGameReferenceFields["CREATED_AT"] = "expanded_games.created_at";
ExpandedGamesGameReferenceFields["DLCS"] = "expanded_games.dlcs";
ExpandedGamesGameReferenceFields["EXPANDED_GAMES"] = "expanded_games.expanded_games";
ExpandedGamesGameReferenceFields["EXPANSIONS"] = "expanded_games.expansions";
ExpandedGamesGameReferenceFields["EXTERNAL_GAMES"] = "expanded_games.external_games";
ExpandedGamesGameReferenceFields["FIRST_RELEASE_DATE"] = "expanded_games.first_release_date";
ExpandedGamesGameReferenceFields["FOLLOWS"] = "expanded_games.follows";
ExpandedGamesGameReferenceFields["FORKS"] = "expanded_games.forks";
ExpandedGamesGameReferenceFields["FRANCHISE"] = "expanded_games.franchise";
ExpandedGamesGameReferenceFields["FRANCHISES"] = "expanded_games.franchises";
ExpandedGamesGameReferenceFields["GAME_ENGINES"] = "expanded_games.game_engines";
ExpandedGamesGameReferenceFields["GAME_MODES"] = "expanded_games.game_modes";
ExpandedGamesGameReferenceFields["GENRES"] = "expanded_games.genres";
ExpandedGamesGameReferenceFields["HYPES"] = "expanded_games.hypes";
ExpandedGamesGameReferenceFields["INVOLVED_COMPANIES"] = "expanded_games.involved_companies";
ExpandedGamesGameReferenceFields["KEYWORDS"] = "expanded_games.keywords";
ExpandedGamesGameReferenceFields["MULTIPLAYER_MODES"] = "expanded_games.multiplayer_modes";
ExpandedGamesGameReferenceFields["NAME"] = "expanded_games.name";
ExpandedGamesGameReferenceFields["PARENT_GAME"] = "expanded_games.parent_game";
ExpandedGamesGameReferenceFields["PLATFORMS"] = "expanded_games.platforms";
ExpandedGamesGameReferenceFields["PLAYER_PERSPECTIVES"] = "expanded_games.player_perspectives";
ExpandedGamesGameReferenceFields["PORTS"] = "expanded_games.ports";
ExpandedGamesGameReferenceFields["RATING"] = "expanded_games.rating";
ExpandedGamesGameReferenceFields["RATING_COUNT"] = "expanded_games.rating_count";
ExpandedGamesGameReferenceFields["RELEASE_DATES"] = "expanded_games.release_dates";
ExpandedGamesGameReferenceFields["REMAKES"] = "expanded_games.remakes";
ExpandedGamesGameReferenceFields["REMASTERS"] = "expanded_games.remasters";
ExpandedGamesGameReferenceFields["SCREENSHOTS"] = "expanded_games.screenshots";
ExpandedGamesGameReferenceFields["SIMILAR_GAMES"] = "expanded_games.similar_games";
ExpandedGamesGameReferenceFields["SLUG"] = "expanded_games.slug";
ExpandedGamesGameReferenceFields["STANDALONE_EXPANSIONS"] = "expanded_games.standalone_expansions";
ExpandedGamesGameReferenceFields["STATUS"] = "expanded_games.status";
ExpandedGamesGameReferenceFields["STORYLINE"] = "expanded_games.storyline";
ExpandedGamesGameReferenceFields["SUMMARY"] = "expanded_games.summary";
ExpandedGamesGameReferenceFields["TAGS"] = "expanded_games.tags";
ExpandedGamesGameReferenceFields["THEMES"] = "expanded_games.themes";
ExpandedGamesGameReferenceFields["TOTAL_RATING"] = "expanded_games.total_rating";
ExpandedGamesGameReferenceFields["TOTAL_RATING_COUNT"] = "expanded_games.total_rating_count";
ExpandedGamesGameReferenceFields["UPDATED_AT"] = "expanded_games.updated_at";
ExpandedGamesGameReferenceFields["URL"] = "expanded_games.url";
ExpandedGamesGameReferenceFields["VERSION_PARENT"] = "expanded_games.version_parent";
ExpandedGamesGameReferenceFields["VERSION_TITLE"] = "expanded_games.version_title";
ExpandedGamesGameReferenceFields["VIDEOS"] = "expanded_games.videos";
ExpandedGamesGameReferenceFields["WEBSITES"] = "expanded_games.websites";
})(ExpandedGamesGameReferenceFields = exports.ExpandedGamesGameReferenceFields || (exports.ExpandedGamesGameReferenceFields = {}));
/**
* Self Referenced from [Game]({@link Game.ts}) - expansions field
*/
var ExpansionsGameReferenceFields;
(function (ExpansionsGameReferenceFields) {
ExpansionsGameReferenceFields["ID"] = "expansions.id";
ExpansionsGameReferenceFields["CHECKSUM"] = "expansions.checksum";
ExpansionsGameReferenceFields["AGE_RATINGS"] = "expansions.age_ratings";
ExpansionsGameReferenceFields["AGGREGRATED_RATING"] = "expansions.aggregrated_rating";
ExpansionsGameReferenceFields["AGGREGRATED_RATING_COUNT"] = "expansions.aggregrated_rating_count";
ExpansionsGameReferenceFields["ALTERNATIVE_NAMES"] = "expansions.alternative_names";
ExpansionsGameReferenceFields["ARTWORKS"] = "expansions.artworks";
ExpansionsGameReferenceFields["BUNDLES"] = "expansions.bundles";
ExpansionsGameReferenceFields["CATEGORY"] = "expansions.category";
ExpansionsGameReferenceFields["COLLECTION"] = "expansions.collection";
ExpansionsGameReferenceFields["COVER"] = "expansions.cover";
ExpansionsGameReferenceFields["CREATED_AT"] = "expansions.created_at";
ExpansionsGameReferenceFields["DLCS"] = "expansions.dlcs";
ExpansionsGameReferenceFields["EXPANDED_GAMES"] = "expansions.expanded_games";
ExpansionsGameReferenceFields["EXPANSIONS"] = "expansions.expansions";
ExpansionsGameReferenceFields["EXTERNAL_GAMES"] = "expansions.external_games";
ExpansionsGameReferenceFields["FIRST_RELEASE_DATE"] = "expansions.first_release_date";
ExpansionsGameReferenceFields["FOLLOWS"] = "expansions.follows";
ExpansionsGameReferenceFields["FORKS"] = "expansions.forks";
ExpansionsGameReferenceFields["FRANCHISE"] = "expansions.franchise";
ExpansionsGameReferenceFields["FRANCHISES"] = "expansions.franchises";
ExpansionsGameReferenceFields["GAME_ENGINES"] = "expansions.game_engines";
ExpansionsGameReferenceFields["GAME_MODES"] = "expansions.game_modes";
ExpansionsGameReferenceFields["GENRES"] = "expansions.genres";
ExpansionsGameReferenceFields["HYPES"] = "expansions.hypes";
ExpansionsGameReferenceFields["INVOLVED_COMPANIES"] = "expansions.involved_companies";
ExpansionsGameReferenceFields["KEYWORDS"] = "expansions.keywords";
ExpansionsGameReferenceFields["MULTIPLAYER_MODES"] = "expansions.multiplayer_modes";
ExpansionsGameReferenceFields["NAME"] = "expansions.name";
ExpansionsGameReferenceFields["PARENT_GAME"] = "expansions.parent_game";
ExpansionsGameReferenceFields["PLATFORMS"] = "expansions.platforms";
ExpansionsGameReferenceFields["PLAYER_PERSPECTIVES"] = "expansions.player_perspectives";
ExpansionsGameReferenceFields["PORTS"] = "expansions.ports";
ExpansionsGameReferenceFields["RATING"] = "expansions.rating";
ExpansionsGameReferenceFields["RATING_COUNT"] = "expansions.rating_count";
ExpansionsGameReferenceFields["RELEASE_DATES"] = "expansions.release_dates";
ExpansionsGameReferenceFields["REMAKES"] = "expansions.remakes";
ExpansionsGameReferenceFields["REMASTERS"] = "expansions.remasters";
ExpansionsGameReferenceFields["SCREENSHOTS"] = "expansions.screenshots";
ExpansionsGameReferenceFields["SIMILAR_GAMES"] = "expansions.similar_games";
ExpansionsGameReferenceFields["SLUG"] = "expansions.slug";
ExpansionsGameReferenceFields["STANDALONE_EXPANSIONS"] = "expansions.standalone_expansions";
ExpansionsGameReferenceFields["STATUS"] = "expansions.status";
ExpansionsGameReferenceFields["STORYLINE"] = "expansions.storyline";
ExpansionsGameReferenceFields["SUMMARY"] = "expansions.summary";
ExpansionsGameReferenceFields["TAGS"] = "expansions.tags";
ExpansionsGameReferenceFields["THEMES"] = "expansions.themes";
ExpansionsGameReferenceFields["TOTAL_RATING"] = "expansions.total_rating";
ExpansionsGameReferenceFields["TOTAL_RATING_COUNT"] = "expansions.total_rating_count";
ExpansionsGameReferenceFields["UPDATED_AT"] = "expansions.updated_at";
ExpansionsGameReferenceFields["URL"] = "expansions.url";
ExpansionsGameReferenceFields["VERSION_PARENT"] = "expansions.version_parent";
ExpansionsGameReferenceFields["VERSION_TITLE"] = "expansions.version_title";
ExpansionsGameReferenceFields["VIDEOS"] = "expansions.videos";
ExpansionsGameReferenceFields["WEBSITES"] = "expansions.websites";
})(ExpansionsGameReferenceFields = exports.ExpansionsGameReferenceFields || (exports.ExpansionsGameReferenceFields = {}));
/**
* Self Referenced from [Game]({@link Game.ts}) - forks field
*/
var ForksGameReferenceFields;
(function (ForksGameReferenceFields) {
ForksGameReferenceFields["ID"] = "forks.id";
ForksGameReferenceFields["CHECKSUM"] = "forks.checksum";
ForksGameReferenceFields["AGE_RATINGS"] = "forks.age_ratings";
ForksGameReferenceFields["AGGREGRATED_RATING"] = "forks.aggregrated_rating";
ForksGameReferenceFields["AGGREGRATED_RATING_COUNT"] = "forks.aggregrated_rating_count";
ForksGameReferenceFields["ALTERNATIVE_NAMES"] = "forks.alternative_names";
ForksGameReferenceFields["ARTWORKS"] = "forks.artworks";
ForksGameReferenceFields["BUNDLES"] = "forks.bundles";
ForksGameReferenceFields["CATEGORY"] = "forks.category";
ForksGameReferenceFields["COLLECTION"] = "forks.collection";
ForksGameReferenceFields["COVER"] = "forks.cover";
ForksGameReferenceFields["CREATED_AT"] = "forks.created_at";
ForksGameReferenceFields["DLCS"] = "forks.dlcs";
ForksGameReferenceFields["EXPANDED_GAMES"] = "forks.expanded_games";
ForksGameReferenceFields["EXPANSIONS"] = "forks.expansions";
ForksGameReferenceFields["EXTERNAL_GAMES"] = "forks.external_games";
ForksGameReferenceFields["FIRST_RELEASE_DATE"] = "forks.first_release_date";
ForksGameReferenceFields["FOLLOWS"] = "forks.follows";
ForksGameReferenceFields["FORKS"] = "forks.forks";
ForksGameReferenceFields["FRANCHISE"] = "forks.franchise";
ForksGameReferenceFields["FRANCHISES"] = "forks.franchises";
ForksGameReferenceFields["GAME_ENGINES"] = "forks.game_engines";
ForksGameReferenceFields["GAME_MODES"] = "forks.game_modes";
ForksGameReferenceFields["GENRES"] = "forks.genres";
ForksGameReferenceFields["HYPES"] = "forks.hypes";
ForksGameReferenceFields["INVOLVED_COMPANIES"] = "forks.involved_companies";
ForksGameReferenceFields["KEYWORDS"] = "forks.keywords";
ForksGameReferenceFields["MULTIPLAYER_MODES"] = "forks.multiplayer_modes";
ForksGameReferenceFields["NAME"] = "forks.name";
ForksGameReferenceFields["PARENT_GAME"] = "forks.parent_game";
ForksGameReferenceFields["PLATFORMS"] = "forks.platforms";
ForksGameReferenceFields["PLAYER_PERSPECTIVES"] = "forks.player_perspectives";
ForksGameReferenceFields["PORTS"] = "forks.ports";
ForksGameReferenceFields["RATING"] = "forks.rating";
ForksGameReferenceFields["RATING_COUNT"] = "forks.rating_count";
ForksGameReferenceFields["RELEASE_DATES"] = "forks.release_dates";
ForksGameReferenceFields["REMAKES"] = "forks.remakes";
ForksGameReferenceFields["REMASTERS"] = "forks.remasters";
ForksGameReferenceFields["SCREENSHOTS"] = "forks.screenshots";
ForksGameReferenceFields["SIMILAR_GAMES"] = "forks.similar_games";
ForksGameReferenceFields["SLUG"] = "forks.slug";
ForksGameReferenceFields["STANDALONE_EXPANSIONS"] = "forks.standalone_expansions";
ForksGameReferenceFields["STATUS"] = "forks.status";
ForksGameReferenceFields["STORYLINE"] = "forks.storyline";
ForksGameReferenceFields["SUMMARY"] = "forks.summary";
ForksGameReferenceFields["TAGS"] = "forks.tags";
ForksGameReferenceFields["THEMES"] = "forks.themes";
ForksGameReferenceFields["TOTAL_RATING"] = "forks.total_rating";
ForksGameReferenceFields["TOTAL_RATING_COUNT"] = "forks.total_rating_count";
ForksGameReferenceFields["UPDATED_AT"] = "forks.updated_at";
ForksGameReferenceFields["URL"] = "forks.url";
ForksGameReferenceFields["VERSION_PARENT"] = "forks.version_parent";
ForksGameReferenceFields["VERSION_TITLE"] = "forks.version_title";
ForksGameReferenceFields["VIDEOS"] = "forks.videos";
ForksGameReferenceFields["WEBSITES"] = "forks.websites";
})(ForksGameReferenceFields = exports.ForksGameReferenceFields || (exports.ForksGameReferenceFields = {}));
/**
* Self Referenced from [Game]({@link Game.ts}) - ports field
*/
var PortsGameReferenceFields;
(function (PortsGameReferenceFields) {
PortsGameReferenceFields["ID"] = "ports.id";
PortsGameReferenceFields["CHECKSUM"] = "ports.checksum";
PortsGameReferenceFields["AGE_RATINGS"] = "ports.age_ratings";
PortsGameReferenceFields["AGGREGRATED_RATING"] = "ports.aggregrated_rating";
PortsGameReferenceFields["AGGREGRATED_RATING_COUNT"] = "ports.aggregrated_rating_count";
PortsGameReferenceFields["ALTERNATIVE_NAMES"] = "ports.alternative_names";
PortsGameReferenceFields["ARTWORKS"] = "ports.artworks";
PortsGameReferenceFields["BUNDLES"] = "ports.bundles";
PortsGameReferenceFields["CATEGORY"] = "ports.category";
PortsGameReferenceFields["COLLECTION"] = "ports.collection";
PortsGameReferenceFields["COVER"] = "ports.cover";
PortsGameReferenceFields["CREATED_AT"] = "ports.created_at";
PortsGameReferenceFields["DLCS"] = "ports.dlcs";
PortsGameReferenceFields["EXPANDED_GAMES"] = "ports.expanded_games";
PortsGameReferenceFields["EXPANSIONS"] = "ports.expansions";
PortsGameReferenceFields["EXTERNAL_GAMES"] = "ports.external_games";
PortsGameReferenceFields["FIRST_RELEASE_DATE"] = "ports.first_release_date";
PortsGameReferenceFields["FOLLOWS"] = "ports.follows";
PortsGameReferenceFields["FORKS"] = "ports.forks";
PortsGameReferenceFields["FRANCHISE"] = "ports.franchise";
PortsGameReferenceFields["FRANCHISES"] = "ports.franchises";
PortsGameReferenceFields["GAME_ENGINES"] = "ports.game_engines";
PortsGameReferenceFields["GAME_MODES"] = "ports.game_modes";
PortsGameReferenceFields["GENRES"] = "ports.genres";
PortsGameReferenceFields["HYPES"] = "ports.hypes";
PortsGameReferenceFields["INVOLVED_COMPANIES"] = "ports.involved_companies";
PortsGameReferenceFields["KEYWORDS"] = "ports.keywords";
PortsGameReferenceFields["MULTIPLAYER_MODES"] = "ports.multiplayer_modes";
PortsGameReferenceFields["NAME"] = "ports.name";
PortsGameReferenceFields["PARENT_GAME"] = "ports.parent_game";
PortsGameReferenceFields["PLATFORMS"] = "ports.platforms";
PortsGameReferenceFields["PLAYER_PERSPECTIVES"] = "ports.player_perspectives";
PortsGameReferenceFields["PORTS"] = "ports.ports";
PortsGameReferenceFields["RATING"] = "ports.rating";
PortsGameReferenceFields["RATING_COUNT"] = "ports.rating_count";
PortsGameReferenceFields["RELEASE_DATES"] = "ports.release_dates";
PortsGameReferenceFields["REMAKES"] = "ports.remakes";
PortsGameReferenceFields["REMASTERS"] = "ports.remasters";
PortsGameReferenceFields["SCREENSHOTS"] = "ports.screenshots";
PortsGameReferenceFields["SIMILAR_GAMES"] = "ports.similar_games";
PortsGameReferenceFields["SLUG"] = "ports.slug";
PortsGameReferenceFields["STANDALONE_EXPANSIONS"] = "ports.standalone_expansions";
PortsGameReferenceFields["STATUS"] = "ports.status";
PortsGameReferenceFields["STORYLINE"] = "ports.storyline";
PortsGameReferenceFields["SUMMARY"] = "ports.summary";
PortsGameReferenceFields["TAGS"] = "ports.tags";
PortsGameReferenceFields["THEMES"] = "ports.themes";
PortsGameReferenceFields["TOTAL_RATING"] = "ports.total_rating";
PortsGameReferenceFields["TOTAL_RATING_COUNT"] = "ports.total_rating_count";
PortsGameReferenceFields["UPDATED_AT"] = "ports.updated_at";
PortsGameReferenceFields["URL"] = "ports.url";
PortsGameReferenceFields["VERSION_PARENT"] = "ports.version_parent";
PortsGameReferenceFields["VERSION_TITLE"] = "ports.version_title";
PortsGameReferenceFields["VIDEOS"] = "ports.videos";
PortsGameReferenceFields["WEBSITES"] = "ports.websites";
})(PortsGameReferenceFields = exports.PortsGameReferenceFields || (exports.PortsGameReferenceFields = {}));
/**
* Self Referenced from [Game]({@link Game.ts}) - remakes field
*/
var RemakesGameReferenceFields;
(function (RemakesGameReferenceFields) {
RemakesGameReferenceFields["ID"] = "remakes.id";
RemakesGameReferenceFields["CHECKSUM"] = "remakes.checksum";
RemakesGameReferenceFields["AGE_RATINGS"] = "remakes.age_ratings";
RemakesGameReferenceFields["AGGREGRATED_RATING"] = "remakes.aggregrated_rating";
RemakesGameReferenceFields["AGGREGRATED_RATING_COUNT"] = "remakes.aggregrated_rating_count";
RemakesGameReferenceFields["ALTERNATIVE_NAMES"] = "remakes.alternative_names";
RemakesGameReferenceFields["ARTWORKS"] = "remakes.artworks";
RemakesGameReferenceFields["BUNDLES"] = "remakes.bundles";
RemakesGameReferenceFields["CATEGORY"] = "remakes.category";
RemakesGameReferenceFields["COLLECTION"] = "remakes.collection";
RemakesGameReferenceFields["COVER"] = "remakes.cover";
RemakesGameReferenceFields["CREATED_AT"] = "remakes.created_at";
RemakesGameReferenceFields["DLCS"] = "remakes.dlcs";
RemakesGameReferenceFields["EXPANDED_GAMES"] = "remakes.expanded_games";
RemakesGameReferenceFields["EXPANSIONS"] = "remakes.expansions";
RemakesGameReferenceFields["EXTERNAL_GAMES"] = "remakes.external_games";
RemakesGameReferenceFields["FIRST_RELEASE_DATE"] = "remakes.first_release_date";
RemakesGameReferenceFields["FOLLOWS"] = "remakes.follows";
RemakesGameReferenceFields["FORKS"] = "remakes.forks";
RemakesGameReferenceFields["FRANCHISE"] = "remakes.franchise";
RemakesGameReferenceFields["FRANCHISES"] = "remakes.franchises";
RemakesGameReferenceFields["GAME_ENGINES"] = "remakes.game_engines";
RemakesGameReferenceFields["GAME_MODES"] = "remakes.game_modes";
RemakesGameReferenceFields["GENRES"] = "remakes.genres";
RemakesGameReferenceFields["HYPES"] = "remakes.hypes";
RemakesGameReferenceFields["INVOLVED_COMPANIES"] = "remakes.involved_companies";
RemakesGameReferenceFields["KEYWORDS"] = "remakes.keywords";
RemakesGameReferenceFields["MULTIPLAYER_MODES"] = "remakes.multiplayer_modes";
RemakesGameReferenceFields["NAME"] = "remakes.name";
RemakesGameReferenceFields["PARENT_GAME"] = "remakes.parent_game";
RemakesGameReferenceFields["PLATFORMS"] = "remakes.platforms";
RemakesGameReferenceFields["PLAYER_PERSPECTIVES"] = "remakes.player_perspectives";
RemakesGameReferenceFields["PORTS"] = "remakes.ports";
RemakesGameReferenceFields["RATING"] = "remakes.rating";
RemakesGameReferenceFields["RATING_COUNT"] = "remakes.rating_count";
RemakesGameReferenceFields["RELEASE_DATES"] = "remakes.release_dates";
RemakesGameReferenceFields["REMAKES"] = "remakes.remakes";
RemakesGameReferenceFields["REMASTERS"] = "remakes.remasters";
RemakesGameReferenceFields["SCREENSHOTS"] = "remakes.screenshots";
RemakesGameReferenceFields["SIMILAR_GAMES"] = "remakes.similar_games";
RemakesGameReferenceFields["SLUG"] = "remakes.slug";
RemakesGameReferenceFields["STANDALONE_EXPANSIONS"] = "remakes.standalone_expansions";
RemakesGameReferenceFields["STATUS"] = "remakes.status";
RemakesGameReferenceFields["STORYLINE"] = "remakes.storyline";
RemakesGameReferenceFields["SUMMARY"] = "remakes.summary";
RemakesGameReferenceFields["TAGS"] = "remakes.tags";
RemakesGameReferenceFields["THEMES"] = "remakes.themes";
RemakesGameReferenceFields["TOTAL_RATING"] = "remakes.total_rating";
RemakesGameReferenceFields["TOTAL_RATING_COUNT"] = "remakes.total_rating_count";
RemakesGameReferenceFields["UPDATED_AT"] = "remakes.updated_at";
RemakesGameReferenceFields["URL"] = "remakes.url";
RemakesGameReferenceFields["VERSION_PARENT"] = "remakes.version_parent";
RemakesGameReferenceFields["VERSION_TITLE"] = "remakes.version_title";
RemakesGameReferenceFields["VIDEOS"] = "remakes.videos";
RemakesGameReferenceFields["WEBSITES"] = "remakes.websites";
})(RemakesGameReferenceFields = exports.RemakesGameReferenceFields || (exports.RemakesGameReferenceFields = {}));
/**
* Self Referenced from [Game]({@link Game.ts}) - remasters field
*/
var RemastersGameReferenceFields;
(function (RemastersGameReferenceFields) {
RemastersGameReferenceFields["ID"] = "remasters.id";
RemastersGameReferenceFields["CHECKSUM"] = "remasters.checksum";
RemastersGameReferenceFields["AGE_RATINGS"] = "remasters.age_ratings";
RemastersGameReferenceFields["AGGREGRATED_RATING"] = "remasters.aggregrated_rating";
RemastersGameReferenceFields["AGGREGRATED_RATING_COUNT"] = "remasters.aggregrated_rating_count";
RemastersGameReferenceFields["ALTERNATIVE_NAMES"] = "remasters.alternative_names";
RemastersGameReferenceFields["ARTWORKS"] = "remasters.artworks";
RemastersGameReferenceFields["BUNDLES"] = "remasters.bundles";
RemastersGameReferenceFields["CATEGORY"] = "remasters.category";
RemastersGameReferenceFields["COLLECTION"] = "remasters.collection";
RemastersGameReferenceFields["COVER"] = "remasters.cover";
RemastersGameReferenceFields["CREATED_AT"] = "remasters.created_at";
RemastersGameReferenceFields["DLCS"] = "remasters.dlcs";
RemastersGameReferenceFields["EXPANDED_GAMES"] = "remasters.expanded_games";
RemastersGameReferenceFields["EXPANSIONS"] = "remasters.expansions";
RemastersGameReferenceFields["EXTERNAL_GAMES"] = "remasters.external_games";
RemastersGameReferenceFields["FIRST_RELEASE_DATE"] = "remasters.first_release_date";
RemastersGameReferenceFields["FOLLOWS"] = "remasters.follows";
RemastersGameReferenceFields["FORKS"] = "remasters.forks";
RemastersGameReferenceFields["FRANCHISE"] = "remasters.franchise";
RemastersGameReferenceFields["FRANCHISES"] = "remasters.franchises";
RemastersGameReferenceFields["GAME_ENGINES"] = "remasters.game_engines";
RemastersGameReferenceFields["GAME_MODES"] = "remasters.game_modes";
RemastersGameReferenceFields["GENRES"] = "remasters.genres";
RemastersGameReferenceFields["HYPES"] = "remasters.hypes";
RemastersGameReferenceFields["INVOLVED_COMPANIES"] = "remasters.involved_companies";
RemastersGameReferenceFields["KEYWORDS"] = "remasters.keywords";
RemastersGameReferenceFields["MULTIPLAYER_MODES"] = "remasters.multiplayer_modes";
RemastersGameReferenceFields["NAME"] = "remasters.name";
RemastersGameReferenceFields["PARENT_GAME"] = "remasters.parent_game";
RemastersGameReferenceFields["PLATFORMS"] = "remasters.platforms";
RemastersGameReferenceFields["PLAYER_PERSPECTIVES"] = "remasters.player_perspectives";
RemastersGameReferenceFields["PORTS"] = "remasters.ports";
RemastersGameReferenceFields["RATING"] = "remasters.rating";
RemastersGameReferenceFields["RATING_COUNT"] = "remasters.rating_count";
RemastersGameReferenceFields["RELEASE_DATES"] = "remasters.release_dates";
RemastersGameReferenceFields["REMAKES"] = "remasters.remakes";
RemastersGameReferenceFields["REMASTERS"] = "remasters.remasters";
RemastersGameReferenceFields["SCREENSHOTS"] = "remasters.screenshots";
RemastersGameReferenceFields["SIMILAR_GAMES"] = "remasters.similar_games";
RemastersGameReferenceFields["SLUG"] = "remasters.slug";
RemastersGameReferenceFields["STANDALONE_EXPANSIONS"] = "remasters.standalone_expansions";
RemastersGameReferenceFields["STATUS"] = "remasters.status";
RemastersGameReferenceFields["STORYLINE"] = "remasters.storyline";
RemastersGameReferenceFields["SUMMARY"] = "remasters.summary";
RemastersGameReferenceFields["TAGS"] = "remasters.tags";
RemastersGameReferenceFields["THEMES"] = "remasters.themes";
RemastersGameReferenceFields["TOTAL_RATING"] = "remasters.total_rating";
RemastersGameReferenceFields["TOTAL_RATING_COUNT"] = "remasters.total_rating_count";
RemastersGameReferenceFields["UPDATED_AT"] = "remasters.updated_at";
RemastersGameReferenceFields["URL"] = "remasters.url";
RemastersGameReferenceFields["VERSION_PARENT"] = "remasters.version_parent";
RemastersGameReferenceFields["VERSION_TITLE"] = "remasters.version_title";
RemastersGameReferenceFields["VIDEOS"] = "remasters.videos";
RemastersGameReferenceFields["WEBSITES"] = "remasters.websites";
})(RemastersGameReferenceFields = exports.RemastersGameReferenceFields || (exports.RemastersGameReferenceFields = {}));
/**
* Self Referenced from [Game]({@link Game.ts}) - similar_games field
*/
var SimilarGamesGameReferenceFields;
(function (SimilarGamesGameReferenceFields) {
SimilarGamesGameReferenceFields["ID"] = "similar_games.id";
SimilarGamesGameReferenceFields["CHECKSUM"] = "similar_games.checksum";
SimilarGamesGameReferenceFields["AGE_RATINGS"] = "similar_games.age_ratings";
SimilarGamesGameReferenceFields["AGGREGRATED_RATING"] = "similar_games.aggregrated_rating";
SimilarGamesGameReferenceFields["AGGREGRATED_RATING_COUNT"] = "similar_games.aggregrated_rating_count";
SimilarGamesGameReferenceFields["ALTERNATIVE_NAMES"] = "similar_games.alternative_names";
SimilarGamesGameReferenceFields["ARTWORKS"] = "similar_games.artworks";
SimilarGamesGameReferenceFields["BUNDLES"] = "similar_games.bundles";
SimilarGamesGameReferenceFields["CATEGORY"] = "similar_games.category";
SimilarGamesGameReferenceFields["COLLECTION"] = "similar_games.collection";
SimilarGamesGameReferenceFields["COVER"] = "similar_games.cover";
SimilarGamesGameReferenceFields["CREATED_AT"] = "similar_games.created_at";
SimilarGamesGameReferenceFields["DLCS"] = "similar_games.dlcs";
SimilarGamesGameReferenceFields["EXPANDED_GAMES"] = "similar_games.expanded_games";
SimilarGamesGameReferenceFields["EXPANSIONS"] = "similar_games.expansions";
SimilarGamesGameReferenceFields["EXTERNAL_GAMES"] = "similar_games.external_games";
SimilarGamesGameReferenceFields["FIRST_RELEASE_DATE"] = "similar_games.first_release_date";
SimilarGamesGameReferenceFields["FOLLOWS"] = "similar_games.follows";
SimilarGamesGameReferenceFields["FORKS"] = "similar_games.forks";
SimilarGamesGameReferenceFields["FRANCHISE"] = "similar_games.franchise";
SimilarGamesGameReferenceFields["FRANCHISES"] = "similar_games.franchises";
SimilarGamesGameReferenceFields["GAME_ENGINES"] = "similar_games.game_engines";
SimilarGamesGameReferenceFields["GAME_MODES"] = "similar_games.game_modes";
SimilarGamesGameReferenceFields["GENRES"] = "similar_games.genres";
SimilarGamesGameReferenceFields["HYPES"] = "similar_games.hypes";
SimilarGamesGameReferenceFields["INVOLVED_COMPANIES"] = "similar_games.involved_companies";
SimilarGamesGameReferenceFields["KEYWORDS"] = "similar_games.keywords";
SimilarGamesGameReferenceFields["MULTIPLAYER_MODES"] = "similar_games.multiplayer_modes";
SimilarGamesGameReferenceFields["NAME"] = "similar_games.name";
SimilarGamesGameReferenceFields["PARENT_GAME"] = "similar_games.parent_game";
SimilarGamesGameReferenceFields["PLATFORMS"] = "similar_games.platforms";
SimilarGamesGameReferenceFields["PLAYER_PERSPECTIVES"] = "similar_games.player_perspectives";
SimilarGamesGameReferenceFields["PORTS"] = "similar_games.ports";
SimilarGamesGameReferenceFields["RATING"] = "similar_games.rating";
SimilarGamesGameReferenceFields["RATING_COUNT"] = "similar_games.rating_count";
SimilarGamesGameReferenceFields["RELEASE_DATES"] = "similar_games.release_dates";
SimilarGamesGameReferenceFields["REMAKES"] = "similar_games.remakes";
SimilarGamesGameReferenceFields["REMASTERS"] = "similar_games.remasters";
SimilarGamesGameReferenceFields["SCREENSHOTS"] = "similar_games.screenshots";
SimilarGamesGameReferenceFields["SIMILAR_GAMES"] = "similar_games.similar_games";
SimilarGamesGameReferenceFields["SLUG"] = "similar_games.slug";
SimilarGamesGameReferenceFields["STANDALONE_EXPANSIONS"] = "similar_games.standalone_expansions";
SimilarGamesGameReferenceFields["STATUS"] = "similar_games.status";
SimilarGamesGameReferenceFields["STORYLINE"] = "similar_games.storyline";
SimilarGamesGameReferenceFields["SUMMARY"] = "similar_games.summary";
SimilarGamesGameReferenceFields["TAGS"] = "similar_games.tags";
SimilarGamesGameReferenceFields["THEMES"] = "similar_games.themes";
SimilarGamesGameReferenceFields["TOTAL_RATING"] = "similar_games.total_rating";
SimilarGamesGameReferenceFields["TOTAL_RATING_COUNT"] = "similar_games.total_rating_count";
SimilarGamesGameReferenceFields["UPDATED_AT"] = "similar_games.updated_at";
SimilarGamesGameReferenceFields["URL"] = "similar_games.url";
SimilarGamesGameReferenceFields["VERSION_PARENT"] = "similar_games.version_parent";
SimilarGamesGameReferenceFields["VERSION_TITLE"] = "similar_games.version_title";
SimilarGamesGameReferenceFields["VIDEOS"] = "similar_games.videos";
SimilarGamesGameReferenceFields["WEBSITES"] = "similar_games.websites";
})(SimilarGamesGameReferenceFields = exports.SimilarGamesGameReferenceFields || (exports.SimilarGamesGameReferenceFields = {}));
/**
* Self Referenced from [Game]({@link Game.ts}) - standalone_expansions field
*/
var StandaloneExpansionsGameReferenceFields;
(function (StandaloneExpansionsGameReferenceFields) {
StandaloneExpansionsGameReferenceFields["ID"] = "standalone_expansions.id";
StandaloneExpansionsGameReferenceFields["CHECKSUM"] = "standalone_expansions.checksum";
StandaloneExpansionsGameReferenceFields["AGE_RATINGS"] = "standalone_expansions.age_ratings";
StandaloneExpansionsGameReferenceFields["AGGREGRATED_RATING"] = "standalone_expansions.aggregrated_rating";
StandaloneExpansionsGameReferenceFields["AGGREGRATED_RATING_COUNT"] = "standalone_expansions.aggregrated_rating_count";
StandaloneExpansionsGameReferenceFields["ALTERNATIVE_NAMES"] = "standalone_expansions.alternative_names";
StandaloneExpansionsGameReferenceFields["ARTWORKS"] = "standalone_expansions.artworks";
StandaloneExpansionsGameReferenceFields["BUNDLES"] = "standalone_expansions.bundles";
StandaloneExpansionsGameReferenceFields["CATEGORY"] = "standalone_expansions.category";
StandaloneExpansionsGameReferenceFields["COLLECTION"] = "standalone_expansions.collection";
StandaloneExpansionsGameReferenceFields["COVER"] = "standalone_expansions.cover";
StandaloneExpansionsGameReferenceFields["CREATED_AT"] = "standalone_expansions.created_at";
StandaloneExpansionsGameReferenceFields["DLCS"] = "standalone_expansions.dlcs";
StandaloneExpansionsGameReferenceFields["EXPANDED_GAMES"] = "standalone_expansions.expanded_games";
StandaloneExpansionsGameReferenceFields["EXPANSIONS"] = "standalone_expansions.expansions";
StandaloneExpansionsGameReferenceFields["EXTERNAL_GAMES"] = "standalone_expansions.external_games";
StandaloneExpansionsGameReferenceFields["FIRST_RELEASE_DATE"] = "standalone_expansions.first_release_date";
StandaloneExpansionsGameReferenceFields["FOLLOWS"] = "standalone_expansions.follows";
StandaloneExpansionsGameReferenceFields["FORKS"] = "standalone_expansions.forks";
StandaloneExpansionsGameReferenceFields["FRANCHISE"] = "standalone_expansions.franchise";
StandaloneExpansionsGameReferenceFields["FRANCHISES"] = "standalone_expansions.franchises";
StandaloneExpansionsGameReferenceFields["GAME_ENGINES"] = "standalone_expansions.game_engines";
StandaloneExpansionsGameReferenceFields["GAME_MODES"] = "standalone_expansions.game_modes";
StandaloneExpansionsGameReferenceFields["GENRES"] = "standalone_expansions.genres";
StandaloneExpansionsGameReferenceFields["HYPES"] = "standalone_expansions.hypes";
StandaloneExpansionsGameReferenceFields["INVOLVED_COMPANIES"] = "standalone_expansions.involved_companies";
StandaloneExpansionsGameReferenceFields["KEYWORDS"] = "standalone_expansions.keywords";
StandaloneExpansionsGameReferenceFields["MULTIPLAYER_MODES"] = "standalone_expansions.multiplayer_modes";
StandaloneExpansionsGameReferenceFields["NAME"] = "standalone_expansions.name";
StandaloneExpansionsGameReferenceFields["PARENT_GAME"] = "standalone_expansions.parent_game";
StandaloneExpansionsGameReferenceFields["PLATFORMS"] = "standalone_expansions.platforms";
StandaloneExpansionsGameReferenceFields["PLAYER_PERSPECTIVES"] = "standalone_expansions.player_perspectives";
StandaloneExpansionsGameReferenceFields["PORTS"] = "standalone_expansions.ports";
StandaloneExpansionsGameReferenceFields["RATING"] = "standalone_expansions.rating";
StandaloneExpansionsGameReferenceFields["RATING_COUNT"] = "standalone_expansions.rating_count";
StandaloneExpansionsGameReferenceFields["RELEASE_DATES"] = "standalone_expansions.release_dates";
StandaloneExpansionsGameReferenceFields["REMAKES"] = "standalone_expansions.remakes";
StandaloneExpansionsGameReferenceFields["REMASTERS"] = "standalone_expansions.remasters";
StandaloneExpansionsGameReferenceFields["SCREENSHOTS"] = "standalone_expansions.screenshots";
StandaloneExpansionsGameReferenceFields["SIMILAR_GAMES"] = "standalone_expansions.similar_games";
StandaloneExpansionsGameReferenceFields["SLUG"] = "standalone_expansions.slug";
StandaloneExpansionsGameReferenceFields["STANDALONE_EXPANSIONS"] = "standalone_expansions.standalone_expansions";
StandaloneExpansionsGameReferenceFields["STATUS"] = "standalone_expansions.status";
StandaloneExpansionsGameReferenceFields["STORYLINE"] = "standalone_expansions.storyline";
StandaloneExpansionsGameReferenceFields["SUMMARY"] = "standalone_expansions.summary";
StandaloneExpansionsGameReferenceFields["TAGS"] = "standalone_expansions.tags";
StandaloneExpansionsGameReferenceFields["THEMES"] = "standalone_expansions.themes";
StandaloneExpansionsGameReferenceFields["TOTAL_RATING"] = "standalone_expansions.total_rating";
StandaloneExpansionsGameReferenceFields["TOTAL_RATING_COUNT"] = "standalone_expansions.total_rating_count";
StandaloneExpansionsGameReferenceFields["UPDATED_AT"] = "standalone_expansions.updated_at";
StandaloneExpansionsGameReferenceFields["URL"] = "standalone_expansions.url";
StandaloneExpansionsGameReferenceFields["VERSION_PARENT"] = "standalone_expansions.version_parent";
StandaloneExpansionsGameReferenceFields["VERSION_TITLE"] = "standalone_expansions.version_title";
StandaloneExpansionsGameReferenceFields["VIDEOS"] = "standalone_expansions.videos";
StandaloneExpansionsGameReferenceFields["WEBSITES"] = "standalone_expansions.websites";
})(StandaloneExpansionsGameReferenceFields = exports.StandaloneExpansionsGameReferenceFields || (exports.StandaloneExpansionsGameReferenceFields = {}));
/**
* Referenced from [Company]({@link Company.ts}) - published field
*/
var PublishedGameReferenceFields;
(function (PublishedGameReferenceFields) {
PublishedGameReferenceFields["ID"] = "published.id";
PublishedGameReferenceFields["CHECKSUM"] = "published.checksum";
PublishedGameReferenceFields["AGE_RATINGS"] = "published.age_ratings";
PublishedGameReferenceFields["AGGREGRATED_RATING"] = "published.aggregrated_rating";
PublishedGameReferenceFields["AGGREGRATED_RATING_COUNT"] = "published.aggregrated_rating_count";
PublishedGameReferenceFields["ALTERNATIVE_NAMES"] = "published.alternative_names";
PublishedGameReferenceFields["ARTWORKS"] = "published.artworks";
PublishedGameReferenceFields["BUNDLES"] = "published.bundles";
PublishedGameReferenceFields["CATEGORY"] = "published.category";
PublishedGameReferenceFields["COLLECTION"] = "published.collection";
PublishedGameReferenceFields["COVER"] = "published.cover";
PublishedGameReferenceFields["CREATED_AT"] = "published.created_at";
PublishedGameReferenceFields["DLCS"] = "published.dlcs";
PublishedGameReferenceFields["EXPANDED_GAMES"] = "published.expanded_games";
PublishedGameReferenceFields["EXPANSIONS"] = "published.expansions";
PublishedGameReferenceFields["EXTERNAL_GAMES"] = "published.external_games";
PublishedGameReferenceFields["FIRST_RELEASE_DATE"] = "published.first_release_date";
PublishedGameReferenceFields["FOLLOWS"] = "published.follows";
PublishedGameReferenceFields["FORKS"] = "published.forks";
PublishedGameReferenceFields["FRANCHISE"] = "published.franchise";
PublishedGameReferenceFields["FRANCHISES"] = "published.franchises";
PublishedGameReferenceFields["GAME_ENGINES"] = "published.game_engines";
PublishedGameReferenceFields["GAME_MODES"] = "published.game_modes";
PublishedGameReferenceFields["GENRES"] = "published.genres";
PublishedGameReferenceFields["HYPES"] = "published.hypes";
PublishedGameReferenceFields["INVOLVED_COMPANIES"] = "published.involved_companies";
PublishedGameReferenceFields["KEYWORDS"] = "published.keywords";
PublishedGameReferenceFields["MULTIPLAYER_MODES"] = "published.multiplayer_modes";
PublishedGameReferenceFields["NAME"] = "published.name";
PublishedGameReferenceFields["PARENT_GAME"] = "published.parent_game";
PublishedGameReferenceFields["PLATFORMS"] = "published.platforms";
PublishedGameReferenceFields["PLAYER_PERSPECTIVES"] = "published.player_perspectives";
PublishedGameReferenceFields["PORTS"] = "published.ports";
PublishedGameReferenceFields["RATING"] = "published.rating";
P