many many many many changes
This commit is contained in:
4
src/schemas/scoresaber/badge.ts
Normal file
4
src/schemas/scoresaber/badge.ts
Normal file
@ -0,0 +1,4 @@
|
||||
export type ScoresaberBadge = {
|
||||
description: string;
|
||||
image: string;
|
||||
};
|
6
src/schemas/scoresaber/difficulty.ts
Normal file
6
src/schemas/scoresaber/difficulty.ts
Normal file
@ -0,0 +1,6 @@
|
||||
export type ScoresaberDifficulty = {
|
||||
leaderboardId: number;
|
||||
difficulty: number;
|
||||
gameMode: string;
|
||||
difficultyRaw: string;
|
||||
};
|
3
src/schemas/scoresaber/error.ts
Normal file
3
src/schemas/scoresaber/error.ts
Normal file
@ -0,0 +1,3 @@
|
||||
export type ScoresaberError = {
|
||||
message: string;
|
||||
};
|
28
src/schemas/scoresaber/leaderboard.ts
Normal file
28
src/schemas/scoresaber/leaderboard.ts
Normal file
@ -0,0 +1,28 @@
|
||||
import { ScoresaberDifficulty } from "./difficulty";
|
||||
import { ScoresaberScore } from "./score";
|
||||
|
||||
export type ScoresaberLeaderboardInfo = {
|
||||
id: string;
|
||||
songHash: string;
|
||||
songName: string;
|
||||
songSubName: string;
|
||||
songAuthorName: string;
|
||||
levelAuthorName: string;
|
||||
difficulty: ScoresaberDifficulty;
|
||||
maxScore: number;
|
||||
createdDate: string;
|
||||
rankedDate: string[];
|
||||
qualifiedDate: string[];
|
||||
lovedDate: string[];
|
||||
ranked: boolean;
|
||||
qualified: boolean;
|
||||
loved: boolean;
|
||||
maxPP: number;
|
||||
stars: number;
|
||||
positiveModifiers: boolean;
|
||||
plays: number;
|
||||
dailyPlays: number;
|
||||
coverImage: string;
|
||||
playerScore: ScoresaberScore[];
|
||||
difficulties: ScoresaberDifficulty[];
|
||||
};
|
19
src/schemas/scoresaber/player.ts
Normal file
19
src/schemas/scoresaber/player.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { ScoresaberBadge } from "./badge";
|
||||
import { ScoresaberScoreStats } from "./scoreStats";
|
||||
|
||||
export type ScoresaberPlayer = {
|
||||
id: string;
|
||||
name: string;
|
||||
profilePicture: string;
|
||||
country: string;
|
||||
pp: number;
|
||||
rank: number;
|
||||
countryRank: number;
|
||||
role: string;
|
||||
badges: ScoresaberBadge[];
|
||||
histories: string;
|
||||
scoreStats: ScoresaberScoreStats[];
|
||||
permissions: number;
|
||||
banned: boolean;
|
||||
inactive: boolean;
|
||||
};
|
7
src/schemas/scoresaber/playerScore.ts
Normal file
7
src/schemas/scoresaber/playerScore.ts
Normal file
@ -0,0 +1,7 @@
|
||||
import { ScoresaberLeaderboardInfo } from "./leaderboard";
|
||||
import { ScoresaberScore } from "./score";
|
||||
|
||||
export type ScoresaberPlayerScore = {
|
||||
score: ScoresaberScore;
|
||||
leaderboard: ScoresaberLeaderboardInfo;
|
||||
};
|
18
src/schemas/scoresaber/score.ts
Normal file
18
src/schemas/scoresaber/score.ts
Normal file
@ -0,0 +1,18 @@
|
||||
export type ScoresaberScore = {
|
||||
id: number;
|
||||
leaderboardPlayerInfo: string;
|
||||
rank: number;
|
||||
baseScore: number;
|
||||
modifiedScore: number;
|
||||
pp: number;
|
||||
weight: number;
|
||||
modifiers: string;
|
||||
multiplier: number;
|
||||
badCuts: number;
|
||||
missedNotes: number;
|
||||
maxCombo: number;
|
||||
fullCombo: boolean;
|
||||
hmd: number;
|
||||
hasReply: boolean;
|
||||
timeSet: string;
|
||||
};
|
8
src/schemas/scoresaber/scoreStats.ts
Normal file
8
src/schemas/scoresaber/scoreStats.ts
Normal file
@ -0,0 +1,8 @@
|
||||
export type ScoresaberScoreStats = {
|
||||
totalScore: number;
|
||||
totalRankedScore: number;
|
||||
averageRankedAccuracy: number;
|
||||
totalPlayCount: number;
|
||||
rankedPlayCount: number;
|
||||
replaysWatched: number;
|
||||
};
|
Reference in New Issue
Block a user