honocord 2.0.0 → 2.0.1
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/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1639,10 +1639,10 @@ var CacheManager = class {
|
|
|
1639
1639
|
await this.users.set(i.member.user);
|
|
1640
1640
|
await this.members.set(i.guild_id, i.member);
|
|
1641
1641
|
}
|
|
1642
|
-
if (i.channel
|
|
1642
|
+
if (i.channel) await this.channels.set(i.channel);
|
|
1643
1643
|
}
|
|
1644
1644
|
async populateMessageComponent(i) {
|
|
1645
|
-
if (i.channel
|
|
1645
|
+
if (i.channel) await this.channels.set(i.channel);
|
|
1646
1646
|
if (i.user) await this.users.set(i.user);
|
|
1647
1647
|
if (i.member && i.guild_id) {
|
|
1648
1648
|
await this.users.set(i.member.user);
|
|
@@ -2114,6 +2114,7 @@ Object.defineProperty(exports, 'ButtonStyle', {
|
|
|
2114
2114
|
return discord_api_types_v10.ButtonStyle;
|
|
2115
2115
|
}
|
|
2116
2116
|
});
|
|
2117
|
+
exports.CacheManager = CacheManager;
|
|
2117
2118
|
Object.defineProperty(exports, 'ChannelSelectMenuBuilder', {
|
|
2118
2119
|
enumerable: true,
|
|
2119
2120
|
get: function () {
|
|
@@ -2156,6 +2157,7 @@ Object.defineProperty(exports, 'EmbedBuilder', {
|
|
|
2156
2157
|
return _discordjs_builders.EmbedBuilder;
|
|
2157
2158
|
}
|
|
2158
2159
|
});
|
|
2160
|
+
exports.Fetcher = Fetcher;
|
|
2159
2161
|
Object.defineProperty(exports, 'FileBuilder', {
|
|
2160
2162
|
enumerable: true,
|
|
2161
2163
|
get: function () {
|