Auto-commit 2026-04-29 16:31

This commit is contained in:
2026-04-29 16:31:27 -04:00
parent e8687bb6b2
commit 0495ee5bd2
19691 changed files with 3272886 additions and 138 deletions

50
node_modules/next-auth/providers/osu.d.ts generated vendored Normal file
View File

@@ -0,0 +1,50 @@
import type { OAuthConfig, OAuthUserConfig } from ".";
export interface OsuUserCompact {
avatar_url: string;
country_code: string;
default_group: string;
id: string;
is_active: boolean;
is_bot: boolean;
is_deleted: boolean;
is_online: boolean;
is_supporter: boolean;
last_visit: Date | null;
pm_friends_only: boolean;
profile_colour: string | null;
username: string;
}
export interface OsuProfile extends OsuUserCompact, Record<string, any> {
discord: string | null;
has_supported: boolean;
interests: string | null;
join_date: Date;
kudosu: {
available: number;
total: number;
};
location: string | null;
max_blocks: number;
max_friends: number;
occupation: string | null;
playmode: string;
playstyle: string[];
post_count: number;
profile_order: string[];
title: string | null;
title_url: string | null;
twitter: string | null;
website: string | null;
country: {
code: string;
name: string;
};
cover: {
custom_url: string | null;
url: string;
id: number | null;
};
is_restricted: boolean;
}
export default function Osu<P extends OsuProfile>(options: OAuthUserConfig<P>): OAuthConfig<P>;
//# sourceMappingURL=osu.d.ts.map