2024-09-14 01:56:27 +03:00
|
|
|
export enum Downloader {
|
|
|
|
RealDebrid,
|
|
|
|
Torrent,
|
|
|
|
Gofile,
|
|
|
|
PixelDrain,
|
|
|
|
Qiwi,
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum DownloadSourceStatus {
|
|
|
|
UpToDate,
|
|
|
|
Errored,
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum CatalogueCategory {
|
|
|
|
Hot = "hot",
|
|
|
|
Weekly = "weekly",
|
2024-10-21 21:19:18 +03:00
|
|
|
Achievements = "achievements",
|
2024-09-14 01:56:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
export enum SteamContentDescriptor {
|
|
|
|
SomeNudityOrSexualContent = 1,
|
|
|
|
FrequenceViolenceOrGore = 2,
|
|
|
|
AdultOnlySexualContent = 3,
|
|
|
|
FrequentNudityOrSexualContent = 4,
|
|
|
|
GeneralMatureContent = 5,
|
|
|
|
}
|
2024-09-26 21:33:32 +03:00
|
|
|
|
|
|
|
export enum Cracker {
|
|
|
|
codex = "CODEX",
|
|
|
|
rune = "RUNE",
|
|
|
|
onlineFix = "OnlineFix",
|
|
|
|
goldberg = "Goldberg",
|
2024-10-03 17:16:30 +03:00
|
|
|
userstats = "user_stats",
|
|
|
|
rld = "RLD!",
|
2024-10-04 02:26:45 +03:00
|
|
|
empress = "EMPRESS",
|
|
|
|
skidrow = "SKIDROW",
|
|
|
|
creamAPI = "CreamAPI",
|
|
|
|
smartSteamEmu = "SmartSteamEmu",
|
2024-10-04 22:37:01 +03:00
|
|
|
_3dm = "3dm",
|
2024-10-06 04:17:00 +03:00
|
|
|
flt = "FLT",
|
2024-10-06 04:43:05 +03:00
|
|
|
rle = "RLE",
|
2024-10-22 22:12:54 +03:00
|
|
|
razor1911 = "RAZOR1911",
|
2024-09-26 21:33:32 +03:00
|
|
|
}
|