oceanic.js 1.2.1-dev.b177524 → 1.2.2-dev.2b2ca65
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/dist/lib/routes/Interactions.d.ts +1 -1
- package/dist/lib/routes/Interactions.js +1 -1
- package/dist/lib/structures/CommandInteraction.d.ts +1 -1
- package/dist/lib/structures/CommandInteraction.js +1 -1
- package/dist/lib/structures/ComponentInteraction.d.ts +1 -1
- package/dist/lib/structures/ComponentInteraction.js +1 -1
- package/dist/lib/structures/ModalSubmitInteraction.d.ts +1 -1
- package/dist/lib/structures/ModalSubmitInteraction.js +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
|
@@ -30,7 +30,7 @@ export default class Interactions {
|
|
|
30
30
|
*/
|
|
31
31
|
deleteFollowupMessage(applicationID: string, interactionToken: string, messageID: string): Promise<void>;
|
|
32
32
|
/**
|
|
33
|
-
* Delete the original interaction response.
|
|
33
|
+
* Delete the original interaction response.
|
|
34
34
|
* @param applicationID The ID of the application.
|
|
35
35
|
* @param interactionToken The token of the interaction.
|
|
36
36
|
*/
|
|
@@ -85,7 +85,7 @@ class Interactions {
|
|
|
85
85
|
await this.#manager.webhooks.deleteMessage(applicationID, interactionToken, messageID);
|
|
86
86
|
}
|
|
87
87
|
/**
|
|
88
|
-
* Delete the original interaction response.
|
|
88
|
+
* Delete the original interaction response.
|
|
89
89
|
* @param applicationID The ID of the application.
|
|
90
90
|
* @param interactionToken The token of the interaction.
|
|
91
91
|
*/
|
|
@@ -66,7 +66,7 @@ export default class CommandInteraction<T extends AnyTextChannelWithoutGroup | U
|
|
|
66
66
|
*/
|
|
67
67
|
deleteFollowup(messageID: string): Promise<void>;
|
|
68
68
|
/**
|
|
69
|
-
* Delete the original interaction response.
|
|
69
|
+
* Delete the original interaction response.
|
|
70
70
|
*/
|
|
71
71
|
deleteOriginal(): Promise<void>;
|
|
72
72
|
/**
|
|
@@ -180,7 +180,7 @@ class CommandInteraction extends Interaction_1.default {
|
|
|
180
180
|
return this.client.rest.interactions.deleteFollowupMessage(this.applicationID, this.token, messageID);
|
|
181
181
|
}
|
|
182
182
|
/**
|
|
183
|
-
* Delete the original interaction response.
|
|
183
|
+
* Delete the original interaction response.
|
|
184
184
|
*/
|
|
185
185
|
async deleteOriginal() {
|
|
186
186
|
return this.client.rest.interactions.deleteOriginalMessage(this.applicationID, this.token);
|
|
@@ -73,7 +73,7 @@ export default class ComponentInteraction<T extends AnyTextChannelWithoutGroup |
|
|
|
73
73
|
*/
|
|
74
74
|
deleteFollowup(messageID: string): Promise<void>;
|
|
75
75
|
/**
|
|
76
|
-
* Delete the original interaction response.
|
|
76
|
+
* Delete the original interaction response.
|
|
77
77
|
*/
|
|
78
78
|
deleteOriginal(): Promise<void>;
|
|
79
79
|
/**
|
|
@@ -180,7 +180,7 @@ class ComponentInteraction extends Interaction_1.default {
|
|
|
180
180
|
return this.client.rest.interactions.deleteFollowupMessage(this.applicationID, this.token, messageID);
|
|
181
181
|
}
|
|
182
182
|
/**
|
|
183
|
-
* Delete the original interaction response.
|
|
183
|
+
* Delete the original interaction response.
|
|
184
184
|
*/
|
|
185
185
|
async deleteOriginal() {
|
|
186
186
|
return this.client.rest.interactions.deleteOriginalMessage(this.applicationID, this.token);
|
|
@@ -66,7 +66,7 @@ export default class ModalSubmitInteraction<T extends AnyTextChannelWithoutGroup
|
|
|
66
66
|
*/
|
|
67
67
|
deleteFollowup(messageID: string): Promise<void>;
|
|
68
68
|
/**
|
|
69
|
-
* Delete the original interaction response.
|
|
69
|
+
* Delete the original interaction response.
|
|
70
70
|
*/
|
|
71
71
|
deleteOriginal(): Promise<void>;
|
|
72
72
|
/**
|
|
@@ -108,7 +108,7 @@ class ModalSubmitInteraction extends Interaction_1.default {
|
|
|
108
108
|
return this.client.rest.interactions.deleteFollowupMessage(this.applicationID, this.token, messageID);
|
|
109
109
|
}
|
|
110
110
|
/**
|
|
111
|
-
* Delete the original interaction response.
|
|
111
|
+
* Delete the original interaction response.
|
|
112
112
|
*/
|
|
113
113
|
async deleteOriginal() {
|
|
114
114
|
return this.client.rest.interactions.deleteOriginalMessage(this.applicationID, this.token);
|
package/dist/package.json
CHANGED