export enum ParticipationStatus { PENDING = "pending", ACCEPTED = "accepted", REJECTED = "rejected", } export enum EventAccess { OPEN = "open", PRIVATE = "private", } export enum EventStatus { UPCOMING = "upcoming", ONGOING = "ongoing", FINISHED = "finished", CANCELLED = "cancelled", } export enum EventType { CUSTOM = "custom", TOURNAMENT = "tournament", MATCH = "match", CHALLENGE = "challenge", } export enum Game { CUSTOM = "custom", VALORANT = "valorant", COD_MW = "cod_mw", CS_GO = "cs_go", DOTA = "dota", LOL = "lol", } export enum Platform { CUSTOM = "custom", PSN = "psn", STEAM = "steam", XBL = "xbl", BATTLE = "battle", ACTI = "acti", UNO = "uno", } export enum TeamSize { ONEVSONE = "OneVSOne", TWOVSTWO = "TwoVSTwo", THREEVSTHREE = "ThreeVSThree", FOURVSFOUR = "FourVSFour", FIVEVSFIVE = "FiveVSFive", } //