From bf97b8f9ff0d02dec5e8f8572d13b6c4140e0195 Mon Sep 17 00:00:00 2001 From: Taevas <67872932+TTTaevas@users.noreply.github.com> Date: Sat, 25 Nov 2023 16:50:06 +0100 Subject: [PATCH 1/3] Theoretical implementation of the Chat endpoints --- lib/index.ts | 113 +++++++++++++++++++++++++++++++++++ lib/tests/test_authorized.ts | 48 +-------------- lib/user.ts | 2 +- 3 files changed, 116 insertions(+), 47 deletions(-) diff --git a/lib/index.ts b/lib/index.ts index 2e71f82..d563766 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -23,6 +23,7 @@ import { WikiPage } from "./wiki.js" import { NewsPost, NewsPostWithContentNavigation } from "./news.js" import { SearchResultUser, SearchResultWiki } from "./home.js" import { Rulesets, Mod, Scope } from "./misc.js" +import { ChatChannel, ChatMessage, UserSilence } from "./chat.js" export { User, UserWithKudosu, UserWithCountry, UserWithCountryCover, UserWithCountryCoverGroupsStatisticsrulesets, UserWithCountryCoverGroupsStatisticsSupport, @@ -894,4 +895,116 @@ export class API { async editForumPost(post: {id: number} | ForumPost, new_text: string): Promise { return await this.request("put", `forums/posts/${post.id}`, {body: new_text}) } + + + // CHAT STUFF + + /** + * Needs to be requested periodically to reset chat activity timeout + * @remarks Every 30 seconds is a good idea + * @param since UserSilences that are not after that will not be returned! + * @returns A list of recent silences + */ + async keepChatAlive(since?: {user_silence?: {id: number} | UserSilence, message?: {message_id: number} | ChatMessage}): Promise { + return await this.request("post", "chat/ack", {history_since: since?.user_silence?.id, since: since?.message?.message_id}) + } + + /** + * + * @param user_target + * @param message + * @param is_action + * @param uuid + */ + async sendChatPrivateMessage(user_target: {id: number} | User, message: string, is_action: boolean, uuid?: string): + Promise<{channel: ChatChannel, message: ChatMessage}> { + return await this.request("post", "chat/new", {target_id: user_target.id, message, is_action, uuid}) + } + + /** + * + * @param channel + * @param limit + * @param since + * @param until + */ + async getChatMessages(channel: {channel_id: number} | ChatChannel, limit: number = 20, + since?: {message_id: number} | ChatMessage, until?: {message_id: number} | ChatMessage): Promise { + return await this.request("get", `chat/channels/${channel.channel_id}/messages`, {limit, since: since?.message_id, until: until?.message_id}) + } + + /** + * + * @param channel + * @param message + * @param is_action + */ + async sendChatMessage(channel: {channel_id: number} | ChatChannel, message: string, is_action: boolean): Promise { + return await this.request("post", `chat/channels/${channel.channel_id}/messages`, {message, is_action}) + } + + /** + * + * @param channel + * @param user + */ + async joinChatChannel(channel: {channel_id: number} | ChatChannel, user: {id: number} | User): Promise { + return await this.request("put", `chat/channels/${channel.channel_id}/users/${user.id}`) + } + + /** + * + * @param channel + * @param user + */ + async leaveChatChannel(channel: {channel_id: number} | ChatChannel, user: {id: number} | User): Promise { + return await this.request("delete", `chat/channels/${channel.channel_id}/users/${user.id}`) + } + + /** + * Mark a certain channel as read up to a given message! + * @param channel + * @param message + */ + async markChatChannelAsRead(channel: {channel_id: number} | ChatChannel, message: {message_id: number} | ChatMessage): Promise { + return await this.request("put", + `chat/channels/${channel.channel_id}/mark-as-read/${message.message_id}`, {channel_id: channel.channel_id, message: message.message_id}) + } + + /** + * Get a list of all publicly joinable channels! + */ + async getChatChannels(): Promise { + return await this.request("get", "chat/channels") + } + + /** + * + * @param user_target + * @returns The newly created channel! + */ + async createChatPrivateChannel(user_target: {id: number} | User): Promise { + return await this.request("post", "chat/channels", {type: "PM", target_id: user_target.id}) + } + + /** + * + * @param channel Details of the channel you're creating + * @param user_targets + * @param message The message to send with the announcement + * @returns The newly created channel! + */ + async createChatAnnouncementChannel(channel: {name: string, description: string}, user_targets: Array<{id: number} | User>, message: string): + Promise { + const target_ids = user_targets.map((u) => u.id) + return await this.request("post", "chat/channels", {type: "ANNOUNCE", channel, target_ids, message}) + } + + /** + * Get a ChatChannel, and the users in it if it is a private channel! + * @param channel The channel in question + */ + async getChatChannel(channel: {channel_id: number} | ChatChannel): Promise<{channel: ChatChannel, users: User[]}> { + return await this.request("get", `chat/channels/${channel.channel_id}`) + } } diff --git a/lib/tests/test_authorized.ts b/lib/tests/test_authorized.ts index 2f736d8..ac139ea 100644 --- a/lib/tests/test_authorized.ts +++ b/lib/tests/test_authorized.ts @@ -8,7 +8,6 @@ import * as osu from "../index.js" import promptSync from "prompt-sync" import { exec } from "child_process" import util from "util" -import { PollConfig } from "../forum.js" const prompt = promptSync({sigint: true}) const server = "https://dev.ppy.sh" @@ -22,55 +21,12 @@ async function test(id: string | undefined, secret: string | undefined, redirect if (secret === undefined) {throw new Error("no SECRET env var")} if (redirect_uri === undefined) {throw new Error("no REDIRECT_URI env var")} - let url = osu.generateAuthorizationURL(Number(id), redirect_uri, ["public", "forum.write"], server) + let url = osu.generateAuthorizationURL(Number(id), redirect_uri, ["public", "chat.read", "chat.write", "chat.write_manage"], server) exec(`xdg-open "${url}"`) let code = prompt(`What code do you get from: ${url}\n\n`) let api = await osu.API.createAsync({id: Number(id), secret}, {code, redirect_uri}, "all", server) - - // Consider making a poll interface! - let poll: PollConfig = { - title: "decide now!", - options: ["yeah", "yes"], - length_days: 0, - max_options: 1, - vote_change: false, - hide_results: false - } - try { - // let post = await api.createForumTopic(74, "furioso melodia", - // "it's really important!\nthis post was made to test [url=https://github.com/TTTaevas/osu-api-v2-js]osu-api-v2-js[/url]", poll) - // console.log(util.inspect(post, {colors: true, depth: Infinity})) - // await sleep(20) - - // ---- - - // let post = {post: {id: 508}, topic: {id: 397}} - - // let title_edit = await api.editForumTopicTitle(post.topic, "is furioso melodia a good beatmap") - // console.log(util.inspect(title_edit, {colors: true, depth: Infinity})) - // await sleep(20) - - // let content_edit = await api.editForumPost(post.post, `[header]you agree with me, right?[/header]\nthis post was made to test [url=https://github.com/TTTaevas/osu-api-v2-js]osu-api-v2-js[/url]\ncome check it out!`) - // console.log(util.inspect(content_edit, {colors: true, depth: Infinity})) - // await sleep(20) - - // ---- - - let topic = {id: 133} - - let check = await api.getForumTopicAndPosts(topic) - console.log(util.inspect(check, {colors: true, depth: Infinity})) - - let reply = await api.replyForumTopic(topic, "did you know: furioso melodia is a good map") - console.log(util.inspect(reply, {colors: true, depth: Infinity})) - await sleep(20) - - let check_again = await api.getForumTopicAndPosts(topic) - console.log(util.inspect(check_again, {colors: true, depth: Infinity})) - } catch(err) { - console.log(err) - } + console.log(await api.getResourceOwner()) } diff --git a/lib/user.ts b/lib/user.ts index b8b9e46..f4c779c 100644 --- a/lib/user.ts +++ b/lib/user.ts @@ -195,7 +195,7 @@ export interface UserExtended extends UserWithCountryCoverGroupsStatisticsSuppor * Expected from api.getResourceOwner() */ export interface UserExtendedWithStatisticsrulesets extends UserExtended, UserWithCountryCoverGroupsStatisticsrulesets { - + is_restricted: boolean } /** From 4c64d067703c2f1a52bcea1f477b1e9829a83182 Mon Sep 17 00:00:00 2001 From: Taevas <67872932+TTTaevas@users.noreply.github.com> Date: Sat, 25 Nov 2023 19:25:41 +0100 Subject: [PATCH 2/3] Adjust the more useful Chat functions --- README.md | 12 ++++----- lib/chat.ts | 31 ++++++++++++++++++++---- lib/index.ts | 47 +++++++++++++++++++----------------- lib/tests/test_authorized.ts | 4 +-- 4 files changed, 59 insertions(+), 35 deletions(-) diff --git a/README.md b/README.md index 4fd6ccd..736af79 100644 --- a/README.md +++ b/README.md @@ -109,14 +109,14 @@ Your `refresh_token` can actually also expire at a (purposefully) unknown time, ### Chat - [ ] Chat Keepalive - [ ] Create New PM -- [ ] Get Channel Messages -- [ ] Send Message to Channel -- [ ] Join Channel -- [ ] Leave Channel +- [x] Get Channel Messages +- [x] Send Message to Channel +- [x] Join Channel +- [x] Leave Channel - [ ] Mark Channel as Read -- [ ] Get Channel List +- [x] Get Channel List - [ ] Create Channel -- [ ] Get Channel +- [x] Get Channel ### Comments - [ ] Get Comments diff --git a/lib/chat.ts b/lib/chat.ts index f4280d2..465cd9e 100644 --- a/lib/chat.ts +++ b/lib/chat.ts @@ -24,9 +24,27 @@ export interface ChatChannel { type: ChannelType moderated: boolean uuid: string | null - current_user_attributes?: CurrentUserAttributes | null - last_message_id?: number | null - users?: number[] | null +} + +export interface ChatChannelWithDetails extends ChatChannel { + current_user_attributes: { + can_message: boolean + /** + * The reason why messages can't be sent in this channel + * @remarks Is null if messages can be sent + */ + can_message_error: string | null + /** + * @remarks Is null if no message has been read (I think) + */ + last_read_id: number | null + } + last_message_id: number + /** + * The ids of the users that are in the channel + * @remarks Is empty for public channels + */ + users: number[] } export interface ChatMessage { @@ -36,7 +54,10 @@ export interface ChatMessage { message_id: number sender_id: number timestamp: Date + /** + * Like "action", "markdown", "plain" + */ type: string - uuid: string | null - sender?: User + uuid?: string | null + sender: User } diff --git a/lib/index.ts b/lib/index.ts index d563766..7567571 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -23,7 +23,7 @@ import { WikiPage } from "./wiki.js" import { NewsPost, NewsPostWithContentNavigation } from "./news.js" import { SearchResultUser, SearchResultWiki } from "./home.js" import { Rulesets, Mod, Scope } from "./misc.js" -import { ChatChannel, ChatMessage, UserSilence } from "./chat.js" +import { ChatChannel, ChatChannelWithDetails, ChatMessage, UserSilence } from "./chat.js" export { User, UserWithKudosu, UserWithCountry, UserWithCountryCover, UserWithCountryCoverGroupsStatisticsrulesets, UserWithCountryCoverGroupsStatisticsSupport, @@ -370,7 +370,8 @@ export class API { } this.log(false, response.statusText, response.status, {endpoint, parameters}) - return correctType(await response.json()) + // 204 means the request worked as intended and did not give us anything, so we can't `.json()` the response + return response.status !== 204 ? await response.json() : undefined } @@ -900,9 +901,9 @@ export class API { // CHAT STUFF /** - * Needs to be requested periodically to reset chat activity timeout + * Needs to be done periodically to reset chat activity timeout * @remarks Every 30 seconds is a good idea - * @param since UserSilences that are not after that will not be returned! + * @param since UserSilences that are before that will not be returned! * @returns A list of recent silences */ async keepChatAlive(since?: {user_silence?: {id: number} | UserSilence, message?: {message_id: number} | ChatMessage}): Promise { @@ -910,10 +911,10 @@ export class API { } /** - * - * @param user_target - * @param message - * @param is_action + * Send a private message to someone! + * @param user_target The User you wanna send your message to! + * @param message The message you wanna send + * @param is_action Is it a command? Like `/me dances` * @param uuid */ async sendChatPrivateMessage(user_target: {id: number} | User, message: string, is_action: boolean, uuid?: string): @@ -923,8 +924,8 @@ export class API { /** * - * @param channel - * @param limit + * @param channel The Channel you wanna get the messages from + * @param limit (defaults to 20, max 50) The maximum amount of messages you want to get! * @param since * @param until */ @@ -934,28 +935,29 @@ export class API { } /** - * - * @param channel - * @param message - * @param is_action + * Send a message in a ChatChannel! + * @param channel The channel in which you want to send your message + * @param message The message you wanna send + * @param is_action Is it a command? Like `/me dances` + * @returns The newly sent ChatMessage! */ async sendChatMessage(channel: {channel_id: number} | ChatChannel, message: string, is_action: boolean): Promise { return await this.request("post", `chat/channels/${channel.channel_id}/messages`, {message, is_action}) } /** - * - * @param channel - * @param user + * Join a ChatChannel, allowing you to interact with it! + * @param channel The channel you wanna join + * @param user The user joining the channel */ - async joinChatChannel(channel: {channel_id: number} | ChatChannel, user: {id: number} | User): Promise { + async joinChatChannel(channel: {channel_id: number} | ChatChannel, user: {id: number} | User): Promise { return await this.request("put", `chat/channels/${channel.channel_id}/users/${user.id}`) } /** - * - * @param channel - * @param user + * Leave/Close a ChatChannel! + * @param channel The channel you wanna join + * @param user The user joining the channel */ async leaveChatChannel(channel: {channel_id: number} | ChatChannel, user: {id: number} | User): Promise { return await this.request("delete", `chat/channels/${channel.channel_id}/users/${user.id}`) @@ -1002,9 +1004,10 @@ export class API { /** * Get a ChatChannel, and the users in it if it is a private channel! + * @remarks Will 404 if the user has not joined the channel (use `joinChatChannel` for that) * @param channel The channel in question */ - async getChatChannel(channel: {channel_id: number} | ChatChannel): Promise<{channel: ChatChannel, users: User[]}> { + async getChatChannel(channel: {channel_id: number} | ChatChannel): Promise<{channel: ChatChannelWithDetails, users: User[]}> { return await this.request("get", `chat/channels/${channel.channel_id}`) } } diff --git a/lib/tests/test_authorized.ts b/lib/tests/test_authorized.ts index ac139ea..09591e7 100644 --- a/lib/tests/test_authorized.ts +++ b/lib/tests/test_authorized.ts @@ -26,8 +26,8 @@ async function test(id: string | undefined, secret: string | undefined, redirect let code = prompt(`What code do you get from: ${url}\n\n`) let api = await osu.API.createAsync({id: Number(id), secret}, {code, redirect_uri}, "all", server) - console.log(await api.getResourceOwner()) - + let me = await api.getResourceOwner() + let leave = await api.leaveChatChannel({channel_id: 5}, me) } test(process.env.DEV_ID, process.env.DEV_SECRET, process.env.REDIRECT_URI) From 67005b9b0b32850ae66ab5ff362e824a9efe11ec Mon Sep 17 00:00:00 2001 From: Taevas <67872932+TTTaevas@users.noreply.github.com> Date: Sun, 26 Nov 2023 18:58:44 +0100 Subject: [PATCH 3/3] More chat adjustments and updated documentation --- README.md | 10 +- docs/assets/navigation.js | 2 +- docs/assets/search.js | 2 +- docs/classes/API.html | 218 +++++++++++++----- docs/classes/APIError.html | 10 +- docs/enums/RankStatus.html | 4 +- docs/enums/Rulesets.html | 4 +- docs/functions/generateAuthorizationURL.html | 5 +- docs/index.html | 59 +++-- docs/interfaces/Beatmap.html | 4 +- .../BeatmapDifficultyAttributes.html | 4 +- .../BeatmapDifficultyAttributesFruits.html | 4 +- .../BeatmapDifficultyAttributesMania.html | 6 +- .../BeatmapDifficultyAttributesOsu.html | 4 +- .../BeatmapDifficultyAttributesTaiko.html | 4 +- docs/interfaces/BeatmapExtended.html | 4 +- .../BeatmapExtendedWithFailtimes.html | 4 +- ...tendedWithFailtimesBeatmapsetextended.html | 4 +- docs/interfaces/BeatmapPack.html | 8 +- docs/interfaces/BeatmapPlaycount.html | 6 +- docs/interfaces/BeatmapUserScore.html | 4 +- docs/interfaces/BeatmapWithBeatmapset.html | 4 +- ...BeatmapWithBeatmapsetChecksumMaxcombo.html | 4 +- docs/interfaces/Beatmapset.html | 14 +- docs/interfaces/BeatmapsetExtended.html | 18 +- docs/interfaces/BeatmapsetExtendedPlus.html | 26 +-- ...BeatmapsetExtendedWithBeatmapExtended.html | 18 +- ...elogBuildWithChangelogentriesVersions.html | 10 +- .../ChangelogBuildWithUpdatestreams.html | 10 +- ...uildWithUpdatestreamsChangelogentries.html | 10 +- docs/interfaces/ChatChannel.html | 9 + docs/interfaces/ChatChannelWithDetails.html | 17 ++ docs/interfaces/ChatMessage.html | 12 + docs/interfaces/Event.html | 4 +- docs/interfaces/EventAchievement.html | 6 +- docs/interfaces/EventBeatmap.html | 8 +- docs/interfaces/EventBeatmapPlaycount.html | 8 +- docs/interfaces/EventBeatmapset.html | 8 +- docs/interfaces/EventBeatmapsetApprove.html | 10 +- docs/interfaces/EventBeatmapsetDelete.html | 8 +- docs/interfaces/EventBeatmapsetRevive.html | 10 +- docs/interfaces/EventBeatmapsetUpdate.html | 10 +- docs/interfaces/EventBeatmapsetUpload.html | 10 +- docs/interfaces/EventRank.html | 14 +- docs/interfaces/EventRankLost.html | 10 +- docs/interfaces/EventUser.html | 6 +- docs/interfaces/EventUserSupportAgain.html | 6 +- docs/interfaces/EventUserSupportFirst.html | 6 +- docs/interfaces/EventUserSupportGift.html | 6 +- docs/interfaces/EventUsernameChange.html | 6 +- docs/interfaces/ForumPost.html | 13 ++ docs/interfaces/ForumTopic.html | 16 ++ docs/interfaces/KudosuHistory.html | 4 +- docs/interfaces/Leader.html | 4 +- docs/interfaces/Match.html | 6 +- docs/interfaces/MatchInfo.html | 4 +- docs/interfaces/MultiplayerScore.html | 6 +- docs/interfaces/MultiplayerScores.html | 8 +- docs/interfaces/NewsPost.html | 13 ++ .../NewsPostWithContentNavigation.html | 16 ++ docs/interfaces/PlaylistItem.html | 8 +- docs/interfaces/PollConfig.html | 13 ++ docs/interfaces/Rankings.html | 6 +- docs/interfaces/RankingsCountry.html | 8 +- docs/interfaces/RankingsSpotlight.html | 4 +- docs/interfaces/Room.html | 6 +- docs/interfaces/Score.html | 14 +- docs/interfaces/ScoreWithMatch.html | 14 +- docs/interfaces/ScoreWithUser.html | 14 +- docs/interfaces/ScoreWithUserBeatmap.html | 14 +- .../ScoreWithUserBeatmapBeatmapset.html | 14 +- docs/interfaces/SearchResultUser.html | 6 +- docs/interfaces/SearchResultWiki.html | 6 +- docs/interfaces/Spotlight.html | 6 +- .../SpotlightWithParticipantcount.html | 6 +- docs/interfaces/UpdateStream.html | 4 +- docs/interfaces/User.html | 4 +- docs/interfaces/UserExtended.html | 10 +- .../UserExtendedWithStatisticsrulesets.html | 11 +- docs/interfaces/UserSilence.html | 4 + docs/interfaces/UserStatistics.html | 8 +- .../UserStatisticsWithCountryrank.html | 8 +- docs/interfaces/UserStatisticsWithUser.html | 8 +- docs/interfaces/UserWithCountry.html | 4 +- docs/interfaces/UserWithCountryCover.html | 4 +- ...thCountryCoverGroupsStatisticsSupport.html | 4 +- ...hCountryCoverGroupsStatisticsrulesets.html | 4 +- docs/interfaces/UserWithKudosu.html | 4 +- docs/interfaces/WikiPage.html | 10 +- docs/modules.html | 9 + docs/types/Mod.html | 2 +- docs/types/ProfileBanner.html | 2 +- docs/types/Scope.html | 2 +- lib/chat.ts | 27 +-- lib/index.ts | 68 +++--- lib/tests/test_authorized.ts | 3 - package.json | 2 +- 97 files changed, 678 insertions(+), 411 deletions(-) create mode 100644 docs/interfaces/ChatChannel.html create mode 100644 docs/interfaces/ChatChannelWithDetails.html create mode 100644 docs/interfaces/ChatMessage.html create mode 100644 docs/interfaces/ForumPost.html create mode 100644 docs/interfaces/ForumTopic.html create mode 100644 docs/interfaces/NewsPost.html create mode 100644 docs/interfaces/NewsPostWithContentNavigation.html create mode 100644 docs/interfaces/PollConfig.html create mode 100644 docs/interfaces/UserSilence.html diff --git a/README.md b/README.md index 736af79..a740dd0 100644 --- a/README.md +++ b/README.md @@ -107,16 +107,16 @@ Your `refresh_token` can actually also expire at a (purposefully) unknown time, - [ ] Lookup Changelog Build // likely won't implement unless I get convinced it's worth the confusion with Get Changelog Build ### Chat -- [ ] Chat Keepalive -- [ ] Create New PM +- [x] Chat Keepalive +- [x] Create New PM - [x] Get Channel Messages - [x] Send Message to Channel - [x] Join Channel - [x] Leave Channel -- [ ] Mark Channel as Read +- [x] Mark Channel as Read - [x] Get Channel List -- [ ] Create Channel -- [x] Get Channel +- [x] Create Channel // split between createChatPrivateChannel() and createChatAnnouncementChannel() +- [x] Get Channel // removing `users` because `channel` would already have this property ### Comments - [ ] Get Comments diff --git a/docs/assets/navigation.js b/docs/assets/navigation.js index a8a7b93..af20ceb 100644 --- a/docs/assets/navigation.js +++ b/docs/assets/navigation.js @@ -1 +1 @@ -window.navigationData = "data:application/octet-stream;base64,H4sIAAAAAAAAA6WYyW7bMBCG38XnoGmCJm1zc9YGTVAjbppD0QMjjy3CEilwMeIWefeSkh0tJoekc+X8/zfcNBrp97+Rghc1Ohs9ELacKqK0HB2MKqJyMwZMl/KwjXzIVVmY8JKy2ejsy+tB69YFSFC73s243zme3LamrCBSgjw0g33H0fHAcyUEF05jHcHc50BUSarWTJkCMSeZ8W9iffvxyemu/ZLO5zTThVqPlRL0WSuQGNKl3zPNtdBUJSdrXHumvCeMktSMtWnPhD+kTk1nLHsm+0nokqemq00RCa9eFLAZzDD+VpOAe6Iqvya0ULTEL57TsG+iTcw80pCwrAAiYjITki2xTDYegynIOuOaKZS1FUUAHyWIacYFYMA3UQTQblW7Qxi1r0xGX+SQLaUu78lLxstn9PrjzojUgaXEzd+oYp6ljiwNOik0+iANpGnwzhYmLsLhxFJf5IQtoOCLc02L2vw2AszULpC/QEjKmXut8fa0STxWM2KKphJAytjMPc870g1XsE/6IQObztUKPBWmjgSt4yynsIISpXREQSDW8XQFsSC8jDqVsWhfpRhoEnDjqhJ85S7QbmkC/BIK8x6LYTfKBPQDrGjctBtlArq52THoRpmELjhxlzanMoi2Xx9+nI1GIe64RC7WVhFE2Ve5H2OjUYipriou1HhBKMNxXWUK+poKbMFDZQr6hs7jyFYYBWakhKbA4txWh2G/6xmX+huViou1E9hTYKg7IDPPgTchzHxPVJY7vXUkaL1lc3dX9hZFEeZrhVam/GIN6lCUAnS/RndUGNK+HQpzCrcKSietK8BA9vmlbOGe0jYYA7iw7yrPrRloYnDTiquCLnL387KjQpGcu/fIBjCj//SDR14LbCvkv8p9SRTMW0N7imgU1ty4hKngQGOCW9BkQESWP4A0j4x/TwaiWOATXdIg0IpQIHp9o67tm8hu0YQIRTNaEab87SPqwFI1vcq07ted5K4ABfkOI3QANo5+3XUFsSC7Dfb3qymDNJNi50erB++2hZK2Dm+CVhIPq78jm7IpfP0c6khLhR7grjQE78zFS+1oEnAX5mvDP9OhMBV8I7iuZLveTVsWnc/jf+80glc4FhAzkabVQ1M1Egxm6+SEeLrTbRDtnXinHqh1ZRslPqwAH79+Pjo57rZHgs9pAeeEse4tafy9YIhkXlIVDAn1YMi5AIM3VXOsVc4F/WvOgLPHh7sWNtcss4Py0Kft5zj99PrnP7pjxCR3GgAA" \ No newline at end of file +window.navigationData = "data:application/octet-stream;base64,H4sIAAAAAAAAA6WY23LTMBCG3yXXDIUO57v0SIcWMg2FC4YL4WxsTWTJo0NoYXh3JLtJbEdaSemt9/+/lWRptfaPvxMN93ryYXJL+GquiTZq8mzSEF3ZZ8BNrY52keeVrpkNryhfTD68+/ds5zYMFOh97+PzsHM6u9qZCkaUAnVkHw4dL49HnnMphfQa2wjmPgGia9LszJRrkEtSWP9jbGg/fv1m335Gl0taGKYfplpL+stoUBjSpz8wzYU0VGcn61wHprwhnJLcjK3pwIRflMlNZy0HJvtK6ErkpmtNCQnP7zXwBSww/kaTgftOdXVBKNO0xjee13BooseYPdKQMa0IImEwM1KssEwunoJh5KEQhmuUtRElAO8UyHkhJGDArSgB6JZqt0IYdajMRp9WUKyUqW/IfSHqX+j2x50JqSNTSRu/VaWcpZ4sDzpjBj1II2kevLeEmZPwOLHUpxXhJTBRnhjKWvP2CXBbu0B9A6mo4P65ptvzBnHXLIgtmloCqVMzDzxPSDeewSHpx4zIcLTTc2ChVJt4IsYN5wy0LaHBwXukMfgNKEVKf+nqxTHM+RoCxbSNRK3ToqKwhhql9ERRINbc9QWpIPzG8CpT0aGiONJk4KZNI8Xa/0L90gz4GTB7ZaewO2UG+hbWNG3YnTID3R3iFHSnzEIzQfxV3KuMot2HVhjnokmIa6GQjbVRRFGuawljXDQJMTdNI6SeloRyHNdX5qAvqMQmPFbmoC/pMo3shElgTmro7hKcu9Nh2AshTT0Lve9tNIr4KhpahBltGIN8MguhzEeqtJAPXs5AgaGugSwCG68LYeYboovK620jUesVX/ob4W0URdgPRNrYawD7JhiLcoD+y39PhSE/w28V3DCbYAqgbQ2F9XL9maxpSbRtClGq14GlcjcqszvmSkPtJfcFKEgwZjMvaenHbMMYxBVOykv/O9gEUwCnrkkIHJORJgU3b4RmtKz8r3RPhSKF8C+0C2DG8HaP7vFW4LZG+OwOJUmw4OU1UCSjsK7SJ8wFRzpC3IImAyKL6haUrRHhNRmJUoHf6YpGgU6EAtHtm7RttyK3RDMiNS1oQ7gO9+2oA0vVNYnz9pvQS+4LUFDoZcRegIujfxD6glSQWwb3i9/WUlooufczP4D322JJ55QBL/zlohePYraJw6StJB3W3VJt9ZWhfhx15KVC98G+NAbvjSVI7WkycKf2azE80rEwF3wphWnUbr6PbXVyvoD/qcOInoRUQMpAuhYZTdVJMJgrt7PQT51NEO05Ra+s6IfGNZhiXEhevH/78vVxv8OSYmmP7Yn7BSXH/kEwRrJ3XQNjQvsw5izB4m3xnRpdCUn/tP3l3e31DrY0vHAP1VFIO8zx5tW/n/8BgVgsKiIdAAA=" \ No newline at end of file diff --git a/docs/assets/search.js b/docs/assets/search.js index b86affa..0272299 100644 --- a/docs/assets/search.js +++ b/docs/assets/search.js @@ -1 +1 @@ -window.searchData = "data:application/octet-stream;base64,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"; \ No newline at end of file +window.searchData = "data:application/octet-stream;base64,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"; \ No newline at end of file diff --git a/docs/classes/API.html b/docs/classes/API.html index 668a59b..c39ab50 100644 --- a/docs/classes/API.html +++ b/docs/classes/API.html @@ -1,5 +1,5 @@ API | osu-api-v2-js

You can create an API instance using its createAsync function!

-

Hierarchy

  • API

Constructors

Hierarchy

  • API

Constructors

  • Use the API's createAsync instead of the default constructor if you don't have at least an access_token! createAsync should always be your way of creating API instances!!

    -

    Parameters

    • Optional client: {
          id: number;
          secret: string;
      }
      • id: number
      • secret: string
    • Optional token_type: string
    • Optional expires: Date
    • Optional access_token: string
    • Optional scopes: Scope[]
    • Optional refresh_token: string
    • Optional user: number
    • verbose: "all" | "none" | "errors" = "none"
    • server: string = "https://osu.ppy.sh"

    Returns API

Properties

access_token: string
client: {
    id: number;
    secret: string;
}

Type declaration

  • id: number
  • secret: string
expires: Date
refresh_token?: string

Valid for an unknown amount of time, allows you to get a new token without going through the Authorization Code Grant! +

Parameters

  • Optional client: {
        id: number;
        secret: string;
    }
    • id: number
    • secret: string
  • Optional token_type: string
  • Optional expires: Date
  • Optional access_token: string
  • Optional scopes: Scope[]
  • Optional refresh_token: string
  • Optional user: number
  • verbose: "all" | "none" | "errors" = "all"
  • server: string = "https://osu.ppy.sh"

Returns API

Properties

access_token: string
client: {
    id: number;
    secret: string;
}

Type declaration

  • id: number
  • secret: string
expires: Date
refresh_token?: string

Valid for an unknown amount of time, allows you to get a new token without going through the Authorization Code Grant! Use the API's refreshToken function to do that

-
scopes: Scope[]
server: string

(default https://osu.ppy.sh) The base url of the server where the requests should land

+
scopes: Scope[]
server: string

(default https://osu.ppy.sh) The base url of the server where the requests should land

Remarks

For tokens, requests will be sent to the oauth/token route, other requests will be sent to the api/v2 route

-
token_type: string

Should always be "Bearer"

-
user?: number

The osu! user id of the user who went through the Authorization Code Grant

-
verbose: "all" | "none" | "errors"

(default none) Which events should be logged

-

Methods

token_type: string

Should always be "Bearer"

+
user?: number

The osu! user id of the user who went through the Authorization Code Grant

+
verbose: "all" | "none" | "errors"

(default none) Which events should be logged

+

Methods

  • Create a new announcement!

    +

    Parameters

    • channel: {
          description: string;
          name: string;
      }

      Details of the channel you're creating

      +
      • description: string
      • name: string
    • user_targets: (User | {
          id: number;
      })[]

      The people that will receive your message

      +
    • message: string

      The message to send with the announcement

      +

    Returns Promise<ChatChannel>

    The newly created channel!

    +

    Remarks

    From my understanding, this WILL 403 unless the user is kinda special

    +

    Scope

    chat.write_manage

    +
  • Create/Open/Join a private messages chat channel!

    +

    Parameters

    • user_target: User | {
          id: number;
      }

      The other user able to read and send messages in this channel

      +

    Returns Promise<ChatChannel>

    The newly created channel!

    +

    Scope

    chat.write_manage

    +
  • Create a new ForumTopic in the forum of your choice!

    +

    Parameters

    • forum_id: number

      The id of the forum you're creating your topic in

      +
    • title: string

      The topic's title

      +
    • text: string

      The first post's content/message

      +
    • Optional poll: PollConfig

      If you want to make a poll, specify the parameters of that poll!

      +

    Returns Promise<{
        post: ForumPost;
        topic: ForumTopic;
    }>

    An object with the topic you've made, and its first initial post (which uses your text)

    +

    Remarks

    Some users may not be allowed to do that, such as newly registered users, so this can 403 even with the right scopes

    +

    Scope

    forum.write

    +
  • Edit a ForumPost! Note that it can be the initial one of a ForumTopic!

    +

    Parameters

    • post: ForumPost | {
          id: number;
      }

      An object with the id of the post in question

      +
    • new_text: string

      The new content of the post (replaces the old content)

      +

    Returns Promise<ForumPost>

    The edited ForumPost

    +

    Scope

    forum.write

    +
  • Edit the title of a ForumTopic!

    +

    Parameters

    • topic: ForumTopic | {
          id: number;
      }

      An object with the id of the topic in question

      +
    • new_title: string

      The new title of the topic

      +

    Returns Promise<ForumTopic>

    The edited ForumTopic

    +

    Remarks

    Use editForumPost if you wanna edit the post at the top of the topic

    +

    Scope

    forum.write

    +

Returns Promise<BeatmapExtendedWithFailtimesBeatmapsetextended>

  • Get various data about the difficulty of a ctb beatmap!

    Parameters

    • beatmap: Beatmap | {
          id: number;
      }

      The Beatmap in question

    • Optional mods: number | string[] | Mod[]

      (defaults to No Mod) (will ignore mod settings) Can be a bitset of mods, an array of mod acronyms ("DT" for DoubleTime), or an array of Mods

      -

    Returns Promise<BeatmapDifficultyAttributesFruits>

Returns Promise<BeatmapDifficultyAttributesFruits>

  • Get various data about the difficulty of a mania beatmap!

    Parameters

    • beatmap: Beatmap | {
          id: number;
      }

      The Beatmap in question

    • Optional mods: number | string[] | Mod[]

      (defaults to No Mod) (will ignore mod settings) Can be a bitset of mods, an array of mod acronyms ("DT" for DoubleTime), or an array of Mods

      -

    Returns Promise<BeatmapDifficultyAttributesMania>

Returns Promise<BeatmapDifficultyAttributesMania>

  • Get various data about the difficulty of an osu! beatmap!

    Parameters

    • beatmap: Beatmap | {
          id: number;
      }

      The Beatmap in question

    • Optional mods: number | string[] | Mod[]

      (defaults to No Mod) (will ignore mod settings) Can be a bitset of mods, an array of mod acronyms ("DT" for DoubleTime), or an array of Mods

      -

    Returns Promise<BeatmapDifficultyAttributesOsu>

Returns Promise<BeatmapDifficultyAttributesOsu>

  • Get various data about the difficulty of a taiko beatmap!

    Parameters

    • beatmap: Beatmap | {
          id: number;
      }

      The Beatmap in question

    • Optional mods: number | string[] | Mod[]

      (defaults to No Mod) (will ignore mod settings) Can be a bitset of mods, an array of mod acronyms ("DT" for DoubleTime), or an array of Mods

      -

    Returns Promise<BeatmapDifficultyAttributesTaiko>

  • Get data about a BeatmapPack using its tag!

    +

Returns Promise<BeatmapDifficultyAttributesTaiko>

  • Get data about a BeatmapPack using its tag!

    Parameters

    • pack: BeatmapPack | {
          tag: string;
      }

      An object with the tag of the beatmappack you're trying to get

    Returns Promise<BeatmapPack>

    Remarks

    Currently in https://osu.ppy.sh/beatmaps/packs, when hovering a pack, its link with its tag should show up on your browser's bottom left

    -
  • Get an Array of up to 100 BeatmapPacks of a specific type!

    +
  • Get an Array of up to 100 BeatmapPacks of a specific type!

    Parameters

    • type: "standard" | "loved" | "featured" | "tournament" | "chart" | "theme" | "artist" = "standard"

      The type of the BeatmapPacks, defaults to "standard"

      -

    Returns Promise<BeatmapPack[]>

  • Get the top scores of a beatmap!

    +

Returns Promise<BeatmapPack[]>

  • Get the top scores of a beatmap!

    Parameters

    • beatmap: Beatmap | {
          id: number;
      }

      The Beatmap in question

    • Optional ruleset: Rulesets

      The Ruleset used to make the scores, useful if they were made on a convert

    • Optional mods: string[]

      (2023-11-16) Currently doesn't do anything

    • Optional type: string

      (2023-11-16) Currently doesn't do anything

      -

    Returns Promise<ScoreWithUser[]>

  • Get the score on a beatmap made by a specific user (with specific mods and on a specific ruleset if needed)

    +

Returns Promise<ScoreWithUser[]>

  • Get the score on a beatmap made by a specific user (with specific mods and on a specific ruleset if needed)

    Parameters

    • beatmap: Beatmap | {
          id: number;
      }

      The Beatmap the score was made on

    • user: User | {
          id: number;
      }

      The User who made the score

    • Optional mods: string[]

      The Mods used to make the score, defaults to any, you can use ["NM"] to filter out scores with mods

    • Optional ruleset: Rulesets

      The Ruleset used to make the score, useful if it was made on a convert

    Returns Promise<BeatmapUserScore>

    An Object with the position of the score according to the specified Mods and Ruleset, and with the score itself

    -
  • Get the score on a beatmap made by a specific user (with the possibility to specify if the scores are on a convert)

    +
  • Get the score on a beatmap made by a specific user (with the possibility to specify if the scores are on a convert)

    Parameters

    • beatmap: Beatmap | {
          id: number;
      }

      The Beatmap the scores were made on

    • user: User | {
          id: number;
      }

      The User who made the scores

    • Optional ruleset: Rulesets

      The Ruleset used to make the scores, defaults to the Ruleset the Beatmap was made for

      -

    Returns Promise<Score[]>

  • Get extensive beatmap data for up to 50 beatmaps at once!

    +

Returns Promise<Score[]>

  • Get extensive beatmap data for up to 50 beatmaps at once!

    Parameters

    • Optional ids: number[]

      An array composed of the ids of the beatmaps you want

      -

    Returns Promise<BeatmapExtended[]>

  • Get extensive beatmapset data about whichever beatmapset you want!

    +

Returns Promise<BeatmapExtended[]>

Returns Promise<BeatmapsetExtendedPlus>

Returns Promise<ChangelogBuildWithChangelogentriesVersions>

  • Get up to 21 versions/updates/builds!

    Parameters

    • Optional versions: {
          from?: string;
          to?: string;
      }

      Get builds that were released before/after (and including) those versions (use the name of the versions, e.g. 2023.1109.0)

      • Optional from?: string
      • Optional to?: string
    • Optional max_id: number

      Filter out builds that have an id higher than this (this takes priority over versions.to)

    • Optional stream: string

      Only get builds from a specific stream

    • message_formats: ("html" | "markdown")[] = ...

      Each element of changelog_entries will have a message property if markdown, message_html if html, defaults to both

      -

    Returns Promise<ChangelogBuildWithUpdatestreamsChangelogentries[]>

  • An effective way to get all available streams, as well as their latest version!

    +

Returns Promise<ChangelogBuildWithUpdatestreamsChangelogentries[]>

  • An effective way to get all available streams, as well as their latest version!

    Returns Promise<UpdateStream[]>

    Example

    const names_of_streams = (await api.getChangelogStreams()).map(s => s.name)
     
    -
  • Get a ChatChannel, and the users in it if it is a private channel!

    +

    Parameters

    • channel: ChatChannel | {
          channel_id: number;
      }

      The channel in question

      +

    Returns Promise<ChatChannelWithDetails>

    Remarks

    Will 404 if the user has not joined the channel (use joinChatChannel for that)

    +

    Scope

    chat.read

    +
  • Get the recent messages of a specific ChatChannel!

    +

    Parameters

    • channel: ChatChannel | {
          channel_id: number;
      }

      The Channel you wanna get the messages from

      +
    • limit: number = 20

      (defaults to 20, max 50) The maximum amount of messages you want to get!

      +
    • Optional since: ChatMessage | {
          message_id: number;
      }

      Get the messages sent after this message

      +
    • Optional until: ChatMessage | {
          message_id: number;
      }

      Get the messages sent up to but not including this message

      +

    Returns Promise<ChatMessage[]>

    Scope

    chat.read

    +
  • Get the top countries of a specific ruleset!

    Parameters

    • ruleset: Rulesets

      On which Ruleset should the countries be compared?

    • page: number = 1

      (defaults to 1) Imagine Rankings as a page, it can only have a maximum of 50 countries, while 50 others may be on the next one

      -

    Returns Promise<RankingsCountry>

Returns Promise<RankingsCountry>

  • Get a forum topic, as well as its main post (content) and the posts that were sent in it!

    +

    Parameters

    • topic: ForumTopic | {
          id: number;
      }

      An object with the id of the topic in question

      +
    • limit: number = 20

      (defaults to 20, max 50) How many posts maximum?

      +
    • sort: "id_asc" | "id_desc" = "id_asc"

      (defaults to "id_asc") "id_asc" to have the oldest post at the beginning of the posts array, "id_desc" to have the newest instead

      +
    • Optional first_post: ForumPost | {
          id: number;
      }

      (ignored if cursor_string) An Object with the id of the first post to be returned in posts

      +
    • Optional cursor_string: string

      Use a response's cursor_string with the same parameters to get the next "page" of results, so posts in this instance!

      +

    Returns Promise<{
        cursor_string: string;
        posts: ForumPost[];
        topic: ForumTopic;
    }>

    Remarks

    The oldest post of a topic is the text of a topic

    +
  • Get data of a multiplayer lobby from the stable (non-lazer) client that have URLs with community/matches or mp

    +
  • Get data of a multiplayer lobby from the stable (non-lazer) client that have URLs with community/matches or mp

    Parameters

    • id: number

      Can be found at the end of the URL of said match

      -

    Returns Promise<Match>

  • Gets the info of the 50 most recently created stable (non-lazer) matches, descending order (most recent is at index 0)

    -

    Returns Promise<MatchInfo[]>

  • Get the scores on a specific item of a room!

    +

Returns Promise<Match>

  • Gets the info of the 50 most recently created stable (non-lazer) matches, descending order (most recent is at index 0)

    +

    Returns Promise<MatchInfo[]>

  • Get a NewsPost, its content, and the NewsPosts right before and right after it!

    +

    Parameters

    • post: NewsPost | {
          id?: number;
          slug?: string;
      }

      An object with the id or the slug of a NewsPost (the slug being the filename minus the extension, used in its URL)

      +

    Returns Promise<NewsPostWithContentNavigation>

  • Get all the NewsPosts of a specific year!

    +

    Parameters

    • Optional year: number

      (defaults to current year) The year the posts were made

      +

    Returns Promise<NewsPost[]>

    Remarks

    If the specified year is invalid/has no news, it fallbacks to the default year

    +
  • Get the scores on a specific item of a room!

    Parameters

    • item: PlaylistItem | {
          id: number;
          room_id: number;
      }

      An object with the id of the item in question, as well as the id of the room

    • limit: number = 50

      How many scores maximum? Defaults to 50, the maximum the API will return

    • sort: "score_asc" | "score_desc" = "score_desc"

      Sort by scores, ascending or descending? Defaults to descending

    • Optional cursor_string: string

      Use a MultiplayerScores' params and cursor_string to get the next page (scores 51 to 100 for example)

    Returns Promise<MultiplayerScores>

    Remarks

    (2023-11-10) Items are broken for multiplayer (real-time) rooms, not for playlists (like spotlights), that's an osu! bug https://github.com/ppy/osu-web/issues/10725

    -
  • Get the top players of the game, with some filters!

    +
  • Get the top players of the game, with some filters!

    Parameters

    • ruleset: Rulesets

      Self-explanatory, is also known as "Gamemode"

    • type: "performance" | "score"

      Rank players by their performance points or by their ranked score?

    • page: number = 1

      (defaults to 1) Imagine Rankings as a page, it can only have a maximum of 50 players, while 50 others may be on the next one

    • filter: "all" | "friends" = "all"

      What kind of players do you want to see? Defaults to all, friends has no effect if no authorized user

    • Optional country: string

      Only get players from a specific country, using its ISO 3166-1 alpha-2 country code! (France would be FR, United States US)

    • Optional variant: "4k" | "7k"

      If type is performance and ruleset is mania, choose between 4k and 7k!

      -

    Returns Promise<Rankings>

Returns Promise<Rankings>

  • Get data about a lazer multiplayer room (realtime or playlists)!

    +
  • Get data about a lazer multiplayer room (realtime or playlists)!

    Parameters

    • room: Room | {
          id: number;
      }

      An object with the id of the room, is at the end of its URL (after /multiplayer/rooms/)

      -

    Returns Promise<Room>

  • Get the room stats of all the users of that room!

    +

Returns Promise<Room>

  • Get the room stats of all the users of that room!

    Parameters

    • room: Room | {
          id: number;
      }

      An object with the id of the room in question

    Returns Promise<Leader[]>

    Scope

    public

    -
  • Get rooms that are active, that have ended, that the user participated in, that the user made, or just simply any room!

    +
  • Get rooms that are active, that have ended, that the user participated in, that the user made, or just simply any room!

    Parameters

    • mode: "all" | "active" | "ended" | "participated" | "owned" = "active"

      Self-explanatory enough, defaults to active

    Returns Promise<Room[]>

    Scope

    public

    -
  • Get the rankings of a spotlight from 2009 to 2020 on a specific ruleset!

    +
  • Get the rankings of a spotlight from 2009 to 2020 on a specific ruleset!

    Parameters

    • ruleset: Rulesets

      Each spotlight has a different ranking (and often maps) depending on the ruleset

    • spotlight: Spotlight | {
          id: number;
      }

      The spotlight in question

    • filter: "all" | "friends" = "all"

      What kind of players do you want to see? Defaults to all, friends has no effect if no authorized user

      -

    Returns Promise<RankingsSpotlight>

Returns Promise<RankingsSpotlight>

  • Get extensive user data about whoever you want!

    Parameters

    • user: User | {
          id?: number;
          username?: string;
      }

      An object with either the id or the username of the user you're trying to get

    • Optional ruleset: Rulesets

      Defaults to the user's default/favourite Ruleset

      -

    Returns Promise<UserExtended>

Returns Promise<UserExtended>

  • Get beatmaps favourited or made by a user!

    Parameters

    • user: User | {
          id: number;
      }

      The user in question

    • type: "pending" | "ranked" | "loved" | "favourite" | "graveyard" | "guest" | "nominated"

      The relation between the user and the beatmaps

    • limit: number = 5

      (defaults to 5) The maximum amount of elements returned in the array

    • Optional offset: number

      How many elements that would be at the top of the returned array get skipped (while still filling the array up to the limit)

      -

    Returns Promise<BeatmapsetExtendedWithBeatmapExtended[]>

  • Get data about the activity of a user kudosu-wise!

    +

Returns Promise<BeatmapsetExtendedWithBeatmapExtended[]>

  • Get data about the activity of a user kudosu-wise!

    Parameters

    • user: User | {
          id: number;
      }

      The user in question

    • Optional limit: number

      (defaults to 5) The maximum amount of activities in the returned array

    • Optional offset: number

      How many elements that would be at the top of the returned array get skipped (while still filling the array up to the limit)

      -

    Returns Promise<KudosuHistory[]>

  • Get the beatmaps most played by a user!

    +

Returns Promise<KudosuHistory[]>

  • Get the beatmaps most played by a user!

    Parameters

    • user: User | {
          id: number;
      }

      The user who played the beatmaps

    • limit: number = 5

      (defaults to 5) The maximum amount of elements returned in the array

    • Optional offset: number

      How many elements that would be at the top of the returned array get skipped (while still filling the array up to the limit)

      -

    Returns Promise<BeatmapPlaycount[]>

Returns Promise<BeatmapPlaycount[]>

Returns Promise<(EventAchievement | EventBeatmapsetApprove | EventBeatmapsetRevive | EventBeatmapsetUpdate | EventBeatmapsetUpload | EventRank | EventRankLost | EventUserSupportAgain | EventUserSupportFirst | EventUserSupportGift | EventUsernameChange)[]>

  • Get "notable" scores from a user

    Parameters

    • user: User | {
          id: number;
      }

      The user who set the scores

    • type: "best" | "firsts" | "recent"

      Do you want scores: in the user's top 100, that are top 1 on a beatmap, that have been recently set?

    • Optional limit: number

      The maximum amount of scores to be returned

    • Optional ruleset: Rulesets

      The Ruleset the scores were made in, defaults to the user's default/favourite Ruleset

    • include_fails: boolean = false

      (defaults to false) Do you want scores where the user didn't survive or quit the map?

    • Optional offset: number

      How many elements that would be at the top of the returned array get skipped (while still filling the array up to the limit)

      -

    Returns Promise<ScoreWithUserBeatmapBeatmapset[]>

Returns Promise<ScoreWithUserBeatmapBeatmapset[]>

  • Get a wiki page!

    +

Returns Promise<UserWithCountryCoverGroupsStatisticsrulesets[]>

  • Get a wiki page!

    Parameters

    • path: string

      What's in the page's URL after https://osu.ppy.sh/wiki/ (so the title, after the subtitle if there is a subtitle) (An example for https://osu.ppy.sh/wiki/en/Game_mode/osu! would be Game_mode/osu!)

    • locale: string = "en"

      (defaults to "en") The BCP 47 language (sub)tag, lowercase (for example, for the article in french, use "fr")

      -

    Returns Promise<WikiPage>

  • Use this instead of console.log to log any information

    +

Returns Promise<WikiPage>

  • Join a public or multiplayer ChatChannel, allowing you to interact with it!

    +

    Parameters

    • channel: ChatChannel | {
          channel_id: number;
      }

      The channel you wanna join

      +
    • Optional user: User | {
          id: number;
      }

      (defaults to the presumed authorized user) The user joining the channel

      +

    Returns Promise<ChatChannelWithDetails>

    Scope

    chat.write_manage

    +
  • Needs to be done periodically to reset chat activity timeout

    +

    Parameters

    • Optional since: {
          message?: ChatMessage | {
              message_id: number;
          };
          user_silence?: UserSilence | {
              id: number;
          };
      }

      UserSilences that are before that will not be returned!

      +
      • Optional message?: ChatMessage | {
            message_id: number;
        }
      • Optional user_silence?: UserSilence | {
            id: number;
        }

    Returns Promise<UserSilence[]>

    A list of recent silences

    +

    Remarks

    Every 30 seconds is a good idea

    +

    Scope

    chat.read

    +
  • Leave/Close a public ChatChannel!

    +

    Parameters

    • channel: ChatChannel | {
          channel_id: number;
      }

      The channel you wanna join

      +
    • Optional user: User | {
          id: number;
      }

      (defaults to the presumed authorized user) The user joining the channel

      +

    Returns Promise<void>

    Scope

    chat.write_manage

    +
  • Use this instead of console.log to log any information

    Parameters

    • is_error: boolean

      Is the logging happening because of an error?

    • Rest ...to_log: any[]

      Whatever you would put between the parentheses of console.log()

      -

    Returns void

  • Parameters

    • body: any
    • api: API

    Returns Promise<API>

  • Returns Promise<boolean>

  • Parameters

    • method: "get" | "post"
    • endpoint: string

      What comes in the URL after api/

      +

    Returns void

  • Mark a certain channel as read up to a given message!

    +

    Parameters

    • channel: ChatChannel | {
          channel_id: number;
      }

      The channel in question

      +
    • message: ChatMessage | {
          message_id: number;
      }

      You're marking this and all the messages before it as read!

      +

    Returns Promise<void>

    Scope

    chat.read

    +
  • Set most of an api's properties, like tokens, token_type, scopes, expiration_date

    +

    Parameters

    • body: object

      An Object with the client id & secret, grant_type, and stuff that depends of the grant_type

      +
    • api: API

      The api which will see its properties change

      +

    Returns Promise<API>

    api, just in case, because in theory it should modify the original object

    +
  • Returns Promise<boolean>

    Whether or not the token has been refreshed

    +
  • Make and send a ForumPost in a ForumTopic!

    +

    Parameters

    • topic: ForumTopic | {
          id: number;
      }

      An object with the id of the topic you're making your reply in

      +
    • text: string

      Your reply! Your message!

      +

    Returns Promise<ForumPost>

    The reply you've made!

    +

    Scope

    forum.write

    +
  • Parameters

    • method: "get" | "post" | "put" | "delete"

      The type of request, each endpoint uses a specific one (if it uses multiple, the intent and parameters become different)

      +
    • endpoint: string

      What comes in the URL after api/

    • Optional parameters: {
          [k: string]: any;
      }

      The things to specify in the request, such as the beatmap_id when looking for a beatmap

      -
      • [k: string]: any
    • number_try: number = 1

      How many attempts there's been to get the data

      -

    Returns Promise<any>

    A Promise with either the API's response or false upon failing

    -
  • Look for a user like you would on the website!

    +
    • [k: string]: any
  • number_try: number = 1

    Attempt number for doing this specific request

    +

Returns Promise<any>

A Promise with the API's response

+
  • Look for a user like you would on the website!

    Parameters

    • query: string

      What you would put in the searchbar

    • page: number = 1

      (defaults to 1) You normally get the first 20 results, but if page is 2, you'd get results 21 to 40 instead for example!

      -

    Returns Promise<SearchResultUser>

  • Look for a wiki page like you would on the website!

    +

Returns Promise<SearchResultUser>

  • Look for a wiki page like you would on the website!

    Parameters

    • query: string

      What you would put in the searchbar

    • page: number = 1

      (defaults to 1) You normally get the first 50 results, but if page is 2, you'd get results 51 to 100 instead for example!

      -

    Returns Promise<SearchResultWiki>

  • The normal way to create an API instance! Make sure to await it

    +

Returns Promise<SearchResultWiki>

  • Send a message in a ChatChannel!

    +

    Parameters

    • channel: ChatChannel | {
          channel_id: number;
      }

      The channel in which you want to send your message

      +
    • message: string

      The message you wanna send

      +
    • is_action: boolean = false

      (defaults to false) Is it a command? Like /me dances

      +

    Returns Promise<ChatMessage>

    The newly sent ChatMessage!

    +

    Scope

    chat.write

    +
  • Send a private message to someone!

    +

    Parameters

    • user_target: User | {
          id: number;
      }

      The User you wanna send your message to!

      +
    • message: string

      The message you wanna send

      +
    • is_action: boolean = false

      (defaults to false) Is it a command? Like /me dances

      +
    • Optional uuid: string

      A client-side message identifier

      +

    Returns Promise<{
        channel: ChatChannel;
        message: ChatMessage;
    }>

    The message you sent

    +

    Remarks

    You don't need to use createChatPrivateChannel before sending a message

    +

    Scope

    chat.write

    +
  • The normal way to create an API instance! Make sure to await it

    Parameters

    • client: {
          id: number;
          secret: string;
      }

      The ID and the secret of your client, can be found on https://osu.ppy.sh/home/account/edit#new-oauth-application

      • id: number
      • secret: string
    • Optional user: {
          code: string;
          redirect_uri: string;
      }

      If the instance is supposed to represent a user, use their Authorization Code and the Application Callback URL of your application!

      • code: string
      • redirect_uri: string
    • verbose: "all" | "none" | "errors" = "none"
    • server: string = "https://osu.ppy.sh"

    Returns Promise<API>

    A promise with an API instance

    -

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/APIError.html b/docs/classes/APIError.html index 9477672..0d18a29 100644 --- a/docs/classes/APIError.html +++ b/docs/classes/APIError.html @@ -1,11 +1,11 @@ APIError | osu-api-v2-js

Class APIError

If the API throws an error, it should always be an APIError!

-

Hierarchy

  • APIError

Constructors

Hierarchy

  • APIError

Constructors

  • Parameters

    • message: string

      The reason why things didn't go as expected

      +

Constructors

  • Parameters

    • message: string

      The reason why things didn't go as expected

    • server: string

      The server to which the request was sent

    • endpoint: string

      The type of resource that was requested from the server

      -
    • parameters: string

      The filters that were used to specify what resource was wanted

      -

    Returns APIError

Properties

endpoint: string
message: string
parameters: string
server: string

Generated using TypeDoc

\ No newline at end of file +
  • Optional parameters: object

    The filters that were used to specify what resource was wanted

    +
  • Returns APIError

    Properties

    endpoint: string
    message: string
    parameters?: object
    server: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/enums/RankStatus.html b/docs/enums/RankStatus.html index 019b6bf..8487f79 100644 --- a/docs/enums/RankStatus.html +++ b/docs/enums/RankStatus.html @@ -1,8 +1,8 @@ -RankStatus | osu-api-v2-js

    Enumeration RankStatus

    Enumeration Members

    Approved +RankStatus | osu-api-v2-js

    Generated using TypeDoc

    \ No newline at end of file +

    Enumeration Members

    Approved: 2
    Graveyard: -2
    Loved: 4
    Pending: 0
    Qualified: 3
    Ranked: 1
    Wip: -1

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/enums/Rulesets.html b/docs/enums/Rulesets.html index d89b8af..5ee55c3 100644 --- a/docs/enums/Rulesets.html +++ b/docs/enums/Rulesets.html @@ -1,5 +1,5 @@ -Rulesets | osu-api-v2-js

    Enumeration Rulesets

    Enumeration Members

    fruits +Rulesets | osu-api-v2-js

    Generated using TypeDoc

    \ No newline at end of file +

    Enumeration Members

    fruits: 2
    mania: 3
    osu: 0
    taiko: 1

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/functions/generateAuthorizationURL.html b/docs/functions/generateAuthorizationURL.html index dc6cef5..7bd81e9 100644 --- a/docs/functions/generateAuthorizationURL.html +++ b/docs/functions/generateAuthorizationURL.html @@ -1,6 +1,7 @@ -generateAuthorizationURL | osu-api-v2-js

    Function generateAuthorizationURL

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index d5e2d97..4e26c32 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,12 +1,27 @@ osu-api-v2-js

    osu-api-v2-js

    osu-api-v2-js

    osu-api-v2-js is a JavaScript & TypeScript package that helps you interact with osu!api (v2).

    -

    It is currently unstable as it's under development, but you can find documentation on osu-v2.taevas.xyz if needed!

    +

    It is currently a bit unstable as it's under development, but you can find documentation on osu-v2.taevas.xyz if needed!

    How to install and get started

    To install the package, use a command from your package manager:

    npm i osu-api-v2-js # if using npm
    yarn add osu-api-v2-js # if using yarn
    pnpm add osu-api-v2-js # if using pnpm
    bun a osu-api-v2-js # if using bun
    -

    Make sure to add "type": "module" to your package.json!

    -

    To use (import) the package in your project and start interacting with the API, you may do something like that:

    -
    // TypeScript
    import * as osu from "osu-api-v2-js"

    async function logUserTopPlayBeatmap(username: string) {
    // Because of how the API server works, it's more convenient to use `osu.API.createAsync()` instead of `new osu.API()`!
    // In a proper application, you'd use this function as soon as the app starts so you can use that object everywhere
    // (or if it acts as a user, you'd use this function at the end of the authorization flow)
    const api = await osu.API.createAsync({id: "<client_id>", "<client_secret>"})

    const user = await api.getUser({username}) // We need to get the id of the user in order to request what we want
    const score = (await api.getUserScores(user, "best", 1, osu.Rulesets.osu))[0] // Specifying the Ruleset is optional
    const beatmapDifficulty = await api.getBeatmapDifficultyAttributesOsu(score.beatmap, score.mods) // Specifying the mods so the SR is adapted to them

    let x = `${score.beatmapset.artist} - ${score.beatmapset.title} [${score.beatmap.version}]`
    let y = `+${score.mods.toString()} (${beatmapDifficulty.star_rating.toFixed(2)}*)`
    console.log(`${username}'s top play is on: ${x} ${y}`)
    // Doomsday fanboy's top play is on: xi - FREEDOM DiVE [FOUR DIMENSIONS] +HR (8.07*)
    }

    logUserTopPlayBeatmap("Doomsday fanboy") +

    You will want to create your own OAuth application: https://osu.ppy.sh/home/account/edit#oauth +To use (import) the package in your project and start interacting with the API, you may do something like that:

    +
    // TypeScript
    import * as osu from "osu-api-v2-js"

    async function logUserTopPlayBeatmap(username: string) {
    // Because of how the API server works, it's more convenient to use `osu.API.createAsync()` instead of `new osu.API()`!
    // In a proper application, you'd use this function as soon as the app starts so you can use that object everywhere
    // (or if it acts as a user, you'd use this function at the end of the authorization flow)
    const api = await osu.API.createAsync({id: "<client_id>", secret: "<client_secret>"})

    const user = await api.getUser({username}) // We need to get the id of the user in order to request what we want
    const score = (await api.getUserScores(user, "best", 1, osu.Rulesets.osu))[0] // Specifying the Ruleset is optional
    const beatmapDifficulty = await api.getBeatmapDifficultyAttributesOsu(score.beatmap, score.mods) // Specifying the mods so the SR is adapted to them

    let x = `${score.beatmapset.artist} - ${score.beatmapset.title} [${score.beatmap.version}]`
    let y = `+${score.mods.toString()} (${beatmapDifficulty.star_rating.toFixed(2)}*)`
    console.log(`${username}'s top play is on: ${x} ${y}`)
    // Doomsday fanboy's top play is on: xi - FREEDOM DiVE [FOUR DIMENSIONS] +HR (8.07*)
    }

    logUserTopPlayBeatmap("Doomsday fanboy")
    +

    Authorization flow

    A simple guide on how to do extra fancy stuff

    +

    The part where the user says they're okay with using your application

    If your application is meant to act on behalf of a user after they've clicked on a button to say they consent to your application identifying them and reading public data on their behalf and some other stuff maybe, then things will work differently

    +

    Let's take it step by step! First, this package comes with generateAuthorizationURL(), which will generate for you a link so users can click on it and allow your application to do stuff on their behalf +This function requires you to specify scopes... well, just know that identify is always implicitly specified, that public is almost always implicitly required, and that functions that require other scopes are explicit about it!

    +

    Please note: It is the user who ultimately decides which scopes they allow, so you can't assume they allowed all the scopes you specified... +Thankfully though, you can check at any time the allowed scopes with the scopes property of your api object!

    +

    The part where your application hears the user when the user says okay

    The user clicked your link and authorized your application! ...Now what?

    +

    When a user authorizes your application, they get redirected to your Application Callback URL with a huge code as a GET parameter (the name of the parameter is code), and it is this very code that will allow you to proceed with the authorization flow! So make sure that somehow, you retrieve this code!

    +

    With this code, you're able to create your api object:

    +
    const api = await osu.API.createAsync({id: "<client_id>", secret: "<client_secret>"}, {code: "<code>", redirect_uri: "<application_callback_url>"})
    +
    +

    The part where you make it so your application works without the user saying okay every 2 minutes

    Congrats on making your api object! Now you should do something in order to not lose it, or not need a new one in order to request more data!

    +

    Do note that your api object has lots of practical properties: user allows you to know which user it acts on behalf of, expires allows you to know when your requests with your current access_token will fail, and refresh_token is your key to getting a new access_token without asking the user again! +Although, you should not need to access them often, because your api object has a function to use that refresh token which you can call at any given time, and it will call it itself if, upon requesting something, it notices the date the access_token expires is in the past!

    +

    Your refresh_token can actually also expire at a (purposefully) unknown time, so depending of how your application works, you could use it at some point around the date of expiration, or you could throw away your api object while waiting for a user to start the authorization flow again

    Implemented endpoints

    Beatmap Packs

    • Get Beatmap Packs
    • Get Beatmap Pack
    • @@ -38,16 +53,16 @@
    • Lookup Changelog Build // likely won't implement unless I get convinced it's worth the confusion with Get Changelog Build

    Chat

      -
    • Chat Keepalive
    • -
    • Create New PM
    • -
    • Get Channel Messages
    • -
    • Send Message to Channel
    • -
    • Join Channel
    • -
    • Leave Channel
    • -
    • Mark Channel as Read
    • -
    • Get Channel List
    • -
    • Create Channel
    • -
    • Get Channel
    • +
    • Chat Keepalive
    • +
    • Create New PM
    • +
    • Get Channel Messages
    • +
    • Send Message to Channel
    • +
    • Join Channel
    • +
    • Leave Channel
    • +
    • Mark Channel as Read
    • +
    • Get Channel List
    • +
    • Create Channel // split between createChatPrivateChannel() and createChatAnnouncementChannel()
    • +
    • Get Channel // removing users because channel would already have this property

    Comments

    • Get Comments
    • @@ -57,11 +72,11 @@
    • Get Events

    Forum

      -
    • Reply Topic
    • -
    • Create Topic
    • -
    • Get Topic and Posts
    • -
    • Edit Topic
    • -
    • Edit Post
    • +
    • Reply Topic
    • +
    • Create Topic
    • +
    • Get Topic and Posts // removing search for simplicity
    • +
    • Edit Topic
    • +
    • Edit Post

    Home

    • Search // split between searchUser() and searchWiki()
    • @@ -75,8 +90,8 @@
    • /rooms/{room}/leaderboard

    News

      -
    • Get News Listing
    • -
    • Get News Post
    • +
    • Get News Listing // removing everything except news_sidebar.news_posts
    • +
    • Get News Post

    Ranking

    • Get Kudosu Ranking
    • @@ -102,4 +117,4 @@
    • /scores/{rulesetOrScore}/{score}/download
    • /scores/{rulesetOrScore}/{score?}
    -

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/Beatmap.html b/docs/interfaces/Beatmap.html index 2e5c0e6..4fca57b 100644 --- a/docs/interfaces/Beatmap.html +++ b/docs/interfaces/Beatmap.html @@ -1,5 +1,5 @@ Beatmap | osu-api-v2-js

    Interface Beatmap

    Expected from BeatmapPlaycount

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    beatmapset_id: number
    difficulty_rating: number
    id: number
    mode: string
    status: string
    total_length: number
    user_id: number
    version: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    beatmapset_id: number
    difficulty_rating: number
    id: number
    mode: string
    status: string
    total_length: number
    user_id: number
    version: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapDifficultyAttributes.html b/docs/interfaces/BeatmapDifficultyAttributes.html index c14e563..b17d71c 100644 --- a/docs/interfaces/BeatmapDifficultyAttributes.html +++ b/docs/interfaces/BeatmapDifficultyAttributes.html @@ -1,4 +1,4 @@ BeatmapDifficultyAttributes | osu-api-v2-js

    Properties

    max_combo: number
    star_rating: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapDifficultyAttributesFruits.html b/docs/interfaces/BeatmapDifficultyAttributesFruits.html index d9ca85e..975bcdf 100644 --- a/docs/interfaces/BeatmapDifficultyAttributesFruits.html +++ b/docs/interfaces/BeatmapDifficultyAttributesFruits.html @@ -1,5 +1,5 @@ BeatmapDifficultyAttributesFruits | osu-api-v2-js

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    approach_rate: number
    max_combo: number
    star_rating: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapDifficultyAttributesMania.html b/docs/interfaces/BeatmapDifficultyAttributesMania.html index 275a2ce..0875b02 100644 --- a/docs/interfaces/BeatmapDifficultyAttributesMania.html +++ b/docs/interfaces/BeatmapDifficultyAttributesMania.html @@ -1,7 +1,7 @@ BeatmapDifficultyAttributesMania | osu-api-v2-js

    Interface BeatmapDifficultyAttributesMania

    Expected from api.getBeatmapDifficultyAttributesMania()

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    great_hit_window: number
    max_combo: number
    score_multiplier?: number

    Remarks

    (2023-11-20) Doesn't exist anymore?

    -
    star_rating: number

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    great_hit_window: number
    max_combo: number
    score_multiplier?: number

    Remarks

    (2023-11-20) Doesn't exist anymore?

    +
    star_rating: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapDifficultyAttributesOsu.html b/docs/interfaces/BeatmapDifficultyAttributesOsu.html index 3308b46..d7a36ca 100644 --- a/docs/interfaces/BeatmapDifficultyAttributesOsu.html +++ b/docs/interfaces/BeatmapDifficultyAttributesOsu.html @@ -1,5 +1,5 @@ BeatmapDifficultyAttributesOsu | osu-api-v2-js

    Interface BeatmapDifficultyAttributesOsu

    Expected from api.getBeatmapDifficultyAttributesOsu()

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    aim_difficulty: number
    approach_rate: number
    flashlight_difficulty: number
    max_combo: number
    overall_difficulty: number
    slider_factor: number
    speed_difficulty: number
    speed_note_count: number
    star_rating: number

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    aim_difficulty: number
    approach_rate: number
    flashlight_difficulty: number
    max_combo: number
    overall_difficulty: number
    slider_factor: number
    speed_difficulty: number
    speed_note_count: number
    star_rating: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapDifficultyAttributesTaiko.html b/docs/interfaces/BeatmapDifficultyAttributesTaiko.html index dcbdc7e..cc316fa 100644 --- a/docs/interfaces/BeatmapDifficultyAttributesTaiko.html +++ b/docs/interfaces/BeatmapDifficultyAttributesTaiko.html @@ -1,9 +1,9 @@ BeatmapDifficultyAttributesTaiko | osu-api-v2-js

    Interface BeatmapDifficultyAttributesTaiko

    Expected from api.getBeatmapDifficultyAttributesTaiko()

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    colour_difficulty: number
    great_hit_window: number
    max_combo: number
    peak_difficulty: number
    rhythm_difficulty: number
    stamina_difficulty: number
    star_rating: number

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    colour_difficulty: number
    great_hit_window: number
    max_combo: number
    peak_difficulty: number
    rhythm_difficulty: number
    stamina_difficulty: number
    star_rating: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapExtended.html b/docs/interfaces/BeatmapExtended.html index 75c8d6d..cb1e206 100644 --- a/docs/interfaces/BeatmapExtended.html +++ b/docs/interfaces/BeatmapExtended.html @@ -1,5 +1,5 @@ BeatmapExtended | osu-api-v2-js

    Interface BeatmapExtended

    Expected from ScoreWithUserBeatmapBeatmapset

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    Properties

    accuracy: number
    ar: number
    beatmapset_id: number
    bpm: number
    checksum: string
    convert: boolean
    count_circles: number
    count_sliders: number
    count_spinners: number
    cs: number
    deleted_at: null | Date
    difficulty_rating: number
    drain: number
    hit_length: number
    id: number
    is_scoreable: boolean
    last_updated: Date
    mode: string
    mode_int: number
    passcount: number
    playcount: number
    ranked: RankStatus
    status: string
    total_length: number
    url: string
    user_id: number
    version: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    accuracy: number
    ar: number
    beatmapset_id: number
    bpm: number
    checksum: string
    convert: boolean
    count_circles: number
    count_sliders: number
    count_spinners: number
    cs: number
    deleted_at: null | Date
    difficulty_rating: number
    drain: number
    hit_length: number
    id: number
    is_scoreable: boolean
    last_updated: Date
    mode: string
    mode_int: number
    passcount: number
    playcount: number
    ranked: RankStatus
    status: string
    total_length: number
    url: string
    user_id: number
    version: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapExtendedWithFailtimes.html b/docs/interfaces/BeatmapExtendedWithFailtimes.html index 61d823b..7860ce4 100644 --- a/docs/interfaces/BeatmapExtendedWithFailtimes.html +++ b/docs/interfaces/BeatmapExtendedWithFailtimes.html @@ -1,5 +1,5 @@ BeatmapExtendedWithFailtimes | osu-api-v2-js

    Interface BeatmapExtendedWithFailtimes

    Expected from BeatmapsetExtendedPlus

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    Properties

    accuracy: number
    ar: number
    beatmapset_id: number
    bpm: number
    checksum: string
    convert: boolean
    count_circles: number
    count_sliders: number
    count_spinners: number
    cs: number
    deleted_at: null | Date
    difficulty_rating: number
    drain: number
    failtimes: {
        exit: number[];
        fail: number[];
    }

    Type declaration

    • exit: number[]
    • fail: number[]
    hit_length: number
    id: number
    is_scoreable: boolean
    last_updated: Date
    mode: string
    mode_int: number
    passcount: number
    playcount: number
    ranked: RankStatus
    status: string
    total_length: number
    url: string
    user_id: number
    version: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    accuracy: number
    ar: number
    beatmapset_id: number
    bpm: number
    checksum: string
    convert: boolean
    count_circles: number
    count_sliders: number
    count_spinners: number
    cs: number
    deleted_at: null | Date
    difficulty_rating: number
    drain: number
    failtimes: {
        exit: number[];
        fail: number[];
    }

    Type declaration

    • exit: number[]
    • fail: number[]
    hit_length: number
    id: number
    is_scoreable: boolean
    last_updated: Date
    mode: string
    mode_int: number
    passcount: number
    playcount: number
    ranked: RankStatus
    status: string
    total_length: number
    url: string
    user_id: number
    version: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapExtendedWithFailtimesBeatmapsetextended.html b/docs/interfaces/BeatmapExtendedWithFailtimesBeatmapsetextended.html index f2cd109..4f28083 100644 --- a/docs/interfaces/BeatmapExtendedWithFailtimesBeatmapsetextended.html +++ b/docs/interfaces/BeatmapExtendedWithFailtimesBeatmapsetextended.html @@ -1,5 +1,5 @@ BeatmapExtendedWithFailtimesBeatmapsetextended | osu-api-v2-js

    Interface BeatmapExtendedWithFailtimesBeatmapsetextended

    Expected from api.getBeatmap()

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    Properties

    accuracy: number
    ar: number
    beatmapset: BeatmapsetExtended
    beatmapset_id: number
    bpm: number
    checksum: string
    convert: boolean
    count_circles: number
    count_sliders: number
    count_spinners: number
    cs: number
    deleted_at: null | Date
    difficulty_rating: number
    drain: number
    failtimes: {
        exit: number[];
        fail: number[];
    }

    Type declaration

    • exit: number[]
    • fail: number[]
    hit_length: number
    id: number
    is_scoreable: boolean
    last_updated: Date
    mode: string
    mode_int: number
    passcount: number
    playcount: number
    ranked: RankStatus
    status: string
    total_length: number
    url: string
    user_id: number
    version: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    accuracy: number
    ar: number
    beatmapset: BeatmapsetExtended
    beatmapset_id: number
    bpm: number
    checksum: string
    convert: boolean
    count_circles: number
    count_sliders: number
    count_spinners: number
    cs: number
    deleted_at: null | Date
    difficulty_rating: number
    drain: number
    failtimes: {
        exit: number[];
        fail: number[];
    }

    Type declaration

    • exit: number[]
    • fail: number[]
    hit_length: number
    id: number
    is_scoreable: boolean
    last_updated: Date
    mode: string
    mode_int: number
    passcount: number
    playcount: number
    ranked: RankStatus
    status: string
    total_length: number
    url: string
    user_id: number
    version: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapPack.html b/docs/interfaces/BeatmapPack.html index 12b60f3..db55253 100644 --- a/docs/interfaces/BeatmapPack.html +++ b/docs/interfaces/BeatmapPack.html @@ -1,5 +1,5 @@ BeatmapPack | osu-api-v2-js

    Interface BeatmapPack

    Expected from api.getBeatmapPack(), api.getBeatmapPacks()

    -

    Hierarchy

    • BeatmapPack

    Properties

    Hierarchy

    • BeatmapPack

    Properties

    author: string
    beatmapsets?: BeatmapsetExtended[]
    date: Date
    name: string
    no_diff_reduction: boolean

    Are difficulty reduction mods unable to be used to clear this pack? (is false if you can use such mods)

    -
    ruleset_id: null | number
    tag: string
    url: string
    user_completion_data?: {
        beatmapset_ids: number[];
        completed: boolean;
    }

    Type declaration

    • beatmapset_ids: number[]

      IDs of beatmapsets completed by the user (according to the requirements of the pack)

      +

    Properties

    author: string
    beatmapsets?: BeatmapsetExtended[]
    date: Date
    name: string
    no_diff_reduction: boolean

    Are difficulty reduction mods unable to be used to clear this pack? (is false if you can use such mods)

    +
    ruleset_id: null | number
    tag: string
    url: string
    user_completion_data?: {
        beatmapset_ids: number[];
        completed: boolean;
    }

    Type declaration

    • beatmapset_ids: number[]

      IDs of beatmapsets completed by the user (according to the requirements of the pack)

    • completed: boolean

      Whether all beatmapsets are completed by the user or not

      -

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapPlaycount.html b/docs/interfaces/BeatmapPlaycount.html index 9518eb1..3fd3dad 100644 --- a/docs/interfaces/BeatmapPlaycount.html +++ b/docs/interfaces/BeatmapPlaycount.html @@ -1,7 +1,7 @@ BeatmapPlaycount | osu-api-v2-js

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    beatmap: Beatmap
    beatmap_id: number
    beatmapset: Beatmapset
    count: number

    Playcount

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapUserScore.html b/docs/interfaces/BeatmapUserScore.html index c71980d..40b0da4 100644 --- a/docs/interfaces/BeatmapUserScore.html +++ b/docs/interfaces/BeatmapUserScore.html @@ -1,5 +1,5 @@ BeatmapUserScore | osu-api-v2-js

    Interface BeatmapUserScore

    Expected from api.getBeatmapUserScore()

    -

    Hierarchy

    • BeatmapUserScore

    Properties

    Hierarchy

    • BeatmapUserScore

    Properties

    Properties

    position: number

    Value depends on the requested mode and mods!

    -

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapWithBeatmapset.html b/docs/interfaces/BeatmapWithBeatmapset.html index f23b80b..713cc41 100644 --- a/docs/interfaces/BeatmapWithBeatmapset.html +++ b/docs/interfaces/BeatmapWithBeatmapset.html @@ -1,5 +1,5 @@ BeatmapWithBeatmapset | osu-api-v2-js

    Interface BeatmapWithBeatmapset

    Expected from Match

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    beatmapset: Beatmapset
    beatmapset_id: number
    difficulty_rating: number
    id: number
    mode: string
    status: string
    total_length: number
    user_id: number
    version: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    beatmapset: Beatmapset
    beatmapset_id: number
    difficulty_rating: number
    id: number
    mode: string
    status: string
    total_length: number
    user_id: number
    version: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapWithBeatmapsetChecksumMaxcombo.html b/docs/interfaces/BeatmapWithBeatmapsetChecksumMaxcombo.html index 3c93ab6e..445d45a 100644 --- a/docs/interfaces/BeatmapWithBeatmapsetChecksumMaxcombo.html +++ b/docs/interfaces/BeatmapWithBeatmapsetChecksumMaxcombo.html @@ -1,5 +1,5 @@ BeatmapWithBeatmapsetChecksumMaxcombo | osu-api-v2-js

    Interface BeatmapWithBeatmapsetChecksumMaxcombo

    Expected from PlaylistItem

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    beatmapset: Beatmapset
    beatmapset_id: number
    checksum: string
    difficulty_rating: number
    id: number
    max_combo: number
    mode: string
    status: string
    total_length: number
    user_id: number
    version: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    beatmapset: Beatmapset
    beatmapset_id: number
    checksum: string
    difficulty_rating: number
    id: number
    max_combo: number
    mode: string
    status: string
    total_length: number
    user_id: number
    version: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/Beatmapset.html b/docs/interfaces/Beatmapset.html index 309efdd..af55edc 100644 --- a/docs/interfaces/Beatmapset.html +++ b/docs/interfaces/Beatmapset.html @@ -1,5 +1,5 @@ Beatmapset | osu-api-v2-js

    Interface Beatmapset

    Expected from BeatmapWithBeatmapset, Score, BeatmapPlaycount

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    artist: string
    artist_unicode: string
    covers: {
        card: string;
        card@2x: string;
        cover: string;
        cover@2x: string;
        list: string;
        list@2x: string;
        slimcover: string;
        slimcover@2x: string;
    }

    Type declaration

    • card: string
    • card@2x: string
    • cover: string
    • cover@2x: string
    • list: string
    • list@2x: string
    • slimcover: string
    • slimcover@2x: string
    creator: string
    favourite_count: number
    id: number
    nsfw: boolean
    offset: number
    play_count: number
    preview_url: string

    A string like that, where id is the id of the beatmapset: //b.ppy.sh/preview/58951.mp3

    -
    source: string | 0

    Can be/Is 0 if there is no source

    -
    spotlight: boolean
    status: string

    Is it ranked, is it graveyarded, etc

    -
    title: string

    A title readable by any english-speaking person, so it'd be romaji if the song's title is in Japanese

    -
    title_unicode: string

    Basically the title is the original language, so with hiraganas and kanji if Japanese

    -
    user_id: number
    video: boolean

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    artist: string
    artist_unicode: string
    covers: {
        card: string;
        card@2x: string;
        cover: string;
        cover@2x: string;
        list: string;
        list@2x: string;
        slimcover: string;
        slimcover@2x: string;
    }

    Type declaration

    • card: string
    • card@2x: string
    • cover: string
    • cover@2x: string
    • list: string
    • list@2x: string
    • slimcover: string
    • slimcover@2x: string
    creator: string
    favourite_count: number
    id: number
    nsfw: boolean
    offset: number
    play_count: number
    preview_url: string

    A string like that, where id is the id of the beatmapset: //b.ppy.sh/preview/58951.mp3

    +
    source: string | 0

    Can be/Is 0 if there is no source

    +
    spotlight: boolean
    status: string

    Is it ranked, is it graveyarded, etc

    +
    title: string

    A title readable by any english-speaking person, so it'd be romaji if the song's title is in Japanese

    +
    title_unicode: string

    Basically the title is the original language, so with hiraganas and kanji if Japanese

    +
    user_id: number
    video: boolean

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapsetExtended.html b/docs/interfaces/BeatmapsetExtended.html index f531f1e..ef43d5b 100644 --- a/docs/interfaces/BeatmapsetExtended.html +++ b/docs/interfaces/BeatmapsetExtended.html @@ -1,5 +1,5 @@ BeatmapsetExtended | osu-api-v2-js

    Interface BeatmapsetExtended

    Expected from RankingsSpotlight, BeatmapExtendedWithFailtimesBeatmapsetextended

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    artist: string
    artist_unicode: string
    availability: {
        download_disabled: boolean;
        more_information: null | string;
    }

    Type declaration

    • download_disabled: boolean

      So it's false if you can download it

      -
    • more_information: null | string
    bpm: number
    can_be_hyped: boolean
    covers: {
        card: string;
        card@2x: string;
        cover: string;
        cover@2x: string;
        list: string;
        list@2x: string;
        slimcover: string;
        slimcover@2x: string;
    }

    Type declaration

    • card: string
    • card@2x: string
    • cover: string
    • cover@2x: string
    • list: string
    • list@2x: string
    • slimcover: string
    • slimcover@2x: string
    creator: string
    deleted_at: null | string
    discussion_locked: boolean
    favourite_count: number
    hype: null | {
        current: number;
        required: number;
    }

    Type declaration

    • current: number
    • required: number
    id: number
    is_scoreable: boolean
    last_updated: Date
    legacy_thread_url: string
    nominations_summary: {
        current: number;
        required: number;
    }

    Type declaration

    • current: number
    • required: number
    nsfw: boolean
    offset: number
    play_count: number
    preview_url: string

    A string like that, where id is the id of the beatmapset: //b.ppy.sh/preview/58951.mp3

    -
    ranked: RankStatus
    ranked_date: null | Date
    source: string

    Can be/Is 0 if there is no source

    -
    spotlight: boolean
    status: string

    Is it ranked, is it graveyarded, etc

    -
    storyboard: boolean
    submitted_date: null | Date
    tags: string | 0

    0 if no tags at all, a string with tags separated from each other by a whitespace

    -
    title: string

    A title readable by any english-speaking person, so it'd be romaji if the song's title is in Japanese

    -
    title_unicode: string

    Basically the title is the original language, so with hiraganas and kanji if Japanese

    -
    user_id: number
    video: boolean

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    artist: string
    artist_unicode: string
    availability: {
        download_disabled: boolean;
        more_information: null | string;
    }

    Type declaration

    • download_disabled: boolean

      So it's false if you can download it

      +
    • more_information: null | string
    bpm: number
    can_be_hyped: boolean
    covers: {
        card: string;
        card@2x: string;
        cover: string;
        cover@2x: string;
        list: string;
        list@2x: string;
        slimcover: string;
        slimcover@2x: string;
    }

    Type declaration

    • card: string
    • card@2x: string
    • cover: string
    • cover@2x: string
    • list: string
    • list@2x: string
    • slimcover: string
    • slimcover@2x: string
    creator: string
    deleted_at: null | string
    discussion_locked: boolean
    favourite_count: number
    hype: null | {
        current: number;
        required: number;
    }

    Type declaration

    • current: number
    • required: number
    id: number
    is_scoreable: boolean
    last_updated: Date
    legacy_thread_url: string
    nominations_summary: {
        current: number;
        required: number;
    }

    Type declaration

    • current: number
    • required: number
    nsfw: boolean
    offset: number
    play_count: number
    preview_url: string

    A string like that, where id is the id of the beatmapset: //b.ppy.sh/preview/58951.mp3

    +
    ranked: RankStatus
    ranked_date: null | Date
    source: string

    Can be/Is 0 if there is no source

    +
    spotlight: boolean
    status: string

    Is it ranked, is it graveyarded, etc

    +
    storyboard: boolean
    submitted_date: null | Date
    tags: string | 0

    0 if no tags at all, a string with tags separated from each other by a whitespace

    +
    title: string

    A title readable by any english-speaking person, so it'd be romaji if the song's title is in Japanese

    +
    title_unicode: string

    Basically the title is the original language, so with hiraganas and kanji if Japanese

    +
    user_id: number
    video: boolean

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapsetExtendedPlus.html b/docs/interfaces/BeatmapsetExtendedPlus.html index 019899f..8ea8e21 100644 --- a/docs/interfaces/BeatmapsetExtendedPlus.html +++ b/docs/interfaces/BeatmapsetExtendedPlus.html @@ -1,5 +1,5 @@ BeatmapsetExtendedPlus | osu-api-v2-js

    Interface BeatmapsetExtendedPlus

    Expected from api.getBeatmapset()

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    Properties

    artist: string
    artist_unicode: string
    availability: {
        download_disabled: boolean;
        more_information: null | string;
    }

    Type declaration

    • download_disabled: boolean

      So it's false if you can download it

      -
    • more_information: null | string

    The different beatmaps/difficulties this beatmapset has

    -
    bpm: number
    can_be_hyped: boolean

    The different beatmaps made for osu!, but converted to the other Rulesets

    -
    covers: {
        card: string;
        card@2x: string;
        cover: string;
        cover@2x: string;
        list: string;
        list@2x: string;
        slimcover: string;
        slimcover@2x: string;
    }

    Type declaration

    • card: string
    • card@2x: string
    • cover: string
    • cover@2x: string
    • list: string
    • list@2x: string
    • slimcover: string
    • slimcover@2x: string
    creator: string
    current_nominations: {
        beatmapset_id: number;
        reset: boolean;
        rulesets: Rulesets[];
        user_id: number;
    }[]

    Type declaration

    • beatmapset_id: number
    • reset: boolean
    • rulesets: Rulesets[]
    • user_id: number
    deleted_at: null | string
    description: {
        description: string;
    }

    Type declaration

    • description: string

      In HTML

      -
    discussion_locked: boolean
    favourite_count: number
    genre: {
        id: number;
        name: string;
    }

    Type declaration

    • id: number
    • name: string
    has_favourited?: boolean

    Only exists if authorized user

    -
    hype: null | {
        current: number;
        required: number;
    }

    Type declaration

    • current: number
    • required: number
    id: number
    is_scoreable: boolean
    language: {
        id: number;
        name: string;
    }

    Type declaration

    • id: number
    • name: string
    last_updated: Date
    legacy_thread_url: string
    nominations_summary: {
        current: number;
        required: number;
    }

    Type declaration

    • current: number
    • required: number
    nsfw: boolean
    offset: number
    pack_tags: string[]
    play_count: number
    preview_url: string

    A string like that, where id is the id of the beatmapset: //b.ppy.sh/preview/58951.mp3

    -
    ranked: RankStatus
    ranked_date: null | Date
    ratings: number[]
    recent_favourites: User[]
    related_users: User[]
    source: string

    Can be/Is 0 if there is no source

    -
    spotlight: boolean
    status: string

    Is it ranked, is it graveyarded, etc

    -
    storyboard: boolean
    submitted_date: null | Date
    tags: string | 0

    0 if no tags at all, a string with tags separated from each other by a whitespace

    -
    title: string

    A title readable by any english-speaking person, so it'd be romaji if the song's title is in Japanese

    -
    title_unicode: string

    Basically the title is the original language, so with hiraganas and kanji if Japanese

    -
    user: User
    user_id: number
    video: boolean

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    artist: string
    artist_unicode: string
    availability: {
        download_disabled: boolean;
        more_information: null | string;
    }

    Type declaration

    • download_disabled: boolean

      So it's false if you can download it

      +
    • more_information: null | string

    The different beatmaps/difficulties this beatmapset has

    +
    bpm: number
    can_be_hyped: boolean

    The different beatmaps made for osu!, but converted to the other Rulesets

    +
    covers: {
        card: string;
        card@2x: string;
        cover: string;
        cover@2x: string;
        list: string;
        list@2x: string;
        slimcover: string;
        slimcover@2x: string;
    }

    Type declaration

    • card: string
    • card@2x: string
    • cover: string
    • cover@2x: string
    • list: string
    • list@2x: string
    • slimcover: string
    • slimcover@2x: string
    creator: string
    current_nominations: {
        beatmapset_id: number;
        reset: boolean;
        rulesets: Rulesets[];
        user_id: number;
    }[]

    Type declaration

    • beatmapset_id: number
    • reset: boolean
    • rulesets: Rulesets[]
    • user_id: number
    deleted_at: null | string
    description: {
        description: string;
    }

    Type declaration

    • description: string

      In HTML

      +
    discussion_locked: boolean
    favourite_count: number
    genre: {
        id: number;
        name: string;
    }

    Type declaration

    • id: number
    • name: string
    has_favourited?: boolean

    Only exists if authorized user

    +
    hype: null | {
        current: number;
        required: number;
    }

    Type declaration

    • current: number
    • required: number
    id: number
    is_scoreable: boolean
    language: {
        id: number;
        name: string;
    }

    Type declaration

    • id: number
    • name: string
    last_updated: Date
    legacy_thread_url: string
    nominations_summary: {
        current: number;
        required: number;
    }

    Type declaration

    • current: number
    • required: number
    nsfw: boolean
    offset: number
    pack_tags: string[]
    play_count: number
    preview_url: string

    A string like that, where id is the id of the beatmapset: //b.ppy.sh/preview/58951.mp3

    +
    ranked: RankStatus
    ranked_date: null | Date
    ratings: number[]
    recent_favourites: User[]
    related_users: User[]
    source: string

    Can be/Is 0 if there is no source

    +
    spotlight: boolean
    status: string

    Is it ranked, is it graveyarded, etc

    +
    storyboard: boolean
    submitted_date: null | Date
    tags: string | 0

    0 if no tags at all, a string with tags separated from each other by a whitespace

    +
    title: string

    A title readable by any english-speaking person, so it'd be romaji if the song's title is in Japanese

    +
    title_unicode: string

    Basically the title is the original language, so with hiraganas and kanji if Japanese

    +
    user: User
    user_id: number
    video: boolean

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/BeatmapsetExtendedWithBeatmapExtended.html b/docs/interfaces/BeatmapsetExtendedWithBeatmapExtended.html index 3c93ab67..2ecb951 100644 --- a/docs/interfaces/BeatmapsetExtendedWithBeatmapExtended.html +++ b/docs/interfaces/BeatmapsetExtendedWithBeatmapExtended.html @@ -1,5 +1,5 @@ BeatmapsetExtendedWithBeatmapExtended | osu-api-v2-js

    Interface BeatmapsetExtendedWithBeatmapExtended

    Expected from api.getUserBeatmaps()

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    artist: string
    artist_unicode: string
    availability: {
        download_disabled: boolean;
        more_information: null | string;
    }

    Type declaration

    • download_disabled: boolean

      So it's false if you can download it

      -
    • more_information: null | string
    beatmaps: BeatmapExtended[]
    bpm: number
    can_be_hyped: boolean
    covers: {
        card: string;
        card@2x: string;
        cover: string;
        cover@2x: string;
        list: string;
        list@2x: string;
        slimcover: string;
        slimcover@2x: string;
    }

    Type declaration

    • card: string
    • card@2x: string
    • cover: string
    • cover@2x: string
    • list: string
    • list@2x: string
    • slimcover: string
    • slimcover@2x: string
    creator: string
    deleted_at: null | string
    discussion_locked: boolean
    favourite_count: number
    hype: null | {
        current: number;
        required: number;
    }

    Type declaration

    • current: number
    • required: number
    id: number
    is_scoreable: boolean
    last_updated: Date
    legacy_thread_url: string
    nominations_summary: {
        current: number;
        required: number;
    }

    Type declaration

    • current: number
    • required: number
    nsfw: boolean
    offset: number
    play_count: number
    preview_url: string

    A string like that, where id is the id of the beatmapset: //b.ppy.sh/preview/58951.mp3

    -
    ranked: RankStatus
    ranked_date: null | Date
    source: string

    Can be/Is 0 if there is no source

    -
    spotlight: boolean
    status: string

    Is it ranked, is it graveyarded, etc

    -
    storyboard: boolean
    submitted_date: null | Date
    tags: string | 0

    0 if no tags at all, a string with tags separated from each other by a whitespace

    -
    title: string

    A title readable by any english-speaking person, so it'd be romaji if the song's title is in Japanese

    -
    title_unicode: string

    Basically the title is the original language, so with hiraganas and kanji if Japanese

    -
    user_id: number
    video: boolean

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    artist: string
    artist_unicode: string
    availability: {
        download_disabled: boolean;
        more_information: null | string;
    }

    Type declaration

    • download_disabled: boolean

      So it's false if you can download it

      +
    • more_information: null | string
    beatmaps: BeatmapExtended[]
    bpm: number
    can_be_hyped: boolean
    covers: {
        card: string;
        card@2x: string;
        cover: string;
        cover@2x: string;
        list: string;
        list@2x: string;
        slimcover: string;
        slimcover@2x: string;
    }

    Type declaration

    • card: string
    • card@2x: string
    • cover: string
    • cover@2x: string
    • list: string
    • list@2x: string
    • slimcover: string
    • slimcover@2x: string
    creator: string
    deleted_at: null | string
    discussion_locked: boolean
    favourite_count: number
    hype: null | {
        current: number;
        required: number;
    }

    Type declaration

    • current: number
    • required: number
    id: number
    is_scoreable: boolean
    last_updated: Date
    legacy_thread_url: string
    nominations_summary: {
        current: number;
        required: number;
    }

    Type declaration

    • current: number
    • required: number
    nsfw: boolean
    offset: number
    play_count: number
    preview_url: string

    A string like that, where id is the id of the beatmapset: //b.ppy.sh/preview/58951.mp3

    +
    ranked: RankStatus
    ranked_date: null | Date
    source: string

    Can be/Is 0 if there is no source

    +
    spotlight: boolean
    status: string

    Is it ranked, is it graveyarded, etc

    +
    storyboard: boolean
    submitted_date: null | Date
    tags: string | 0

    0 if no tags at all, a string with tags separated from each other by a whitespace

    +
    title: string

    A title readable by any english-speaking person, so it'd be romaji if the song's title is in Japanese

    +
    title_unicode: string

    Basically the title is the original language, so with hiraganas and kanji if Japanese

    +
    user_id: number
    video: boolean

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/ChangelogBuildWithChangelogentriesVersions.html b/docs/interfaces/ChangelogBuildWithChangelogentriesVersions.html index d237c84..fbe4a65 100644 --- a/docs/interfaces/ChangelogBuildWithChangelogentriesVersions.html +++ b/docs/interfaces/ChangelogBuildWithChangelogentriesVersions.html @@ -1,5 +1,5 @@ ChangelogBuildWithChangelogentriesVersions | osu-api-v2-js

    Interface ChangelogBuildWithChangelogentriesVersions

    Expected from api.getChangelogBuild()

    -

    Hierarchy

    • ChangelogBuildWithChangelogentries
      • ChangelogBuildWithChangelogentriesVersions

    Properties

    Hierarchy

    • ChangelogBuildWithChangelogentries
      • ChangelogBuildWithChangelogentriesVersions

    Properties

  • github_pull_request_id: null | number
  • github_url: null | string
  • Optional github_user?: {
        display_name: string;
        github_url: null | string;
        github_username: null | string;
        id: null | number;
        osu_username: null | string;
        user_id: null | number;
        user_url: null | string;
    }

    Doesn't exist if no github user is associated with who's credited with the change

    • display_name: string
    • github_url: null | string
    • github_username: null | string
    • id: null | number
    • osu_username: null | string
    • user_id: null | number
    • user_url: null | string
  • id: null | number
  • major: boolean
  • Optional message?: null | string

    Entry message in Markdown format, embedded HTML is allowed, exists only if Markdown was requested

  • Optional message_html?: null | string

    Entry message in HTML format, exists only if HTML was requested

    -
  • repository: null | string
  • title: null | string
  • type: string
  • url: null | string
  • created_at: Date
    display_version: string
    id: number
    users: number

    How many users are playing on this version of the game? (if lazer/web, should be 0, lazer doesn't show such stats)

    -
    version: null | string

    The name of the version

    -
    versions: {
        next: null | ChangelogBuildWithUpdatestreams;
        previous: null | ChangelogBuildWithUpdatestreams;
    }

    Type declaration

    youtube_id: null | string

    If a video is showcased on the changelog

    +
  • repository: null | string
  • title: null | string
  • type: string
  • url: null | string
  • created_at: Date
    display_version: string
    id: number
    users: number

    How many users are playing on this version of the game? (if lazer/web, should be 0, lazer doesn't show such stats)

    +
    version: null | string

    The name of the version

    +
    versions: {
        next: null | ChangelogBuildWithUpdatestreams;
        previous: null | ChangelogBuildWithUpdatestreams;
    }

    Type declaration

    youtube_id: null | string

    If a video is showcased on the changelog

    Remarks

    The ID of a Youtube video is whatever comes after /watch?v= in its url

    -

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/ChangelogBuildWithUpdatestreams.html b/docs/interfaces/ChangelogBuildWithUpdatestreams.html index ee49af8..b20c86c 100644 --- a/docs/interfaces/ChangelogBuildWithUpdatestreams.html +++ b/docs/interfaces/ChangelogBuildWithUpdatestreams.html @@ -1,13 +1,13 @@ ChangelogBuildWithUpdatestreams | osu-api-v2-js

    Interface ChangelogBuildWithUpdatestreams

    Expected from ChangelogBuildWithChangelogentriesVersions

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    created_at: Date
    display_version: string
    id: number
    update_stream: UpdateStream
    users: number

    How many users are playing on this version of the game? (if lazer/web, should be 0, lazer doesn't show such stats)

    -
    version: null | string

    The name of the version

    -
    youtube_id: null | string

    If a video is showcased on the changelog

    +

    Properties

    created_at: Date
    display_version: string
    id: number
    update_stream: UpdateStream
    users: number

    How many users are playing on this version of the game? (if lazer/web, should be 0, lazer doesn't show such stats)

    +
    version: null | string

    The name of the version

    +
    youtube_id: null | string

    If a video is showcased on the changelog

    Remarks

    The ID of a Youtube video is whatever comes after /watch?v= in its url

    -

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/ChangelogBuildWithUpdatestreamsChangelogentries.html b/docs/interfaces/ChangelogBuildWithUpdatestreamsChangelogentries.html index dfd3879..363f8a5 100644 --- a/docs/interfaces/ChangelogBuildWithUpdatestreamsChangelogentries.html +++ b/docs/interfaces/ChangelogBuildWithUpdatestreamsChangelogentries.html @@ -1,5 +1,5 @@ ChangelogBuildWithUpdatestreamsChangelogentries | osu-api-v2-js

    Interface ChangelogBuildWithUpdatestreamsChangelogentries

    Expected from api.getChangelogBuilds()

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

  • github_pull_request_id: null | number
  • github_url: null | string
  • Optional github_user?: {
        display_name: string;
        github_url: null | string;
        github_username: null | string;
        id: null | number;
        osu_username: null | string;
        user_id: null | number;
        user_url: null | string;
    }

    Doesn't exist if no github user is associated with who's credited with the change

    • display_name: string
    • github_url: null | string
    • github_username: null | string
    • id: null | number
    • osu_username: null | string
    • user_id: null | number
    • user_url: null | string
  • id: null | number
  • major: boolean
  • Optional message?: null | string

    Entry message in Markdown format, embedded HTML is allowed, exists only if Markdown was requested

  • Optional message_html?: null | string

    Entry message in HTML format, exists only if HTML was requested

    -
  • repository: null | string
  • title: null | string
  • type: string
  • url: null | string
  • created_at: Date
    display_version: string
    id: number
    update_stream: UpdateStream
    users: number

    How many users are playing on this version of the game? (if lazer/web, should be 0, lazer doesn't show such stats)

    -
    version: null | string

    The name of the version

    -
    youtube_id: null | string

    If a video is showcased on the changelog

    +
  • repository: null | string
  • title: null | string
  • type: string
  • url: null | string
  • created_at: Date
    display_version: string
    id: number
    update_stream: UpdateStream
    users: number

    How many users are playing on this version of the game? (if lazer/web, should be 0, lazer doesn't show such stats)

    +
    version: null | string

    The name of the version

    +
    youtube_id: null | string

    If a video is showcased on the changelog

    Remarks

    The ID of a Youtube video is whatever comes after /watch?v= in its url

    -

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/ChatChannel.html b/docs/interfaces/ChatChannel.html new file mode 100644 index 0000000..e14667b --- /dev/null +++ b/docs/interfaces/ChatChannel.html @@ -0,0 +1,9 @@ +ChatChannel | osu-api-v2-js

    Interface ChatChannel

    Expected from api.sendChatPrivateMessage(), api.createChatPrivateChannel()

    +

    Hierarchy

    Properties

    channel_id: number
    description: null | string
    icon: null | string
    moderated: boolean
    name: string
    type: "PUBLIC" | "PRIVATE" | "MULTIPLAYER" | "SPECTATOR" | "TEMPORARY" | "PM" | "GROUP" | "ANNOUNCE"
    uuid: null | string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/ChatChannelWithDetails.html b/docs/interfaces/ChatChannelWithDetails.html new file mode 100644 index 0000000..d63ed9e --- /dev/null +++ b/docs/interfaces/ChatChannelWithDetails.html @@ -0,0 +1,17 @@ +ChatChannelWithDetails | osu-api-v2-js

    Interface ChatChannelWithDetails

    Expected from api.joinChatChannel(), api.getChatChannel()

    +

    Hierarchy

    Properties

    channel_id: number
    current_user_attributes: {
        can_message: boolean;
        can_message_error: null | string;
        last_read_id: null | number;
    }

    Type declaration

    • can_message: boolean
    • can_message_error: null | string

      The reason why messages can't be sent in this channel

      +

      Remarks

      Is null if messages can be sent

      +
    • last_read_id: null | number

      Remarks

      Is null if no message has been read (I think)

      +
    description: null | string
    icon: null | string
    last_message_id: number
    moderated: boolean
    name: string
    type: "PUBLIC" | "PRIVATE" | "MULTIPLAYER" | "SPECTATOR" | "TEMPORARY" | "PM" | "GROUP" | "ANNOUNCE"
    users: number[]

    The ids of the users that are in the channel

    +

    Remarks

    Is empty for public channels

    +
    uuid: null | string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/ChatMessage.html b/docs/interfaces/ChatMessage.html new file mode 100644 index 0000000..2461046 --- /dev/null +++ b/docs/interfaces/ChatMessage.html @@ -0,0 +1,12 @@ +ChatMessage | osu-api-v2-js

    Interface ChatMessage

    Expected from api.sendChatPrivateMessage(), api.getChatMessages(), api.sendChatMessage()

    +

    Hierarchy

    • ChatMessage

    Properties

    channel_id: number
    content: string
    is_action: boolean
    message_id: number
    sender: User
    sender_id: number
    timestamp: Date
    type: string

    Like "action", "markdown", "plain"

    +
    uuid?: null | string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/Event.html b/docs/interfaces/Event.html index 08d4214..4df40dc 100644 --- a/docs/interfaces/Event.html +++ b/docs/interfaces/Event.html @@ -1,3 +1,3 @@ -Event | osu-api-v2-js

    Interface Event

    Hierarchy

    Properties

    created_at +Event | osu-api-v2-js

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    created_at: Date
    id: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventAchievement.html b/docs/interfaces/EventAchievement.html index edd35db..580e5f0 100644 --- a/docs/interfaces/EventAchievement.html +++ b/docs/interfaces/EventAchievement.html @@ -1,9 +1,9 @@ -EventAchievement | osu-api-v2-js

    Interface EventAchievement

    Hierarchy

    Properties

    achievement +EventAchievement | osu-api-v2-js

    Interface EventAchievement

    Hierarchy

    Properties

    achievement: {
        description: string;
        grouping: string;
        icon_url: string;
        id: number;
        instructions: string;
        mode: null | string;
        name: string;
        ordering: number;
        slug: string;
    }

    Type declaration

    • description: string
    • grouping: string
    • icon_url: string
    • id: number
    • instructions: string

      May contain HTML (like have the text between )

    • mode: null | string

      If the achievement is for a specific mode only (such as pass a 2* beatmap in taiko)

      -
    • name: string
    • ordering: number
    • slug: string
    created_at: Date
    id: number
    type: "achievement"
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      -
    • username: string

    Generated using TypeDoc

    \ No newline at end of file +
  • name: string
  • ordering: number
  • slug: string
  • created_at: Date
    id: number
    type: "achievement"
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      +
    • username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventBeatmap.html b/docs/interfaces/EventBeatmap.html index f83da39..1a74f62 100644 --- a/docs/interfaces/EventBeatmap.html +++ b/docs/interfaces/EventBeatmap.html @@ -1,7 +1,7 @@ -EventBeatmap | osu-api-v2-js

    Interface EventBeatmap

    Hierarchy

    Properties

    created_at +EventBeatmap | osu-api-v2-js

    Interface EventBeatmap

    Hierarchy

    Properties

    Properties

    created_at: Date
    id: number
    title: string

    {artist} - {title} [{difficulty_name}]

    -
    url: string

    What goes after the website's URL, like it could be the /b/2980857?m=0 of https://osu.ppy.sh/b/2980857?m=0 (/{beatmap_id}?m={ruleset_id})

    -

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    created_at: Date
    id: number
    title: string

    {artist} - {title} [{difficulty_name}]

    +
    url: string

    What goes after the website's URL, like it could be the /b/2980857?m=0 of https://osu.ppy.sh/b/2980857?m=0 (/{beatmap_id}?m={ruleset_id})

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventBeatmapPlaycount.html b/docs/interfaces/EventBeatmapPlaycount.html index a6fce50..9bd1cf9 100644 --- a/docs/interfaces/EventBeatmapPlaycount.html +++ b/docs/interfaces/EventBeatmapPlaycount.html @@ -1,9 +1,9 @@ -EventBeatmapPlaycount | osu-api-v2-js

    Interface EventBeatmapPlaycount

    Hierarchy

    Properties

    count +EventBeatmapPlaycount | osu-api-v2-js

    Interface EventBeatmapPlaycount

    Hierarchy

    Properties

    count: number
    created_at: Date
    id: number
    title: string

    {artist} - {title} [{difficulty_name}]

    -
    type: "beatmapPlaycount"
    url: string

    What goes after the website's URL, like it could be the /b/2980857?m=0 of https://osu.ppy.sh/b/2980857?m=0 (/{beatmap_id}?m={ruleset_id})

    -

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    count: number
    created_at: Date
    id: number
    title: string

    {artist} - {title} [{difficulty_name}]

    +
    type: "beatmapPlaycount"
    url: string

    What goes after the website's URL, like it could be the /b/2980857?m=0 of https://osu.ppy.sh/b/2980857?m=0 (/{beatmap_id}?m={ruleset_id})

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventBeatmapset.html b/docs/interfaces/EventBeatmapset.html index 621cb32..93b749f 100644 --- a/docs/interfaces/EventBeatmapset.html +++ b/docs/interfaces/EventBeatmapset.html @@ -1,7 +1,7 @@ -EventBeatmapset | osu-api-v2-js

    Interface EventBeatmapset

    Hierarchy

    Properties

    created_at +EventBeatmapset | osu-api-v2-js

    Interface EventBeatmapset

    Hierarchy

    Properties

    Properties

    created_at: Date
    id: number
    title: string

    {artist} - {title}

    -
    url: string

    What goes after the website's URL, like it could be the /s/689155 of https://osu.ppy.sh/s/689155 (/{beatmapset_id})

    -

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    created_at: Date
    id: number
    title: string

    {artist} - {title}

    +
    url: string

    What goes after the website's URL, like it could be the /s/689155 of https://osu.ppy.sh/s/689155 (/{beatmapset_id})

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventBeatmapsetApprove.html b/docs/interfaces/EventBeatmapsetApprove.html index 1652d9a..29e5da3 100644 --- a/docs/interfaces/EventBeatmapsetApprove.html +++ b/docs/interfaces/EventBeatmapsetApprove.html @@ -1,11 +1,11 @@ -EventBeatmapsetApprove | osu-api-v2-js

    Interface EventBeatmapsetApprove

    Hierarchy

    Properties

    approval +EventBeatmapsetApprove | osu-api-v2-js

    Interface EventBeatmapsetApprove

    Hierarchy

    Properties

    approval: "ranked" | "approved" | "qualified" | "loved"
    created_at: Date
    id: number
    title: string

    {artist} - {title}

    -
    type: "beatmapsetApprove"
    url: string

    What goes after the website's URL, like it could be the /s/689155 of https://osu.ppy.sh/s/689155 (/{beatmapset_id})

    -
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      -
    • username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    approval: "ranked" | "approved" | "qualified" | "loved"
    created_at: Date
    id: number
    title: string

    {artist} - {title}

    +
    type: "beatmapsetApprove"
    url: string

    What goes after the website's URL, like it could be the /s/689155 of https://osu.ppy.sh/s/689155 (/{beatmapset_id})

    +
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      +
    • username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventBeatmapsetDelete.html b/docs/interfaces/EventBeatmapsetDelete.html index 690ebbd..fe4819e 100644 --- a/docs/interfaces/EventBeatmapsetDelete.html +++ b/docs/interfaces/EventBeatmapsetDelete.html @@ -1,8 +1,8 @@ -EventBeatmapsetDelete | osu-api-v2-js

    Interface EventBeatmapsetDelete

    Hierarchy

    Properties

    created_at +EventBeatmapsetDelete | osu-api-v2-js

    Interface EventBeatmapsetDelete

    Hierarchy

    Properties

    Properties

    created_at: Date
    id: number
    title: string

    {artist} - {title}

    -
    type: "beatmapsetDelete"
    url: string

    What goes after the website's URL, like it could be the /s/689155 of https://osu.ppy.sh/s/689155 (/{beatmapset_id})

    -

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    created_at: Date
    id: number
    title: string

    {artist} - {title}

    +
    type: "beatmapsetDelete"
    url: string

    What goes after the website's URL, like it could be the /s/689155 of https://osu.ppy.sh/s/689155 (/{beatmapset_id})

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventBeatmapsetRevive.html b/docs/interfaces/EventBeatmapsetRevive.html index dd3e95e..25ae857 100644 --- a/docs/interfaces/EventBeatmapsetRevive.html +++ b/docs/interfaces/EventBeatmapsetRevive.html @@ -1,10 +1,10 @@ -EventBeatmapsetRevive | osu-api-v2-js

    Interface EventBeatmapsetRevive

    Hierarchy

    Properties

    created_at +EventBeatmapsetRevive | osu-api-v2-js

    Interface EventBeatmapsetRevive

    Hierarchy

    Properties

    created_at: Date
    id: number
    title: string

    {artist} - {title}

    -
    type: "beatmapsetRevive"
    url: string

    What goes after the website's URL, like it could be the /s/689155 of https://osu.ppy.sh/s/689155 (/{beatmapset_id})

    -
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      -
    • username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    created_at: Date
    id: number
    title: string

    {artist} - {title}

    +
    type: "beatmapsetRevive"
    url: string

    What goes after the website's URL, like it could be the /s/689155 of https://osu.ppy.sh/s/689155 (/{beatmapset_id})

    +
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      +
    • username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventBeatmapsetUpdate.html b/docs/interfaces/EventBeatmapsetUpdate.html index 81e974d..53a5e50 100644 --- a/docs/interfaces/EventBeatmapsetUpdate.html +++ b/docs/interfaces/EventBeatmapsetUpdate.html @@ -1,10 +1,10 @@ -EventBeatmapsetUpdate | osu-api-v2-js

    Interface EventBeatmapsetUpdate

    Hierarchy

    Properties

    created_at +EventBeatmapsetUpdate | osu-api-v2-js

    Interface EventBeatmapsetUpdate

    Hierarchy

    Properties

    created_at: Date
    id: number
    title: string

    {artist} - {title}

    -
    type: "beatmapsetUpdate"
    url: string

    What goes after the website's URL, like it could be the /s/689155 of https://osu.ppy.sh/s/689155 (/{beatmapset_id})

    -
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      -
    • username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    created_at: Date
    id: number
    title: string

    {artist} - {title}

    +
    type: "beatmapsetUpdate"
    url: string

    What goes after the website's URL, like it could be the /s/689155 of https://osu.ppy.sh/s/689155 (/{beatmapset_id})

    +
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      +
    • username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventBeatmapsetUpload.html b/docs/interfaces/EventBeatmapsetUpload.html index 0d44b3e..51b8c15 100644 --- a/docs/interfaces/EventBeatmapsetUpload.html +++ b/docs/interfaces/EventBeatmapsetUpload.html @@ -1,10 +1,10 @@ -EventBeatmapsetUpload | osu-api-v2-js

    Interface EventBeatmapsetUpload

    Hierarchy

    Properties

    created_at +EventBeatmapsetUpload | osu-api-v2-js

    Interface EventBeatmapsetUpload

    Hierarchy

    Properties

    created_at: Date
    id: number
    title: string

    {artist} - {title}

    -
    type: "beatmapsetUpload"
    url: string

    What goes after the website's URL, like it could be the /s/689155 of https://osu.ppy.sh/s/689155 (/{beatmapset_id})

    -
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      -
    • username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    created_at: Date
    id: number
    title: string

    {artist} - {title}

    +
    type: "beatmapsetUpload"
    url: string

    What goes after the website's URL, like it could be the /s/689155 of https://osu.ppy.sh/s/689155 (/{beatmapset_id})

    +
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      +
    • username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventRank.html b/docs/interfaces/EventRank.html index 2229f63..53fa631 100644 --- a/docs/interfaces/EventRank.html +++ b/docs/interfaces/EventRank.html @@ -1,4 +1,4 @@ -EventRank | osu-api-v2-js

    Interface EventRank

    Hierarchy

    Properties

    created_at +EventRank | osu-api-v2-js

    Interface EventRank

    Hierarchy

    Properties

    created_at id mode rank @@ -7,9 +7,9 @@ type url user -

    Properties

    created_at: Date
    id: number
    mode: Rulesets
    rank: number

    The position achieved, like 14

    -
    scoreRank: string

    The grade, like "S"

    -
    title: string

    {artist} - {title} [{difficulty_name}]

    -
    type: "rank"
    url: string

    What goes after the website's URL, like it could be the /b/2980857?m=0 of https://osu.ppy.sh/b/2980857?m=0 (/{beatmap_id}?m={ruleset_id})

    -
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      -
    • username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    created_at: Date
    id: number
    mode: Rulesets
    rank: number

    The position achieved, like 14

    +
    scoreRank: string

    The grade, like "S"

    +
    title: string

    {artist} - {title} [{difficulty_name}]

    +
    type: "rank"
    url: string

    What goes after the website's URL, like it could be the /b/2980857?m=0 of https://osu.ppy.sh/b/2980857?m=0 (/{beatmap_id}?m={ruleset_id})

    +
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      +
    • username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventRankLost.html b/docs/interfaces/EventRankLost.html index e386db9..50b08ad 100644 --- a/docs/interfaces/EventRankLost.html +++ b/docs/interfaces/EventRankLost.html @@ -1,11 +1,11 @@ -EventRankLost | osu-api-v2-js

    Interface EventRankLost

    Hierarchy

    Properties

    created_at +EventRankLost | osu-api-v2-js

    Interface EventRankLost

    Hierarchy

    Properties

    created_at: Date
    id: number
    mode: Rulesets
    title: string

    {artist} - {title} [{difficulty_name}]

    -
    type: "rankLost"
    url: string

    What goes after the website's URL, like it could be the /b/2980857?m=0 of https://osu.ppy.sh/b/2980857?m=0 (/{beatmap_id}?m={ruleset_id})

    -
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      -
    • username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    created_at: Date
    id: number
    mode: Rulesets
    title: string

    {artist} - {title} [{difficulty_name}]

    +
    type: "rankLost"
    url: string

    What goes after the website's URL, like it could be the /b/2980857?m=0 of https://osu.ppy.sh/b/2980857?m=0 (/{beatmap_id}?m={ruleset_id})

    +
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      +
    • username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventUser.html b/docs/interfaces/EventUser.html index 26fb1d2..915a611 100644 --- a/docs/interfaces/EventUser.html +++ b/docs/interfaces/EventUser.html @@ -1,5 +1,5 @@ -EventUser | osu-api-v2-js

    Interface EventUser

    Hierarchy

    Properties

    created_at +EventUser | osu-api-v2-js

    Interface EventUser

    Hierarchy

    Properties

    Properties

    created_at: Date
    id: number
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      -
    • username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    created_at: Date
    id: number
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      +
    • username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventUserSupportAgain.html b/docs/interfaces/EventUserSupportAgain.html index 74840f9..6d2fc54 100644 --- a/docs/interfaces/EventUserSupportAgain.html +++ b/docs/interfaces/EventUserSupportAgain.html @@ -1,6 +1,6 @@ -EventUserSupportAgain | osu-api-v2-js

    Interface EventUserSupportAgain

    Hierarchy

    Properties

    created_at +EventUserSupportAgain | osu-api-v2-js

    Interface EventUserSupportAgain

    Hierarchy

    Properties

    Properties

    created_at: Date
    id: number
    type: "userSupportAgain"
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      -
    • username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    created_at: Date
    id: number
    type: "userSupportAgain"
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      +
    • username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventUserSupportFirst.html b/docs/interfaces/EventUserSupportFirst.html index 91fbc9c..41e93c5 100644 --- a/docs/interfaces/EventUserSupportFirst.html +++ b/docs/interfaces/EventUserSupportFirst.html @@ -1,6 +1,6 @@ -EventUserSupportFirst | osu-api-v2-js

    Interface EventUserSupportFirst

    Hierarchy

    Properties

    created_at +EventUserSupportFirst | osu-api-v2-js

    Interface EventUserSupportFirst

    Hierarchy

    Properties

    Properties

    created_at: Date
    id: number
    type: "userSupportFirst"
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      -
    • username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    created_at: Date
    id: number
    type: "userSupportFirst"
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      +
    • username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventUserSupportGift.html b/docs/interfaces/EventUserSupportGift.html index ea502b1..4b135e4 100644 --- a/docs/interfaces/EventUserSupportGift.html +++ b/docs/interfaces/EventUserSupportGift.html @@ -1,6 +1,6 @@ -EventUserSupportGift | osu-api-v2-js

    Interface EventUserSupportGift

    Hierarchy

    Properties

    created_at +EventUserSupportGift | osu-api-v2-js

    Interface EventUserSupportGift

    Hierarchy

    Properties

    Properties

    created_at: Date
    id: number
    type: "userSupportGift"
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      -
    • username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    created_at: Date
    id: number
    type: "userSupportGift"
    user: {
        url: string;
        username: string;
    }

    Type declaration

    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846 (or users instead of u)

      +
    • username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/EventUsernameChange.html b/docs/interfaces/EventUsernameChange.html index 40610d5..d697eb1 100644 --- a/docs/interfaces/EventUsernameChange.html +++ b/docs/interfaces/EventUsernameChange.html @@ -1,6 +1,6 @@ -EventUsernameChange | osu-api-v2-js

    Interface EventUsernameChange

    Hierarchy

    Properties

    created_at +EventUsernameChange | osu-api-v2-js

    Interface EventUsernameChange

    Hierarchy

    Properties

    Properties

    created_at: Date
    id: number
    type: "usernameChange"
    user: {
        previousUsername: string;
        url: string;
        username: string;
    }

    Type declaration

    • previousUsername: string
    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846

      -
    • username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    created_at: Date
    id: number
    type: "usernameChange"
    user: {
        previousUsername: string;
        url: string;
        username: string;
    }

    Type declaration

    • previousUsername: string
    • url: string

      What goes after the website's URL, so for example, it could be the /u/7276846 of https://osu.ppy.sh/u/7276846

      +
    • username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/ForumPost.html b/docs/interfaces/ForumPost.html new file mode 100644 index 0000000..12df5f5 --- /dev/null +++ b/docs/interfaces/ForumPost.html @@ -0,0 +1,13 @@ +ForumPost | osu-api-v2-js

    Interface ForumPost

    Expected from api.replyForumTopic(), api.createForumTopic(), api.getForumTopicAndPosts(), api.editForumPost()

    +

    Hierarchy

    • ForumPost

    Properties

    body: {
        html: string;
        raw: string;
    }

    Type declaration

    • html: string

      Post content in HTML format

      +
    • raw: string

      Post content in BBCode format

      +
    created_at: Date
    deleted_at: null | Date
    edited_at: null | Date
    edited_by_id: null | number
    forum_id: number
    id: number
    topic_id: number
    user_id: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/ForumTopic.html b/docs/interfaces/ForumTopic.html new file mode 100644 index 0000000..afc17e6 --- /dev/null +++ b/docs/interfaces/ForumTopic.html @@ -0,0 +1,16 @@ +ForumTopic | osu-api-v2-js

    Interface ForumTopic

    Expected from api.createForumTopic(), api.getForumTopicAndPosts(), api.editForumTopicTitle()

    +

    Hierarchy

    • ForumTopic

    Properties

    created_at: Date
    deleted_at: null | Date
    first_post_id: number
    forum_id: number
    id: number
    is_locked: boolean
    last_post_id: number
    poll: null | {
        allow_vote_change: boolean;
        ended_at: null | Date;
        hide_incomplete_results: boolean;
        last_vote_at: null | Date;
        max_votes: number;
        options: {
            id: number;
            text: {
                bbcode: string;
                html: string;
            };
            vote_count?: number;
        }[];
        started_at: Date;
        title: {
            bbcode: string;
            html: string;
        };
        total_vote_count: number;
    }

    Type declaration

    • allow_vote_change: boolean
    • ended_at: null | Date

      Can be in the future

      +
    • hide_incomplete_results: boolean
    • last_vote_at: null | Date
    • max_votes: number
    • options: {
          id: number;
          text: {
              bbcode: string;
              html: string;
          };
          vote_count?: number;
      }[]
    • started_at: Date
    • title: {
          bbcode: string;
          html: string;
      }
      • bbcode: string
      • html: string
    • total_vote_count: number
    post_count: number
    title: string
    type: "normal" | "sticky" | "announcement"
    updated_at: Date
    user_id: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/KudosuHistory.html b/docs/interfaces/KudosuHistory.html index 892119a..c6648ac 100644 --- a/docs/interfaces/KudosuHistory.html +++ b/docs/interfaces/KudosuHistory.html @@ -1,9 +1,9 @@ KudosuHistory | osu-api-v2-js

    Interface KudosuHistory

    Expected from api.getUserKudosu()

    -

    Hierarchy

    • KudosuHistory

    Properties

    Hierarchy

    • KudosuHistory

    Properties

    action: "reset" | "give" | "vote.give" | "vote.reset" | "revoke" | "vote.revoke"
    amount: number
    created_at: Date
    giver: null | {
        url: string;
        username: string;
    }

    Type declaration

    • url: string
    • username: string
    id: number
    model: string
    post: {
        title: string;
        url: null | string;
    }

    Type declaration

    • title: string
    • url: null | string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    action: "reset" | "give" | "vote.give" | "vote.reset" | "revoke" | "vote.revoke"
    amount: number
    created_at: Date
    giver: null | {
        url: string;
        username: string;
    }

    Type declaration

    • url: string
    • username: string
    id: number
    model: string
    post: {
        title: string;
        url: null | string;
    }

    Type declaration

    • title: string
    • url: null | string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/Leader.html b/docs/interfaces/Leader.html index 77a9606..dc1c3f4 100644 --- a/docs/interfaces/Leader.html +++ b/docs/interfaces/Leader.html @@ -1,4 +1,4 @@ -Leader | osu-api-v2-js

    Interface Leader

    Hierarchy

    • Leader

    Properties

    accuracy +Leader | osu-api-v2-js

    Interface Leader

    Hierarchy

    • Leader

    Properties

    Properties

    accuracy: number

    In a format where 96.40% would be 0.9640 (likely with some numbers after the zero)

    -
    attempts: number
    completed: number
    pp: number
    room_id: number
    total_score: number
    user_id: number

    Generated using TypeDoc

    \ No newline at end of file +
    attempts: number
    completed: number
    pp: number
    room_id: number
    total_score: number
    user_id: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/Match.html b/docs/interfaces/Match.html index a48aa80..c538165 100644 --- a/docs/interfaces/Match.html +++ b/docs/interfaces/Match.html @@ -1,10 +1,10 @@ Match | osu-api-v2-js

    Interface Match

    Expected from api.getMatch()

    -

    Hierarchy

    • Match

    Properties

    Hierarchy

    • Match

    Properties

    current_game_id: null | number
    events: {
        detail: {
            text?: string;
            type: string;
        };
        game?: {
            beatmap: BeatmapWithBeatmapset;
            beatmap_id: number;
            end_time: null | Date;
            id: number;
            mode: string;
            mode_int: Rulesets;
            mods: string[];
            scores: ScoreWithMatch[];
            scoring_type: string;
            start_time: Date;
            team_type: string;
        };
        id: number;
        timestamp: Date;
        user_id: null | number;
    }[]

    Type declaration

    • detail: {
          text?: string;
          type: string;
      }
      • Optional text?: string

        If detail.type is other, this exists and will be the name of the room

        +

    Properties

    current_game_id: null | number
    events: {
        detail: {
            text?: string;
            type: string;
        };
        game?: {
            beatmap: BeatmapWithBeatmapset;
            beatmap_id: number;
            end_time: null | Date;
            id: number;
            mode: string;
            mode_int: Rulesets;
            mods: string[];
            scores: ScoreWithMatch[];
            scoring_type: string;
            start_time: Date;
            team_type: string;
        };
        id: number;
        timestamp: Date;
        user_id: null | number;
    }[]

    Type declaration

    • detail: {
          text?: string;
          type: string;
      }
      • Optional text?: string

        If detail.type is other, this exists and will be the name of the room

      • type: string
    • Optional game?: {
          beatmap: BeatmapWithBeatmapset;
          beatmap_id: number;
          end_time: null | Date;
          id: number;
          mode: string;
          mode_int: Rulesets;
          mods: string[];
          scores: ScoreWithMatch[];
          scoring_type: string;
          start_time: Date;
          team_type: string;
      }

      If detail.type is other, then this should exist!

      -
    • id: number
    • timestamp: Date
    • user_id: null | number
    first_event_id: number
    latest_event_id: number
    match: MatchInfo

    Generated using TypeDoc

    \ No newline at end of file +
  • id: number
  • timestamp: Date
  • user_id: null | number
  • first_event_id: number
    latest_event_id: number
    match: MatchInfo

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/MatchInfo.html b/docs/interfaces/MatchInfo.html index bcfa75a..9419f28 100644 --- a/docs/interfaces/MatchInfo.html +++ b/docs/interfaces/MatchInfo.html @@ -1,6 +1,6 @@ MatchInfo | osu-api-v2-js

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    end_time: null | Date
    id: number
    name: string
    start_time: Date

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/MultiplayerScore.html b/docs/interfaces/MultiplayerScore.html index c95fbc2..1167a4e 100644 --- a/docs/interfaces/MultiplayerScore.html +++ b/docs/interfaces/MultiplayerScore.html @@ -1,6 +1,6 @@ MultiplayerScore | osu-api-v2-js

    Interface MultiplayerScore

    Expected from MultiplayerScores

    Remarks

    This particular interface seems really unstable, beware

    -

    Hierarchy

    • MultiplayerScore

    Properties

    Hierarchy

    • MultiplayerScore

    Properties

    Properties

    accuracy: number

    In a format where 96.40% would be 0.9640 (and no number afterwards)

    -
    beatmap_id: number
    ended_at: Date
    id: number
    max_combo: number
    maximum_statistics: {
        great: number;
        ignore_hit: number;
        large_tick_hit: number;
        small_tick_hit: number;
    }

    Type declaration

    • great: number
    • ignore_hit: number
    • large_tick_hit: number
    • small_tick_hit: number
    mods: Mod[]
    passed: boolean
    playlist_item_id: number
    pp: null | number
    rank: string
    replay: boolean
    room_id: number
    ruleset_id: number
    started_at: Date
    statistics: {
        great?: number;
        large_bonus?: number;
        large_tick_hit?: number;
        meh?: number;
        miss?: number;
        ok?: number;
        small_bonus?: number;
        small_tick_hit?: number;
        small_tick_miss?: number;
    }

    All of its properties are optional because instead of being 0, the property actually disappears instead! +

    beatmap_id: number
    ended_at: Date
    id: number
    max_combo: number
    maximum_statistics: {
        great: number;
        ignore_hit: number;
        large_tick_hit: number;
        small_tick_hit: number;
    }

    Type declaration

    • great: number
    • ignore_hit: number
    • large_tick_hit: number
    • small_tick_hit: number
    mods: Mod[]
    passed: boolean
    playlist_item_id: number
    pp: null | number
    rank: string
    replay: boolean
    room_id: number
    ruleset_id: number
    started_at: Date
    statistics: {
        great?: number;
        large_bonus?: number;
        large_tick_hit?: number;
        meh?: number;
        miss?: number;
        ok?: number;
        small_bonus?: number;
        small_tick_hit?: number;
        small_tick_miss?: number;
    }

    All of its properties are optional because instead of being 0, the property actually disappears instead! (so if the score has no miss, the miss property is simply not there)

    -

    Type declaration

    • Optional great?: number
    • Optional large_bonus?: number
    • Optional large_tick_hit?: number
    • Optional meh?: number
    • Optional miss?: number
    • Optional ok?: number
    • Optional small_bonus?: number
    • Optional small_tick_hit?: number
    • Optional small_tick_miss?: number
    total_score: number
    type: string
    user_id: number

    Generated using TypeDoc

    \ No newline at end of file +

    Type declaration

    • Optional great?: number
    • Optional large_bonus?: number
    • Optional large_tick_hit?: number
    • Optional meh?: number
    • Optional miss?: number
    • Optional ok?: number
    • Optional small_bonus?: number
    • Optional small_tick_hit?: number
    • Optional small_tick_miss?: number
    total_score: number
    type: string
    user_id: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/MultiplayerScores.html b/docs/interfaces/MultiplayerScores.html index e653cda..0f1c6ea 100644 --- a/docs/interfaces/MultiplayerScores.html +++ b/docs/interfaces/MultiplayerScores.html @@ -1,10 +1,10 @@ MultiplayerScores | osu-api-v2-js

    Interface MultiplayerScores

    Expected from api.getPlaylistItemScores()

    -

    Hierarchy

    • MultiplayerScores

    Properties

    Hierarchy

    • MultiplayerScores

    Properties

    cursor_string: null | string

    Will be null if there is no next page

    -
    params: {
        limit: number;
        sort: string;
    }

    Type declaration

    • limit: number
    • sort: string
    total: number

    How many scores there are across all pages, not necessarily scores.length

    -
    user_score: null | MultiplayerScore

    Will be null if not an authorized user or if the authorized user has no score

    -

    Generated using TypeDoc

    \ No newline at end of file +
    params: {
        limit: number;
        sort: string;
    }

    Type declaration

    • limit: number
    • sort: string
    total: number

    How many scores there are across all pages, not necessarily scores.length

    +
    user_score: null | MultiplayerScore

    Will be null if not an authorized user or if the authorized user has no score

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/NewsPost.html b/docs/interfaces/NewsPost.html new file mode 100644 index 0000000..f575407 --- /dev/null +++ b/docs/interfaces/NewsPost.html @@ -0,0 +1,13 @@ +NewsPost | osu-api-v2-js

    Interface NewsPost

    Expected from api.getNews(), NewsPostWithContentNavigation

    +

    Hierarchy

    Properties

    author: string
    edit_url: string

    Link to view the file on GitHub

    +
    first_image: null | string

    Link to the first image in the document

    +
    id: number
    published_at: Date
    slug: string

    Filename without the extension, used in URLs

    +
    title: string
    updated_at: Date

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/NewsPostWithContentNavigation.html b/docs/interfaces/NewsPostWithContentNavigation.html new file mode 100644 index 0000000..7ddb1db --- /dev/null +++ b/docs/interfaces/NewsPostWithContentNavigation.html @@ -0,0 +1,16 @@ +NewsPostWithContentNavigation | osu-api-v2-js

    Interface NewsPostWithContentNavigation

    Expected from api.getNewsPost()

    +

    Hierarchy

    Properties

    author: string
    content: string

    With HTML

    +
    edit_url: string

    Link to view the file on GitHub

    +
    first_image: null | string

    Link to the first image in the document

    +
    id: number
    navigation: {
        newer?: NewsPost;
        older?: NewsPost;
    }

    Type declaration

    published_at: Date
    slug: string

    Filename without the extension, used in URLs

    +
    title: string
    updated_at: Date

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/PlaylistItem.html b/docs/interfaces/PlaylistItem.html index 3584c8c..5ce15fa 100644 --- a/docs/interfaces/PlaylistItem.html +++ b/docs/interfaces/PlaylistItem.html @@ -1,5 +1,5 @@ PlaylistItem | osu-api-v2-js

    Interface PlaylistItem

    Expected from Room

    -

    Hierarchy

    • PlaylistItem

    Properties

    Hierarchy

    • PlaylistItem

    Properties

    allowed_mods: Mod[]
    beatmap_id: number
    expired: boolean
    id: number
    owner_id: number
    played_at: null | Date

    Should be null if the room isn't the realtime multiplayer kind

    -
    playlist_order: null | number

    Should be null if the room isn't the realtime multiplayer kind

    -
    required_mods: Mod[]
    room_id: number
    ruleset_id: number

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    allowed_mods: Mod[]
    beatmap_id: number
    expired: boolean
    id: number
    owner_id: number
    played_at: null | Date

    Should be null if the room isn't the realtime multiplayer kind

    +
    playlist_order: null | number

    Should be null if the room isn't the realtime multiplayer kind

    +
    required_mods: Mod[]
    room_id: number
    ruleset_id: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/PollConfig.html b/docs/interfaces/PollConfig.html new file mode 100644 index 0000000..a4c9888 --- /dev/null +++ b/docs/interfaces/PollConfig.html @@ -0,0 +1,13 @@ +PollConfig | osu-api-v2-js

    Interface PollConfig

    Feel free to use this interface to help you create polls with api.createForumTopic()!

    +

    Hierarchy

    • PollConfig

    Properties

    hide_results?: boolean

    (defaults to false) Should the results of the poll be hidden while the voting period is still active?

    +
    length_days: number

    Length of voting period in days, 0 means forever

    +
    max_options?: number

    (defaults to 1) The maximum amount of votes per user!

    +
    options: string[]

    The things the users can vote for

    +
    title: string
    vote_change?: boolean

    (defaults to false) Do you allow users to change their vote?

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/Rankings.html b/docs/interfaces/Rankings.html index 0d5cace..7b49d6d 100644 --- a/docs/interfaces/Rankings.html +++ b/docs/interfaces/Rankings.html @@ -1,7 +1,7 @@ Rankings | osu-api-v2-js

    Interface Rankings

    Expected from api.getRanking()

    -

    Hierarchy

    • RankingsBare
      • Rankings

    Properties

    Hierarchy

    • RankingsBare
      • Rankings

    Properties

    Properties

    cursor: {
        page: null | number;
    }

    Type declaration

    • page: null | number

      The number of the next page, is null if no more results are available

      -
    total: number

    Total amount of elements available across all pages, not on this specific page! Maximum of 10000

    -

    Generated using TypeDoc

    \ No newline at end of file +
    total: number

    Total amount of elements available across all pages, not on this specific page! Maximum of 10000

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/RankingsCountry.html b/docs/interfaces/RankingsCountry.html index ed10809..34a4edd 100644 --- a/docs/interfaces/RankingsCountry.html +++ b/docs/interfaces/RankingsCountry.html @@ -1,10 +1,10 @@ RankingsCountry | osu-api-v2-js

    Interface RankingsCountry

    Expected from api.getCountryRanking()

    Remarks

    Not in the API's documentation

    -

    Hierarchy

    • RankingsBare
      • RankingsCountry

    Properties

    Hierarchy

    • RankingsBare
      • RankingsCountry

    Properties

    Properties

    cursor: {
        page: null | number;
    }

    Type declaration

    • page: null | number

      The number of the next page, is null if no more results are available

      -
    ranking: {
        active_users: number;
        code: string;
        country: {
            code: string;
            name: string;
        };
        performance: number;
        play_count: number;
        ranked_score: number;
    }[]

    Type declaration

    • active_users: number
    • code: string

      Same as country.code

      +
    ranking: {
        active_users: number;
        code: string;
        country: {
            code: string;
            name: string;
        };
        performance: number;
        play_count: number;
        ranked_score: number;
    }[]

    Type declaration

    • active_users: number
    • code: string

      Same as country.code

    • country: {
          code: string;
          name: string;
      }
      • code: string

        The country's ISO 3166-1 alpha-2 code! (France would be FR, United States US)

        -
      • name: string
    • performance: number
    • play_count: number
    • ranked_score: number
    total: number

    Total amount of elements available across all pages, not on this specific page! Maximum of 10000

    -

    Generated using TypeDoc

    \ No newline at end of file +
  • name: string
  • performance: number
  • play_count: number
  • ranked_score: number
  • total: number

    Total amount of elements available across all pages, not on this specific page! Maximum of 10000

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/RankingsSpotlight.html b/docs/interfaces/RankingsSpotlight.html index 2ae75d8..6bd8ed0 100644 --- a/docs/interfaces/RankingsSpotlight.html +++ b/docs/interfaces/RankingsSpotlight.html @@ -1,5 +1,5 @@ RankingsSpotlight | osu-api-v2-js

    Properties

    beatmapsets: BeatmapsetExtended[]

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/Room.html b/docs/interfaces/Room.html index 9de9841..683b1d1 100644 --- a/docs/interfaces/Room.html +++ b/docs/interfaces/Room.html @@ -1,5 +1,5 @@ Room | osu-api-v2-js

    Interface Room

    Expected from api.getRoom()

    -

    Hierarchy

    • Room

    Properties

    Hierarchy

    • Room

    Properties

    Properties

    active: boolean
    auto_skip: boolean
    category: string
    channel_id: number
    current_user_score?: {
        accuracy: number;
        attempts: number;
        completed: number;
        playlist_item_attempts: {
            attempts: number;
            id: number;
        }[];
        pp: number;
        room_id: number;
        total_score: number;
        user_id: number;
    }

    Only exists if authorized user

    +

    Properties

    active: boolean
    auto_skip: boolean
    category: string
    channel_id: number
    current_user_score?: {
        accuracy: number;
        attempts: number;
        completed: number;
        playlist_item_attempts: {
            attempts: number;
            id: number;
        }[];
        pp: number;
        room_id: number;
        total_score: number;
        user_id: number;
    }

    Only exists if authorized user

    Type declaration

    • accuracy: number

      In a format where 96.40% would be 0.9640 (likely with some numbers after the zero)

    • attempts: number
    • completed: number
    • playlist_item_attempts: {
          attempts: number;
          id: number;
      }[]

      How many (completed?) attempts on each item? Empty array if the multiplayer room is the realtime kind

      -
    • pp: number
    • room_id: number
    • total_score: number
    • user_id: number
    ends_at: null | Date
    has_password: boolean
    id: number
    max_attempts: null | number
    name: string
    participant_count: number
    playlist: PlaylistItem[]
    queue_mode: string
    recent_participants: User[]
    starts_at: Date
    type: string
    user_id: number

    Generated using TypeDoc

    \ No newline at end of file +
  • pp: number
  • room_id: number
  • total_score: number
  • user_id: number
  • ends_at: null | Date
    has_password: boolean
    id: number
    max_attempts: null | number
    name: string
    participant_count: number
    playlist: PlaylistItem[]
    queue_mode: string
    recent_participants: User[]
    starts_at: Date
    type: string
    user_id: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/Score.html b/docs/interfaces/Score.html index 1fe32a0..d5a9d58 100644 --- a/docs/interfaces/Score.html +++ b/docs/interfaces/Score.html @@ -1,5 +1,5 @@ Score | osu-api-v2-js

    Interface Score

    Expected from api.getBeatmapUserScores()

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    Properties

    accuracy: number

    In a format where 96.40% would be 0.9640 (likely with some numbers after the zero)

    -
    best_id: null | number
    created_at: Date
    id: null | number
    max_combo: number
    mode: string
    mode_int: Rulesets
    mods: string[]
    passed: boolean
    perfect: boolean
    pp: null | number

    null when Beatmap is Loved (for example)

    -
    rank: string

    Also known as a grade, for example this is X (SS) if accuracy is 1 (100.00%)

    -
    replay: boolean

    Can this score's replay be downloaded from the website?

    -
    score: number
    statistics: {
        count_100: number;
        count_300: number;
        count_50: number;
        count_geki: number;
        count_katu: number;
        count_miss: number;
    }

    Type declaration

    • count_100: number
    • count_300: number
    • count_50: number
    • count_geki: number
    • count_katu: number
    • count_miss: number
    type: string
    user_id: number

    The ID of the user who made the score

    -
    weight?: {
        percentage: number;
        pp: number;
    }

    Type declaration

    • percentage: number
    • pp: number

    Remarks

    Only if type is set to best on getUserScores

    -

    Generated using TypeDoc

    \ No newline at end of file +
    best_id: null | number
    created_at: Date
    id: null | number
    max_combo: number
    mode: string
    mode_int: Rulesets
    mods: string[]
    passed: boolean
    perfect: boolean
    pp: null | number

    null when Beatmap is Loved (for example)

    +
    rank: string

    Also known as a grade, for example this is X (SS) if accuracy is 1 (100.00%)

    +
    replay: boolean

    Can this score's replay be downloaded from the website?

    +
    score: number
    statistics: {
        count_100: number;
        count_300: number;
        count_50: number;
        count_geki: number;
        count_katu: number;
        count_miss: number;
    }

    Type declaration

    • count_100: number
    • count_300: number
    • count_50: number
    • count_geki: number
    • count_katu: number
    • count_miss: number
    type: string
    user_id: number

    The ID of the user who made the score

    +
    weight?: {
        percentage: number;
        pp: number;
    }

    Type declaration

    • percentage: number
    • pp: number

    Remarks

    Only if type is set to best on getUserScores

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/ScoreWithMatch.html b/docs/interfaces/ScoreWithMatch.html index 01c275a..5b2b08c 100644 --- a/docs/interfaces/ScoreWithMatch.html +++ b/docs/interfaces/ScoreWithMatch.html @@ -1,5 +1,5 @@ ScoreWithMatch | osu-api-v2-js

    Interface ScoreWithMatch

    Expected from Match

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    Properties

    accuracy: number

    In a format where 96.40% would be 0.9640 (likely with some numbers after the zero)

    -
    best_id: null | number
    created_at: Date
    id: null | number
    match: {
        pass: boolean;
        slot: number;
        team: string;
    }

    Type declaration

    • pass: boolean
    • slot: number
    • team: string
    max_combo: number
    mode: string
    mode_int: Rulesets
    mods: string[]
    passed: boolean
    perfect: boolean
    pp: null | number

    null when Beatmap is Loved (for example)

    -
    rank: string

    Also known as a grade, for example this is X (SS) if accuracy is 1 (100.00%)

    -
    replay: boolean

    Can this score's replay be downloaded from the website?

    -
    score: number
    statistics: {
        count_100: number;
        count_300: number;
        count_50: number;
        count_geki: number;
        count_katu: number;
        count_miss: number;
    }

    Type declaration

    • count_100: number
    • count_300: number
    • count_50: number
    • count_geki: number
    • count_katu: number
    • count_miss: number
    type: string
    user_id: number

    The ID of the user who made the score

    -
    weight?: {
        percentage: number;
        pp: number;
    }

    Type declaration

    • percentage: number
    • pp: number

    Remarks

    Only if type is set to best on getUserScores

    -

    Generated using TypeDoc

    \ No newline at end of file +
    best_id: null | number
    created_at: Date
    id: null | number
    match: {
        pass: boolean;
        slot: number;
        team: string;
    }

    Type declaration

    • pass: boolean
    • slot: number
    • team: string
    max_combo: number
    mode: string
    mode_int: Rulesets
    mods: string[]
    passed: boolean
    perfect: boolean
    pp: null | number

    null when Beatmap is Loved (for example)

    +
    rank: string

    Also known as a grade, for example this is X (SS) if accuracy is 1 (100.00%)

    +
    replay: boolean

    Can this score's replay be downloaded from the website?

    +
    score: number
    statistics: {
        count_100: number;
        count_300: number;
        count_50: number;
        count_geki: number;
        count_katu: number;
        count_miss: number;
    }

    Type declaration

    • count_100: number
    • count_300: number
    • count_50: number
    • count_geki: number
    • count_katu: number
    • count_miss: number
    type: string
    user_id: number

    The ID of the user who made the score

    +
    weight?: {
        percentage: number;
        pp: number;
    }

    Type declaration

    • percentage: number
    • pp: number

    Remarks

    Only if type is set to best on getUserScores

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/ScoreWithUser.html b/docs/interfaces/ScoreWithUser.html index f70389e..c430989 100644 --- a/docs/interfaces/ScoreWithUser.html +++ b/docs/interfaces/ScoreWithUser.html @@ -1,5 +1,5 @@ ScoreWithUser | osu-api-v2-js

    Interface ScoreWithUser

    Expected from api.getBeatmapScores()

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    Properties

    accuracy: number

    In a format where 96.40% would be 0.9640 (likely with some numbers after the zero)

    -
    best_id: null | number
    created_at: Date
    id: null | number
    max_combo: number
    mode: string
    mode_int: Rulesets
    mods: string[]
    passed: boolean
    perfect: boolean
    pp: null | number

    null when Beatmap is Loved (for example)

    -
    rank: string

    Also known as a grade, for example this is X (SS) if accuracy is 1 (100.00%)

    -
    replay: boolean

    Can this score's replay be downloaded from the website?

    -
    score: number
    statistics: {
        count_100: number;
        count_300: number;
        count_50: number;
        count_geki: number;
        count_katu: number;
        count_miss: number;
    }

    Type declaration

    • count_100: number
    • count_300: number
    • count_50: number
    • count_geki: number
    • count_katu: number
    • count_miss: number
    type: string
    user_id: number

    The ID of the user who made the score

    -
    weight?: {
        percentage: number;
        pp: number;
    }

    Type declaration

    • percentage: number
    • pp: number

    Remarks

    Only if type is set to best on getUserScores

    -

    Generated using TypeDoc

    \ No newline at end of file +
    best_id: null | number
    created_at: Date
    id: null | number
    max_combo: number
    mode: string
    mode_int: Rulesets
    mods: string[]
    passed: boolean
    perfect: boolean
    pp: null | number

    null when Beatmap is Loved (for example)

    +
    rank: string

    Also known as a grade, for example this is X (SS) if accuracy is 1 (100.00%)

    +
    replay: boolean

    Can this score's replay be downloaded from the website?

    +
    score: number
    statistics: {
        count_100: number;
        count_300: number;
        count_50: number;
        count_geki: number;
        count_katu: number;
        count_miss: number;
    }

    Type declaration

    • count_100: number
    • count_300: number
    • count_50: number
    • count_geki: number
    • count_katu: number
    • count_miss: number
    type: string
    user_id: number

    The ID of the user who made the score

    +
    weight?: {
        percentage: number;
        pp: number;
    }

    Type declaration

    • percentage: number
    • pp: number

    Remarks

    Only if type is set to best on getUserScores

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/ScoreWithUserBeatmap.html b/docs/interfaces/ScoreWithUserBeatmap.html index d1ebbd7..2bcce86 100644 --- a/docs/interfaces/ScoreWithUserBeatmap.html +++ b/docs/interfaces/ScoreWithUserBeatmap.html @@ -1,5 +1,5 @@ ScoreWithUserBeatmap | osu-api-v2-js

    Interface ScoreWithUserBeatmap

    Expected from BeatmapUserScore

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    Properties

    accuracy: number

    In a format where 96.40% would be 0.9640 (likely with some numbers after the zero)

    -
    best_id: null | number
    created_at: Date
    id: null | number
    max_combo: number
    mode: string
    mode_int: Rulesets
    mods: string[]
    passed: boolean
    perfect: boolean
    pp: null | number

    null when Beatmap is Loved (for example)

    -
    rank: string

    Also known as a grade, for example this is X (SS) if accuracy is 1 (100.00%)

    -
    replay: boolean

    Can this score's replay be downloaded from the website?

    -
    score: number
    statistics: {
        count_100: number;
        count_300: number;
        count_50: number;
        count_geki: number;
        count_katu: number;
        count_miss: number;
    }

    Type declaration

    • count_100: number
    • count_300: number
    • count_50: number
    • count_geki: number
    • count_katu: number
    • count_miss: number
    type: string
    user: User
    user_id: number

    The ID of the user who made the score

    -
    weight?: {
        percentage: number;
        pp: number;
    }

    Type declaration

    • percentage: number
    • pp: number

    Remarks

    Only if type is set to best on getUserScores

    -

    Generated using TypeDoc

    \ No newline at end of file +
    best_id: null | number
    created_at: Date
    id: null | number
    max_combo: number
    mode: string
    mode_int: Rulesets
    mods: string[]
    passed: boolean
    perfect: boolean
    pp: null | number

    null when Beatmap is Loved (for example)

    +
    rank: string

    Also known as a grade, for example this is X (SS) if accuracy is 1 (100.00%)

    +
    replay: boolean

    Can this score's replay be downloaded from the website?

    +
    score: number
    statistics: {
        count_100: number;
        count_300: number;
        count_50: number;
        count_geki: number;
        count_katu: number;
        count_miss: number;
    }

    Type declaration

    • count_100: number
    • count_300: number
    • count_50: number
    • count_geki: number
    • count_katu: number
    • count_miss: number
    type: string
    user: User
    user_id: number

    The ID of the user who made the score

    +
    weight?: {
        percentage: number;
        pp: number;
    }

    Type declaration

    • percentage: number
    • pp: number

    Remarks

    Only if type is set to best on getUserScores

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/ScoreWithUserBeatmapBeatmapset.html b/docs/interfaces/ScoreWithUserBeatmapBeatmapset.html index 73a2f1b..1f63647 100644 --- a/docs/interfaces/ScoreWithUserBeatmapBeatmapset.html +++ b/docs/interfaces/ScoreWithUserBeatmapBeatmapset.html @@ -1,5 +1,5 @@ ScoreWithUserBeatmapBeatmapset | osu-api-v2-js

    Interface ScoreWithUserBeatmapBeatmapset

    Expected from api.getUserScores()

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    Properties

    accuracy: number

    In a format where 96.40% would be 0.9640 (likely with some numbers after the zero)

    -
    beatmapset: Beatmapset
    best_id: null | number
    created_at: Date
    id: null | number
    max_combo: number
    mode: string
    mode_int: Rulesets
    mods: string[]
    passed: boolean
    perfect: boolean
    pp: null | number

    null when Beatmap is Loved (for example)

    -
    rank: string

    Also known as a grade, for example this is X (SS) if accuracy is 1 (100.00%)

    -
    replay: boolean

    Can this score's replay be downloaded from the website?

    -
    score: number
    statistics: {
        count_100: number;
        count_300: number;
        count_50: number;
        count_geki: number;
        count_katu: number;
        count_miss: number;
    }

    Type declaration

    • count_100: number
    • count_300: number
    • count_50: number
    • count_geki: number
    • count_katu: number
    • count_miss: number
    type: string
    user: User
    user_id: number

    The ID of the user who made the score

    -
    weight?: {
        percentage: number;
        pp: number;
    }

    Type declaration

    • percentage: number
    • pp: number

    Remarks

    Only if type is set to best on getUserScores

    -

    Generated using TypeDoc

    \ No newline at end of file +
    beatmapset: Beatmapset
    best_id: null | number
    created_at: Date
    id: null | number
    max_combo: number
    mode: string
    mode_int: Rulesets
    mods: string[]
    passed: boolean
    perfect: boolean
    pp: null | number

    null when Beatmap is Loved (for example)

    +
    rank: string

    Also known as a grade, for example this is X (SS) if accuracy is 1 (100.00%)

    +
    replay: boolean

    Can this score's replay be downloaded from the website?

    +
    score: number
    statistics: {
        count_100: number;
        count_300: number;
        count_50: number;
        count_geki: number;
        count_katu: number;
        count_miss: number;
    }

    Type declaration

    • count_100: number
    • count_300: number
    • count_50: number
    • count_geki: number
    • count_katu: number
    • count_miss: number
    type: string
    user: User
    user_id: number

    The ID of the user who made the score

    +
    weight?: {
        percentage: number;
        pp: number;
    }

    Type declaration

    • percentage: number
    • pp: number

    Remarks

    Only if type is set to best on getUserScores

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/SearchResultUser.html b/docs/interfaces/SearchResultUser.html index a3ec3a0..a473dfb 100644 --- a/docs/interfaces/SearchResultUser.html +++ b/docs/interfaces/SearchResultUser.html @@ -1,6 +1,6 @@ SearchResultUser | osu-api-v2-js

    Interface SearchResultUser

    Expected from api.searchUser()

    -

    Hierarchy

    • SearchResult
      • SearchResultUser

    Properties

    Hierarchy

    • SearchResult
      • SearchResultUser

    Properties

    Properties

    data: User[]

    The Users that have been found

    -
    total: number

    How many results there are across all pages

    -

    Generated using TypeDoc

    \ No newline at end of file +
    total: number

    How many results there are across all pages

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/SearchResultWiki.html b/docs/interfaces/SearchResultWiki.html index 527bba1..8789518 100644 --- a/docs/interfaces/SearchResultWiki.html +++ b/docs/interfaces/SearchResultWiki.html @@ -1,6 +1,6 @@ SearchResultWiki | osu-api-v2-js

    Interface SearchResultWiki

    Expected from api.searchWiki()

    -

    Hierarchy

    • SearchResult
      • SearchResultWiki

    Properties

    Hierarchy

    • SearchResult
      • SearchResultWiki

    Properties

    Properties

    data: WikiPage[]

    The WikiPages that have been found

    -
    total: number

    How many results there are across all pages

    -

    Generated using TypeDoc

    \ No newline at end of file +
    total: number

    How many results there are across all pages

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/Spotlight.html b/docs/interfaces/Spotlight.html index 26f58bd..de89df0 100644 --- a/docs/interfaces/Spotlight.html +++ b/docs/interfaces/Spotlight.html @@ -1,9 +1,9 @@ Spotlight | osu-api-v2-js

    Interface Spotlight

    Expected from api.getSpotlights()

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    end_date: Date
    id: number
    mode_specific: boolean

    Pretty sure this is only true when the spotlight has different beatmaps for each ruleset

    -
    name: string
    start_date: Date
    type: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    end_date: Date
    id: number
    mode_specific: boolean

    Pretty sure this is only true when the spotlight has different beatmaps for each ruleset

    +
    name: string
    start_date: Date
    type: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/SpotlightWithParticipantcount.html b/docs/interfaces/SpotlightWithParticipantcount.html index 9bc04d4..5b1c6f5 100644 --- a/docs/interfaces/SpotlightWithParticipantcount.html +++ b/docs/interfaces/SpotlightWithParticipantcount.html @@ -1,10 +1,10 @@ SpotlightWithParticipantcount | osu-api-v2-js

    Interface SpotlightWithParticipantcount

    Expected from RankingsSpotlight

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    end_date: Date
    id: number
    mode_specific: boolean

    Pretty sure this is only true when the spotlight has different beatmaps for each ruleset

    -
    name: string
    participant_count: number
    start_date: Date
    type: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    end_date: Date
    id: number
    mode_specific: boolean

    Pretty sure this is only true when the spotlight has different beatmaps for each ruleset

    +
    name: string
    participant_count: number
    start_date: Date
    type: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/UpdateStream.html b/docs/interfaces/UpdateStream.html index d922571..c5e1297 100644 --- a/docs/interfaces/UpdateStream.html +++ b/docs/interfaces/UpdateStream.html @@ -1,6 +1,6 @@ UpdateStream | osu-api-v2-js

    Interface UpdateStream

    Expected from ChangelogBuildWithUpdatestreams

    -

    Hierarchy

    • UpdateStream

    Properties

    Hierarchy

    • UpdateStream

    Properties

    display_name: null | string
    id: number
    is_featured: boolean
    name: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    display_name: null | string
    id: number
    is_featured: boolean
    name: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/User.html b/docs/interfaces/User.html index 9ecc8bc..95496b8 100644 --- a/docs/interfaces/User.html +++ b/docs/interfaces/User.html @@ -1,5 +1,5 @@ User | osu-api-v2-js

    Interface User

    Expected from BeatmapsetExtendedPlus, Room, SearchResultUser

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    avatar_url: string
    country_code: string
    default_group: string
    id: number
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_supporter: boolean
    last_visit: null | Date
    pm_friends_only: boolean
    profile_colour: null | string
    username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    avatar_url: string
    country_code: string
    default_group: string
    id: number
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_supporter: boolean
    last_visit: null | Date
    pm_friends_only: boolean
    profile_colour: null | string
    username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/UserExtended.html b/docs/interfaces/UserExtended.html index 4cb715e..3e7795a 100644 --- a/docs/interfaces/UserExtended.html +++ b/docs/interfaces/UserExtended.html @@ -1,5 +1,5 @@ UserExtended | osu-api-v2-js

    Interface UserExtended

    Expected from api.getUser()

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    account_history: {
        description: null | string;
        id: number;
        length: number;
        permanent: boolean;
        timestamp: Date;
        type: "note" | "restriction" | "silence";
    }[]

    Type declaration

    • description: null | string
    • id: number
    • length: number
    • permanent: boolean
    • timestamp: Date
    • type: "note" | "restriction" | "silence"
    active_tournament_banner: null | ProfileBanner
    active_tournament_banners: ProfileBanner[]

    This is not documented by osu!, likely because support for multiple banners has been recently added (OWC2023)

    -
    avatar_url: string
    badges: {
        awarded_at: Date;
        description: string;
        image_url: string;
        url: string;
    }[]

    Type declaration

    • awarded_at: Date
    • description: string
    • image_url: string
    • url: string
    beatmap_playcounts_count: number
    comments_count: number
    country: {
        code: string;
        name: string;
    }

    Type declaration

    • code: string
    • name: string
    country_code: string
    cover: {
        custom_url: null | string;
        id: null | number;
        url: string;
    }

    Type declaration

    • custom_url: null | string
    • id: null | number
    • url: string
    cover_url: string
    default_group: string
    discord: null | string
    favourite_beatmapset_count: number
    follower_count: number
    graveyard_beatmapset_count: number
    groups: {
        colour: null | string;
        has_listing: boolean;
        has_playmodes: boolean;
        id: number;
        identifier: string;
        is_probationary: boolean;
        name: string;
        playmodes: null | string[];
        short_name: string;
    }[]

    Type declaration

    • colour: null | string
    • has_listing: boolean
    • has_playmodes: boolean
    • id: number
    • identifier: string
    • is_probationary: boolean
    • name: string
    • playmodes: null | string[]
    • short_name: string
    guest_beatmapset_count: number
    has_supported: boolean
    id: number
    interests: null | string
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_supporter: boolean
    join_date: Date
    kudosu: {
        available: number;
        total: number;
    }

    Type declaration

    • available: number
    • total: number
    last_visit: null | Date
    location: null | string
    loved_beatmapset_count: number
    mapping_follower_count: number
    max_blocks: number
    max_friends: number
    monthly_playcounts: {
        count: number;
        start_date: Date;
    }[]

    Type declaration

    • count: number
    • start_date: Date
    nominated_beatmapset_count: number
    occupation: null | string
    page: {
        html: string;
        raw: string;
    }

    Type declaration

    • html: string
    • raw: string

      Basically the text with the BBCode

      -
    pending_beatmapset_count: number
    playmode: string
    playstyle: string[]
    pm_friends_only: boolean
    post_count: number
    previous_usernames: string[]
    profile_colour: null | string
    profile_order: ("me" | "recent_activity" | "beatmaps" | "historical" | "kudosu" | "top_ranks" | "medals")[]
    rank_highest: null | {
        rank: number;
        updated_at: Date;
    }

    Type declaration

    • rank: number
    • updated_at: Date
    rank_history: {
        data: number[];
        mode: string;
    }

    Type declaration

    • data: number[]
    • mode: string
    replays_watched_counts: {
        count: number;
        start_date: Date;
    }[]

    Type declaration

    • count: number
    • start_date: Date
    scores_best_count: number
    scores_first_count: number
    scores_pinned_count: number

    Specific to the Ruleset (playmode)

    -
    scores_recent_count: number
    support_level: number
    title: null | string
    title_url: null | string
    twitter: null | string
    user_achievements: {
        achieved_at: Date;
        achievement_id: number;
    }[]

    Type declaration

    • achieved_at: Date
    • achievement_id: number
    username: string
    website: null | string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    account_history: {
        description: null | string;
        id: number;
        length: number;
        permanent: boolean;
        timestamp: Date;
        type: "note" | "restriction" | "silence";
    }[]

    Type declaration

    • description: null | string
    • id: number
    • length: number
    • permanent: boolean
    • timestamp: Date
    • type: "note" | "restriction" | "silence"
    active_tournament_banner: null | ProfileBanner
    active_tournament_banners: ProfileBanner[]

    This is not documented by osu!, likely because support for multiple banners has been recently added (OWC2023)

    +
    avatar_url: string
    badges: {
        awarded_at: Date;
        description: string;
        image_url: string;
        url: string;
    }[]

    Type declaration

    • awarded_at: Date
    • description: string
    • image_url: string
    • url: string
    beatmap_playcounts_count: number
    comments_count: number
    country: {
        code: string;
        name: string;
    }

    Type declaration

    • code: string
    • name: string
    country_code: string
    cover: {
        custom_url: null | string;
        id: null | number;
        url: string;
    }

    Type declaration

    • custom_url: null | string
    • id: null | number
    • url: string
    cover_url: string
    default_group: string
    discord: null | string
    favourite_beatmapset_count: number
    follower_count: number
    graveyard_beatmapset_count: number
    groups: {
        colour: null | string;
        has_listing: boolean;
        has_playmodes: boolean;
        id: number;
        identifier: string;
        is_probationary: boolean;
        name: string;
        playmodes: null | string[];
        short_name: string;
    }[]

    Type declaration

    • colour: null | string
    • has_listing: boolean
    • has_playmodes: boolean
    • id: number
    • identifier: string
    • is_probationary: boolean
    • name: string
    • playmodes: null | string[]
    • short_name: string
    guest_beatmapset_count: number
    has_supported: boolean
    id: number
    interests: null | string
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_supporter: boolean
    join_date: Date
    kudosu: {
        available: number;
        total: number;
    }

    Type declaration

    • available: number
    • total: number
    last_visit: null | Date
    location: null | string
    loved_beatmapset_count: number
    mapping_follower_count: number
    max_blocks: number
    max_friends: number
    monthly_playcounts: {
        count: number;
        start_date: Date;
    }[]

    Type declaration

    • count: number
    • start_date: Date
    nominated_beatmapset_count: number
    occupation: null | string
    page: {
        html: string;
        raw: string;
    }

    Type declaration

    • html: string
    • raw: string

      Basically the text with the BBCode

      +
    pending_beatmapset_count: number
    playmode: string
    playstyle: string[]
    pm_friends_only: boolean
    post_count: number
    previous_usernames: string[]
    profile_colour: null | string
    profile_order: ("me" | "recent_activity" | "beatmaps" | "historical" | "kudosu" | "top_ranks" | "medals")[]
    rank_highest: null | {
        rank: number;
        updated_at: Date;
    }

    Type declaration

    • rank: number
    • updated_at: Date
    rank_history: null | {
        data: number[];
        mode: string;
    }

    Type declaration

    • data: number[]
    • mode: string
    replays_watched_counts: {
        count: number;
        start_date: Date;
    }[]

    Type declaration

    • count: number
    • start_date: Date
    scores_best_count: number
    scores_first_count: number
    scores_pinned_count: number

    Specific to the Ruleset (playmode)

    +
    scores_recent_count: number
    support_level: number
    title: null | string
    title_url: null | string
    twitter: null | string
    user_achievements: {
        achieved_at: Date;
        achievement_id: number;
    }[]

    Type declaration

    • achieved_at: Date
    • achievement_id: number
    username: string
    website: null | string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/UserExtendedWithStatisticsrulesets.html b/docs/interfaces/UserExtendedWithStatisticsrulesets.html index 40bee30..6477106 100644 --- a/docs/interfaces/UserExtendedWithStatisticsrulesets.html +++ b/docs/interfaces/UserExtendedWithStatisticsrulesets.html @@ -1,5 +1,5 @@ UserExtendedWithStatisticsrulesets | osu-api-v2-js

    Interface UserExtendedWithStatisticsrulesets

    Expected from api.getResourceOwner()

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    account_history: {
        description: null | string;
        id: number;
        length: number;
        permanent: boolean;
        timestamp: Date;
        type: "note" | "restriction" | "silence";
    }[]

    Type declaration

    • description: null | string
    • id: number
    • length: number
    • permanent: boolean
    • timestamp: Date
    • type: "note" | "restriction" | "silence"
    active_tournament_banner: null | ProfileBanner
    active_tournament_banners: ProfileBanner[]

    This is not documented by osu!, likely because support for multiple banners has been recently added (OWC2023)

    -
    avatar_url: string
    badges: {
        awarded_at: Date;
        description: string;
        image_url: string;
        url: string;
    }[]

    Type declaration

    • awarded_at: Date
    • description: string
    • image_url: string
    • url: string
    beatmap_playcounts_count: number
    comments_count: number
    country: {
        code: string;
        name: string;
    }

    Type declaration

    • code: string
    • name: string
    country_code: string
    cover: {
        custom_url: null | string;
        id: null | number;
        url: string;
    }

    Type declaration

    • custom_url: null | string
    • id: null | number
    • url: string
    cover_url: string
    default_group: string
    discord: null | string
    favourite_beatmapset_count: number
    follower_count: number
    graveyard_beatmapset_count: number
    groups: {
        colour: null | string;
        has_listing: boolean;
        has_playmodes: boolean;
        id: number;
        identifier: string;
        is_probationary: boolean;
        name: string;
        playmodes: null | string[];
        short_name: string;
    }[]

    Type declaration

    • colour: null | string
    • has_listing: boolean
    • has_playmodes: boolean
    • id: number
    • identifier: string
    • is_probationary: boolean
    • name: string
    • playmodes: null | string[]
    • short_name: string
    guest_beatmapset_count: number
    has_supported: boolean
    id: number
    interests: null | string
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_supporter: boolean
    join_date: Date
    kudosu: {
        available: number;
        total: number;
    }

    Type declaration

    • available: number
    • total: number
    last_visit: null | Date
    location: null | string
    loved_beatmapset_count: number
    mapping_follower_count: number
    max_blocks: number
    max_friends: number
    monthly_playcounts: {
        count: number;
        start_date: Date;
    }[]

    Type declaration

    • count: number
    • start_date: Date
    nominated_beatmapset_count: number
    occupation: null | string
    page: {
        html: string;
        raw: string;
    }

    Type declaration

    • html: string
    • raw: string

      Basically the text with the BBCode

      -
    pending_beatmapset_count: number
    playmode: string
    playstyle: string[]
    pm_friends_only: boolean
    post_count: number
    previous_usernames: string[]
    profile_colour: null | string
    profile_order: ("me" | "recent_activity" | "beatmaps" | "historical" | "kudosu" | "top_ranks" | "medals")[]
    rank_highest: null | {
        rank: number;
        updated_at: Date;
    }

    Type declaration

    • rank: number
    • updated_at: Date
    rank_history: {
        data: number[];
        mode: string;
    }

    Type declaration

    • data: number[]
    • mode: string
    replays_watched_counts: {
        count: number;
        start_date: Date;
    }[]

    Type declaration

    • count: number
    • start_date: Date
    scores_best_count: number
    scores_first_count: number
    scores_pinned_count: number

    Specific to the Ruleset (playmode)

    -
    scores_recent_count: number
    statistics_rulesets: {
        fruits: UserStatistics;
        mania: UserStatistics;
        osu: UserStatistics;
        taiko: UserStatistics;
    }

    Type declaration

    support_level: number
    title: null | string
    title_url: null | string
    twitter: null | string
    user_achievements: {
        achieved_at: Date;
        achievement_id: number;
    }[]

    Type declaration

    • achieved_at: Date
    • achievement_id: number
    username: string
    website: null | string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    account_history: {
        description: null | string;
        id: number;
        length: number;
        permanent: boolean;
        timestamp: Date;
        type: "note" | "restriction" | "silence";
    }[]

    Type declaration

    • description: null | string
    • id: number
    • length: number
    • permanent: boolean
    • timestamp: Date
    • type: "note" | "restriction" | "silence"
    active_tournament_banner: null | ProfileBanner
    active_tournament_banners: ProfileBanner[]

    This is not documented by osu!, likely because support for multiple banners has been recently added (OWC2023)

    +
    avatar_url: string
    badges: {
        awarded_at: Date;
        description: string;
        image_url: string;
        url: string;
    }[]

    Type declaration

    • awarded_at: Date
    • description: string
    • image_url: string
    • url: string
    beatmap_playcounts_count: number
    comments_count: number
    country: {
        code: string;
        name: string;
    }

    Type declaration

    • code: string
    • name: string
    country_code: string
    cover: {
        custom_url: null | string;
        id: null | number;
        url: string;
    }

    Type declaration

    • custom_url: null | string
    • id: null | number
    • url: string
    cover_url: string
    default_group: string
    discord: null | string
    favourite_beatmapset_count: number
    follower_count: number
    graveyard_beatmapset_count: number
    groups: {
        colour: null | string;
        has_listing: boolean;
        has_playmodes: boolean;
        id: number;
        identifier: string;
        is_probationary: boolean;
        name: string;
        playmodes: null | string[];
        short_name: string;
    }[]

    Type declaration

    • colour: null | string
    • has_listing: boolean
    • has_playmodes: boolean
    • id: number
    • identifier: string
    • is_probationary: boolean
    • name: string
    • playmodes: null | string[]
    • short_name: string
    guest_beatmapset_count: number
    has_supported: boolean
    id: number
    interests: null | string
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_restricted: boolean
    is_supporter: boolean
    join_date: Date
    kudosu: {
        available: number;
        total: number;
    }

    Type declaration

    • available: number
    • total: number
    last_visit: null | Date
    location: null | string
    loved_beatmapset_count: number
    mapping_follower_count: number
    max_blocks: number
    max_friends: number
    monthly_playcounts: {
        count: number;
        start_date: Date;
    }[]

    Type declaration

    • count: number
    • start_date: Date
    nominated_beatmapset_count: number
    occupation: null | string
    page: {
        html: string;
        raw: string;
    }

    Type declaration

    • html: string
    • raw: string

      Basically the text with the BBCode

      +
    pending_beatmapset_count: number
    playmode: string
    playstyle: string[]
    pm_friends_only: boolean
    post_count: number
    previous_usernames: string[]
    profile_colour: null | string
    profile_order: ("me" | "recent_activity" | "beatmaps" | "historical" | "kudosu" | "top_ranks" | "medals")[]
    rank_highest: null | {
        rank: number;
        updated_at: Date;
    }

    Type declaration

    • rank: number
    • updated_at: Date
    rank_history: null | {
        data: number[];
        mode: string;
    }

    Type declaration

    • data: number[]
    • mode: string
    replays_watched_counts: {
        count: number;
        start_date: Date;
    }[]

    Type declaration

    • count: number
    • start_date: Date
    scores_best_count: number
    scores_first_count: number
    scores_pinned_count: number

    Specific to the Ruleset (playmode)

    +
    scores_recent_count: number
    statistics_rulesets: {
        fruits?: UserStatistics;
        mania?: UserStatistics;
        osu?: UserStatistics;
        taiko?: UserStatistics;
    }

    Type declaration

    support_level: number
    title: null | string
    title_url: null | string
    twitter: null | string
    user_achievements: {
        achieved_at: Date;
        achievement_id: number;
    }[]

    Type declaration

    • achieved_at: Date
    • achievement_id: number
    username: string
    website: null | string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/UserSilence.html b/docs/interfaces/UserSilence.html new file mode 100644 index 0000000..4f08efb --- /dev/null +++ b/docs/interfaces/UserSilence.html @@ -0,0 +1,4 @@ +UserSilence | osu-api-v2-js

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/UserStatistics.html b/docs/interfaces/UserStatistics.html index 6da89c6..ca5f1f3 100644 --- a/docs/interfaces/UserStatistics.html +++ b/docs/interfaces/UserStatistics.html @@ -1,5 +1,5 @@ UserStatistics | osu-api-v2-js

    Interface UserStatistics

    Expected from UserWithCountryCoverGroupsStatisticsrulesets, UserWithCountryCoverGroupsStatisticsSupport

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    count_100: number
    count_300: number
    count_50: number
    count_miss: number
    global_rank: null | number
    global_rank_exp: null | number
    grade_counts: {
        a: number;
        s: number;
        sh: number;
        ss: number;
        ssh: number;
    }

    Type declaration

    • a: number
    • s: number
    • sh: number
    • ss: number
    • ssh: number
    hit_accuracy: number

    Accuracy in the normal format, where 96.56% would be 96.56

    -
    is_ranked: boolean

    Hasn't went inactive in the rankings

    -
    level: {
        current: number;
        progress: number;
    }

    Type declaration

    • current: number
    • progress: number
    maximum_combo: number
    play_count: number
    play_time: null | number
    pp: null | number
    pp_exp: number
    ranked_score: number
    replays_watched_by_others: number
    total_hits: number
    total_score: number

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    count_100: number
    count_300: number
    count_50: number
    count_miss: number
    global_rank: null | number
    global_rank_exp: null | number
    grade_counts: {
        a: number;
        s: number;
        sh: number;
        ss: number;
        ssh: number;
    }

    Type declaration

    • a: number
    • s: number
    • sh: number
    • ss: number
    • ssh: number
    hit_accuracy: number

    Accuracy in the normal format, where 96.56% would be 96.56

    +
    is_ranked: boolean

    Hasn't went inactive in the rankings

    +
    level: {
        current: number;
        progress: number;
    }

    Type declaration

    • current: number
    • progress: number
    maximum_combo: number
    play_count: number
    play_time: null | number
    pp: null | number
    pp_exp: number
    ranked_score: number
    replays_watched_by_others: number
    total_hits: number
    total_score: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/UserStatisticsWithCountryrank.html b/docs/interfaces/UserStatisticsWithCountryrank.html index 6e9ce9f..029f2d9 100644 --- a/docs/interfaces/UserStatisticsWithCountryrank.html +++ b/docs/interfaces/UserStatisticsWithCountryrank.html @@ -1,5 +1,5 @@ UserStatisticsWithCountryrank | osu-api-v2-js

    Interface UserStatisticsWithCountryrank

    Expected from UserExtended

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    count_100: number
    count_300: number
    count_50: number
    count_miss: number
    country_rank: number
    global_rank: null | number
    global_rank_exp: null | number
    grade_counts: {
        a: number;
        s: number;
        sh: number;
        ss: number;
        ssh: number;
    }

    Type declaration

    • a: number
    • s: number
    • sh: number
    • ss: number
    • ssh: number
    hit_accuracy: number

    Accuracy in the normal format, where 96.56% would be 96.56

    -
    is_ranked: boolean

    Hasn't went inactive in the rankings

    -
    level: {
        current: number;
        progress: number;
    }

    Type declaration

    • current: number
    • progress: number
    maximum_combo: number
    play_count: number
    play_time: null | number
    pp: null | number
    pp_exp: number
    ranked_score: number
    replays_watched_by_others: number
    total_hits: number
    total_score: number

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    count_100: number
    count_300: number
    count_50: number
    count_miss: number
    country_rank: number
    global_rank: null | number
    global_rank_exp: null | number
    grade_counts: {
        a: number;
        s: number;
        sh: number;
        ss: number;
        ssh: number;
    }

    Type declaration

    • a: number
    • s: number
    • sh: number
    • ss: number
    • ssh: number
    hit_accuracy: number

    Accuracy in the normal format, where 96.56% would be 96.56

    +
    is_ranked: boolean

    Hasn't went inactive in the rankings

    +
    level: {
        current: number;
        progress: number;
    }

    Type declaration

    • current: number
    • progress: number
    maximum_combo: number
    play_count: number
    play_time: null | number
    pp: null | number
    pp_exp: number
    ranked_score: number
    replays_watched_by_others: number
    total_hits: number
    total_score: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/UserStatisticsWithUser.html b/docs/interfaces/UserStatisticsWithUser.html index 98d8ad4..3ba8879 100644 --- a/docs/interfaces/UserStatisticsWithUser.html +++ b/docs/interfaces/UserStatisticsWithUser.html @@ -1,5 +1,5 @@ UserStatisticsWithUser | osu-api-v2-js

    Interface UserStatisticsWithUser

    Expected from Rankings

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    count_100: number
    count_300: number
    count_50: number
    count_miss: number
    global_rank: null | number
    global_rank_exp: null | number
    grade_counts: {
        a: number;
        s: number;
        sh: number;
        ss: number;
        ssh: number;
    }

    Type declaration

    • a: number
    • s: number
    • sh: number
    • ss: number
    • ssh: number
    hit_accuracy: number

    Accuracy in the normal format, where 96.56% would be 96.56

    -
    is_ranked: boolean

    Hasn't went inactive in the rankings

    -
    level: {
        current: number;
        progress: number;
    }

    Type declaration

    • current: number
    • progress: number
    maximum_combo: number
    play_count: number
    play_time: null | number
    pp: null | number
    pp_exp: number
    ranked_score: number
    replays_watched_by_others: number
    total_hits: number
    total_score: number

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    count_100: number
    count_300: number
    count_50: number
    count_miss: number
    global_rank: null | number
    global_rank_exp: null | number
    grade_counts: {
        a: number;
        s: number;
        sh: number;
        ss: number;
        ssh: number;
    }

    Type declaration

    • a: number
    • s: number
    • sh: number
    • ss: number
    • ssh: number
    hit_accuracy: number

    Accuracy in the normal format, where 96.56% would be 96.56

    +
    is_ranked: boolean

    Hasn't went inactive in the rankings

    +
    level: {
        current: number;
        progress: number;
    }

    Type declaration

    • current: number
    • progress: number
    maximum_combo: number
    play_count: number
    play_time: null | number
    pp: null | number
    pp_exp: number
    ranked_score: number
    replays_watched_by_others: number
    total_hits: number
    total_score: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/UserWithCountry.html b/docs/interfaces/UserWithCountry.html index 49f780b..43ff932 100644 --- a/docs/interfaces/UserWithCountry.html +++ b/docs/interfaces/UserWithCountry.html @@ -1,5 +1,5 @@ UserWithCountry | osu-api-v2-js

    Interface UserWithCountry

    Expected from api.getMatch(), Leader

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    avatar_url: string
    country: {
        code: string;
        name: string;
    }

    Type declaration

    • code: string
    • name: string
    country_code: string
    default_group: string
    id: number
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_supporter: boolean
    last_visit: null | Date
    pm_friends_only: boolean
    profile_colour: null | string
    username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    avatar_url: string
    country: {
        code: string;
        name: string;
    }

    Type declaration

    • code: string
    • name: string
    country_code: string
    default_group: string
    id: number
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_supporter: boolean
    last_visit: null | Date
    pm_friends_only: boolean
    profile_colour: null | string
    username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/UserWithCountryCover.html b/docs/interfaces/UserWithCountryCover.html index 9401438..2a23e05 100644 --- a/docs/interfaces/UserWithCountryCover.html +++ b/docs/interfaces/UserWithCountryCover.html @@ -1,5 +1,5 @@ UserWithCountryCover | osu-api-v2-js

    Interface UserWithCountryCover

    Expected from UserStatisticsWithUser, MultiplayerScore, ScoreWithUser

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    avatar_url: string
    country: {
        code: string;
        name: string;
    }

    Type declaration

    • code: string
    • name: string
    country_code: string
    cover: {
        custom_url: null | string;
        id: null | number;
        url: string;
    }

    Type declaration

    • custom_url: null | string
    • id: null | number
    • url: string
    default_group: string
    id: number
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_supporter: boolean
    last_visit: null | Date
    pm_friends_only: boolean
    profile_colour: null | string
    username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    avatar_url: string
    country: {
        code: string;
        name: string;
    }

    Type declaration

    • code: string
    • name: string
    country_code: string
    cover: {
        custom_url: null | string;
        id: null | number;
        url: string;
    }

    Type declaration

    • custom_url: null | string
    • id: null | number
    • url: string
    default_group: string
    id: number
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_supporter: boolean
    last_visit: null | Date
    pm_friends_only: boolean
    profile_colour: null | string
    username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/UserWithCountryCoverGroupsStatisticsSupport.html b/docs/interfaces/UserWithCountryCoverGroupsStatisticsSupport.html index 36c05b0..cea803b 100644 --- a/docs/interfaces/UserWithCountryCoverGroupsStatisticsSupport.html +++ b/docs/interfaces/UserWithCountryCoverGroupsStatisticsSupport.html @@ -1,5 +1,5 @@ UserWithCountryCoverGroupsStatisticsSupport | osu-api-v2-js

    Interface UserWithCountryCoverGroupsStatisticsSupport

    Expected from api.getFriends()

    -

    Hierarchy

    • UserWithCountryCoverGroups

    Properties

    Hierarchy

    • UserWithCountryCoverGroups

    Properties

    avatar_url: string
    country: {
        code: string;
        name: string;
    }

    Type declaration

    • code: string
    • name: string
    country_code: string
    cover: {
        custom_url: null | string;
        id: null | number;
        url: string;
    }

    Type declaration

    • custom_url: null | string
    • id: null | number
    • url: string
    default_group: string
    groups: {
        colour: null | string;
        has_listing: boolean;
        has_playmodes: boolean;
        id: number;
        identifier: string;
        is_probationary: boolean;
        name: string;
        playmodes: null | string[];
        short_name: string;
    }[]

    Type declaration

    • colour: null | string
    • has_listing: boolean
    • has_playmodes: boolean
    • id: number
    • identifier: string
    • is_probationary: boolean
    • name: string
    • playmodes: null | string[]
    • short_name: string
    id: number
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_supporter: boolean
    last_visit: null | Date
    pm_friends_only: boolean
    profile_colour: null | string
    statistics: UserStatistics
    support_level: number
    username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    avatar_url: string
    country: {
        code: string;
        name: string;
    }

    Type declaration

    • code: string
    • name: string
    country_code: string
    cover: {
        custom_url: null | string;
        id: null | number;
        url: string;
    }

    Type declaration

    • custom_url: null | string
    • id: null | number
    • url: string
    default_group: string
    groups: {
        colour: null | string;
        has_listing: boolean;
        has_playmodes: boolean;
        id: number;
        identifier: string;
        is_probationary: boolean;
        name: string;
        playmodes: null | string[];
        short_name: string;
    }[]

    Type declaration

    • colour: null | string
    • has_listing: boolean
    • has_playmodes: boolean
    • id: number
    • identifier: string
    • is_probationary: boolean
    • name: string
    • playmodes: null | string[]
    • short_name: string
    id: number
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_supporter: boolean
    last_visit: null | Date
    pm_friends_only: boolean
    profile_colour: null | string
    statistics: UserStatistics
    support_level: number
    username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/UserWithCountryCoverGroupsStatisticsrulesets.html b/docs/interfaces/UserWithCountryCoverGroupsStatisticsrulesets.html index 22f8a5e..16d131b 100644 --- a/docs/interfaces/UserWithCountryCoverGroupsStatisticsrulesets.html +++ b/docs/interfaces/UserWithCountryCoverGroupsStatisticsrulesets.html @@ -1,5 +1,5 @@ UserWithCountryCoverGroupsStatisticsrulesets | osu-api-v2-js

    Interface UserWithCountryCoverGroupsStatisticsrulesets

    Expected from api.getUsers()

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    avatar_url: string
    country: {
        code: string;
        name: string;
    }

    Type declaration

    • code: string
    • name: string
    country_code: string
    cover: {
        custom_url: null | string;
        id: null | number;
        url: string;
    }

    Type declaration

    • custom_url: null | string
    • id: null | number
    • url: string
    default_group: string
    groups: {
        colour: null | string;
        has_listing: boolean;
        has_playmodes: boolean;
        id: number;
        identifier: string;
        is_probationary: boolean;
        name: string;
        playmodes: null | string[];
        short_name: string;
    }[]

    Type declaration

    • colour: null | string
    • has_listing: boolean
    • has_playmodes: boolean
    • id: number
    • identifier: string
    • is_probationary: boolean
    • name: string
    • playmodes: null | string[]
    • short_name: string
    id: number
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_supporter: boolean
    last_visit: null | Date
    pm_friends_only: boolean
    profile_colour: null | string
    statistics_rulesets: {
        fruits: UserStatistics;
        mania: UserStatistics;
        osu: UserStatistics;
        taiko: UserStatistics;
    }

    Type declaration

    username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    avatar_url: string
    country: {
        code: string;
        name: string;
    }

    Type declaration

    • code: string
    • name: string
    country_code: string
    cover: {
        custom_url: null | string;
        id: null | number;
        url: string;
    }

    Type declaration

    • custom_url: null | string
    • id: null | number
    • url: string
    default_group: string
    groups: {
        colour: null | string;
        has_listing: boolean;
        has_playmodes: boolean;
        id: number;
        identifier: string;
        is_probationary: boolean;
        name: string;
        playmodes: null | string[];
        short_name: string;
    }[]

    Type declaration

    • colour: null | string
    • has_listing: boolean
    • has_playmodes: boolean
    • id: number
    • identifier: string
    • is_probationary: boolean
    • name: string
    • playmodes: null | string[]
    • short_name: string
    id: number
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_supporter: boolean
    last_visit: null | Date
    pm_friends_only: boolean
    profile_colour: null | string
    statistics_rulesets: {
        fruits?: UserStatistics;
        mania?: UserStatistics;
        osu?: UserStatistics;
        taiko?: UserStatistics;
    }

    Type declaration

    username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/UserWithKudosu.html b/docs/interfaces/UserWithKudosu.html index 18dcf52..ef91f5a 100644 --- a/docs/interfaces/UserWithKudosu.html +++ b/docs/interfaces/UserWithKudosu.html @@ -1,5 +1,5 @@ UserWithKudosu | osu-api-v2-js

    Interface UserWithKudosu

    Expected from api.getKudosuRanking()

    -

    Hierarchy

    Properties

    Hierarchy

    Properties

    avatar_url: string
    country_code: string
    default_group: string
    id: number
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_supporter: boolean
    kudosu: {
        available: number;
        total: number;
    }

    Type declaration

    • available: number
    • total: number
    last_visit: null | Date
    pm_friends_only: boolean
    profile_colour: null | string
    username: string

    Generated using TypeDoc

    \ No newline at end of file +

    Properties

    avatar_url: string
    country_code: string
    default_group: string
    id: number
    is_active: boolean
    is_bot: boolean
    is_deleted: boolean
    is_online: boolean
    is_supporter: boolean
    kudosu: {
        available: number;
        total: number;
    }

    Type declaration

    • available: number
    • total: number
    last_visit: null | Date
    pm_friends_only: boolean
    profile_colour: null | string
    username: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/interfaces/WikiPage.html b/docs/interfaces/WikiPage.html index 7957357..8a1ced0 100644 --- a/docs/interfaces/WikiPage.html +++ b/docs/interfaces/WikiPage.html @@ -1,5 +1,5 @@ WikiPage | osu-api-v2-js

    Interface WikiPage

    Expected from api.getWikiPage(), SearchResultWiki

    -

    Hierarchy

    • WikiPage

    Properties

    Hierarchy

    • WikiPage

    Properties

    available_locales: string[]
    layout: string
    locale: string

    BCP 47 language (sub)tag, lowercase (for example, en for english)

    -
    markdown: string
    path: string

    It's what should be after https://osu.ppy.sh/wiki/{locale}/

    -
    subtitle: null | string

    Think of it as the title of the parent wiki page

    +

    Properties

    available_locales: string[]
    layout: string
    locale: string

    BCP 47 language (sub)tag, lowercase (for example, en for english)

    +
    markdown: string
    path: string

    It's what should be after https://osu.ppy.sh/wiki/{locale}/

    +
    subtitle: null | string

    Think of it as the title of the parent wiki page

    Remarks

    If the title in the path (assuming it's in it (very unlikely if locale is not en)) is after a slash (/), this is what is before the slash

    -
    tags: string[]
    title: string

    Generated using TypeDoc

    \ No newline at end of file +
    tags: string[]
    title: string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/modules.html b/docs/modules.html index 3d38643..0609a90 100644 --- a/docs/modules.html +++ b/docs/modules.html @@ -23,6 +23,9 @@ ChangelogBuildWithChangelogentriesVersions ChangelogBuildWithUpdatestreams ChangelogBuildWithUpdatestreamsChangelogentries +ChatChannel +ChatChannelWithDetails +ChatMessage Event EventAchievement EventBeatmap @@ -40,13 +43,18 @@ EventUserSupportFirst EventUserSupportGift EventUsernameChange +ForumPost +ForumTopic KudosuHistory Leader Match MatchInfo MultiplayerScore MultiplayerScores +NewsPost +NewsPostWithContentNavigation PlaylistItem +PollConfig Rankings RankingsCountry RankingsSpotlight @@ -64,6 +72,7 @@ User UserExtended UserExtendedWithStatisticsrulesets +UserSilence UserStatistics UserStatisticsWithCountryrank UserStatisticsWithUser diff --git a/docs/types/Mod.html b/docs/types/Mod.html index dcef2a1..c2f6167 100644 --- a/docs/types/Mod.html +++ b/docs/types/Mod.html @@ -1 +1 @@ -Mod | osu-api-v2-js

    Type alias Mod

    Mod: {
        acronym: string;
        settings?: {
            [k: string]: any;
        };
    }

    Type declaration

    • acronym: string
    • Optional settings?: {
          [k: string]: any;
      }
      • [k: string]: any

    Generated using TypeDoc

    \ No newline at end of file +Mod | osu-api-v2-js

    Type alias Mod

    Mod: {
        acronym: string;
        settings?: {
            [k: string]: any;
        };
    }

    Type declaration

    • acronym: string
    • Optional settings?: {
          [k: string]: any;
      }
      • [k: string]: any

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/ProfileBanner.html b/docs/types/ProfileBanner.html index ec26aa0..e559e6f 100644 --- a/docs/types/ProfileBanner.html +++ b/docs/types/ProfileBanner.html @@ -1,2 +1,2 @@ ProfileBanner | osu-api-v2-js

    Type alias ProfileBanner

    ProfileBanner: {
        id: number;
        image: string;
        tournament_id: number;
    }

    Expected from UserExtended

    -

    Type declaration

    • id: number
    • image: string
    • tournament_id: number

    Generated using TypeDoc

    \ No newline at end of file +

    Type declaration

    • id: number
    • image: string
    • tournament_id: number

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/Scope.html b/docs/types/Scope.html index 4c364c3..2a2ad2d 100644 --- a/docs/types/Scope.html +++ b/docs/types/Scope.html @@ -1,3 +1,3 @@ Scope | osu-api-v2-js

    Type alias Scope

    Scope: "chat.read" | "chat.write" | "chat.write_manage" | "delegate" | "forum.write" | "friends.read" | "identify" | "public"

    Scopes determine what the API instance can do as a user!

    Remarks

    "identify" is always implicity provided, "public" is implicitly needed for almost everything

    -

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/lib/chat.ts b/lib/chat.ts index 465cd9e..e6cd8d4 100644 --- a/lib/chat.ts +++ b/lib/chat.ts @@ -1,31 +1,29 @@ -import { CurrentUserAttributes, User } from "./user.js"; - -export type ChannelType = -"PUBLIC" | -"PRIVATE" | -"MULTIPLAYER" | -"SPECTATOR" | -"TEMPORARY" | -"PRIVATE" | -"PM" | -"GROUP" | -"ANNOUNCE"; +import { User } from "./user.js"; +/** + * Expected from api.keepChatAlive() + */ export interface UserSilence { id: number user_id: number } +/** + * Expected from api.sendChatPrivateMessage(), api.createChatPrivateChannel() + */ export interface ChatChannel { channel_id: number name: string description: string | null icon: string | null - type: ChannelType + type: "PUBLIC" | "PRIVATE" | "MULTIPLAYER" | "SPECTATOR" | "TEMPORARY" | "PRIVATE" | "PM" | "GROUP" | "ANNOUNCE" moderated: boolean uuid: string | null } +/** + * Expected from api.joinChatChannel(), api.getChatChannel() + */ export interface ChatChannelWithDetails extends ChatChannel { current_user_attributes: { can_message: boolean @@ -47,6 +45,9 @@ export interface ChatChannelWithDetails extends ChatChannel { users: number[] } +/** + * Expected from api.sendChatPrivateMessage(), api.getChatMessages(), api.sendChatMessage() + */ export interface ChatMessage { channel_id: number content: string diff --git a/lib/index.ts b/lib/index.ts index 7567571..e1443d9 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -48,6 +48,7 @@ export { WikiPage } from "./wiki.js" export { NewsPost, NewsPostWithContentNavigation } from "./news.js" export { SearchResultUser, SearchResultWiki } from "./home.js" export { Rulesets, Mod, Scope } from "./misc.js" +export { ChatChannel, ChatChannelWithDetails, ChatMessage, UserSilence } from "./chat.js" /** * Some stuff doesn't have the right type to begin with, such as dates, which are being returned as strings, this fixes that @@ -363,7 +364,7 @@ export class API { this.log(true, "Will request again in a few instants...", `(Try #${number_try})`) const to_wait = (Math.floor(Math.random() * (500 - 100 + 1)) + 100) * 10 await new Promise(res => setTimeout(res, to_wait)) - return correctType(await this.request(method, endpoint, parameters, number_try + 1)) + return await this.request(method, endpoint, parameters, number_try + 1) } throw new APIError(err, `${this.server}/api/v2`, endpoint, parameters) @@ -371,7 +372,7 @@ export class API { this.log(false, response.statusText, response.status, {endpoint, parameters}) // 204 means the request worked as intended and did not give us anything, so we can't `.json()` the response - return response.status !== 204 ? await response.json() : undefined + return response.status !== 204 ? correctType(await response.json()) : undefined } @@ -905,6 +906,7 @@ export class API { * @remarks Every 30 seconds is a good idea * @param since UserSilences that are before that will not be returned! * @returns A list of recent silences + * @scope chat.read */ async keepChatAlive(since?: {user_silence?: {id: number} | UserSilence, message?: {message_id: number} | ChatMessage}): Promise { return await this.request("post", "chat/ack", {history_since: since?.user_silence?.id, since: since?.message?.message_id}) @@ -912,22 +914,26 @@ export class API { /** * Send a private message to someone! + * @remarks You don't need to use `createChatPrivateChannel` before sending a message * @param user_target The User you wanna send your message to! * @param message The message you wanna send - * @param is_action Is it a command? Like `/me dances` - * @param uuid + * @param is_action (defaults to false) Is it a command? Like `/me dances` + * @param uuid A client-side message identifier + * @returns The message you sent + * @scope chat.write */ - async sendChatPrivateMessage(user_target: {id: number} | User, message: string, is_action: boolean, uuid?: string): + async sendChatPrivateMessage(user_target: {id: number} | User, message: string, is_action: boolean = false, uuid?: string): Promise<{channel: ChatChannel, message: ChatMessage}> { return await this.request("post", "chat/new", {target_id: user_target.id, message, is_action, uuid}) } /** - * + * Get the recent messages of a specific ChatChannel! * @param channel The Channel you wanna get the messages from * @param limit (defaults to 20, max 50) The maximum amount of messages you want to get! - * @param since - * @param until + * @param since Get the messages sent after this message + * @param until Get the messages sent up to but not including this message + * @scope chat.read */ async getChatMessages(channel: {channel_id: number} | ChatChannel, limit: number = 20, since?: {message_id: number} | ChatMessage, until?: {message_id: number} | ChatMessage): Promise { @@ -938,35 +944,39 @@ export class API { * Send a message in a ChatChannel! * @param channel The channel in which you want to send your message * @param message The message you wanna send - * @param is_action Is it a command? Like `/me dances` + * @param is_action (defaults to false) Is it a command? Like `/me dances` * @returns The newly sent ChatMessage! + * @scope chat.write */ - async sendChatMessage(channel: {channel_id: number} | ChatChannel, message: string, is_action: boolean): Promise { + async sendChatMessage(channel: {channel_id: number} | ChatChannel, message: string, is_action: boolean = false): Promise { return await this.request("post", `chat/channels/${channel.channel_id}/messages`, {message, is_action}) } /** - * Join a ChatChannel, allowing you to interact with it! + * Join a public or multiplayer ChatChannel, allowing you to interact with it! * @param channel The channel you wanna join - * @param user The user joining the channel + * @param user (defaults to the presumed authorized user) The user joining the channel + * @scope chat.write_manage */ - async joinChatChannel(channel: {channel_id: number} | ChatChannel, user: {id: number} | User): Promise { - return await this.request("put", `chat/channels/${channel.channel_id}/users/${user.id}`) + async joinChatChannel(channel: {channel_id: number} | ChatChannel, user?: {id: number} | User): Promise { + return await this.request("put", `chat/channels/${channel.channel_id}/users/${user?.id || this.user}`) } /** - * Leave/Close a ChatChannel! + * Leave/Close a public ChatChannel! * @param channel The channel you wanna join - * @param user The user joining the channel + * @param user (defaults to the presumed authorized user) The user joining the channel + * @scope chat.write_manage */ - async leaveChatChannel(channel: {channel_id: number} | ChatChannel, user: {id: number} | User): Promise { - return await this.request("delete", `chat/channels/${channel.channel_id}/users/${user.id}`) + async leaveChatChannel(channel: {channel_id: number} | ChatChannel, user?: {id: number} | User): Promise { + return await this.request("delete", `chat/channels/${channel.channel_id}/users/${user?.id || this.user}`) } /** * Mark a certain channel as read up to a given message! - * @param channel - * @param message + * @param channel The channel in question + * @param message You're marking this and all the messages before it as read! + * @scope chat.read */ async markChatChannelAsRead(channel: {channel_id: number} | ChatChannel, message: {message_id: number} | ChatMessage): Promise { return await this.request("put", @@ -975,26 +985,30 @@ export class API { /** * Get a list of all publicly joinable channels! + * @scope chat.read */ async getChatChannels(): Promise { return await this.request("get", "chat/channels") } /** - * - * @param user_target + * Create/Open/Join a private messages chat channel! + * @param user_target The other user able to read and send messages in this channel * @returns The newly created channel! + * @scope chat.write_manage */ async createChatPrivateChannel(user_target: {id: number} | User): Promise { return await this.request("post", "chat/channels", {type: "PM", target_id: user_target.id}) } /** - * + * Create a new announcement! + * @remarks From my understanding, this WILL 403 unless the user is kinda special * @param channel Details of the channel you're creating - * @param user_targets + * @param user_targets The people that will receive your message * @param message The message to send with the announcement * @returns The newly created channel! + * @scope chat.write_manage */ async createChatAnnouncementChannel(channel: {name: string, description: string}, user_targets: Array<{id: number} | User>, message: string): Promise { @@ -1006,8 +1020,10 @@ export class API { * Get a ChatChannel, and the users in it if it is a private channel! * @remarks Will 404 if the user has not joined the channel (use `joinChatChannel` for that) * @param channel The channel in question + * @scope chat.read */ - async getChatChannel(channel: {channel_id: number} | ChatChannel): Promise<{channel: ChatChannelWithDetails, users: User[]}> { - return await this.request("get", `chat/channels/${channel.channel_id}`) + async getChatChannel(channel: {channel_id: number} | ChatChannel): Promise { + const response = await this.request("get", `chat/channels/${channel.channel_id}`) + return response.channel } } diff --git a/lib/tests/test_authorized.ts b/lib/tests/test_authorized.ts index 09591e7..e2d4189 100644 --- a/lib/tests/test_authorized.ts +++ b/lib/tests/test_authorized.ts @@ -25,9 +25,6 @@ async function test(id: string | undefined, secret: string | undefined, redirect exec(`xdg-open "${url}"`) let code = prompt(`What code do you get from: ${url}\n\n`) let api = await osu.API.createAsync({id: Number(id), secret}, {code, redirect_uri}, "all", server) - - let me = await api.getResourceOwner() - let leave = await api.leaveChatChannel({channel_id: 5}, me) } test(process.env.DEV_ID, process.env.DEV_SECRET, process.env.REDIRECT_URI) diff --git a/package.json b/package.json index 3c9682c..039bd7a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "osu-api-v2-js", - "version": "0.4.1", + "version": "0.4.2", "description": "Package to easily access osu!api version 2.0", "type": "module", "main": "dist/index.js",