@@ -45,7 +45,7 @@ export class ChannelsAPI {
45
45
/**
46
46
* Sends a message in a channel
47
47
*
48
- * @see {@link https://discord.com/developers/docs/resources/channel #create-message }
48
+ * @see {@link https://discord.com/developers/docs/resources/message #create-message }
49
49
* @param channelId - The id of the channel to send the message in
50
50
* @param body - The data for sending the message
51
51
* @param options - The options for sending the message
@@ -65,7 +65,7 @@ export class ChannelsAPI {
65
65
/**
66
66
* Edits a message
67
67
*
68
- * @see {@link https://discord.com/developers/docs/resources/channel #edit-message }
68
+ * @see {@link https://discord.com/developers/docs/resources/message #edit-message }
69
69
* @param channelId - The id of the channel the message is in
70
70
* @param messageId - The id of the message to edit
71
71
* @param body - The data for editing the message
@@ -87,7 +87,7 @@ export class ChannelsAPI {
87
87
/**
88
88
* Fetches the reactions for a message
89
89
*
90
- * @see {@link https://discord.com/developers/docs/resources/channel #get-reactions }
90
+ * @see {@link https://discord.com/developers/docs/resources/message #get-reactions }
91
91
* @param channelId - The id of the channel the message is in
92
92
* @param messageId - The id of the message to get the reactions for
93
93
* @param emoji - The emoji to get the reactions for
@@ -110,7 +110,7 @@ export class ChannelsAPI {
110
110
/**
111
111
* Deletes a reaction for the current user
112
112
*
113
- * @see {@link https://discord.com/developers/docs/resources/channel #delete-own-reaction }
113
+ * @see {@link https://discord.com/developers/docs/resources/message #delete-own-reaction }
114
114
* @param channelId - The id of the channel the message is in
115
115
* @param messageId - The id of the message to delete the reaction for
116
116
* @param emoji - The emoji to delete the reaction for
@@ -130,7 +130,7 @@ export class ChannelsAPI {
130
130
/**
131
131
* Deletes a reaction for a user
132
132
*
133
- * @see {@link https://discord.com/developers/docs/resources/channel #delete-user-reaction }
133
+ * @see {@link https://discord.com/developers/docs/resources/message #delete-user-reaction }
134
134
* @param channelId - The id of the channel the message is in
135
135
* @param messageId - The id of the message to delete the reaction for
136
136
* @param emoji - The emoji to delete the reaction for
@@ -152,7 +152,7 @@ export class ChannelsAPI {
152
152
/**
153
153
* Deletes all reactions for a message
154
154
*
155
- * @see {@link https://discord.com/developers/docs/resources/channel #delete-all-reactions }
155
+ * @see {@link https://discord.com/developers/docs/resources/message #delete-all-reactions }
156
156
* @param channelId - The id of the channel the message is in
157
157
* @param messageId - The id of the message to delete the reactions for
158
158
* @param options - The options for deleting the reactions
@@ -168,7 +168,7 @@ export class ChannelsAPI {
168
168
/**
169
169
* Deletes all reactions of an emoji for a message
170
170
*
171
- * @see {@link https://discord.com/developers/docs/resources/channel #delete-all-reactions-for-emoji }
171
+ * @see {@link https://discord.com/developers/docs/resources/message #delete-all-reactions-for-emoji }
172
172
* @param channelId - The id of the channel the message is in
173
173
* @param messageId - The id of the message to delete the reactions for
174
174
* @param emoji - The emoji to delete the reactions for
@@ -186,7 +186,7 @@ export class ChannelsAPI {
186
186
/**
187
187
* Adds a reaction to a message
188
188
*
189
- * @see {@link https://discord.com/developers/docs/resources/channel #create-reaction }
189
+ * @see {@link https://discord.com/developers/docs/resources/message #create-reaction }
190
190
* @param channelId - The id of the channel the message is in
191
191
* @param messageId - The id of the message to add the reaction to
192
192
* @param emoji - The emoji to add the reaction with
@@ -242,7 +242,7 @@ export class ChannelsAPI {
242
242
/**
243
243
* Fetches the messages of a channel
244
244
*
245
- * @see {@link https://discord.com/developers/docs/resources/channel #get-channel-messages }
245
+ * @see {@link https://discord.com/developers/docs/resources/message #get-channel-messages }
246
246
* @param channelId - The id of the channel to fetch messages from
247
247
* @param query - The query options for fetching messages
248
248
* @param options - The options for fetching the messages
@@ -299,7 +299,7 @@ export class ChannelsAPI {
299
299
/**
300
300
* Deletes a message
301
301
*
302
- * @see {@link https://discord.com/developers/docs/resources/channel #delete-message }
302
+ * @see {@link https://discord.com/developers/docs/resources/message #delete-message }
303
303
* @param channelId - The id of the channel the message is in
304
304
* @param messageId - The id of the message to delete
305
305
* @param options - The options for deleting the message
@@ -315,7 +315,7 @@ export class ChannelsAPI {
315
315
/**
316
316
* Bulk deletes messages
317
317
*
318
- * @see {@link https://discord.com/developers/docs/resources/channel #bulk-delete-messages }
318
+ * @see {@link https://discord.com/developers/docs/resources/message #bulk-delete-messages }
319
319
* @param channelId - The id of the channel the messages are in
320
320
* @param messageIds - The ids of the messages to delete
321
321
* @param options - The options for deleting the messages
@@ -331,7 +331,7 @@ export class ChannelsAPI {
331
331
/**
332
332
* Fetches a message
333
333
*
334
- * @see {@link https://discord.com/developers/docs/resources/channel #get-channel-message }
334
+ * @see {@link https://discord.com/developers/docs/resources/message #get-channel-message }
335
335
* @param channelId - The id of the channel the message is in
336
336
* @param messageId - The id of the message to fetch
337
337
* @param options - The options for fetching the message
@@ -345,7 +345,7 @@ export class ChannelsAPI {
345
345
/**
346
346
* Crossposts a message
347
347
*
348
- * @see {@link https://discord.com/developers/docs/resources/channel #crosspost-message }
348
+ * @see {@link https://discord.com/developers/docs/resources/message #crosspost-message }
349
349
* @param channelId - The id of the channel the message is in
350
350
* @param messageId - The id of the message to crosspost
351
351
* @param options - The options for crossposting the message
@@ -452,7 +452,7 @@ export class ChannelsAPI {
452
452
/**
453
453
* Creates a new forum post
454
454
*
455
- * @see {@link https://discord.com/developers/docs/resources/channel#start-thread-in-forum-channel }
455
+ * @see {@link https://discord.com/developers/docs/resources/channel#start-thread-in-forum-or-media- channel }
456
456
* @param channelId - The id of the forum channel to start the thread in
457
457
* @param body - The data for starting the thread
458
458
* @param options - The options for starting the thread
0 commit comments