@duque.edits/sdk 1.0.87 → 1.1.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/dist/index-BHHXH2xN.d.mts +1379 -0
- package/dist/index-C87LbIta.d.ts +1379 -0
- package/dist/index.d.mts +22 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.js +4054 -19
- package/dist/index.mjs +4007 -0
- package/dist/managers/automaticmessage/AutomaticMessageManager.d.mts +20 -0
- package/dist/managers/automaticmessage/AutomaticMessageManager.d.ts +20 -0
- package/dist/managers/automaticmessage/AutomaticMessageManager.js +798 -0
- package/dist/managers/automaticmessage/AutomaticMessageManager.mjs +790 -0
- package/dist/managers/base.d.mts +20 -0
- package/dist/managers/base.d.ts +20 -0
- package/dist/managers/base.js +124 -15
- package/dist/managers/base.mjs +104 -0
- package/dist/managers/bet/GuildBetManager.d.mts +20 -0
- package/dist/managers/bet/GuildBetManager.d.ts +20 -0
- package/dist/managers/bet/GuildBetManager.js +947 -58
- package/dist/managers/bet/GuildBetManager.mjs +946 -0
- package/dist/managers/betuser/GuildBetUserManager.d.mts +20 -0
- package/dist/managers/betuser/GuildBetUserManager.d.ts +20 -0
- package/dist/managers/betuser/GuildBetUserManager.js +506 -78
- package/dist/managers/betuser/GuildBetUserManager.mjs +489 -0
- package/dist/managers/buffer/BufferManager.d.mts +20 -0
- package/dist/managers/buffer/BufferManager.d.ts +20 -0
- package/dist/managers/buffer/BufferManager.js +247 -37
- package/dist/managers/buffer/BufferManager.mjs +223 -0
- package/dist/managers/guild/GuildManager.d.mts +20 -0
- package/dist/managers/guild/GuildManager.d.ts +20 -0
- package/dist/managers/guild/GuildManager.js +3598 -87
- package/dist/managers/guild/GuildManager.mjs +3600 -0
- package/dist/managers/index.d.mts +20 -0
- package/dist/managers/index.d.ts +20 -0
- package/dist/managers/index.js +3766 -29
- package/dist/managers/index.mjs +3745 -0
- package/dist/managers/logs/LogManager.d.mts +20 -0
- package/dist/managers/logs/LogManager.d.ts +20 -0
- package/dist/managers/logs/LogManager.js +721 -55
- package/dist/managers/logs/LogManager.mjs +726 -0
- package/dist/managers/match/GuildMatchManager.d.mts +20 -0
- package/dist/managers/match/GuildMatchManager.d.ts +20 -0
- package/dist/managers/match/GuildMatchManager.js +1285 -95
- package/dist/managers/match/GuildMatchManager.mjs +1289 -0
- package/dist/managers/mediator/GuildMediatorManager.d.mts +20 -0
- package/dist/managers/mediator/GuildMediatorManager.d.ts +20 -0
- package/dist/managers/mediator/GuildMediatorManager.js +434 -86
- package/dist/managers/mediator/GuildMediatorManager.mjs +417 -0
- package/dist/managers/message/MessagesManager.d.mts +20 -0
- package/dist/managers/message/MessagesManager.d.ts +20 -0
- package/dist/managers/message/MessagesManager.js +158 -55
- package/dist/managers/message/MessagesManager.mjs +134 -0
- package/dist/managers/minesgame/MinesGameManager.d.mts +20 -0
- package/dist/managers/minesgame/MinesGameManager.d.ts +20 -0
- package/dist/managers/minesgame/MinesGameManager.js +714 -61
- package/dist/managers/minesgame/MinesGameManager.mjs +712 -0
- package/dist/managers/permission/GuildPermissionManager.d.mts +20 -0
- package/dist/managers/permission/GuildPermissionManager.d.ts +20 -0
- package/dist/managers/permission/GuildPermissionManager.js +277 -55
- package/dist/managers/permission/GuildPermissionManager.mjs +253 -0
- package/dist/managers/player/PlayerManager.d.mts +20 -0
- package/dist/managers/player/PlayerManager.d.ts +20 -0
- package/dist/managers/player/PlayerManager.js +174 -71
- package/dist/managers/player/PlayerManager.mjs +155 -0
- package/dist/managers/ticket/TicketManager.d.mts +20 -0
- package/dist/managers/ticket/TicketManager.d.ts +20 -0
- package/dist/managers/ticket/TicketManager.js +812 -116
- package/dist/managers/ticket/TicketManager.mjs +813 -0
- package/dist/managers/user/GuildUserManager.d.mts +20 -0
- package/dist/managers/user/GuildUserManager.d.ts +20 -0
- package/dist/managers/user/GuildUserManager.js +574 -90
- package/dist/managers/user/GuildUserManager.mjs +554 -0
- package/dist/managers/vipmember/VipMemberManager.d.mts +20 -0
- package/dist/managers/vipmember/VipMemberManager.d.ts +20 -0
- package/dist/managers/vipmember/VipMemberManager.js +525 -114
- package/dist/managers/vipmember/VipMemberManager.mjs +510 -0
- package/dist/rest/APIEndpoints.d.mts +12 -0
- package/{types → dist}/rest/APIEndpoints.d.ts +4 -3
- package/dist/rest/APIEndpoints.js +40 -10
- package/dist/rest/APIEndpoints.mjs +19 -0
- package/dist/rest/REST.d.mts +20 -0
- package/dist/rest/REST.d.ts +20 -0
- package/dist/rest/REST.js +3828 -112
- package/dist/rest/REST.mjs +3832 -0
- package/dist/rest/Routes.d.mts +104 -0
- package/{types → dist}/rest/Routes.d.ts +7 -3
- package/dist/rest/Routes.js +124 -98
- package/dist/rest/Routes.mjs +104 -0
- package/dist/rest/index.d.mts +22 -0
- package/dist/rest/index.d.ts +22 -0
- package/dist/rest/index.js +3856 -18
- package/dist/rest/index.mjs +3847 -0
- package/dist/structures/Collection.d.mts +19 -0
- package/{types → dist}/structures/Collection.d.ts +3 -1
- package/dist/structures/Collection.js +102 -81
- package/dist/structures/Collection.mjs +87 -0
- package/dist/structures/automaticmessage/AutomaticMessage.d.mts +20 -0
- package/dist/structures/automaticmessage/AutomaticMessage.d.ts +20 -0
- package/dist/structures/automaticmessage/AutomaticMessage.js +613 -0
- package/dist/structures/automaticmessage/AutomaticMessage.mjs +605 -0
- package/dist/structures/bet/GuildBet.d.mts +20 -0
- package/dist/structures/bet/GuildBet.d.ts +20 -0
- package/dist/structures/bet/GuildBet.js +861 -169
- package/dist/structures/bet/GuildBet.mjs +872 -0
- package/dist/structures/betuser/GuildBetUser.d.mts +20 -0
- package/dist/structures/betuser/GuildBetUser.d.ts +20 -0
- package/dist/structures/betuser/GuildBetUser.js +323 -201
- package/dist/structures/betuser/GuildBetUser.mjs +316 -0
- package/dist/structures/guild/Guild.d.mts +20 -0
- package/dist/structures/guild/Guild.d.ts +20 -0
- package/dist/structures/guild/Guild.js +3499 -452
- package/dist/structures/guild/Guild.mjs +3513 -0
- package/dist/structures/index.d.mts +20 -0
- package/dist/structures/index.d.ts +20 -0
- package/dist/structures/index.js +3610 -26
- package/dist/structures/index.mjs +3593 -0
- package/dist/structures/logentry/LogEntry.d.mts +20 -0
- package/dist/structures/logentry/LogEntry.d.ts +20 -0
- package/dist/structures/logentry/LogEntry.js +568 -62
- package/dist/structures/logentry/LogEntry.mjs +566 -0
- package/dist/structures/match/GuildMatch.d.mts +20 -0
- package/dist/structures/match/GuildMatch.d.ts +20 -0
- package/dist/structures/match/GuildMatch.js +1165 -250
- package/dist/structures/match/GuildMatch.mjs +1178 -0
- package/dist/structures/mediator/GuildMediator.d.mts +20 -0
- package/dist/structures/mediator/GuildMediator.d.ts +20 -0
- package/dist/structures/mediator/GuildMediator.js +252 -124
- package/dist/structures/mediator/GuildMediator.mjs +236 -0
- package/dist/structures/minesgame/MinesGame.d.mts +20 -0
- package/dist/structures/minesgame/MinesGame.d.ts +20 -0
- package/dist/structures/minesgame/MinesGame.js +574 -68
- package/dist/structures/minesgame/MinesGame.mjs +570 -0
- package/dist/structures/ticket/Ticket.d.mts +20 -0
- package/dist/structures/ticket/Ticket.d.ts +20 -0
- package/dist/structures/ticket/Ticket.js +621 -115
- package/dist/structures/ticket/Ticket.mjs +617 -0
- package/dist/structures/user/GuildUser.d.mts +20 -0
- package/dist/structures/user/GuildUser.d.ts +20 -0
- package/dist/structures/user/GuildUser.js +374 -257
- package/dist/structures/user/GuildUser.mjs +372 -0
- package/dist/structures/vipmember/VipMember.d.mts +20 -0
- package/dist/structures/vipmember/VipMember.d.ts +20 -0
- package/dist/structures/vipmember/VipMember.js +261 -123
- package/dist/structures/vipmember/VipMember.mjs +250 -0
- package/dist/types/RestTypes.d.mts +20 -0
- package/dist/types/RestTypes.d.ts +20 -0
- package/dist/types/RestTypes.js +17 -1
- package/dist/types/RestTypes.mjs +0 -0
- package/dist/types/api/APIAdvert.d.mts +13 -0
- package/{types → dist}/types/api/APIAdvert.d.ts +3 -1
- package/dist/types/api/APIAdvert.js +17 -1
- package/dist/types/api/APIAdvert.mjs +0 -0
- package/dist/types/api/APIAutomaticMessage.d.mts +20 -0
- package/dist/types/api/APIAutomaticMessage.d.ts +20 -0
- package/dist/types/api/APIAutomaticMessage.js +18 -0
- package/dist/types/api/APIAutomaticMessage.mjs +0 -0
- package/dist/types/api/APIBaseChannel.d.mts +12 -0
- package/{types → dist}/types/api/APIBaseChannel.d.ts +3 -1
- package/dist/types/api/APIBaseChannel.js +17 -1
- package/dist/types/api/APIBaseChannel.mjs +0 -0
- package/{types/types/api/APIGuildEmoji.d.ts → dist/types/api/APIBetChannel.d.mts} +6 -6
- package/{types → dist}/types/api/APIBetChannel.d.ts +3 -1
- package/dist/types/api/APIBetChannel.js +17 -1
- package/dist/types/api/APIBetChannel.mjs +0 -0
- package/dist/types/api/APICode.d.mts +12 -0
- package/{types → dist}/types/api/APICode.d.ts +3 -1
- package/dist/types/api/APICode.js +17 -1
- package/dist/types/api/APICode.mjs +0 -0
- package/dist/types/api/APIGiveaway.d.mts +29 -0
- package/{types → dist}/types/api/APIGiveaway.d.ts +5 -3
- package/dist/types/api/APIGiveaway.js +17 -1
- package/dist/types/api/APIGiveaway.mjs +0 -0
- package/dist/types/api/APIGuild.d.mts +20 -0
- package/dist/types/api/APIGuild.d.ts +20 -0
- package/dist/types/api/APIGuild.js +72 -41
- package/dist/types/api/APIGuild.mjs +46 -0
- package/dist/types/api/APIGuildAdvert.d.mts +10 -0
- package/{types → dist}/types/api/APIGuildAdvert.d.ts +3 -1
- package/dist/types/api/APIGuildAdvert.js +17 -1
- package/dist/types/api/APIGuildAdvert.mjs +0 -0
- package/dist/types/api/APIGuildBet.d.mts +20 -0
- package/dist/types/api/APIGuildBet.d.ts +20 -0
- package/dist/types/api/APIGuildBet.js +32 -6
- package/dist/types/api/APIGuildBet.mjs +8 -0
- package/dist/types/api/APIGuildBetUser.d.mts +20 -0
- package/dist/types/api/APIGuildBetUser.d.ts +20 -0
- package/dist/types/api/APIGuildBetUser.js +17 -1
- package/dist/types/api/APIGuildBetUser.mjs +0 -0
- package/{types/types/api/APIGuildMessage.d.ts → dist/types/api/APIGuildChannel.d.mts} +5 -3
- package/{types → dist}/types/api/APIGuildChannel.d.ts +3 -1
- package/dist/types/api/APIGuildChannel.js +17 -1
- package/dist/types/api/APIGuildChannel.mjs +0 -0
- package/dist/types/api/APIGuildGroupedChannel.d.mts +20 -0
- package/dist/types/api/APIGuildGroupedChannel.d.ts +20 -0
- package/dist/types/api/APIGuildGroupedChannel.js +17 -1
- package/dist/types/api/APIGuildGroupedChannel.mjs +0 -0
- package/dist/types/api/APIGuildMatch.d.mts +20 -0
- package/dist/types/api/APIGuildMatch.d.ts +20 -0
- package/dist/types/api/APIGuildMatch.js +39 -11
- package/dist/types/api/APIGuildMatch.mjs +14 -0
- package/dist/types/api/APIGuildMediator.d.mts +16 -0
- package/{types → dist}/types/api/APIGuildMediator.d.ts +3 -1
- package/dist/types/api/APIGuildMediator.js +17 -1
- package/dist/types/api/APIGuildMediator.mjs +0 -0
- package/dist/types/api/APIGuildPermissions.d.mts +15 -0
- package/{types → dist}/types/api/APIGuildPermissions.d.ts +5 -3
- package/dist/types/api/APIGuildPermissions.js +37 -11
- package/dist/types/api/APIGuildPermissions.mjs +13 -0
- package/dist/types/api/APIGuildShop.d.mts +15 -0
- package/{types → dist}/types/api/APIGuildShop.d.ts +6 -2
- package/dist/types/api/APIGuildShop.js +17 -1
- package/dist/types/api/APIGuildShop.mjs +0 -0
- package/dist/types/api/APIGuildTicket.d.mts +19 -0
- package/{types → dist}/types/api/APIGuildTicket.d.ts +5 -2
- package/dist/types/api/APIGuildTicket.js +17 -1
- package/dist/types/api/APIGuildTicket.mjs +0 -0
- package/dist/types/api/APIGuildUser.d.mts +20 -0
- package/dist/types/api/APIGuildUser.d.ts +20 -0
- package/dist/types/api/APIGuildUser.js +17 -1
- package/dist/types/api/APIGuildUser.mjs +0 -0
- package/dist/types/api/APILogEntry.d.mts +32 -0
- package/{types → dist}/types/api/APILogEntry.d.ts +4 -2
- package/dist/types/api/APILogEntry.js +44 -18
- package/dist/types/api/APILogEntry.mjs +20 -0
- package/dist/types/api/APIMessage.d.mts +13 -0
- package/{types → dist}/types/api/APIMessage.d.ts +3 -1
- package/dist/types/api/APIMessage.js +17 -1
- package/dist/types/api/APIMessage.mjs +0 -0
- package/dist/types/api/APIMinesGame.d.mts +15 -0
- package/{types → dist}/types/api/APIMinesGame.d.ts +3 -1
- package/dist/types/api/APIMinesGame.js +17 -1
- package/dist/types/api/APIMinesGame.mjs +0 -0
- package/dist/types/api/APIPlayer.d.mts +10 -0
- package/{types → dist}/types/api/APIPlayer.d.ts +3 -1
- package/dist/types/api/APIPlayer.js +17 -1
- package/dist/types/api/APIPlayer.mjs +0 -0
- package/dist/types/api/APIProduct.d.mts +22 -0
- package/{types → dist}/types/api/APIProduct.d.ts +5 -2
- package/dist/types/api/APIProduct.js +17 -2
- package/dist/types/api/APIProduct.mjs +0 -0
- package/dist/types/api/APIVipMember.d.mts +22 -0
- package/{types → dist}/types/api/APIVipMember.d.ts +3 -1
- package/dist/types/api/APIVipMember.js +17 -1
- package/dist/types/api/APIVipMember.mjs +0 -0
- package/dist/types/api/index.d.mts +20 -0
- package/dist/types/api/index.d.ts +20 -0
- package/dist/types/api/index.js +171 -70
- package/dist/types/api/index.mjs +135 -0
- package/dist/types/index.d.mts +20 -0
- package/dist/types/index.d.ts +20 -0
- package/dist/types/index.js +171 -16
- package/dist/types/index.mjs +135 -0
- package/dist/utils/Assertion.d.mts +34 -0
- package/{types → dist}/utils/Assertion.d.ts +3 -1
- package/dist/utils/Assertion.js +76 -59
- package/dist/utils/Assertion.mjs +52 -0
- package/dist/utils/getRandomNumber.d.mts +3 -0
- package/dist/utils/getRandomNumber.d.ts +3 -0
- package/dist/utils/getRandomNumber.js +29 -3
- package/dist/utils/getRandomNumber.mjs +7 -0
- package/dist/utils/randomKeyGenerator.d.mts +3 -0
- package/dist/utils/randomKeyGenerator.d.ts +3 -0
- package/dist/utils/randomKeyGenerator.js +33 -0
- package/dist/utils/randomKeyGenerator.mjs +8 -0
- package/package.json +12 -6
- package/dist/types/api/APIBetMessage.js +0 -2
- package/dist/types/api/APIGuildEmoji.js +0 -2
- package/dist/types/api/APIGuildRole.js +0 -2
- package/dist/types/api/APILogMessage.js +0 -2
- package/types/index.d.ts +0 -4
- package/types/managers/base.d.ts +0 -14
- package/types/managers/bet/GuildBetManager.d.ts +0 -15
- package/types/managers/betuser/GuildBetUserManager.d.ts +0 -18
- package/types/managers/buffer/BufferManager.d.ts +0 -19
- package/types/managers/guild/GuildManager.d.ts +0 -32
- package/types/managers/index.d.ts +0 -14
- package/types/managers/logs/LogManager.d.ts +0 -10
- package/types/managers/match/GuildMatchManager.d.ts +0 -29
- package/types/managers/mediator/GuildMediatorManager.d.ts +0 -19
- package/types/managers/message/MessagesManager.d.ts +0 -20
- package/types/managers/minesgame/MinesGameManager.d.ts +0 -17
- package/types/managers/permission/GuildPermissionManager.d.ts +0 -8
- package/types/managers/player/PlayerManager.d.ts +0 -28
- package/types/managers/ticket/TicketManager.d.ts +0 -24
- package/types/managers/user/GuildUserManager.d.ts +0 -18
- package/types/managers/vipmember/VipMemberManager.d.ts +0 -32
- package/types/rest/REST.d.ts +0 -56
- package/types/rest/index.d.ts +0 -3
- package/types/structures/bet/GuildBet.d.ts +0 -54
- package/types/structures/betuser/GuildBetUser.d.ts +0 -71
- package/types/structures/guild/Guild.d.ts +0 -85
- package/types/structures/index.d.ts +0 -11
- package/types/structures/logentry/LogEntry.d.ts +0 -28
- package/types/structures/match/GuildMatch.d.ts +0 -76
- package/types/structures/mediator/GuildMediator.d.ts +0 -50
- package/types/structures/minesgame/MinesGame.d.ts +0 -23
- package/types/structures/ticket/Ticket.d.ts +0 -30
- package/types/structures/user/GuildUser.d.ts +0 -75
- package/types/structures/vipmember/VipMember.d.ts +0 -54
- package/types/types/RestTypes.d.ts +0 -47
- package/types/types/api/APIBetMessage.d.ts +0 -10
- package/types/types/api/APIGuild.d.ts +0 -132
- package/types/types/api/APIGuildBet.d.ts +0 -51
- package/types/types/api/APIGuildBetUser.d.ts +0 -27
- package/types/types/api/APIGuildGroupedChannel.d.ts +0 -7
- package/types/types/api/APIGuildMatch.d.ts +0 -58
- package/types/types/api/APIGuildRole.d.ts +0 -10
- package/types/types/api/APIGuildUser.d.ts +0 -41
- package/types/types/api/APILogMessage.d.ts +0 -7
- package/types/types/api/index.d.ts +0 -161
- package/types/types/index.d.ts +0 -2
- package/types/utils/getRandomNumber.d.ts +0 -1
|
@@ -1,2 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
Object.defineProperty
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
+
|
|
16
|
+
// src/types/api/APIGuildTicket.ts
|
|
17
|
+
var APIGuildTicket_exports = {};
|
|
18
|
+
module.exports = __toCommonJS(APIGuildTicket_exports);
|
|
File without changes
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export { ag as APIGuildUser, af as Profile } from '../../index-BHHXH2xN.mjs';
|
|
2
|
+
import './APIAdvert.mjs';
|
|
3
|
+
import './APIBaseChannel.mjs';
|
|
4
|
+
import './APIBetChannel.mjs';
|
|
5
|
+
import './APICode.mjs';
|
|
6
|
+
import './APIGiveaway.mjs';
|
|
7
|
+
import './APIGuildAdvert.mjs';
|
|
8
|
+
import './APIGuildChannel.mjs';
|
|
9
|
+
import './APIGuildMediator.mjs';
|
|
10
|
+
import './APIGuildPermissions.mjs';
|
|
11
|
+
import './APIGuildShop.mjs';
|
|
12
|
+
import './APIProduct.mjs';
|
|
13
|
+
import './APIPlayer.mjs';
|
|
14
|
+
import './APIGuildTicket.mjs';
|
|
15
|
+
import './APIMessage.mjs';
|
|
16
|
+
import './APILogEntry.mjs';
|
|
17
|
+
import './APIMinesGame.mjs';
|
|
18
|
+
import './APIVipMember.mjs';
|
|
19
|
+
import '../../structures/Collection.mjs';
|
|
20
|
+
import 'events';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export { ag as APIGuildUser, af as Profile } from '../../index-C87LbIta.js';
|
|
2
|
+
import './APIAdvert.js';
|
|
3
|
+
import './APIBaseChannel.js';
|
|
4
|
+
import './APIBetChannel.js';
|
|
5
|
+
import './APICode.js';
|
|
6
|
+
import './APIGiveaway.js';
|
|
7
|
+
import './APIGuildAdvert.js';
|
|
8
|
+
import './APIGuildChannel.js';
|
|
9
|
+
import './APIGuildMediator.js';
|
|
10
|
+
import './APIGuildPermissions.js';
|
|
11
|
+
import './APIGuildShop.js';
|
|
12
|
+
import './APIProduct.js';
|
|
13
|
+
import './APIPlayer.js';
|
|
14
|
+
import './APIGuildTicket.js';
|
|
15
|
+
import './APIMessage.js';
|
|
16
|
+
import './APILogEntry.js';
|
|
17
|
+
import './APIMinesGame.js';
|
|
18
|
+
import './APIVipMember.js';
|
|
19
|
+
import '../../structures/Collection.js';
|
|
20
|
+
import 'events';
|
|
@@ -1,2 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
Object.defineProperty
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
+
|
|
16
|
+
// src/types/api/APIGuildUser.ts
|
|
17
|
+
var APIGuildUser_exports = {};
|
|
18
|
+
module.exports = __toCommonJS(APIGuildUser_exports);
|
|
File without changes
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
declare enum LogEntryTypes {
|
|
2
|
+
QueueCreated = "queue_created",
|
|
3
|
+
QueueShut = "queue_shut",
|
|
4
|
+
MatchStarted = "match_started",
|
|
5
|
+
MatchUpdated = "match_updated",
|
|
6
|
+
MatchClosed = "match_closed",
|
|
7
|
+
UserUpdated = "user_updated",
|
|
8
|
+
UserManaged = "user_managed",
|
|
9
|
+
BetManaged = "bet_managed",
|
|
10
|
+
BetMediador = "bet_mediador",
|
|
11
|
+
BetInitiated = "bet_initiated",
|
|
12
|
+
BetClosed = "bet_closed",
|
|
13
|
+
BetAwaitingConfirmation = "bet_awaiting_confirmation",
|
|
14
|
+
BetCanceled = "bet_canceled"
|
|
15
|
+
}
|
|
16
|
+
interface APILogEntry {
|
|
17
|
+
_id: string;
|
|
18
|
+
guild_id: string;
|
|
19
|
+
user_id: string;
|
|
20
|
+
admin_id: string;
|
|
21
|
+
object_id: string;
|
|
22
|
+
type: LogEntryTypes;
|
|
23
|
+
description: string;
|
|
24
|
+
change: string;
|
|
25
|
+
logs_channel_id: string;
|
|
26
|
+
before: any;
|
|
27
|
+
after: any;
|
|
28
|
+
createdAt: Date;
|
|
29
|
+
updatedAt: Date;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export { type APILogEntry, LogEntryTypes };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
declare enum LogEntryTypes {
|
|
2
2
|
QueueCreated = "queue_created",
|
|
3
3
|
QueueShut = "queue_shut",
|
|
4
4
|
MatchStarted = "match_started",
|
|
@@ -13,7 +13,7 @@ export declare enum LogEntryTypes {
|
|
|
13
13
|
BetAwaitingConfirmation = "bet_awaiting_confirmation",
|
|
14
14
|
BetCanceled = "bet_canceled"
|
|
15
15
|
}
|
|
16
|
-
|
|
16
|
+
interface APILogEntry {
|
|
17
17
|
_id: string;
|
|
18
18
|
guild_id: string;
|
|
19
19
|
user_id: string;
|
|
@@ -28,3 +28,5 @@ export interface APILogEntry {
|
|
|
28
28
|
createdAt: Date;
|
|
29
29
|
updatedAt: Date;
|
|
30
30
|
}
|
|
31
|
+
|
|
32
|
+
export { type APILogEntry, LogEntryTypes };
|
|
@@ -1,19 +1,45 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
Object.defineProperty
|
|
3
|
-
|
|
4
|
-
var
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/types/api/APILogEntry.ts
|
|
21
|
+
var APILogEntry_exports = {};
|
|
22
|
+
__export(APILogEntry_exports, {
|
|
23
|
+
LogEntryTypes: () => LogEntryTypes
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(APILogEntry_exports);
|
|
26
|
+
var LogEntryTypes = /* @__PURE__ */ ((LogEntryTypes2) => {
|
|
27
|
+
LogEntryTypes2["QueueCreated"] = "queue_created";
|
|
28
|
+
LogEntryTypes2["QueueShut"] = "queue_shut";
|
|
29
|
+
LogEntryTypes2["MatchStarted"] = "match_started";
|
|
30
|
+
LogEntryTypes2["MatchUpdated"] = "match_updated";
|
|
31
|
+
LogEntryTypes2["MatchClosed"] = "match_closed";
|
|
32
|
+
LogEntryTypes2["UserUpdated"] = "user_updated";
|
|
33
|
+
LogEntryTypes2["UserManaged"] = "user_managed";
|
|
34
|
+
LogEntryTypes2["BetManaged"] = "bet_managed";
|
|
35
|
+
LogEntryTypes2["BetMediador"] = "bet_mediador";
|
|
36
|
+
LogEntryTypes2["BetInitiated"] = "bet_initiated";
|
|
37
|
+
LogEntryTypes2["BetClosed"] = "bet_closed";
|
|
38
|
+
LogEntryTypes2["BetAwaitingConfirmation"] = "bet_awaiting_confirmation";
|
|
39
|
+
LogEntryTypes2["BetCanceled"] = "bet_canceled";
|
|
40
|
+
return LogEntryTypes2;
|
|
41
|
+
})(LogEntryTypes || {});
|
|
42
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
43
|
+
0 && (module.exports = {
|
|
44
|
+
LogEntryTypes
|
|
45
|
+
});
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// src/types/api/APILogEntry.ts
|
|
2
|
+
var LogEntryTypes = /* @__PURE__ */ ((LogEntryTypes2) => {
|
|
3
|
+
LogEntryTypes2["QueueCreated"] = "queue_created";
|
|
4
|
+
LogEntryTypes2["QueueShut"] = "queue_shut";
|
|
5
|
+
LogEntryTypes2["MatchStarted"] = "match_started";
|
|
6
|
+
LogEntryTypes2["MatchUpdated"] = "match_updated";
|
|
7
|
+
LogEntryTypes2["MatchClosed"] = "match_closed";
|
|
8
|
+
LogEntryTypes2["UserUpdated"] = "user_updated";
|
|
9
|
+
LogEntryTypes2["UserManaged"] = "user_managed";
|
|
10
|
+
LogEntryTypes2["BetManaged"] = "bet_managed";
|
|
11
|
+
LogEntryTypes2["BetMediador"] = "bet_mediador";
|
|
12
|
+
LogEntryTypes2["BetInitiated"] = "bet_initiated";
|
|
13
|
+
LogEntryTypes2["BetClosed"] = "bet_closed";
|
|
14
|
+
LogEntryTypes2["BetAwaitingConfirmation"] = "bet_awaiting_confirmation";
|
|
15
|
+
LogEntryTypes2["BetCanceled"] = "bet_canceled";
|
|
16
|
+
return LogEntryTypes2;
|
|
17
|
+
})(LogEntryTypes || {});
|
|
18
|
+
export {
|
|
19
|
+
LogEntryTypes
|
|
20
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
interface APIMessage {
|
|
2
|
+
_id?: string;
|
|
3
|
+
author_id?: string;
|
|
4
|
+
extension?: string;
|
|
5
|
+
/** Message's content */
|
|
6
|
+
content?: string | object;
|
|
7
|
+
/** Creation Date */
|
|
8
|
+
createdAt?: Date;
|
|
9
|
+
/** Updated Date */
|
|
10
|
+
updatedAt?: Date;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export type { APIMessage };
|
|
@@ -1,2 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
Object.defineProperty
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
+
|
|
16
|
+
// src/types/api/APIMessage.ts
|
|
17
|
+
var APIMessage_exports = {};
|
|
18
|
+
module.exports = __toCommonJS(APIMessage_exports);
|
|
File without changes
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
interface APIMinesGame {
|
|
2
|
+
guild_id: string;
|
|
3
|
+
_id: string;
|
|
4
|
+
creatorId: string;
|
|
5
|
+
maxMines: number;
|
|
6
|
+
bombs: number;
|
|
7
|
+
bombsPosition: number[];
|
|
8
|
+
bet: number;
|
|
9
|
+
multiplier: number;
|
|
10
|
+
status: "created" | "won" | "lost" | "expired";
|
|
11
|
+
createdAt: Date;
|
|
12
|
+
updatedAt: Date;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export type { APIMinesGame };
|
|
@@ -1,2 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
Object.defineProperty
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
+
|
|
16
|
+
// src/types/api/APIMinesGame.ts
|
|
17
|
+
var APIMinesGame_exports = {};
|
|
18
|
+
module.exports = __toCommonJS(APIMinesGame_exports);
|
|
File without changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
interface APIPlayer {
|
|
2
2
|
/** The player's id */
|
|
3
3
|
id: string;
|
|
4
4
|
/** When player was created */
|
|
@@ -6,3 +6,5 @@ export interface APIPlayer {
|
|
|
6
6
|
/** Last time player was updated */
|
|
7
7
|
updateAt?: Date;
|
|
8
8
|
}
|
|
9
|
+
|
|
10
|
+
export type { APIPlayer };
|
|
@@ -1,2 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
Object.defineProperty
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
+
|
|
16
|
+
// src/types/api/APIPlayer.ts
|
|
17
|
+
var APIPlayer_exports = {};
|
|
18
|
+
module.exports = __toCommonJS(APIPlayer_exports);
|
|
File without changes
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { APIPlayer } from './APIPlayer.mjs';
|
|
2
|
+
|
|
3
|
+
interface APIProduct {
|
|
4
|
+
/** Product's name */
|
|
5
|
+
name: string;
|
|
6
|
+
/** Product's description */
|
|
7
|
+
description: string;
|
|
8
|
+
/** Product's id */
|
|
9
|
+
id: string;
|
|
10
|
+
/** Product's price */
|
|
11
|
+
price: number;
|
|
12
|
+
/** Product's buyers */
|
|
13
|
+
buyers: APIPlayer[];
|
|
14
|
+
/** Product's emoji */
|
|
15
|
+
emoji: string;
|
|
16
|
+
/** Creation Date */
|
|
17
|
+
createdAt: Date;
|
|
18
|
+
/** Updated Date */
|
|
19
|
+
updatedAt: Date;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export type { APIProduct };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { APIPlayer } from
|
|
2
|
-
|
|
1
|
+
import { APIPlayer } from './APIPlayer.js';
|
|
2
|
+
|
|
3
|
+
interface APIProduct {
|
|
3
4
|
/** Product's name */
|
|
4
5
|
name: string;
|
|
5
6
|
/** Product's description */
|
|
@@ -17,3 +18,5 @@ export interface APIProduct {
|
|
|
17
18
|
/** Updated Date */
|
|
18
19
|
updatedAt: Date;
|
|
19
20
|
}
|
|
21
|
+
|
|
22
|
+
export type { APIProduct };
|
|
@@ -1,3 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
Object.defineProperty
|
|
3
|
-
;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
+
|
|
16
|
+
// src/types/api/APIProduct.ts
|
|
17
|
+
var APIProduct_exports = {};
|
|
18
|
+
module.exports = __toCommonJS(APIProduct_exports);
|
|
File without changes
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
interface APIVipMember {
|
|
2
|
+
/** Members's name */
|
|
3
|
+
name: string;
|
|
4
|
+
/** Members's id */
|
|
5
|
+
id: string;
|
|
6
|
+
/** Members's roleId */
|
|
7
|
+
roleId: string;
|
|
8
|
+
duration: Date;
|
|
9
|
+
status: "on" | "off";
|
|
10
|
+
/** Members's voiceChannelId */
|
|
11
|
+
voiceChannelId: string;
|
|
12
|
+
/** Vip's type */
|
|
13
|
+
type: "both" | "role" | "channel";
|
|
14
|
+
/** Member's Guild Id */
|
|
15
|
+
guild_id: string;
|
|
16
|
+
/** User's daily */
|
|
17
|
+
createdAt: Date;
|
|
18
|
+
/** Updated Date */
|
|
19
|
+
updatedAt: Date;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export type { APIVipMember };
|
|
@@ -1,2 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
Object.defineProperty
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
+
|
|
16
|
+
// src/types/api/APIVipMember.ts
|
|
17
|
+
var APIVipMember_exports = {};
|
|
18
|
+
module.exports = __toCommonJS(APIVipMember_exports);
|
|
File without changes
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export { APIAdvert } from './APIAdvert.mjs';
|
|
2
|
+
export { U as APIAutomaticMessage, a5 as APIGuild, a8 as APIGuildBet, a9 as APIGuildBetUser, aa as APIGuildGroupedChannel, ac as APIGuildMatch, ag as APIGuildUser, v as APITicketCategory, D as Accessory, a3 as AutomaticMessagesTypes, Q as BETSTATUS, H as Banner, x as BaseMatchModes, y as BaseMatchStatus, a7 as BetChannelTypes, a6 as BetQueue, I as Confirm, E as Daily, _ as DailyCategories, a4 as GuildChannelsType, ad as GuildMatchChannelsType, ae as GuildMatchMessagesType, Z as GuildModes, $ as GuildPrices, a0 as GuildScores, X as GuildStatus, Y as GuildStatusEnum, W as GuildTicketConfiguration, w as LogMessage, z as Logs, N as MATCHSTATUS, K as MATCHTYPES, ab as MatchSelection, J as Optional, O as OriginalChannel, C as OriginalChannels, af as Profile, P as ProfileCard, a1 as RoulettePrize, a2 as RouletteSettings, S as STATES, T as StatusResponse } from '../../index-BHHXH2xN.mjs';
|
|
3
|
+
export { APIBaseChannel } from './APIBaseChannel.mjs';
|
|
4
|
+
export { APIBetChannel } from './APIBetChannel.mjs';
|
|
5
|
+
export { APICode } from './APICode.mjs';
|
|
6
|
+
export { APIGiveaway, GiveawayMessage, GiveawayWinners } from './APIGiveaway.mjs';
|
|
7
|
+
export { APIGuildAdvert } from './APIGuildAdvert.mjs';
|
|
8
|
+
export { APIGuildChannel } from './APIGuildChannel.mjs';
|
|
9
|
+
export { APIGuildMediator } from './APIGuildMediator.mjs';
|
|
10
|
+
export { APIGuildPermissions, GuildPermissionsTypes, Permission } from './APIGuildPermissions.mjs';
|
|
11
|
+
export { APIGuildShop } from './APIGuildShop.mjs';
|
|
12
|
+
export { APIGuildTicket } from './APIGuildTicket.mjs';
|
|
13
|
+
export { APILogEntry, LogEntryTypes } from './APILogEntry.mjs';
|
|
14
|
+
export { APIMessage } from './APIMessage.mjs';
|
|
15
|
+
export { APIMinesGame } from './APIMinesGame.mjs';
|
|
16
|
+
export { APIPlayer } from './APIPlayer.mjs';
|
|
17
|
+
export { APIProduct } from './APIProduct.mjs';
|
|
18
|
+
export { APIVipMember } from './APIVipMember.mjs';
|
|
19
|
+
import '../../structures/Collection.mjs';
|
|
20
|
+
import 'events';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export { APIAdvert } from './APIAdvert.js';
|
|
2
|
+
export { U as APIAutomaticMessage, a5 as APIGuild, a8 as APIGuildBet, a9 as APIGuildBetUser, aa as APIGuildGroupedChannel, ac as APIGuildMatch, ag as APIGuildUser, v as APITicketCategory, D as Accessory, a3 as AutomaticMessagesTypes, Q as BETSTATUS, H as Banner, x as BaseMatchModes, y as BaseMatchStatus, a7 as BetChannelTypes, a6 as BetQueue, I as Confirm, E as Daily, _ as DailyCategories, a4 as GuildChannelsType, ad as GuildMatchChannelsType, ae as GuildMatchMessagesType, Z as GuildModes, $ as GuildPrices, a0 as GuildScores, X as GuildStatus, Y as GuildStatusEnum, W as GuildTicketConfiguration, w as LogMessage, z as Logs, N as MATCHSTATUS, K as MATCHTYPES, ab as MatchSelection, J as Optional, O as OriginalChannel, C as OriginalChannels, af as Profile, P as ProfileCard, a1 as RoulettePrize, a2 as RouletteSettings, S as STATES, T as StatusResponse } from '../../index-C87LbIta.js';
|
|
3
|
+
export { APIBaseChannel } from './APIBaseChannel.js';
|
|
4
|
+
export { APIBetChannel } from './APIBetChannel.js';
|
|
5
|
+
export { APICode } from './APICode.js';
|
|
6
|
+
export { APIGiveaway, GiveawayMessage, GiveawayWinners } from './APIGiveaway.js';
|
|
7
|
+
export { APIGuildAdvert } from './APIGuildAdvert.js';
|
|
8
|
+
export { APIGuildChannel } from './APIGuildChannel.js';
|
|
9
|
+
export { APIGuildMediator } from './APIGuildMediator.js';
|
|
10
|
+
export { APIGuildPermissions, GuildPermissionsTypes, Permission } from './APIGuildPermissions.js';
|
|
11
|
+
export { APIGuildShop } from './APIGuildShop.js';
|
|
12
|
+
export { APIGuildTicket } from './APIGuildTicket.js';
|
|
13
|
+
export { APILogEntry, LogEntryTypes } from './APILogEntry.js';
|
|
14
|
+
export { APIMessage } from './APIMessage.js';
|
|
15
|
+
export { APIMinesGame } from './APIMinesGame.js';
|
|
16
|
+
export { APIPlayer } from './APIPlayer.js';
|
|
17
|
+
export { APIProduct } from './APIProduct.js';
|
|
18
|
+
export { APIVipMember } from './APIVipMember.js';
|
|
19
|
+
import '../../structures/Collection.js';
|
|
20
|
+
import 'events';
|