import { Leaderboards } from "../leaderboard"; import { kyFetch } from "./utils"; import PlayerScoresResponse from "../response/player-scores-response"; import { Config } from "../config"; import { ScoreSort } from "../score/score-sort"; import LeaderboardScoresResponse from "../response/leaderboard-scores-response"; /** * Fetches the player's scores * * @param leaderboard the leaderboard * @param id the player id * @param page the page * @param sort the sort * @param search the search */ export async function fetchPlayerScores( leaderboard: Leaderboards, id: string, page: number, sort: ScoreSort, search?: string ) { return kyFetch>( `${Config.apiUrl}/scores/player/${leaderboard}/${id}/${page}/${sort}${search ? `?search=${search}` : ""}` ); } /** * Fetches the player's scores * * @param leaderboard the leaderboard * @param id the player id * @param page the page */ export async function fetchLeaderboardScores(leaderboard: Leaderboards, id: string, page: number) { return kyFetch>(`${Config.apiUrl}/scores/leaderboard/${leaderboard}/${id}/${page}`); }