feat(user): support lookup favourite & most played beatmaps
This commit is contained in:
@@ -86,3 +86,14 @@ class RankHistory(BaseModel):
|
||||
class Page(BaseModel):
|
||||
html: str = ""
|
||||
raw: str = ""
|
||||
|
||||
|
||||
class BeatmapsetType(str, Enum):
|
||||
FAVOURITE = "favourite"
|
||||
GRAVEYARD = "graveyard"
|
||||
GUEST = "guest"
|
||||
LOVED = "loved"
|
||||
MOST_PLAYED = "most_played"
|
||||
NOMINATED = "nominated"
|
||||
PENDING = "pending"
|
||||
RANKED = "ranked"
|
||||
|
||||
Reference in New Issue
Block a user