forked from reboxer/discord-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
122 lines (114 loc) · 2.53 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import { EventEmitter } from "events";
interface User {
id: string;
avatar: string | null | undefined;
username: string;
discriminator: string;
bot?: boolean;
email?: string;
flags?: number;
locale?: string;
verified?: boolean;
mfa_enabled?: string;
premium_type?: number;
}
interface Member {
nick: string | null | undefined;
user: User;
deaf: boolean;
mute: boolean;
roles: string[];
joined_at: number;
premium_since: number | null | undefined;
}
interface Integration {
id: string;
user: User;
name: string;
type: string;
account: {
id: string;
name: string;
};
enabled: boolean;
role_id: string;
syncing: boolean;
synced_at: string;
expire_behavior: number;
expire_grace_period: number;
}
interface Connection {
id: string;
type: string;
name: string;
revoked?: string;
verified: string;
visibility: string;
friend_sync: boolean;
show_activity: boolean;
integrations?: Integration[];
}
interface TokenRequestResult {
access_token: string;
token_type: string;
expires_in: number;
refresh_token: string;
scope: string;
}
interface PartialGuild {
id: string;
name: string;
icon: string | null | undefined;
owner: boolean;
features: string[];
permissions?: number;
permissions_new?: string;
}
declare class OAuth extends EventEmitter {
constructor(opts?: {
version?: string,
clientId?: string,
redirectUri?: string,
credentials?: string,
clientSecret?: string,
requestTimeout?: number,
latencyThreshold?: number,
ratelimiterOffset?: number,
});
on(event: "debug" | "warn", listener: (message: string) => void): this;
tokenRequest(opts: {
code?: string,
scope: string[] | string,
clientId?: string,
grantType: "authorization_code" | "refresh_token",
redirectUri?: string,
refreshToken?: string,
clientSecret?: string,
}): Promise<TokenRequestResult>;
revokeToken(access_token: string, credentials?: string): Promise<string>;
getUser(access_token: string): Promise<User>;
getUserGuilds(access_token: string): Promise<PartialGuild[]>;
getUserConnections(access_token: string): Promise<Connection[]>;
addMember(opts: {
deaf?: boolean,
mute?: boolean,
roles?: string[],
nickname?: string,
userId: string,
guildId: string,
botToken: string,
accessToken: string,
}): Promise<Member>;
generateAuthUrl(opts: {
scope: string[] | string,
state?: string,
clientId?: string,
prompt?: "consent" | "none",
redirectUri?: string,
responseType?: "code" | "token",
permissions?: number,
guildId?: string,
disableGuildSelect?: boolean,
}): string;
}
export = OAuth;