@nerimity/nerimity.js 1.17.1 → 1.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/Client.d.ts +121 -233
- package/build/Client.d.ts.map +1 -1
- package/build/Client.js +7 -211
- package/build/Client.js.map +1 -1
- package/build/RawData.d.ts +48 -4
- package/build/RawData.d.ts.map +1 -1
- package/build/RawData.js.map +1 -1
- package/build/classes/Client.js +10 -2
- package/build/classes/Client.js.map +1 -1
- package/build/classes/Collection.d.ts +1 -0
- package/build/classes/Collection.d.ts.map +1 -1
- package/build/classes/Collection.js +3 -0
- package/build/classes/Collection.js.map +1 -1
- package/build/classes/Message.d.ts +2 -0
- package/build/classes/Message.d.ts.map +1 -1
- package/build/classes/Message.js +25 -0
- package/build/classes/Message.js.map +1 -1
- package/build/classes/MessageButton.d.ts +4 -0
- package/build/classes/MessageButton.d.ts.map +1 -1
- package/build/classes/MessageButton.js +11 -0
- package/build/classes/MessageButton.js.map +1 -1
- package/build/classes/Server.d.ts +2 -0
- package/build/classes/Server.d.ts.map +1 -1
- package/build/classes/Server.js +1 -0
- package/build/classes/Server.js.map +1 -1
- package/build/services/MessageService.d.ts +6 -0
- package/build/services/MessageService.d.ts.map +1 -1
- package/build/services/MessageService.js +13 -0
- package/build/services/MessageService.js.map +1 -1
- package/package.json +39 -38
- package/src/RawData.ts +56 -4
- package/src/classes/Client.ts +12 -2
- package/src/classes/Collection.ts +3 -0
- package/src/classes/Message.ts +35 -1
- package/src/classes/MessageButton.ts +22 -0
- package/src/classes/Server.ts +2 -0
- package/src/services/MessageService.ts +22 -0
- package/build/Attachment.d.ts +0 -8
- package/build/Attachment.d.ts.map +0 -1
- package/build/Attachment.js +0 -41
- package/build/Attachment.js.map +0 -1
- package/build/Webhooks.d.ts +0 -73
- package/build/Webhooks.d.ts.map +0 -1
- package/build/Webhooks.js +0 -122
- package/build/Webhooks.js.map +0 -1
- package/build/classes/Button.d.ts +0 -19
- package/build/classes/Button.d.ts.map +0 -1
- package/build/classes/Button.js +0 -29
- package/build/classes/Button.js.map +0 -1
package/build/Client.d.ts
CHANGED
|
@@ -1,272 +1,160 @@
|
|
|
1
1
|
import EventEmitter from "eventemitter3";
|
|
2
2
|
import { Socket } from "socket.io-client";
|
|
3
|
-
import { ClientEventMap } from "
|
|
4
|
-
import {
|
|
5
|
-
ChannelType,
|
|
6
|
-
MessageButtonClickPayload,
|
|
7
|
-
MessageType,
|
|
8
|
-
RawBotCommand,
|
|
9
|
-
RawChannel,
|
|
10
|
-
RawMessage,
|
|
11
|
-
RawMessageButton,
|
|
12
|
-
RawPost,
|
|
13
|
-
RawServer,
|
|
14
|
-
RawServerMember,
|
|
15
|
-
RawServerRole,
|
|
16
|
-
RawUser,
|
|
17
|
-
} from "../RawData";
|
|
18
|
-
import { ButtonCallback } from "../services/MessageService";
|
|
19
|
-
import { AvailablePermissions } from "../bitwise";
|
|
3
|
+
import { ClientEventMap } from "./EventNames";
|
|
4
|
+
import { ChannelType, MessageButtonClickPayload, MessageType, RawChannel, RawMessage, RawMessageButton, RawServer, RawServerMember, RawUser } from "./RawData";
|
|
20
5
|
export declare const Events: {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
readonly ServerChannelUpdated: "serverChannelUpdated";
|
|
32
|
-
readonly ServerChannelDeleted: "serverChannelDeleted";
|
|
33
|
-
readonly ServerRoleCreated: "serverRoleCreated";
|
|
34
|
-
readonly ServerRoleDeleted: "serverRoleDeleted";
|
|
35
|
-
readonly ServerRoleUpdated: "serverRoleUpdated";
|
|
36
|
-
readonly ServerRoleOrderUpdated: "serverRoleOrderUpdated";
|
|
6
|
+
readonly Ready: "ready";
|
|
7
|
+
readonly MessageCreate: "messageCreate";
|
|
8
|
+
readonly ServerMemberLeft: "serverMemberLeft";
|
|
9
|
+
readonly ServerMemberJoined: "serverMemberJoined";
|
|
10
|
+
readonly ServerJoined: "serverJoined";
|
|
11
|
+
readonly ServerLeft: "serverLeft";
|
|
12
|
+
readonly MessageButtonClick: "messageButtonClick";
|
|
13
|
+
readonly ServerChannelCreated: "serverChannelCreated";
|
|
14
|
+
readonly ServerChannelUpdated: "serverChannelUpdated";
|
|
15
|
+
readonly ServerChannelDeleted: "serverChannelDeleted";
|
|
37
16
|
};
|
|
38
17
|
export declare class Client extends EventEmitter<ClientEventMap> {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
token: string
|
|
49
|
-
commands: Omit<RawBotCommand, "botUserId">[]
|
|
50
|
-
): Promise<any>;
|
|
51
|
-
login(token: string): void;
|
|
18
|
+
socket: Socket;
|
|
19
|
+
token: string | undefined;
|
|
20
|
+
user: ClientUser | undefined;
|
|
21
|
+
users: Users;
|
|
22
|
+
channels: Channels;
|
|
23
|
+
servers: Servers;
|
|
24
|
+
constructor(opts?: {
|
|
25
|
+
urlOverride?: string;
|
|
26
|
+
});
|
|
27
|
+
login(token: string): void;
|
|
52
28
|
}
|
|
53
29
|
export declare class Users {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
30
|
+
client: Client;
|
|
31
|
+
cache: Collection<string, User>;
|
|
32
|
+
constructor(client: Client);
|
|
33
|
+
setCache(rawUser: RawUser): User;
|
|
58
34
|
}
|
|
59
35
|
export declare class Servers {
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
36
|
+
client: Client;
|
|
37
|
+
cache: Collection<string, Server>;
|
|
38
|
+
constructor(client: Client);
|
|
39
|
+
setCache(rawServer: RawServer): Server;
|
|
64
40
|
}
|
|
65
41
|
export declare class Server {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
members: ServerMembers;
|
|
73
|
-
roles: ServerRoles;
|
|
74
|
-
constructor(client: Client, server: RawServer);
|
|
75
|
-
banMember(userId: string): Promise<any>;
|
|
76
|
-
}
|
|
77
|
-
export declare class ServerRoles {
|
|
78
|
-
client: Client;
|
|
79
|
-
cache: Collection<string, ServerRole>;
|
|
80
|
-
constructor(client: Client);
|
|
81
|
-
setCache(rawServerRole: RawServerRole): ServerRole;
|
|
82
|
-
}
|
|
83
|
-
export declare class ServerRole {
|
|
84
|
-
client: Client;
|
|
85
|
-
id: string;
|
|
86
|
-
name: string;
|
|
87
|
-
permissions: number;
|
|
88
|
-
hexColor: string;
|
|
89
|
-
server: Server;
|
|
90
|
-
order: number;
|
|
91
|
-
isDefaultRole?: boolean;
|
|
92
|
-
constructor(client: Client, role: RawServerRole);
|
|
42
|
+
client: Client;
|
|
43
|
+
id: string;
|
|
44
|
+
name: string;
|
|
45
|
+
avatar?: string;
|
|
46
|
+
members: ServerMembers;
|
|
47
|
+
constructor(client: Client, server: RawServer);
|
|
93
48
|
}
|
|
94
49
|
export declare class ServerMembers {
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
50
|
+
client: Client;
|
|
51
|
+
cache: Collection<string, ServerMember>;
|
|
52
|
+
constructor(client: Client);
|
|
53
|
+
setCache(rawMember: RawServerMember): ServerMember;
|
|
99
54
|
}
|
|
100
55
|
export declare class ServerMember {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
constructor(client: Client, member: RawServerMember);
|
|
108
|
-
toString(): string;
|
|
109
|
-
ban(): Promise<any>;
|
|
110
|
-
get roles(): ServerRole[];
|
|
111
|
-
permissions(this: ServerMember): number;
|
|
112
|
-
hasPermission(
|
|
113
|
-
permission: AvailablePermissions,
|
|
114
|
-
ignoreAdmin?: boolean,
|
|
115
|
-
ignoreCreator?: boolean
|
|
116
|
-
): boolean;
|
|
56
|
+
client: Client;
|
|
57
|
+
id: string;
|
|
58
|
+
user: User;
|
|
59
|
+
server: Server;
|
|
60
|
+
constructor(client: Client, member: RawServerMember);
|
|
61
|
+
toString(): string;
|
|
117
62
|
}
|
|
118
63
|
export declare class Channels {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
} & Omit<Partial<RawChannel>, "id">
|
|
126
|
-
): AllChannel;
|
|
64
|
+
client: Client;
|
|
65
|
+
cache: Collection<string, AllChannel>;
|
|
66
|
+
constructor(client: Client);
|
|
67
|
+
setCache(rawChannel: {
|
|
68
|
+
id: string;
|
|
69
|
+
} & Omit<Partial<RawChannel>, "id">): AllChannel;
|
|
127
70
|
}
|
|
128
71
|
export type AllChannel = ServerChannel | Channel;
|
|
129
72
|
export interface MessageOpts {
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
silent?: boolean;
|
|
134
|
-
replyToMessageIds?: string[];
|
|
135
|
-
mentionReplies?: boolean;
|
|
136
|
-
}
|
|
137
|
-
export interface PostOpts {
|
|
138
|
-
nerimityCdnFileId?: string;
|
|
139
|
-
poll?: {
|
|
140
|
-
choices: string[];
|
|
141
|
-
};
|
|
73
|
+
htmlEmbed?: string;
|
|
74
|
+
buttons?: RawMessageButton[];
|
|
75
|
+
silent?: boolean;
|
|
142
76
|
}
|
|
143
77
|
export declare class Channel {
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
toString(): string;
|
|
78
|
+
client: Client;
|
|
79
|
+
id: string;
|
|
80
|
+
type: ChannelType;
|
|
81
|
+
createdAt?: number;
|
|
82
|
+
lastMessagedAt?: number;
|
|
83
|
+
constructor(client: Client, channel: RawChannel);
|
|
84
|
+
send(content: string, opts?: MessageOpts): Promise<Message>;
|
|
85
|
+
toString(): string;
|
|
153
86
|
}
|
|
154
87
|
export declare class ServerChannel extends Channel {
|
|
155
|
-
|
|
156
|
-
name: string;
|
|
157
|
-
serverId: string;
|
|
158
|
-
permissions: number;
|
|
159
|
-
categoryId?: string;
|
|
160
|
-
server: Server;
|
|
161
|
-
constructor(client: Client, channel: RawChannel);
|
|
162
|
-
}
|
|
163
|
-
export declare class Message {
|
|
164
|
-
client: Client;
|
|
165
|
-
id: string;
|
|
166
|
-
content?: string;
|
|
167
|
-
type: MessageType;
|
|
168
|
-
createdAt: number;
|
|
169
|
-
channelId: string;
|
|
170
|
-
channel: AllChannel;
|
|
171
|
-
user: User;
|
|
172
|
-
mentions: User[];
|
|
173
|
-
command?: {
|
|
88
|
+
createdById: string;
|
|
174
89
|
name: string;
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
edit(content: string): Promise<Message>;
|
|
181
|
-
delete(): Promise<{
|
|
182
|
-
message: string;
|
|
183
|
-
}>;
|
|
184
|
-
toString(): string;
|
|
185
|
-
}
|
|
186
|
-
declare class Posts {
|
|
187
|
-
client: Client;
|
|
188
|
-
constructor(client: Client);
|
|
189
|
-
get(id?: string): Promise<Post | Post[] | undefined>;
|
|
190
|
-
create(content: string, opts?: PostOpts): Promise<Post>;
|
|
90
|
+
serverId: string;
|
|
91
|
+
permissions: number;
|
|
92
|
+
categoryId?: string;
|
|
93
|
+
server: Server;
|
|
94
|
+
constructor(client: Client, channel: RawChannel);
|
|
191
95
|
}
|
|
192
|
-
export declare class
|
|
193
|
-
|
|
194
|
-
id: string;
|
|
195
|
-
content?: string;
|
|
196
|
-
attachments?: Array<any>;
|
|
197
|
-
deleted: boolean;
|
|
198
|
-
block?: boolean;
|
|
199
|
-
commentToId: string;
|
|
200
|
-
commentTo?: RawPost;
|
|
201
|
-
createdBy: RawUser;
|
|
202
|
-
createdAt: number;
|
|
203
|
-
editedAt: number;
|
|
204
|
-
likedBy: {
|
|
205
|
-
id: string;
|
|
206
|
-
}[];
|
|
207
|
-
reposts: {
|
|
96
|
+
export declare class Message {
|
|
97
|
+
client: Client;
|
|
208
98
|
id: string;
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
constructor(client: Client, post: RawPost);
|
|
224
|
-
edit(content: string): Promise<Post>;
|
|
225
|
-
delete(): Promise<void>;
|
|
99
|
+
content?: string;
|
|
100
|
+
type: MessageType;
|
|
101
|
+
createdAt: number;
|
|
102
|
+
channelId: string;
|
|
103
|
+
channel: AllChannel;
|
|
104
|
+
user: User;
|
|
105
|
+
mentions: User[];
|
|
106
|
+
constructor(client: Client, message: RawMessage);
|
|
107
|
+
reply(content: string, opts?: MessageOpts): Promise<Message>;
|
|
108
|
+
edit(content: string): Promise<Message>;
|
|
109
|
+
delete(): Promise<{
|
|
110
|
+
message: string;
|
|
111
|
+
}>;
|
|
112
|
+
toString(): string;
|
|
226
113
|
}
|
|
227
114
|
declare class User {
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
115
|
+
client: Client;
|
|
116
|
+
id: string;
|
|
117
|
+
avatar?: string;
|
|
118
|
+
banner?: string;
|
|
119
|
+
username: string;
|
|
120
|
+
hexColor: string;
|
|
121
|
+
tag: string;
|
|
122
|
+
badges: number;
|
|
123
|
+
joinedAt?: number;
|
|
124
|
+
bot?: boolean;
|
|
125
|
+
constructor(client: Client, user: RawUser);
|
|
126
|
+
toString(): string;
|
|
240
127
|
}
|
|
241
128
|
export interface ActivityOpts {
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
129
|
+
action: string;
|
|
130
|
+
name: string;
|
|
131
|
+
startedAt: number;
|
|
132
|
+
endsAt?: number;
|
|
133
|
+
imgSrc?: string;
|
|
134
|
+
title?: string;
|
|
135
|
+
subtitle?: string;
|
|
136
|
+
link?: string;
|
|
250
137
|
}
|
|
251
138
|
declare class ClientUser extends User {
|
|
252
|
-
|
|
253
|
-
|
|
139
|
+
setActivity(activity?: ActivityOpts | null): void;
|
|
140
|
+
constructor(client: Client, user: RawUser);
|
|
254
141
|
}
|
|
255
142
|
declare class Collection<K, V> extends Map<K, V> {
|
|
256
|
-
|
|
143
|
+
constructor();
|
|
257
144
|
}
|
|
258
145
|
export declare class Button {
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
146
|
+
client: Client;
|
|
147
|
+
id: string;
|
|
148
|
+
userId: string;
|
|
149
|
+
messageId: string;
|
|
150
|
+
channelId: string;
|
|
151
|
+
user?: User;
|
|
152
|
+
channel: Channel;
|
|
153
|
+
constructor(client: Client, payload: MessageButtonClickPayload);
|
|
154
|
+
respond(opts?: {
|
|
155
|
+
title?: string;
|
|
156
|
+
content?: string;
|
|
157
|
+
}): Promise<void>;
|
|
270
158
|
}
|
|
271
159
|
export {};
|
|
272
|
-
//# sourceMappingURL=Client.d.ts.map
|
|
160
|
+
//# sourceMappingURL=Client.d.ts.map
|
package/build/Client.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Client.d.ts","sourceRoot":"","sources":["../src/Client.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,MAAM,EAAM,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EACL,cAAc,EAIf,MAAM,cAAc,CAAC;AACtB,OAAO,EAEL,WAAW,EACX,yBAAyB,EACzB,WAAW,EACX,
|
|
1
|
+
{"version":3,"file":"Client.d.ts","sourceRoot":"","sources":["../src/Client.ts"],"names":[],"mappings":"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"}
|