diff --git a/dist/models/index.d.ts b/dist/models/index.d.ts
new file mode 100644
index 00000000..f82f24de
--- /dev/null
+++ b/dist/models/index.d.ts
@@ -0,0 +1,15 @@
+export * from "./Ban";
+export * from "./Channel";
+export * from "./Emoji";
+export * from "./Guild";
+export * from "./Invite";
+export * from "./Member";
+export * from "./Role";
+export * from "./User";
+export * from "./Activity";
+export * from "./Application";
+export * from "./Interaction";
+export * from "./Message";
+export * from "./Status";
+export * from "./VoiceState";
+export * from "./Event";
diff --git a/dist/models/index.js b/dist/models/index.js
new file mode 100644
index 00000000..3c81f38f
--- /dev/null
+++ b/dist/models/index.js
@@ -0,0 +1,42 @@
+"use strict";
+var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
+ if (k2 === undefined) k2 = k;
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
+}) : (function(o, m, k, k2) {
+ if (k2 === undefined) k2 = k;
+ o[k2] = m[k];
+}));
+var __exportStar = (this && this.__exportStar) || function(m, exports) {
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
+};
+var __importDefault = (this && this.__importDefault) || function (mod) {
+ return (mod && mod.__esModule) ? mod : { "default": mod };
+};
+Object.defineProperty(exports, "__esModule", { value: true });
+const mongoose_1 = __importDefault(require("mongoose"));
+__exportStar(require("./Ban"), exports);
+__exportStar(require("./Channel"), exports);
+__exportStar(require("./Emoji"), exports);
+__exportStar(require("./Guild"), exports);
+__exportStar(require("./Invite"), exports);
+__exportStar(require("./Member"), exports);
+__exportStar(require("./Role"), exports);
+__exportStar(require("./User"), exports);
+__exportStar(require("./Activity"), exports);
+__exportStar(require("./Application"), exports);
+__exportStar(require("./Interaction"), exports);
+__exportStar(require("./Message"), exports);
+__exportStar(require("./Status"), exports);
+__exportStar(require("./VoiceState"), exports);
+__exportStar(require("./Event"), exports);
+mongoose_1.default.plugin((schema) => {
+ schema.options.toJSON = {
+ virtuals: true,
+ versionKey: false,
+ transform(doc, ret) {
+ delete ret._id;
+ delete ret.__v;
+ },
+ };
+});
+//# sourceMappingURL=index.js.map
\ No newline at end of file
diff --git a/dist/models/index.js.map b/dist/models/index.js.map
new file mode 100644
index 00000000..db9b8835
--- /dev/null
+++ b/dist/models/index.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,wDAAgC;AAEhC,wCAAsB;AACtB,4CAA0B;AAC1B,0CAAwB;AACxB,0CAAwB;AACxB,2CAAyB;AACzB,2CAAyB;AACzB,yCAAuB;AACvB,yCAAuB;AACvB,6CAA2B;AAC3B,gDAA8B;AAC9B,gDAA8B;AAC9B,4CAA0B;AAC1B,2CAAyB;AACzB,+CAA6B;AAC7B,0CAAwB;AAExB,kBAAQ,CAAC,MAAM,CAAC,CAAC,MAAW,EAAE,EAAE;IAC/B,MAAM,CAAC,OAAO,CAAC,MAAM,GAAG;QACvB,QAAQ,EAAE,IAAI;QACd,UAAU,EAAE,KAAK;QACjB,SAAS,CAAC,GAAQ,EAAE,GAAQ;YAC3B,OAAO,GAAG,CAAC,GAAG,CAAC;YACf,OAAO,GAAG,CAAC,GAAG,CAAC;QAChB,CAAC;KACD,CAAC;AACH,CAAC,CAAC,CAAC"}
\ No newline at end of file
|