trivious 1.3.10 → 1.3.12

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.
@@ -1,16 +1,3 @@
1
- 'use strict';
2
-
3
- require('util');
4
- var discord_js = require('discord.js');
5
- var fs = require('fs');
6
- var path = require('path');
7
- var url = require('url');
8
-
9
- var _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null;
10
- function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
11
-
12
- var path__default = /*#__PURE__*/_interopDefault(path);
13
-
14
1
  var __getOwnPropNames = Object.getOwnPropertyNames;
15
2
  var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
16
3
  get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
@@ -24,7 +11,7 @@ var __commonJS = (cb, mod) => function __require2() {
24
11
 
25
12
  // node_modules/.pnpm/dotenv@17.2.3/node_modules/dotenv/package.json
26
13
  var require_package = __commonJS({
27
- "node_modules/.pnpm/dotenv@17.2.3/node_modules/dotenv/package.json"(exports$1, module) {
14
+ "node_modules/.pnpm/dotenv@17.2.3/node_modules/dotenv/package.json"(exports, module) {
28
15
  module.exports = {
29
16
  name: "dotenv",
30
17
  version: "17.2.3",
@@ -92,7 +79,8 @@ var require_package = __commonJS({
92
79
 
93
80
  // node_modules/.pnpm/dotenv@17.2.3/node_modules/dotenv/lib/main.js
94
81
  var require_main = __commonJS({
95
- "node_modules/.pnpm/dotenv@17.2.3/node_modules/dotenv/lib/main.js"(exports$1, module) {
82
+ "node_modules/.pnpm/dotenv@17.2.3/node_modules/dotenv/lib/main.js"(exports, module) {
83
+ "use strict";
96
84
  var fs6 = __require("fs");
97
85
  var path2 = __require("path");
98
86
  var os = __require("os");
@@ -421,7 +409,8 @@ var require_main = __commonJS({
421
409
 
422
410
  // node_modules/.pnpm/dotenv@17.2.3/node_modules/dotenv/lib/env-options.js
423
411
  var require_env_options = __commonJS({
424
- "node_modules/.pnpm/dotenv@17.2.3/node_modules/dotenv/lib/env-options.js"(exports$1, module) {
412
+ "node_modules/.pnpm/dotenv@17.2.3/node_modules/dotenv/lib/env-options.js"(exports, module) {
413
+ "use strict";
425
414
  var options = {};
426
415
  if (process.env.DOTENV_CONFIG_ENCODING != null) {
427
416
  options.encoding = process.env.DOTENV_CONFIG_ENCODING;
@@ -447,7 +436,8 @@ var require_env_options = __commonJS({
447
436
 
448
437
  // node_modules/.pnpm/dotenv@17.2.3/node_modules/dotenv/lib/cli-options.js
449
438
  var require_cli_options = __commonJS({
450
- "node_modules/.pnpm/dotenv@17.2.3/node_modules/dotenv/lib/cli-options.js"(exports$1, module) {
439
+ "node_modules/.pnpm/dotenv@17.2.3/node_modules/dotenv/lib/cli-options.js"(exports, module) {
440
+ "use strict";
451
441
  var re = /^dotenv_config_(encoding|path|quiet|debug|override|DOTENV_KEY)=(.+)$/;
452
442
  module.exports = function optionMatcher(args) {
453
443
  const options = args.reduce(function(acc, cur) {
@@ -476,6 +466,18 @@ var require_cli_options = __commonJS({
476
466
  );
477
467
  })();
478
468
 
469
+ // src/index.ts
470
+ import "util";
471
+
472
+ // src/core/client/trivious.client.ts
473
+ import { Client, REST, Routes } from "discord.js";
474
+
475
+ // src/shared/utility/functions.ts
476
+ import { promises as fs, existsSync } from "fs";
477
+ import { join, resolve } from "path";
478
+ import { fileURLToPath } from "url";
479
+ import { dirname } from "path";
480
+
479
481
  // src/shared/typings/permissions.ts
480
482
  var PermissionLevel = /* @__PURE__ */ ((PermissionLevel2) => {
481
483
  PermissionLevel2[PermissionLevel2["USER"] = 0] = "USER";
@@ -494,17 +496,17 @@ var getPermissionLevel = (client, member) => {
494
496
  };
495
497
 
496
498
  // src/shared/utility/functions.ts
497
- var __filename$1 = url.fileURLToPath((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('index.cjs', document.baseURI).href)));
498
- var __dirname$1 = path.dirname(__filename$1);
499
+ var __filename = fileURLToPath(import.meta.url);
500
+ var __dirname = dirname(__filename);
499
501
  var getPackageRoot = () => {
500
- let dir = __dirname$1;
501
- while (dir !== path.dirname(dir)) {
502
- if (fs.existsSync(path.join(dir, "package.json")) || fs.existsSync(path.join(dir, "node_modules"))) {
502
+ let dir = __dirname;
503
+ while (dir !== dirname(dir)) {
504
+ if (existsSync(join(dir, "package.json")) || existsSync(join(dir, "node_modules"))) {
503
505
  return dir;
504
506
  }
505
- dir = path.dirname(dir);
507
+ dir = dirname(dir);
506
508
  }
507
- return __dirname$1;
509
+ return __dirname;
508
510
  };
509
511
  var FRAMEWORK_PACKAGE_ROOT = getPackageRoot();
510
512
  function getCorePath(options) {
@@ -513,34 +515,34 @@ function getCorePath(options) {
513
515
  return resolveUserPath(userPath);
514
516
  }
515
517
  const builtInCandidates = [
516
- path.join(FRAMEWORK_PACKAGE_ROOT, "lib", coreDirectory),
517
- path.join(FRAMEWORK_PACKAGE_ROOT, "dist", coreDirectory)
518
+ join(FRAMEWORK_PACKAGE_ROOT, "lib", coreDirectory),
519
+ join(FRAMEWORK_PACKAGE_ROOT, "dist", coreDirectory)
518
520
  ];
519
521
  for (const candidate of builtInCandidates) {
520
- if (fs.existsSync(candidate)) {
522
+ if (existsSync(candidate)) {
521
523
  return candidate;
522
524
  }
523
525
  }
524
- return path.join(FRAMEWORK_PACKAGE_ROOT, "lib", coreDirectory);
526
+ return join(FRAMEWORK_PACKAGE_ROOT, "lib", coreDirectory);
525
527
  }
526
528
  function resolveUserPath(relativePath) {
527
529
  const candidates = [
528
- path.join(process.cwd(), relativePath),
529
- path.join(process.cwd(), "lib", relativePath),
530
- path.join(process.cwd(), "dist", relativePath),
531
- path.join(FRAMEWORK_PACKAGE_ROOT, relativePath),
532
- path.join(FRAMEWORK_PACKAGE_ROOT, "lib", relativePath),
533
- path.join(FRAMEWORK_PACKAGE_ROOT, "dist", relativePath)
530
+ join(process.cwd(), relativePath),
531
+ join(process.cwd(), "lib", relativePath),
532
+ join(process.cwd(), "dist", relativePath),
533
+ join(FRAMEWORK_PACKAGE_ROOT, relativePath),
534
+ join(FRAMEWORK_PACKAGE_ROOT, "lib", relativePath),
535
+ join(FRAMEWORK_PACKAGE_ROOT, "dist", relativePath)
534
536
  ];
535
537
  for (const candidate of candidates) {
536
- const full = path.resolve(candidate);
537
- if (fs.existsSync(full)) return full;
538
+ const full = resolve(candidate);
539
+ if (existsSync(full)) return full;
538
540
  }
539
- return path.join(process.cwd(), relativePath);
541
+ return join(process.cwd(), relativePath);
540
542
  }
541
543
  async function exists(path2) {
542
544
  try {
543
- await fs.promises.access(path2);
545
+ await fs.access(path2);
544
546
  return true;
545
547
  } catch {
546
548
  return false;
@@ -558,6 +560,12 @@ function hasPermission(client, options) {
558
560
  }
559
561
  return false;
560
562
  }
563
+
564
+ // src/core/registry/command.registry.ts
565
+ import { Collection, SlashCommandSubcommandBuilder } from "discord.js";
566
+
567
+ // src/shared/typings/registry.ts
568
+ import { pathToFileURL } from "url";
561
569
  var BaseRegistry = class {
562
570
  /**
563
571
  * Get all of loaded T
@@ -578,7 +586,7 @@ var BaseRegistry = class {
578
586
  */
579
587
  async importFile(filePath) {
580
588
  try {
581
- const { default: file } = await import(url.pathToFileURL(filePath).href);
589
+ const { default: file } = await import(pathToFileURL(filePath).href);
582
590
  const imports = file.default ?? file;
583
591
  if (!imports) return null;
584
592
  if (typeof imports === "function" && imports.prototype) {
@@ -630,8 +638,12 @@ var deconstructCustomId = (customId) => {
630
638
  tags
631
639
  };
632
640
  };
641
+
642
+ // src/core/registry/command.registry.ts
643
+ import { promises as fs2 } from "fs";
644
+ import { join as join2 } from "path";
633
645
  var CommandRegistry = class extends BaseRegistry {
634
- items = new discord_js.Collection();
646
+ items = new Collection();
635
647
  /**
636
648
  * Load all commands and their subcommands
637
649
  *
@@ -643,12 +655,12 @@ var CommandRegistry = class extends BaseRegistry {
643
655
  if (!await exists(directory)) {
644
656
  return this;
645
657
  }
646
- const entries = await fs.promises.readdir(directory, { withFileTypes: true });
658
+ const entries = await fs2.readdir(directory, { withFileTypes: true });
647
659
  for (const entry of entries) {
648
- const fullPath = path.join(directory, entry.name);
660
+ const fullPath = join2(directory, entry.name);
649
661
  if (!entry.isDirectory()) continue;
650
- const indexFile = path.join(fullPath, "index.ts");
651
- const indexJs = path.join(fullPath, "index.js");
662
+ const indexFile = join2(fullPath, "index.ts");
663
+ const indexJs = join2(fullPath, "index.js");
652
664
  let commandFile = "";
653
665
  if (await exists(indexFile)) commandFile = indexFile;
654
666
  else if (await exists(indexJs)) commandFile = indexJs;
@@ -657,13 +669,13 @@ var CommandRegistry = class extends BaseRegistry {
657
669
  if (!command) continue;
658
670
  if (!command.metadata.active) continue;
659
671
  if (command.isSlashCommand()) {
660
- const subcommandFiles = (await fs.promises.readdir(fullPath)).filter(
672
+ const subcommandFiles = (await fs2.readdir(fullPath)).filter(
661
673
  (file) => (file.endsWith(".ts") || file.endsWith(".js")) && !file.startsWith("index.") && !file.endsWith(".d.ts")
662
674
  );
663
675
  for (const file of subcommandFiles) {
664
- const subcommand = await this.importFile(path.join(fullPath, file));
676
+ const subcommand = await this.importFile(join2(fullPath, file));
665
677
  if (!subcommand) continue;
666
- if (!subcommand.data.name || !(subcommand.data instanceof discord_js.SlashCommandSubcommandBuilder))
678
+ if (!subcommand.data.name || !(subcommand.data instanceof SlashCommandSubcommandBuilder))
667
679
  continue;
668
680
  command.data.addSubcommand(subcommand.data);
669
681
  command.metadata.subcommands.set(subcommand.data.name, subcommand);
@@ -674,8 +686,13 @@ var CommandRegistry = class extends BaseRegistry {
674
686
  return this;
675
687
  }
676
688
  };
689
+
690
+ // src/core/registry/component.registry.ts
691
+ import { Collection as Collection2 } from "discord.js";
692
+ import { promises as fs3 } from "fs";
693
+ import { join as join3 } from "path";
677
694
  var ComponentRegistry = class extends BaseRegistry {
678
- items = new discord_js.Collection();
695
+ items = new Collection2();
679
696
  /**
680
697
  * Load all components.
681
698
  *
@@ -687,15 +704,15 @@ var ComponentRegistry = class extends BaseRegistry {
687
704
  if (!await exists(directory)) {
688
705
  return this;
689
706
  }
690
- const entries = await fs.promises.readdir(directory, { withFileTypes: true });
707
+ const entries = await fs3.readdir(directory, { withFileTypes: true });
691
708
  for (const entry of entries) {
692
- const fullPath = path.join(directory, entry.name);
709
+ const fullPath = join3(directory, entry.name);
693
710
  if (!entry.isDirectory()) continue;
694
- const componentFiles = (await fs.promises.readdir(fullPath)).filter(
711
+ const componentFiles = (await fs3.readdir(fullPath)).filter(
695
712
  (file) => (file.endsWith(".ts") || file.endsWith(".js")) && !file.startsWith("index.") && !file.endsWith(".d.ts")
696
713
  );
697
714
  for (const file of componentFiles) {
698
- const component = await this.importFile(path.join(fullPath, file));
715
+ const component = await this.importFile(join3(fullPath, file));
699
716
  if (!component) continue;
700
717
  const { data } = deconstructCustomId(component.metadata.customId);
701
718
  this.items.set(data, component);
@@ -704,6 +721,14 @@ var ComponentRegistry = class extends BaseRegistry {
704
721
  return this;
705
722
  }
706
723
  };
724
+
725
+ // src/core/registry/event.registry.ts
726
+ import { Collection as Collection3 } from "discord.js";
727
+ import { promises as fs4 } from "fs";
728
+ import { join as join4 } from "path";
729
+
730
+ // src/core/events/interactionCreate.ts
731
+ import { ButtonInteraction, ModalSubmitInteraction } from "discord.js";
707
732
  var interactionCreate_default = {
708
733
  name: "interactionCreate",
709
734
  execute: async (client, interaction) => {
@@ -733,9 +758,9 @@ var interactionCreate_default = {
733
758
  }
734
759
  } else if (interaction.isMessageComponent() || interaction.isModalSubmit()) {
735
760
  const { componentType, tags, data } = deconstructCustomId(interaction.customId);
736
- if (componentType === "button" /* Button */ && !(interaction instanceof discord_js.ButtonInteraction))
761
+ if (componentType === "button" /* Button */ && !(interaction instanceof ButtonInteraction))
737
762
  return;
738
- if (componentType === "modal" /* Modal */ && !(interaction instanceof discord_js.ModalSubmitInteraction))
763
+ if (componentType === "modal" /* Modal */ && !(interaction instanceof ModalSubmitInteraction))
739
764
  return;
740
765
  if (tags.includes("awaited")) return;
741
766
  const registeredComponents = client.registries.components.get();
@@ -762,7 +787,7 @@ var interactionCreate_default = {
762
787
 
763
788
  // src/core/registry/event.registry.ts
764
789
  var EventRegistry = class extends BaseRegistry {
765
- items = new discord_js.Collection();
790
+ items = new Collection3();
766
791
  /**
767
792
  * Load all events.
768
793
  *
@@ -772,9 +797,9 @@ var EventRegistry = class extends BaseRegistry {
772
797
  */
773
798
  async load(directory = getCorePath({ coreDirectory: "events" })) {
774
799
  if (!await exists(directory)) return this;
775
- const entries = await fs.promises.readdir(directory, { withFileTypes: true });
800
+ const entries = await fs4.readdir(directory, { withFileTypes: true });
776
801
  for (const entry of entries) {
777
- const fullPath = path.join(directory, entry.name);
802
+ const fullPath = join4(directory, entry.name);
778
803
  if (entry.isDirectory()) {
779
804
  await this.load(fullPath);
780
805
  continue;
@@ -802,8 +827,13 @@ var EventRegistry = class extends BaseRegistry {
802
827
  }
803
828
  }
804
829
  };
830
+
831
+ // src/core/registry/module.registry.ts
832
+ import { Collection as Collection4 } from "discord.js";
833
+ import { promises as fs5 } from "fs";
834
+ import { join as join5 } from "path";
805
835
  var ModuleRegistry = class extends BaseRegistry {
806
- items = new discord_js.Collection();
836
+ items = new Collection4();
807
837
  /**
808
838
  * Load all modules.
809
839
  *
@@ -815,15 +845,15 @@ var ModuleRegistry = class extends BaseRegistry {
815
845
  if (!await exists(directory)) {
816
846
  return this;
817
847
  }
818
- const entries = await fs.promises.readdir(directory, { withFileTypes: true });
848
+ const entries = await fs5.readdir(directory, { withFileTypes: true });
819
849
  for (const entry of entries) {
820
- const fullPath = path.join(directory, entry.name);
850
+ const fullPath = join5(directory, entry.name);
821
851
  if (!entry.isDirectory()) continue;
822
- const moduleFiles = (await fs.promises.readdir(fullPath)).filter(
852
+ const moduleFiles = (await fs5.readdir(fullPath)).filter(
823
853
  (file) => (file.endsWith(".ts") || file.endsWith(".js")) && !file.startsWith("index.") && !file.endsWith(".d.ts")
824
854
  );
825
855
  for (const file of moduleFiles) {
826
- const moduleEvent = await this.importFile(path.join(fullPath, file));
856
+ const moduleEvent = await this.importFile(join5(fullPath, file));
827
857
  if (!moduleEvent || !moduleEvent.events) continue;
828
858
  this.items.set(moduleEvent.name, moduleEvent);
829
859
  }
@@ -847,6 +877,9 @@ var ModuleRegistry = class extends BaseRegistry {
847
877
  }
848
878
  }
849
879
  };
880
+
881
+ // src/core/registry/index.ts
882
+ import path from "path";
850
883
  var registries = () => ({
851
884
  commands: new CommandRegistry(),
852
885
  components: new ComponentRegistry(),
@@ -857,16 +890,16 @@ var registries = () => ({
857
890
  const corePath = options.corePath;
858
891
  await Promise.all([
859
892
  this.commands.load(
860
- corePath ? resolveUserPath(path__default.default.join(corePath, "commands")) : corePaths?.commandsPath ? resolveUserPath(corePaths.commandsPath) : void 0
893
+ corePath ? resolveUserPath(path.join(corePath, "commands")) : corePaths?.commandsPath ? resolveUserPath(corePaths.commandsPath) : void 0
861
894
  ),
862
895
  this.components.load(
863
- corePath ? resolveUserPath(path__default.default.join(corePath, "components")) : corePaths?.componentsPath ? resolveUserPath(corePaths.componentsPath) : void 0
896
+ corePath ? resolveUserPath(path.join(corePath, "components")) : corePaths?.componentsPath ? resolveUserPath(corePaths.componentsPath) : void 0
864
897
  ),
865
898
  this.events.load(
866
- corePath ? resolveUserPath(path__default.default.join(corePath, "events")) : corePaths?.eventsPath ? resolveUserPath(corePaths.eventsPath) : void 0
899
+ corePath ? resolveUserPath(path.join(corePath, "events")) : corePaths?.eventsPath ? resolveUserPath(corePaths.eventsPath) : void 0
867
900
  ),
868
901
  this.modules.load(
869
- corePath ? resolveUserPath(path__default.default.join(corePath, "modules")) : corePaths?.modulesPath ? resolveUserPath(corePaths.modulesPath) : void 0
902
+ corePath ? resolveUserPath(path.join(corePath, "modules")) : corePaths?.modulesPath ? resolveUserPath(corePaths.modulesPath) : void 0
870
903
  )
871
904
  ]);
872
905
  },
@@ -877,7 +910,7 @@ var registries = () => ({
877
910
  });
878
911
 
879
912
  // src/core/client/trivious.client.ts
880
- var TriviousClient = class extends discord_js.Client {
913
+ var TriviousClient = class extends Client {
881
914
  /**
882
915
  * Client registries.
883
916
  *
@@ -942,8 +975,8 @@ var TriviousClient = class extends discord_js.Client {
942
975
  if (!clientId || !token) throw new Error("[Trivious] Invalid clientId or token reference");
943
976
  const slashCommands = Array.from(this.registries.commands.get().values());
944
977
  const body = [...slashCommands.map((command) => command.toJSON())];
945
- const rest = new discord_js.REST({ version: "10" }).setToken(token);
946
- await rest.put(discord_js.Routes.applicationCommands(clientId), { body });
978
+ const rest = new REST({ version: "10" }).setToken(token);
979
+ await rest.put(Routes.applicationCommands(clientId), { body });
947
980
  console.log(`[Trivious] Deployed ${body.length} commands`);
948
981
  }
949
982
  /**
@@ -958,6 +991,17 @@ var TriviousClient = class extends discord_js.Client {
958
991
  return this._options.rolePermissions ?? {};
959
992
  }
960
993
  };
994
+
995
+ // src/core/commands/command.base.ts
996
+ import {
997
+ Collection as Collection5,
998
+ ContextMenuCommandBuilder as ContextMenuCommandBuilder2,
999
+ InteractionContextType,
1000
+ SlashCommandBuilder
1001
+ } from "discord.js";
1002
+
1003
+ // src/core/commands/contextcommand.base.ts
1004
+ import { ContextMenuCommandBuilder } from "discord.js";
961
1005
  var ContextMenuCommand = class extends Command {
962
1006
  /**
963
1007
  * Base command handler.
@@ -979,7 +1023,7 @@ var ContextMenuCommand = class extends Command {
979
1023
  if (memberHasPermission) await run(client, interaction);
980
1024
  }
981
1025
  };
982
- var ContextMenuBuilder = class extends discord_js.ContextMenuCommandBuilder {
1026
+ var ContextMenuBuilder = class extends ContextMenuCommandBuilder {
983
1027
  _active = true;
984
1028
  _ownerOnly = false;
985
1029
  _permission = 0 /* USER */;
@@ -1055,7 +1099,7 @@ var Command = class {
1055
1099
  * @returns {this is SlashCommand}
1056
1100
  */
1057
1101
  isSlashCommand() {
1058
- return this.data instanceof discord_js.SlashCommandBuilder && this instanceof SlashCommand;
1102
+ return this.data instanceof SlashCommandBuilder && this instanceof SlashCommand;
1059
1103
  }
1060
1104
  /**
1061
1105
  * Returns whether the command is a ContextMenuCommand.
@@ -1065,7 +1109,7 @@ var Command = class {
1065
1109
  * @returns {this is ContextMenuCommand}
1066
1110
  */
1067
1111
  isContextMenuCommand() {
1068
- return this.data instanceof discord_js.ContextMenuCommandBuilder && this instanceof ContextMenuCommand;
1112
+ return this.data instanceof ContextMenuCommandBuilder2 && this instanceof ContextMenuCommand;
1069
1113
  }
1070
1114
  /**
1071
1115
  * Returns JSON of the command builder.
@@ -1160,12 +1204,12 @@ var SlashCommand = class extends Command {
1160
1204
  await subcommand.execute(client, interaction);
1161
1205
  }
1162
1206
  };
1163
- var CommandBuilder = class extends discord_js.SlashCommandBuilder {
1207
+ var CommandBuilder = class extends SlashCommandBuilder {
1164
1208
  _active = true;
1165
1209
  _guildOnly = false;
1166
1210
  _ownerOnly = false;
1167
1211
  _permission = 0 /* USER */;
1168
- _subcommands = new discord_js.Collection();
1212
+ _subcommands = new Collection5();
1169
1213
  _ephemeralReply = false;
1170
1214
  /**
1171
1215
  * Set the command as disabled.
@@ -1186,7 +1230,7 @@ var CommandBuilder = class extends discord_js.SlashCommandBuilder {
1186
1230
  setGuildOnly() {
1187
1231
  this._guildOnly = true;
1188
1232
  this._permission = 0 /* USER */;
1189
- this.setContexts(discord_js.InteractionContextType.Guild);
1233
+ this.setContexts(InteractionContextType.Guild);
1190
1234
  return this;
1191
1235
  }
1192
1236
  /**
@@ -1241,7 +1285,12 @@ var CommandBuilder = class extends discord_js.SlashCommandBuilder {
1241
1285
  };
1242
1286
  }
1243
1287
  };
1244
- var SubcommandBuilder = class extends discord_js.SlashCommandSubcommandBuilder {
1288
+
1289
+ // src/core/commands/subcommand.base.ts
1290
+ import {
1291
+ SlashCommandSubcommandBuilder as SlashCommandSubcommandBuilder2
1292
+ } from "discord.js";
1293
+ var SubcommandBuilder = class extends SlashCommandSubcommandBuilder2 {
1245
1294
  _active = true;
1246
1295
  _ownerOnly = false;
1247
1296
  _permission = 0 /* USER */;
@@ -1427,30 +1476,27 @@ var Component = class {
1427
1476
  }
1428
1477
  };
1429
1478
 
1430
- Object.defineProperty(exports, "ClientEvents", {
1431
- enumerable: true,
1432
- get: function () { return discord_js.ClientEvents; }
1433
- });
1434
- Object.defineProperty(exports, "Collection", {
1435
- enumerable: true,
1436
- get: function () { return discord_js.Collection; }
1437
- });
1438
- exports.BaseRegistry = BaseRegistry;
1439
- exports.Command = Command;
1440
- exports.CommandBuilder = CommandBuilder;
1441
- exports.CommandRegistry = CommandRegistry;
1442
- exports.Component = Component;
1443
- exports.ComponentBuilder = ComponentBuilder;
1444
- exports.ComponentRegistry = ComponentRegistry;
1445
- exports.ComponentType = ComponentType;
1446
- exports.ContextMenuBuilder = ContextMenuBuilder;
1447
- exports.ContextMenuCommand = ContextMenuCommand;
1448
- exports.PermissionLevel = PermissionLevel;
1449
- exports.SlashCommand = SlashCommand;
1450
- exports.Subcommand = Subcommand;
1451
- exports.SubcommandBuilder = SubcommandBuilder;
1452
- exports.TriviousClient = TriviousClient;
1453
- exports.deconstructCustomId = deconstructCustomId;
1454
- exports.getPermissionLevel = getPermissionLevel;
1455
- //# sourceMappingURL=index.cjs.map
1456
- //# sourceMappingURL=index.cjs.map
1479
+ // src/index.ts
1480
+ import { Collection as Collection6, ClientEvents as ClientEvents2 } from "discord.js";
1481
+ export {
1482
+ BaseRegistry,
1483
+ ClientEvents2 as ClientEvents,
1484
+ Collection6 as Collection,
1485
+ Command,
1486
+ CommandBuilder,
1487
+ CommandRegistry,
1488
+ Component,
1489
+ ComponentBuilder,
1490
+ ComponentRegistry,
1491
+ ComponentType,
1492
+ ContextMenuBuilder,
1493
+ ContextMenuCommand,
1494
+ PermissionLevel,
1495
+ SlashCommand,
1496
+ Subcommand,
1497
+ SubcommandBuilder,
1498
+ TriviousClient,
1499
+ deconstructCustomId,
1500
+ getPermissionLevel
1501
+ };
1502
+ //# sourceMappingURL=index.js.map