Add IQuery interface, add "Mods" as category

pull/73/head
MillenniumEarl 2021-02-23 19:55:47 +01:00
parent 300bf1c411
commit ee7e00b031
1 changed files with 23 additions and 2 deletions

View File

@ -57,7 +57,7 @@ export type TStatus = "Completed" | "Ongoing" | "Abandoned" | "Onhold";
/**
* List of possible categories of a particular work.
*/
export type TCategory = "games" | "comics" | "animations" | "assets";
export type TCategory = "games" | "mods" | "comics" | "animations" | "assets";
/**
* Collection of values defined for each
@ -253,4 +253,25 @@ export interface IAsset extends IBasic {
* Collection of values extrapolated from the
* F95 platform representing a particular work.
*/
export interface IHandiwork extends IGame, IComic, IAnimation, IAsset { }
export interface IHandiwork extends IGame, IComic, IAnimation, IAsset { }
export interface IQuery {
/**
* Category of items to search among.
*/
category: TCategory,
/**
* Tags to be include in the search.
* Max. 5 tags
*/
includedTags: string[],
/**
* Prefixes to include in the search.
*/
includedPrefixes: string[],
/**
* Index of the page to be obtained.
* Between 1 and infinity.
*/
page: number,
}